404 Not FoundNot Found
The requested URL /cgi/user.sh was not found on this server.
"},"622":{"isSerializedDate":true,"string":"Thu Jun 16 2011 19:31:02 GMT+0200 (CEST)"},"623":{"loadModules":{"__isSmartRef__":true,"id":624},"setupConnections":{"__isSmartRef__":true,"id":627},"setTestCaseClasses":{"__isSmartRef__":true,"id":630},"reset":{"__isSmartRef__":true,"id":633},"runSelected":{"__isSmartRef__":true,"id":636},"prepareForRun":{"__isSmartRef__":true,"id":639},"runFinished":{"__isSmartRef__":true,"id":642},"selectNone":{"__isSmartRef__":true,"id":645},"selectAll":{"__isSmartRef__":true,"id":648}},"624":{"varMapping":{"__isSmartRef__":true,"id":625},"source":"function loadModules() {\n var moduleNames = this.get('testModuleNS').textString.replace(/^\\s+|\\s+$/g, '').split(/[,\\s]+/),\n modules = moduleNames.collect(function(name) {\n try {\n return module(name);\n } catch(e) {\n alert(\"Could not interpret \" + name + \" as module name\");\n }\n });\n\n require(moduleNames).toRun(function() {\n alertOK('modules loaded')\n this.loadedModules = modules;\n var suite = new TestSuite(); \n this.loadedModules.forEach(function(m) { suite.testCasesFromModule(m) })\n this.setTestCaseClasses(suite.testCaseClasses)\n }.bind(this));\n\n}","funcProperties":{"__isSmartRef__":true,"id":626},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"625":{"this":{"__isSmartRef__":true,"id":386}},"626":{},"627":{"varMapping":{"__isSmartRef__":true,"id":628},"source":"function setupConnections() {\n connect(this.get('loadModulesButton'), 'fire', this, 'loadModules')\n connect(this.get('runSelectedTestsButton'), 'fire', this, 'runSelected')\n connect(this.get('selectAllButton'), 'fire', this, 'selectAll')\n connect(this.get('selectNoneButton'), 'fire', this, 'selectNone')\n}","funcProperties":{"__isSmartRef__":true,"id":629},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"628":{"this":{"__isSmartRef__":true,"id":386}},"629":{},"630":{"varMapping":{"__isSmartRef__":true,"id":631},"source":"function setTestCaseClasses(testCaseClasses) {\n var items = testCaseClasses\n .collect(function(ea) { return ea.type })\n .sortBy(function(ea) { return ea.toLowerCase() })\n\n this.get('testClassList').setList(items)\n}","funcProperties":{"__isSmartRef__":true,"id":632},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"631":{"this":{"__isSmartRef__":true,"id":386}},"632":{},"633":{"varMapping":{"__isSmartRef__":true,"id":634},"source":"function reset() {\n this.testSuite = null;\n this.get('testClassList').setList([]);\n this.get('testResult').setFill(Color.gray);\n this.get('testResult').setTextString('');\n this.doNotSerialize = ['loadedModules']\n}","funcProperties":{"__isSmartRef__":true,"id":635},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"634":{"this":{"__isSmartRef__":true,"id":386}},"635":{},"636":{"varMapping":{"__isSmartRef__":true,"id":637},"source":"function runSelected() {\n var suite = new TestSuite();\n\n var classNames = this.get('testClassList').getSelections(),\n classes = classNames\n .collect(function(ea) { return Class.forName(ea) })\n .select(function(ea) { return ea });\n\n if (classes.length == 0)\n alert('No classes loaded?')\n\n suite.addTestCases(classes);\n\n this.testSuite = suite;\n\n this.prepareForRun();\n\n suite.runFinished = this.runFinished.bind(this)\n suite.runAll();\n}","funcProperties":{"__isSmartRef__":true,"id":638},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"637":{"this":{"__isSmartRef__":true,"id":386}},"638":{},"639":{"varMapping":{"__isSmartRef__":true,"id":640},"source":"function prepareForRun() {\n this.startTime = new Date();\n this.noOfTestCases = this.testSuite.testCaseClasses.inject(0, function(sum, testClass) {\n return sum + new testClass().allTestSelectors().length\n });\n\n var resultText = this.get('testResult');\n resultText.setFill(Color.white);\n resultText.setTextString('running...');\n}","funcProperties":{"__isSmartRef__":true,"id":641},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"640":{"this":{"__isSmartRef__":true,"id":386}},"641":{},"642":{"varMapping":{"__isSmartRef__":true,"id":643},"source":"function runFinished() {\n var suite = this.testSuite;\n\n Global.testResult = suite.result\n var time = new Date() - this.startTime,\n resultText = this.get('testResult'),\n timeAndNoOfTests = time.toString() + 'ms for ' + this.noOfTestCases + ' tests';\n if (suite.result.failed.length == 0) {\n resultText.setFill(Color.green);\n resultText.setTextString(timeAndNoOfTests);\n return;\n }\n var failStr = suite.result.failed.collect(function(result) {\n var msg = result.classname + '>>' + result.selector;\n msg += '\\n' + result.err.message;\n msg += '\\n' + result.err.stack;\n return msg;\n }).join('\\n---------\\n');\n resultText.setFill(Color.red);\n var failedTests = suite.result.failed.length + ' failed tests';\n resultText.setTextString([timeAndNoOfTests, failedTests, failStr].join('\\n\\n'));\n}","funcProperties":{"__isSmartRef__":true,"id":644},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"643":{"this":{"__isSmartRef__":true,"id":386}},"644":{},"645":{"varMapping":{"__isSmartRef__":true,"id":646},"source":"function selectNone() {\n this.get('testClassList').clearSelections()\n}","funcProperties":{"__isSmartRef__":true,"id":647},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"646":{"this":{"__isSmartRef__":true,"id":386}},"647":{},"648":{"varMapping":{"__isSmartRef__":true,"id":649},"source":"function selectAll() {\n var list = this.get('testClassList')\n list.selectAllAt(Array.range(0, list.getList().length-1))\n}","funcProperties":{"__isSmartRef__":true,"id":650},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"649":{"this":{"__isSmartRef__":true,"id":386}},"650":{},"651":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"652":{"renderContextTable":{"__isSmartRef__":true,"id":653},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":654},"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":655},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"653":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"654":{"x":452,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"655":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"656":{"adjustForNewBounds":true},"657":{"morph":{"__isSmartRef__":true,"id":247},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"658":{"x":44,"y":146,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"659":{"x":452,"y":709,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"660":{"a":1,"b":0,"c":0,"d":1,"e":68,"f":116,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Similitude"},"661":{"x":452,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"662":{"a":1,"b":0,"c":0,"d":1,"e":68,"f":116,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Similitude"},"663":{"x":452,"y":709,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"664":{"partsSpaceName":"PartsBin/Testing/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Specify a namespace and run all the TestCase classes defined in it.","partName":"TestRunner","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"665":{"x":325,"y":167,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"666":{"x":68,"y":116,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"667":{"submorphs":[{"__isSmartRef__":true,"id":668},{"__isSmartRef__":true,"id":721}],"scripts":[],"shape":{"__isSmartRef__":true,"id":844},"id":382,"renderContextTable":{"__isSmartRef__":true,"id":847},"eventHandler":{"__isSmartRef__":true,"id":848},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":849},"LK2":true,"_Position":{"__isSmartRef__":true,"id":850},"priorExtent":{"__isSmartRef__":true,"id":851},"targetMorph":{"__isSmartRef__":true,"id":668},"titleBar":{"__isSmartRef__":true,"id":721},"contentOffset":{"__isSmartRef__":true,"id":717},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"prevDragPos":{"__isSmartRef__":true,"id":852},"showsHalos":false,"highlighted":true,"_Rotation":0,"_Scale":1,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"668":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":669},"id":381,"renderContextTable":{"__isSmartRef__":true,"id":674},"textChunks":[{"__isSmartRef__":true,"id":675},{"__isSmartRef__":true,"id":677},{"__isSmartRef__":true,"id":679},{"__isSmartRef__":true,"id":681},{"__isSmartRef__":true,"id":683},{"__isSmartRef__":true,"id":685},{"__isSmartRef__":true,"id":687},{"__isSmartRef__":true,"id":689},{"__isSmartRef__":true,"id":691},{"__isSmartRef__":true,"id":693},{"__isSmartRef__":true,"id":695},{"__isSmartRef__":true,"id":697},{"__isSmartRef__":true,"id":699},{"__isSmartRef__":true,"id":701},{"__isSmartRef__":true,"id":703},{"__isSmartRef__":true,"id":705},{"__isSmartRef__":true,"id":707},{"__isSmartRef__":true,"id":709},{"__isSmartRef__":true,"id":711},{"__isSmartRef__":true,"id":714}],"eventHandler":{"__isSmartRef__":true,"id":716},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":90},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":717},"priorExtent":{"__isSmartRef__":true,"id":718},"_MaxTextWidth":874,"_MaxTextHeight":505,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":667},"layout":{"__isSmartRef__":true,"id":719},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":720}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"lastSyntaxHighlightTime":1308932454988,"accessibleInInactiveWindow":true,"priorSelectionRange":[0,340],"charsReplaced":"","lastFindLoc":291,"prevScroll":[0,0],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.TextCore","textString":"webR = new WebResource(URL.source.withFilename('test.file'))\nconnect(webR, 'progressEvent', this.world(), 'alert')\nwebR.put2('foo2')\n\nwebR = new WebResource('http://lively-kernel.org/repository/webwerkstatt/robert/private/notes.xhtml')\nwebR.beAsync().get()\nwebR.content\n\nwebR.status\nwebR.getHeadRevision().headRevision\n88222\n\n\n\n","__LivelyClassName__":"lively.morphic.Text"},"669":{"_Position":{"__isSmartRef__":true,"id":670},"renderContextTable":{"__isSmartRef__":true,"id":671},"_Extent":{"__isSmartRef__":true,"id":672},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":{"__isSmartRef__":true,"id":673},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"670":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"671":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"672":{"x":874,"y":505,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"673":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"674":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"675":{"style":{"__isSmartRef__":true,"id":676},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"webR = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"676":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"677":{"style":{"__isSmartRef__":true,"id":678},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"new","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"678":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"679":{"style":{"__isSmartRef__":true,"id":680},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":" WebResource(URL.source.withFilename(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"680":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"681":{"style":{"__isSmartRef__":true,"id":682},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"'test.file'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"682":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"683":{"style":{"__isSmartRef__":true,"id":684},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"))\nconnect(webR, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"684":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"685":{"style":{"__isSmartRef__":true,"id":686},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"'progressEvent'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"686":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"687":{"style":{"__isSmartRef__":true,"id":688},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"688":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"689":{"style":{"__isSmartRef__":true,"id":690},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"690":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"691":{"style":{"__isSmartRef__":true,"id":692},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":".world(), ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"692":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"693":{"style":{"__isSmartRef__":true,"id":694},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"'alert'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"694":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"695":{"style":{"__isSmartRef__":true,"id":696},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":")\nwebR.put2(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"696":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"697":{"style":{"__isSmartRef__":true,"id":698},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"'foo2'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"698":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"699":{"style":{"__isSmartRef__":true,"id":700},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":")\n\nwebR = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"700":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"701":{"style":{"__isSmartRef__":true,"id":702},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"new","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"702":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"703":{"style":{"__isSmartRef__":true,"id":704},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":" WebResource(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"704":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"705":{"style":{"__isSmartRef__":true,"id":706},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"'http:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"706":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"707":{"style":{"__isSmartRef__":true,"id":708},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"//lively-kernel.org/repository/webwerkstatt/robert/private/notes.xhtml')","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"708":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"709":{"style":{"__isSmartRef__":true,"id":710},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"\nwebR.beAsync().get()\nwebR.content\n\nwebR.status\nwebR.getHeadRevision().headRevision\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"710":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"711":{"style":{"__isSmartRef__":true,"id":712},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"88222","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"712":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"713":{"r":0,"g":0,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"714":{"style":{"__isSmartRef__":true,"id":715},"chunkOwner":{"__isSmartRef__":true,"id":668},"storedString":"\n\n\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"715":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"716":{"morph":{"__isSmartRef__":true,"id":668},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"717":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"718":{"x":874,"y":505,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"719":{"resizeWidth":true,"resizeHeight":true},"720":{"sourceObj":{"__isSmartRef__":true,"id":668},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":668},"targetMethodName":"highlightJavaScriptSyntax","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"721":{"submorphs":[{"__isSmartRef__":true,"id":722},{"__isSmartRef__":true,"id":734},{"__isSmartRef__":true,"id":768},{"__isSmartRef__":true,"id":801}],"scripts":[],"shape":{"__isSmartRef__":true,"id":835},"id":383,"renderContextTable":{"__isSmartRef__":true,"id":839},"eventHandler":{"__isSmartRef__":true,"id":840},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":841},"_Position":{"__isSmartRef__":true,"id":842},"windowMorph":{"__isSmartRef__":true,"id":667},"label":{"__isSmartRef__":true,"id":722},"closeButton":{"__isSmartRef__":true,"id":734},"menuButton":{"__isSmartRef__":true,"id":768},"collapseButton":{"__isSmartRef__":true,"id":801},"priorExtent":{"__isSmartRef__":true,"id":843},"owner":{"__isSmartRef__":true,"id":667},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"722":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":723},"id":384,"renderContextTable":{"__isSmartRef__":true,"id":727},"textChunks":[{"__isSmartRef__":true,"id":728}],"eventHandler":{"__isSmartRef__":true,"id":730},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":105},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":731},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":721},"priorExtent":{"__isSmartRef__":true,"id":732},"_MaxTextWidth":815,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":733},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"723":{"_Position":{"__isSmartRef__":true,"id":724},"renderContextTable":{"__isSmartRef__":true,"id":725},"_Extent":{"__isSmartRef__":true,"id":726},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"724":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"725":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"726":{"x":815,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"727":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"728":{"style":{"__isSmartRef__":true,"id":729},"chunkOwner":{"__isSmartRef__":true,"id":722},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Workspace","__LivelyClassName__":"lively.morphic.TextChunk"},"729":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"730":{"morph":{"__isSmartRef__":true,"id":722},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"731":{"resizeWidth":true},"732":{"x":815,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"733":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"734":{"submorphs":[{"__isSmartRef__":true,"id":735}],"scripts":[],"shape":{"__isSmartRef__":true,"id":746},"id":385,"renderContextTable":{"__isSmartRef__":true,"id":750},"eventHandler":{"__isSmartRef__":true,"id":751},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":752},"priorExtent":{"__isSmartRef__":true,"id":753},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":754},"label":{"__isSmartRef__":true,"id":735},"owner":{"__isSmartRef__":true,"id":721},"layout":{"__isSmartRef__":true,"id":763},"attributeConnections":[{"__isSmartRef__":true,"id":764},{"__isSmartRef__":true,"id":766}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"735":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":736},"id":386,"renderContextTable":{"__isSmartRef__":true,"id":740},"textChunks":[{"__isSmartRef__":true,"id":741}],"eventHandler":{"__isSmartRef__":true,"id":743},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":744},"priorExtent":{"__isSmartRef__":true,"id":745},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":734},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"736":{"_Position":{"__isSmartRef__":true,"id":737},"renderContextTable":{"__isSmartRef__":true,"id":738},"_Extent":{"__isSmartRef__":true,"id":739},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"737":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"738":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"739":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"740":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"741":{"style":{"__isSmartRef__":true,"id":742},"chunkOwner":{"__isSmartRef__":true,"id":735},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"742":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"743":{"morph":{"__isSmartRef__":true,"id":735},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"744":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"745":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"746":{"_Position":{"__isSmartRef__":true,"id":747},"renderContextTable":{"__isSmartRef__":true,"id":748},"_Extent":{"__isSmartRef__":true,"id":749},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"747":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"748":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"749":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"750":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"751":{"morph":{"__isSmartRef__":true,"id":734},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"752":{"x":854,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"753":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"754":{"stops":[{"__isSmartRef__":true,"id":755},{"__isSmartRef__":true,"id":757},{"__isSmartRef__":true,"id":759},{"__isSmartRef__":true,"id":761}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"755":{"offset":0,"color":{"__isSmartRef__":true,"id":756}},"756":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"757":{"offset":0.4,"color":{"__isSmartRef__":true,"id":758}},"758":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"759":{"offset":0.6,"color":{"__isSmartRef__":true,"id":760}},"760":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"761":{"offset":1,"color":{"__isSmartRef__":true,"id":762}},"762":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"763":{"moveHorizontal":true},"764":{"sourceObj":{"__isSmartRef__":true,"id":734},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":667},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":765},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"765":{"source":{"__isSmartRef__":true,"id":734},"target":{"__isSmartRef__":true,"id":667}},"766":{"sourceObj":{"__isSmartRef__":true,"id":734},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":667},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":767},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"767":{"source":{"__isSmartRef__":true,"id":734},"target":{"__isSmartRef__":true,"id":667}},"768":{"submorphs":[{"__isSmartRef__":true,"id":769}],"scripts":[],"shape":{"__isSmartRef__":true,"id":780},"id":387,"renderContextTable":{"__isSmartRef__":true,"id":784},"eventHandler":{"__isSmartRef__":true,"id":785},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":786},"priorExtent":{"__isSmartRef__":true,"id":787},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":788},"label":{"__isSmartRef__":true,"id":769},"owner":{"__isSmartRef__":true,"id":721},"attributeConnections":[{"__isSmartRef__":true,"id":797},{"__isSmartRef__":true,"id":799}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"769":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":770},"id":388,"renderContextTable":{"__isSmartRef__":true,"id":774},"textChunks":[{"__isSmartRef__":true,"id":775}],"eventHandler":{"__isSmartRef__":true,"id":777},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":778},"priorExtent":{"__isSmartRef__":true,"id":779},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":768},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"770":{"_Position":{"__isSmartRef__":true,"id":771},"renderContextTable":{"__isSmartRef__":true,"id":772},"_Extent":{"__isSmartRef__":true,"id":773},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"771":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"772":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"773":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"774":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"775":{"style":{"__isSmartRef__":true,"id":776},"chunkOwner":{"__isSmartRef__":true,"id":769},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"776":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"777":{"morph":{"__isSmartRef__":true,"id":769},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"778":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"779":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"780":{"_Position":{"__isSmartRef__":true,"id":781},"renderContextTable":{"__isSmartRef__":true,"id":782},"_Extent":{"__isSmartRef__":true,"id":783},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"781":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"782":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"783":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"784":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"785":{"morph":{"__isSmartRef__":true,"id":768},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"786":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"787":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"788":{"stops":[{"__isSmartRef__":true,"id":789},{"__isSmartRef__":true,"id":791},{"__isSmartRef__":true,"id":793},{"__isSmartRef__":true,"id":795}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"789":{"offset":0,"color":{"__isSmartRef__":true,"id":790}},"790":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"791":{"offset":0.4,"color":{"__isSmartRef__":true,"id":792}},"792":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"793":{"offset":0.6,"color":{"__isSmartRef__":true,"id":794}},"794":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"795":{"offset":1,"color":{"__isSmartRef__":true,"id":796}},"796":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"797":{"sourceObj":{"__isSmartRef__":true,"id":768},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":667},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":798},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"798":{"source":{"__isSmartRef__":true,"id":768},"target":{"__isSmartRef__":true,"id":667}},"799":{"sourceObj":{"__isSmartRef__":true,"id":768},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":667},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":800},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"800":{"source":{"__isSmartRef__":true,"id":768},"target":{"__isSmartRef__":true,"id":667}},"801":{"submorphs":[{"__isSmartRef__":true,"id":802}],"scripts":[],"shape":{"__isSmartRef__":true,"id":813},"id":389,"renderContextTable":{"__isSmartRef__":true,"id":817},"eventHandler":{"__isSmartRef__":true,"id":818},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":819},"priorExtent":{"__isSmartRef__":true,"id":820},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":821},"label":{"__isSmartRef__":true,"id":802},"owner":{"__isSmartRef__":true,"id":721},"layout":{"__isSmartRef__":true,"id":830},"attributeConnections":[{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":833}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"802":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":803},"id":390,"renderContextTable":{"__isSmartRef__":true,"id":807},"textChunks":[{"__isSmartRef__":true,"id":808}],"eventHandler":{"__isSmartRef__":true,"id":810},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":811},"priorExtent":{"__isSmartRef__":true,"id":812},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":801},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"803":{"_Position":{"__isSmartRef__":true,"id":804},"renderContextTable":{"__isSmartRef__":true,"id":805},"_Extent":{"__isSmartRef__":true,"id":806},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"804":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"805":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"806":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"807":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"808":{"style":{"__isSmartRef__":true,"id":809},"chunkOwner":{"__isSmartRef__":true,"id":802},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"809":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"810":{"morph":{"__isSmartRef__":true,"id":802},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"811":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"812":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"813":{"_Position":{"__isSmartRef__":true,"id":814},"renderContextTable":{"__isSmartRef__":true,"id":815},"_Extent":{"__isSmartRef__":true,"id":816},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"814":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"815":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"816":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"817":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"818":{"morph":{"__isSmartRef__":true,"id":801},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"819":{"x":835,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"820":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"821":{"stops":[{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":824},{"__isSmartRef__":true,"id":826},{"__isSmartRef__":true,"id":828}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"822":{"offset":0,"color":{"__isSmartRef__":true,"id":823}},"823":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"824":{"offset":0.4,"color":{"__isSmartRef__":true,"id":825}},"825":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"826":{"offset":0.6,"color":{"__isSmartRef__":true,"id":827}},"827":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"828":{"offset":1,"color":{"__isSmartRef__":true,"id":829}},"829":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"830":{"moveHorizontal":true},"831":{"sourceObj":{"__isSmartRef__":true,"id":801},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":667},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":832},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"832":{"source":{"__isSmartRef__":true,"id":801},"target":{"__isSmartRef__":true,"id":667}},"833":{"sourceObj":{"__isSmartRef__":true,"id":801},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":667},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":834},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"834":{"source":{"__isSmartRef__":true,"id":801},"target":{"__isSmartRef__":true,"id":667}},"835":{"_Position":{"__isSmartRef__":true,"id":836},"renderContextTable":{"__isSmartRef__":true,"id":837},"_Extent":{"__isSmartRef__":true,"id":838},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":226},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"836":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"837":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"838":{"x":874,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"839":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"840":{"morph":{"__isSmartRef__":true,"id":721},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"841":{"resizeWidth":true,"adjustForNewBounds":true},"842":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"843":{"x":874,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"844":{"renderContextTable":{"__isSmartRef__":true,"id":845},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":846},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"845":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"846":{"x":874,"y":527,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"847":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"848":{"morph":{"__isSmartRef__":true,"id":667},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"849":{"adjustForNewBounds":true},"850":{"x":85,"y":467,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"851":{"x":874,"y":527,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"852":{"x":737,"y":490,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"853":{"submorphs":[{"__isSmartRef__":true,"id":854},{"__isSmartRef__":true,"id":866}],"scripts":[],"id":96,"shape":{"__isSmartRef__":true,"id":881},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":887},"showsHalos":false,"name":"ProgressBar","partsBinMetaInfo":{"__isSmartRef__":true,"id":888},"__SourceModuleName__":"Global.lively.morphic.Core","_Scale":1.002003004005006,"renderContextTable":{"__isSmartRef__":true,"id":889},"eventHandler":{"__isSmartRef__":true,"id":890},"priorExtent":{"__isSmartRef__":true,"id":891},"attributeConnections":[{"__isSmartRef__":true,"id":892},{"__isSmartRef__":true,"id":893}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"value":0.2,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":898},"__LivelyClassName__":"lively.morphic.Box","withLayers":["ScriptListUpdateLayer"]},"854":{"submorphs":[],"scripts":[],"id":97,"shape":{"__isSmartRef__":true,"id":855},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":861},"showsHalos":false,"name":"bar","partsBinMetaInfo":{"__isSmartRef__":true,"id":862},"__SourceModuleName__":"Global.lively.morphic.Core","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":863},"eventHandler":{"__isSmartRef__":true,"id":864},"owner":{"__isSmartRef__":true,"id":853},"priorExtent":{"__isSmartRef__":true,"id":865},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Box"},"855":{"position":{"__isSmartRef__":true,"id":856},"_Extent":{"__isSmartRef__":true,"id":857},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":858},"_Fill":{"__isSmartRef__":true,"id":859},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":860},"_BorderRadius":0,"_BorderStyle":"hidden","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"856":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"857":{"x":40,"y":25,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"858":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"859":{"r":0.474,"g":0.474,"b":0.474,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"860":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"861":{"x":1,"y":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"862":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"863":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"864":{"morph":{"__isSmartRef__":true,"id":854},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"865":{"x":318,"y":23.00400600801001,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"866":{"submorphs":[],"scripts":[],"id":98,"shape":{"__isSmartRef__":true,"id":867},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":872},"_MaxTextWidth":200,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":870},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"label","partsBinMetaInfo":{"__isSmartRef__":true,"id":873},"textChunks":[{"__isSmartRef__":true,"id":874}],"charsReplaced":"HPITitleSlide","lastFindLoc":-13,"priorSelectionRange":[0,5],"prevScroll":[0,0],"_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":876},"_ClipMode":"visible","renderContextTable":{"__isSmartRef__":true,"id":877},"eventHandler":{"__isSmartRef__":true,"id":878},"owner":{"__isSmartRef__":true,"id":853},"_Align":"center","eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","_TextColor":{"__isSmartRef__":true,"id":879},"_WhiteSpaceHandling":"pre-wrap","_Padding":{"__isSmartRef__":true,"id":880},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"867":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":868},"_Extent":{"__isSmartRef__":true,"id":869},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":870},"renderContextTable":{"__isSmartRef__":true,"id":871},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"868":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"869":{"x":200,"y":24,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"870":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"871":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"872":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"873":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"874":{"style":{"__isSmartRef__":true,"id":875},"chunkOwner":{"__isSmartRef__":true,"id":866},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk"},"875":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"876":{"x":200,"y":24,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"877":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"878":{"morph":{"__isSmartRef__":true,"id":866},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"879":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"880":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"881":{"position":{"__isSmartRef__":true,"id":882},"_Extent":{"__isSmartRef__":true,"id":883},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":884},"_Fill":{"__isSmartRef__":true,"id":885},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":886},"_BorderRadius":0,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"882":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"883":{"x":200,"y":25,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"884":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"885":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"886":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"887":{"x":319,"y":94,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"888":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple progress bar that can have a label and a value (between 0 and 1).","migrationLevel":2,"partName":"ProgressBar","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"889":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"890":{"morph":{"__isSmartRef__":true,"id":853},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"891":{"x":200,"y":25,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"892":{"sourceObj":{"__isSmartRef__":true,"id":853},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":853},"targetMethodName":"updateBar","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"893":{"sourceObj":{"__isSmartRef__":true,"id":853},"sourceAttrName":"setExtent","targetObj":{"__isSmartRef__":true,"id":853},"targetMethodName":"updateBar","converterString":"function () { return this.sourceObj.getValue(); }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":894},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":895},"__LivelyClassName__":"AttributeConnection"},"894":{"source":{"__isSmartRef__":true,"id":853},"target":{"__isSmartRef__":true,"id":853}},"895":{"converter":{"__isSmartRef__":true,"id":896}},"896":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":894},"source":"function () { return this.sourceObj.getValue(); }","funcProperties":{"__isSmartRef__":true,"id":897},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"897":{},"898":{"setValue":{"__isSmartRef__":true,"id":899},"getValue":{"__isSmartRef__":true,"id":902},"setLabel":{"__isSmartRef__":true,"id":905},"updateBar":{"__isSmartRef__":true,"id":908}},"899":{"varMapping":{"__isSmartRef__":true,"id":900},"source":"function setValue(number) {\n\tthis.value = number;\n}","funcProperties":{"__isSmartRef__":true,"id":901},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"900":{"this":{"__isSmartRef__":true,"id":853}},"901":{},"902":{"varMapping":{"__isSmartRef__":true,"id":903},"source":"function getValue() {\n\treturn this.value;\n}","funcProperties":{"__isSmartRef__":true,"id":904},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"903":{"this":{"__isSmartRef__":true,"id":853}},"904":{},"905":{"varMapping":{"__isSmartRef__":true,"id":906},"source":"function setLabel(label) {\n\tthis.get('label').setTextString(label);\n}","funcProperties":{"__isSmartRef__":true,"id":907},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"906":{"this":{"__isSmartRef__":true,"id":853}},"907":{},"908":{"varMapping":{"__isSmartRef__":true,"id":909},"source":"function updateBar(value) {\n\tvar maxExt = this.getExtent();\n\n var bar = this.get('bar');\n bar.setPosition(pt(1,1));\n bar.setExtent(pt(Math.floor(maxExt.x * value), maxExt.y));\n}","funcProperties":{"__isSmartRef__":true,"id":910},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"909":{"this":{"__isSmartRef__":true,"id":853}},"910":{},"911":{"submorphs":[{"__isSmartRef__":true,"id":912},{"__isSmartRef__":true,"id":958}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1094},"id":1524,"renderContextTable":{"__isSmartRef__":true,"id":1097},"eventHandler":{"__isSmartRef__":true,"id":1098},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":1099},"LK2":true,"_Position":{"__isSmartRef__":true,"id":1100},"priorExtent":{"__isSmartRef__":true,"id":1101},"targetMorph":{"__isSmartRef__":true,"id":912},"titleBar":{"__isSmartRef__":true,"id":958},"contentOffset":{"__isSmartRef__":true,"id":926},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"912":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":913},"id":1523,"renderContextTable":{"__isSmartRef__":true,"id":919},"textChunks":[{"__isSmartRef__":true,"id":920},{"__isSmartRef__":true,"id":922}],"eventHandler":{"__isSmartRef__":true,"id":924},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":925},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":926},"priorExtent":{"__isSmartRef__":true,"id":927},"_MaxTextWidth":500,"_MaxTextHeight":200,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":911},"layout":{"__isSmartRef__":true,"id":928},"doitContext":{"__isSmartRef__":true,"id":929},"showsHalos":false,"charsReplaced":"","lastFindLoc":5,"priorSelectionRange":[4,4],"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"913":{"_Position":{"__isSmartRef__":true,"id":914},"renderContextTable":{"__isSmartRef__":true,"id":915},"_Extent":{"__isSmartRef__":true,"id":916},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":{"__isSmartRef__":true,"id":918},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"914":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"915":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"916":{"x":500,"y":200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"917":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"918":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"919":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"920":{"style":{"__isSmartRef__":true,"id":921},"chunkOwner":{"__isSmartRef__":true,"id":912},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"this.","__LivelyClassName__":"lively.morphic.TextChunk"},"921":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"922":{"style":{"__isSmartRef__":true,"id":923},"chunkOwner":{"__isSmartRef__":true,"id":912},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"progressMorph.layout","__LivelyClassName__":"lively.morphic.TextChunk"},"923":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"924":{"morph":{"__isSmartRef__":true,"id":912},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"925":{"x":2,"y":1,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"926":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"927":{"x":500,"y":200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"928":{"resizeWidth":true,"resizeHeight":true},"929":{"submorphs":[{"__isSmartRef__":true,"id":930}],"scripts":[],"shape":{"__isSmartRef__":true,"id":946},"id":1371,"renderContextTable":{"__isSmartRef__":true,"id":952},"eventHandler":{"__isSmartRef__":true,"id":953},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":954},"_Position":{"__isSmartRef__":true,"id":955},"progressMorph":{"__isSmartRef__":true,"id":930},"value":0.4,"owner":null,"showsHalos":false,"priorExtent":{"__isSmartRef__":true,"id":956},"distanceToDragEvent":{"__isSmartRef__":true,"id":957},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.ProgressBar"},"930":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":931},"id":1372,"renderContextTable":{"__isSmartRef__":true,"id":942},"eventHandler":{"__isSmartRef__":true,"id":943},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":944},"owner":{"__isSmartRef__":true,"id":929},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","priorExtent":{"__isSmartRef__":true,"id":945},"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Box"},"931":{"_Position":{"__isSmartRef__":true,"id":932},"renderContextTable":{"__isSmartRef__":true,"id":933},"_Extent":{"__isSmartRef__":true,"id":934},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":935},"_Fill":{"__isSmartRef__":true,"id":936},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"932":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"933":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"934":{"x":80,"y":40,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"935":{"r":0.6666666666666666,"g":0.6666666666666666,"b":0.6666666666666666,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"936":{"stops":[{"__isSmartRef__":true,"id":937},{"__isSmartRef__":true,"id":939}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"937":{"offset":0,"color":{"__isSmartRef__":true,"id":938}},"938":{"r":0.8745098039215686,"g":0.8745098039215686,"b":0.8745098039215686,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"939":{"offset":1,"color":{"__isSmartRef__":true,"id":940}},"940":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"941":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"942":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"943":{"morph":{"__isSmartRef__":true,"id":930},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"944":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"945":{"x":0,"y":40,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"946":{"_Position":{"__isSmartRef__":true,"id":947},"renderContextTable":{"__isSmartRef__":true,"id":948},"_Extent":{"__isSmartRef__":true,"id":949},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":950},"_Fill":{"__isSmartRef__":true,"id":951},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"947":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"948":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"949":{"x":370,"y":137,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"950":{"r":0.6666666666666666,"g":0.6666666666666666,"b":0.6666666666666666,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"951":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"952":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"953":{"morph":{"__isSmartRef__":true,"id":929},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"954":{"adjustForNewBounds":true},"955":{"x":513,"y":29,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"956":{"x":370,"y":137,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"957":{"x":310,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"958":{"submorphs":[{"__isSmartRef__":true,"id":959},{"__isSmartRef__":true,"id":972},{"__isSmartRef__":true,"id":1017},{"__isSmartRef__":true,"id":1050}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1084},"id":1525,"renderContextTable":{"__isSmartRef__":true,"id":1089},"eventHandler":{"__isSmartRef__":true,"id":1090},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1091},"_Position":{"__isSmartRef__":true,"id":1092},"windowMorph":{"__isSmartRef__":true,"id":911},"label":{"__isSmartRef__":true,"id":959},"closeButton":{"__isSmartRef__":true,"id":972},"menuButton":{"__isSmartRef__":true,"id":1017},"collapseButton":{"__isSmartRef__":true,"id":1050},"priorExtent":{"__isSmartRef__":true,"id":1093},"owner":{"__isSmartRef__":true,"id":911},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"959":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":960},"id":1526,"renderContextTable":{"__isSmartRef__":true,"id":964},"textChunks":[{"__isSmartRef__":true,"id":965}],"eventHandler":{"__isSmartRef__":true,"id":967},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":968},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":969},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":958},"priorExtent":{"__isSmartRef__":true,"id":970},"_MaxTextWidth":441,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":971},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"960":{"_Position":{"__isSmartRef__":true,"id":961},"renderContextTable":{"__isSmartRef__":true,"id":962},"_Extent":{"__isSmartRef__":true,"id":963},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"961":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"962":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"963":{"x":441,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"964":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"965":{"style":{"__isSmartRef__":true,"id":966},"chunkOwner":{"__isSmartRef__":true,"id":959},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Inspector for ","__LivelyClassName__":"lively.morphic.TextChunk"},"966":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"967":{"morph":{"__isSmartRef__":true,"id":959},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"968":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"969":{"resizeWidth":true},"970":{"x":441,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"971":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"972":{"submorphs":[{"__isSmartRef__":true,"id":973}],"scripts":[],"shape":{"__isSmartRef__":true,"id":985},"id":1527,"renderContextTable":{"__isSmartRef__":true,"id":999},"eventHandler":{"__isSmartRef__":true,"id":1000},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1001},"priorExtent":{"__isSmartRef__":true,"id":1002},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":990},"lighterFill":{"__isSmartRef__":true,"id":1003},"label":{"__isSmartRef__":true,"id":973},"owner":{"__isSmartRef__":true,"id":958},"layout":{"__isSmartRef__":true,"id":1012},"attributeConnections":[{"__isSmartRef__":true,"id":1013},{"__isSmartRef__":true,"id":1015}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"973":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":974},"id":1528,"renderContextTable":{"__isSmartRef__":true,"id":978},"textChunks":[{"__isSmartRef__":true,"id":979}],"eventHandler":{"__isSmartRef__":true,"id":981},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":982},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":983},"priorExtent":{"__isSmartRef__":true,"id":984},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":972},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"974":{"_Position":{"__isSmartRef__":true,"id":975},"renderContextTable":{"__isSmartRef__":true,"id":976},"_Extent":{"__isSmartRef__":true,"id":977},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"975":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"976":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"977":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"978":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"979":{"style":{"__isSmartRef__":true,"id":980},"chunkOwner":{"__isSmartRef__":true,"id":973},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"980":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"981":{"morph":{"__isSmartRef__":true,"id":973},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"982":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"983":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"984":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"985":{"_Position":{"__isSmartRef__":true,"id":986},"renderContextTable":{"__isSmartRef__":true,"id":987},"_Extent":{"__isSmartRef__":true,"id":988},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":989},"_Fill":{"__isSmartRef__":true,"id":990},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"986":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"987":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"988":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"989":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"990":{"stops":[{"__isSmartRef__":true,"id":991},{"__isSmartRef__":true,"id":993},{"__isSmartRef__":true,"id":995},{"__isSmartRef__":true,"id":997}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"991":{"offset":0,"color":{"__isSmartRef__":true,"id":992}},"992":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"993":{"offset":0.4,"color":{"__isSmartRef__":true,"id":994}},"994":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"995":{"offset":0.6,"color":{"__isSmartRef__":true,"id":996}},"996":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"997":{"offset":1,"color":{"__isSmartRef__":true,"id":998}},"998":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"999":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1000":{"morph":{"__isSmartRef__":true,"id":972},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1001":{"x":480,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1002":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1003":{"stops":[{"__isSmartRef__":true,"id":1004},{"__isSmartRef__":true,"id":1006},{"__isSmartRef__":true,"id":1008},{"__isSmartRef__":true,"id":1010}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1004":{"offset":0,"color":{"__isSmartRef__":true,"id":1005}},"1005":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1006":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1007}},"1007":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1008":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1009}},"1009":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1010":{"offset":1,"color":{"__isSmartRef__":true,"id":1011}},"1011":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1012":{"moveHorizontal":true},"1013":{"sourceObj":{"__isSmartRef__":true,"id":972},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":911},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1014},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1014":{"source":{"__isSmartRef__":true,"id":972},"target":{"__isSmartRef__":true,"id":911}},"1015":{"sourceObj":{"__isSmartRef__":true,"id":972},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":911},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1016},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1016":{"source":{"__isSmartRef__":true,"id":972},"target":{"__isSmartRef__":true,"id":911}},"1017":{"submorphs":[{"__isSmartRef__":true,"id":1018}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1029},"id":1529,"renderContextTable":{"__isSmartRef__":true,"id":1033},"eventHandler":{"__isSmartRef__":true,"id":1034},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1035},"priorExtent":{"__isSmartRef__":true,"id":1036},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":990},"lighterFill":{"__isSmartRef__":true,"id":1037},"label":{"__isSmartRef__":true,"id":1018},"owner":{"__isSmartRef__":true,"id":958},"attributeConnections":[{"__isSmartRef__":true,"id":1046},{"__isSmartRef__":true,"id":1048}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1018":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1019},"id":1530,"renderContextTable":{"__isSmartRef__":true,"id":1023},"textChunks":[{"__isSmartRef__":true,"id":1024}],"eventHandler":{"__isSmartRef__":true,"id":1026},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":982},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1027},"priorExtent":{"__isSmartRef__":true,"id":1028},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1017},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"1019":{"_Position":{"__isSmartRef__":true,"id":1020},"renderContextTable":{"__isSmartRef__":true,"id":1021},"_Extent":{"__isSmartRef__":true,"id":1022},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1020":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1021":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1022":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1023":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1024":{"style":{"__isSmartRef__":true,"id":1025},"chunkOwner":{"__isSmartRef__":true,"id":1018},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"1025":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1026":{"morph":{"__isSmartRef__":true,"id":1018},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1027":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1028":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1029":{"_Position":{"__isSmartRef__":true,"id":1030},"renderContextTable":{"__isSmartRef__":true,"id":1031},"_Extent":{"__isSmartRef__":true,"id":1032},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":989},"_Fill":{"__isSmartRef__":true,"id":990},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1030":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1031":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1032":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1033":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1034":{"morph":{"__isSmartRef__":true,"id":1017},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1035":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1036":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1037":{"stops":[{"__isSmartRef__":true,"id":1038},{"__isSmartRef__":true,"id":1040},{"__isSmartRef__":true,"id":1042},{"__isSmartRef__":true,"id":1044}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1038":{"offset":0,"color":{"__isSmartRef__":true,"id":1039}},"1039":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1040":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1041}},"1041":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1042":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1043}},"1043":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1044":{"offset":1,"color":{"__isSmartRef__":true,"id":1045}},"1045":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1046":{"sourceObj":{"__isSmartRef__":true,"id":1017},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":911},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1047},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1047":{"source":{"__isSmartRef__":true,"id":1017},"target":{"__isSmartRef__":true,"id":911}},"1048":{"sourceObj":{"__isSmartRef__":true,"id":1017},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":911},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1049},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1049":{"source":{"__isSmartRef__":true,"id":1017},"target":{"__isSmartRef__":true,"id":911}},"1050":{"submorphs":[{"__isSmartRef__":true,"id":1051}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1062},"id":1531,"renderContextTable":{"__isSmartRef__":true,"id":1066},"eventHandler":{"__isSmartRef__":true,"id":1067},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1068},"priorExtent":{"__isSmartRef__":true,"id":1069},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":990},"lighterFill":{"__isSmartRef__":true,"id":1070},"label":{"__isSmartRef__":true,"id":1051},"owner":{"__isSmartRef__":true,"id":958},"layout":{"__isSmartRef__":true,"id":1079},"attributeConnections":[{"__isSmartRef__":true,"id":1080},{"__isSmartRef__":true,"id":1082}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"1051":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1052},"id":1532,"renderContextTable":{"__isSmartRef__":true,"id":1056},"textChunks":[{"__isSmartRef__":true,"id":1057}],"eventHandler":{"__isSmartRef__":true,"id":1059},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":982},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1060},"priorExtent":{"__isSmartRef__":true,"id":1061},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1050},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"1052":{"_Position":{"__isSmartRef__":true,"id":1053},"renderContextTable":{"__isSmartRef__":true,"id":1054},"_Extent":{"__isSmartRef__":true,"id":1055},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1053":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1054":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1055":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1056":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1057":{"style":{"__isSmartRef__":true,"id":1058},"chunkOwner":{"__isSmartRef__":true,"id":1051},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"1058":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1059":{"morph":{"__isSmartRef__":true,"id":1051},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1060":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1061":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1062":{"_Position":{"__isSmartRef__":true,"id":1063},"renderContextTable":{"__isSmartRef__":true,"id":1064},"_Extent":{"__isSmartRef__":true,"id":1065},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":989},"_Fill":{"__isSmartRef__":true,"id":990},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1063":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1064":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1065":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1066":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1067":{"morph":{"__isSmartRef__":true,"id":1050},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1068":{"x":461,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1069":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1070":{"stops":[{"__isSmartRef__":true,"id":1071},{"__isSmartRef__":true,"id":1073},{"__isSmartRef__":true,"id":1075},{"__isSmartRef__":true,"id":1077}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1071":{"offset":0,"color":{"__isSmartRef__":true,"id":1072}},"1072":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1073":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1074}},"1074":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1075":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1076}},"1076":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1077":{"offset":1,"color":{"__isSmartRef__":true,"id":1078}},"1078":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1079":{"moveHorizontal":true},"1080":{"sourceObj":{"__isSmartRef__":true,"id":1050},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":911},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1081},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1081":{"source":{"__isSmartRef__":true,"id":1050},"target":{"__isSmartRef__":true,"id":911}},"1082":{"sourceObj":{"__isSmartRef__":true,"id":1050},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":911},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1083},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1083":{"source":{"__isSmartRef__":true,"id":1050},"target":{"__isSmartRef__":true,"id":911}},"1084":{"_Position":{"__isSmartRef__":true,"id":1085},"renderContextTable":{"__isSmartRef__":true,"id":1086},"_Extent":{"__isSmartRef__":true,"id":1087},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1088},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1085":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1086":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1087":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1088":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1089":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1090":{"morph":{"__isSmartRef__":true,"id":958},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1091":{"resizeWidth":true,"adjustForNewBounds":true},"1092":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1093":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1094":{"renderContextTable":{"__isSmartRef__":true,"id":1095},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":1096},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1095":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1096":{"x":500,"y":222,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1097":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1098":{"morph":{"__isSmartRef__":true,"id":911},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1099":{"adjustForNewBounds":true},"1100":{"x":893,"y":121,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1101":{"x":500,"y":222,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1102":{"submorphs":[{"__isSmartRef__":true,"id":1103},{"__isSmartRef__":true,"id":3125},{"__isSmartRef__":true,"id":3257}],"scripts":[],"id":399,"shape":{"__isSmartRef__":true,"id":3291},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":3294},"_Position":{"__isSmartRef__":true,"id":3295},"priorExtent":{"__isSmartRef__":true,"id":3296},"targetMorph":{"__isSmartRef__":true,"id":1103},"titleBar":{"__isSmartRef__":true,"id":3125},"contentOffset":{"__isSmartRef__":true,"id":3091},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"highlighted":true,"_Rotation":0,"_Scale":1,"prevDragPos":{"__isSmartRef__":true,"id":3297},"showsHalos":false,"name":"MethodFinder","partsBinMetaInfo":{"__isSmartRef__":true,"id":3298},"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":3299},"eventHandler":{"__isSmartRef__":true,"id":3300},"owner":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.Window"},"1103":{"submorphs":[{"__isSmartRef__":true,"id":1104},{"__isSmartRef__":true,"id":1118},{"__isSmartRef__":true,"id":1163},{"__isSmartRef__":true,"id":2757},{"__isSmartRef__":true,"id":3026},{"__isSmartRef__":true,"id":3040}],"scripts":[],"id":400,"shape":{"__isSmartRef__":true,"id":3085},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3091},"showsHalos":false,"name":"MethodFinderPane","partsBinMetaInfo":{"__isSmartRef__":true,"id":3092},"__SourceModuleName__":"Global.lively.morphic.Core","_Rotation":0,"_Scale":1,"owner":{"__isSmartRef__":true,"id":1102},"isCopyMorphRef":true,"morphRefId":1,"layout":{"__isSmartRef__":true,"id":3093},"priorExtent":{"__isSmartRef__":true,"id":3094},"targetObject":{"__isSmartRef__":true,"id":1181},"renderContextTable":{"__isSmartRef__":true,"id":3095},"eventHandler":{"__isSmartRef__":true,"id":3096},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3097},"__LivelyClassName__":"lively.morphic.Box"},"1104":{"submorphs":[],"scripts":[],"id":401,"shape":{"__isSmartRef__":true,"id":1105},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1110},"_MaxTextWidth":292,"_MaxTextHeight":25,"textColor":{"__isSmartRef__":true,"id":1108},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"name":"searchText","partsBinMetaInfo":{"__isSmartRef__":true,"id":1111},"owner":{"__isSmartRef__":true,"id":1103},"charsReplaced":"enter method name her","lastFindLoc":-21,"attributeConnections":[{"__isSmartRef__":true,"id":1112}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"isInputLine":true,"_WhiteSpaceHandling":"pre-wrap","allowInput":true,"textChunks":[{"__isSmartRef__":true,"id":1113}],"priorSelectionRange":[6,6],"prevScroll":[0,0],"_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1115},"lastSearchString":"prev","renderContextTable":{"__isSmartRef__":true,"id":1116},"eventHandler":{"__isSmartRef__":true,"id":1117},"savedTextString":"morphMenuItems","__LivelyClassName__":"lively.morphic.Text"},"1105":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1106},"_Extent":{"__isSmartRef__":true,"id":1107},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1108},"renderContextTable":{"__isSmartRef__":true,"id":1109},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1106":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1107":{"x":292,"y":25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1108":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1109":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1110":{"x":17,"y":24,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1111":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1112":{"sourceObj":{"__isSmartRef__":true,"id":1104},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1103},"targetMethodName":"search","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1113":{"style":{"__isSmartRef__":true,"id":1114},"chunkOwner":{"__isSmartRef__":true,"id":1104},"storedString":"adjustForNewBounds","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1114":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1115":{"x":292,"y":25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1116":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1117":{"morph":{"__isSmartRef__":true,"id":1104},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1118":{"submorphs":[{"__isSmartRef__":true,"id":1119}],"scripts":[],"id":402,"shape":{"__isSmartRef__":true,"id":1133},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1148},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1137},"lighterFill":{"__isSmartRef__":true,"id":1149},"label":{"__isSmartRef__":true,"id":1119},"showsHalos":false,"name":"searchButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1158},"__SourceModuleName__":"Global.lively.morphic.Widgets","owner":{"__isSmartRef__":true,"id":1103},"_Rotation":0,"attributeConnections":[{"__isSmartRef__":true,"id":1159}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":1160},"renderContextTable":{"__isSmartRef__":true,"id":1161},"eventHandler":{"__isSmartRef__":true,"id":1162},"__LivelyClassName__":"lively.morphic.Button"},"1119":{"submorphs":[],"scripts":[],"id":403,"shape":{"__isSmartRef__":true,"id":1120},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1125},"_MaxTextWidth":77,"_MaxTextHeight":20,"padding":{"__isSmartRef__":true,"id":1126},"_Padding":{"__isSmartRef__":true,"id":1127},"owner":{"__isSmartRef__":true,"id":1118},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textStyle":null,"textChunks":[{"__isSmartRef__":true,"id":1128}],"prevScroll":[0,0],"_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1130},"_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1131},"eventHandler":{"__isSmartRef__":true,"id":1132},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"1120":{"position":{"__isSmartRef__":true,"id":1121},"_Extent":{"__isSmartRef__":true,"id":1122},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1123},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1124},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1121":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1122":{"x":77,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1123":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1124":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1125":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1126":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1127":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1128":{"style":{"__isSmartRef__":true,"id":1129},"morph":{"__isSmartRef__":true,"id":1119},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1119},"storedString":"search","__LivelyClassName__":"lively.morphic.TextChunk"},"1129":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1130":{"x":77,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1131":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1132":{"morph":{"__isSmartRef__":true,"id":1119},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1133":{"position":{"__isSmartRef__":true,"id":1134},"_Extent":{"__isSmartRef__":true,"id":1135},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1136},"_Fill":{"__isSmartRef__":true,"id":1137},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1147},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1134":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1135":{"x":77,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1136":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1137":{"stops":[{"__isSmartRef__":true,"id":1138},{"__isSmartRef__":true,"id":1140},{"__isSmartRef__":true,"id":1142},{"__isSmartRef__":true,"id":1144}],"vector":{"__isSmartRef__":true,"id":1146},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1138":{"offset":0,"color":{"__isSmartRef__":true,"id":1139}},"1139":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1140":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1141}},"1141":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1142":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1143}},"1143":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1144":{"offset":1,"color":{"__isSmartRef__":true,"id":1145}},"1145":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1146":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1147":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1148":{"x":315,"y":26,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1149":{"stops":[{"__isSmartRef__":true,"id":1150},{"__isSmartRef__":true,"id":1152},{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1156}],"vector":{"__isSmartRef__":true,"id":1146},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1150":{"offset":0,"color":{"__isSmartRef__":true,"id":1151}},"1151":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1152":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1153}},"1153":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1154":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1155}},"1155":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1156":{"offset":1,"color":{"__isSmartRef__":true,"id":1157}},"1157":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1158":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1159":{"sourceObj":{"__isSmartRef__":true,"id":1118},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1104},"targetMethodName":"doSave","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1160":{"x":77,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1161":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1162":{"morph":{"__isSmartRef__":true,"id":1118},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1163":{"submorphs":[],"scripts":[],"id":404,"shape":{"__isSmartRef__":true,"id":1164},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1170},"itemList":[{"__isSmartRef__":true,"id":1171},{"__isSmartRef__":true,"id":1175},{"__isSmartRef__":true,"id":1179},{"__isSmartRef__":true,"id":1197},{"__isSmartRef__":true,"id":1199},{"__isSmartRef__":true,"id":1201},{"__isSmartRef__":true,"id":1214},{"__isSmartRef__":true,"id":1216},{"__isSmartRef__":true,"id":1218},{"__isSmartRef__":true,"id":1222},{"__isSmartRef__":true,"id":1228},{"__isSmartRef__":true,"id":1230},{"__isSmartRef__":true,"id":1232},{"__isSmartRef__":true,"id":1234},{"__isSmartRef__":true,"id":2745},{"__isSmartRef__":true,"id":2747},{"__isSmartRef__":true,"id":2749}],"showsHalos":false,"name":"searchResultList","partsBinMetaInfo":{"__isSmartRef__":true,"id":2751},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":1103},"_Rotation":0,"attributeConnections":[{"__isSmartRef__":true,"id":2752}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"prevScroll":[0,128],"resizeHeight":true,"resizeWidth":true,"layout":{"__isSmartRef__":true,"id":2753},"priorExtent":{"__isSmartRef__":true,"id":2754},"renderContextTable":{"__isSmartRef__":true,"id":2755},"eventHandler":{"__isSmartRef__":true,"id":2756},"selection":{"__isSmartRef__":true,"id":1231},"selectedLineNo":11,"__LivelyClassName__":"lively.morphic.List"},"1164":{"position":{"__isSmartRef__":true,"id":1165},"_Extent":{"__isSmartRef__":true,"id":1166},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1167},"_Fill":{"__isSmartRef__":true,"id":1168},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1169},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1165":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1166":{"x":875.3800299912526,"y":145.98799096394293,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1167":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1168":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1169":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1170":{"x":8,"y":60,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1171":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1172},"string":"class full: AbstractDialog: buildPanel"},"1172":{"object":{"__isSmartRef__":true,"id":1173},"method":"buildPanel","string":"AbstractDialog: buildPanel","type":"class","search":"sender"},"1173":{"connections":["result"],"initialViewExtent":{"__isSmartRef__":true,"id":1174},"inset":4,"__LivelyClassName__":"lively.morphic.AbstractDialog","__SourceModuleName__":"Global.lively.morphic.Widgets"},"1174":{"x":300,"y":90,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1175":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1176},"string":"class full: FileVersionViewer: buildView"},"1176":{"object":{"__isSmartRef__":true,"id":1177},"method":"buildView","string":"FileVersionViewer: buildView","type":"class","search":"sender"},"1177":{"viewTitle":"Version Viewer","initialViewExtent":{"__isSmartRef__":true,"id":1178},"__LivelyClassName__":"lively.ide.FileVersionViewer","__SourceModuleName__":"Global.lively.ide.VersionTools"},"1178":{"x":450,"y":250,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1179":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1180},"string":"class full: Morph: applyStyle"},"1180":{"object":{"__isSmartRef__":true,"id":1181},"method":"applyStyle","string":"Morph: applyStyle","type":"class","search":"sender"},"1181":{"style":{"__isSmartRef__":true,"id":1182},"isMorph":true,"idCounter":3763,"canvasDispatchTable":{"__isSmartRef__":true,"id":1183},"svgDispatchTable":{"__isSmartRef__":true,"id":1184},"htmlDispatchTable":{"__isSmartRef__":true,"id":1185},"dragTriggerDistance":5,"doNotSerialize":["_renderContext","halos"],"_layer_object_id":0,"connections":{"__isSmartRef__":true,"id":1186},"lookupLayersIn":["owner"],"__LivelyClassName__":"lively.morphic.Morph","__SourceModuleName__":"Global.lively.morphic.Core"},"1182":{"enableDropping":true,"enableHalos":true},"1183":{"init":"initCANVAS","append":"appendCANVAS","remove":"removeCANVAS","setPosition":"attributeChangedCANVAS"},"1184":{"replaceRenderContext":"replaceRenderContextSVG","init":"initSVG","append":"appendSVG","remove":"removeSVG","setPosition":"setPositionSVG","setRotation":"setRotationSVG","setPointerEvents":"setPointerEventsSVG","setHandStyle":"setHandStyleSVG"},"1185":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1186":{"name":{"__isSmartRef__":true,"id":1187},"position":{"__isSmartRef__":true,"id":1188},"rotation":{"__isSmartRef__":true,"id":1189},"scale":{"__isSmartRef__":true,"id":1190},"setScale":{"__isSmartRef__":true,"id":1191},"borderWidth":{"__isSmartRef__":true,"id":1192},"borderColor":{"__isSmartRef__":true,"id":1193},"fill":{"__isSmartRef__":true,"id":1194},"extent":{"__isSmartRef__":true,"id":1195},"globalTransform":{"__isSmartRef__":true,"id":1196}},"1187":{},"1188":{"map":"_Position"},"1189":{"map":"_Rotation"},"1190":{"map":"_Scale"},"1191":{},"1192":{"map":"shape._BorderWidth"},"1193":{"map":"shape._BorderColor"},"1194":{"map":"shape._Fill"},"1195":{"map":"shape._Extent"},"1196":{"connectionClassType":"lively.morphic.GeometryTransformConnection"},"1197":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1198},"string":"class full: Morph: setExtent"},"1198":{"object":{"__isSmartRef__":true,"id":1181},"method":"setExtent","string":"Morph: setExtent","type":"class","search":"sender"},"1199":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1200},"string":"class full: Morph: setLayouter"},"1200":{"object":{"__isSmartRef__":true,"id":1181},"method":"setLayouter","string":"Morph: setLayouter","type":"class","search":"sender"},"1201":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1202},"string":"class full: Slider: onSliderExtentUpdate"},"1202":{"object":{"__isSmartRef__":true,"id":1203},"method":"onSliderExtentUpdate","string":"Slider: onSliderExtentUpdate","type":"class","search":"sender"},"1203":{"style":{"__isSmartRef__":true,"id":1204},"connections":{"__isSmartRef__":true,"id":1212},"mss":12,"__LivelyClassName__":"lively.morphic.Slider","__SourceModuleName__":"Global.lively.morphic.Widgets"},"1204":{"borderColor":{"__isSmartRef__":true,"id":1205},"borderWidth":1,"borderRadius":6,"fill":{"__isSmartRef__":true,"id":1206}},"1205":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1206":{"stops":[{"__isSmartRef__":true,"id":1207},{"__isSmartRef__":true,"id":1208},{"__isSmartRef__":true,"id":1210}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1207":{"offset":0,"color":{"__isSmartRef__":true,"id":231}},"1208":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1209}},"1209":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1210":{"offset":1,"color":{"__isSmartRef__":true,"id":1211}},"1211":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1212":{"value":{"__isSmartRef__":true,"id":1213}},"1213":{},"1214":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1215},"string":"class full: Slider: onValueUpdate"},"1215":{"object":{"__isSmartRef__":true,"id":1203},"method":"onValueUpdate","string":"Slider: onValueUpdate","type":"class","search":"sender"},"1216":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1217},"string":"class full: Slider: sliderMoved"},"1217":{"object":{"__isSmartRef__":true,"id":1203},"method":"sliderMoved","string":"Slider: sliderMoved","type":"class","search":"sender"},"1218":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1219},"string":"class full: TextEditor: buildView"},"1219":{"object":{"__isSmartRef__":true,"id":1220},"method":"buildView","string":"TextEditor: buildView","type":"class","search":"sender"},"1220":{"defaultTitle":"TextEditor","initialViewExtent":{"__isSmartRef__":true,"id":1221},"__LivelyClassName__":"lively.morphic.TextEditor","__SourceModuleName__":"Global.lively.morphic.Widgets"},"1221":{"x":900,"y":800,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1222":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1223},"string":"class full: TitleBar: initialize"},"1223":{"object":{"__isSmartRef__":true,"id":1224},"method":"initialize","string":"TitleBar: initialize","type":"class","search":"sender"},"1224":{"documentation":"Title bar for lively.morphic.Window","controlSpacing":3,"barHeight":22,"shortBarHeight":15,"accessibleInInactiveWindow":true,"style":{"__isSmartRef__":true,"id":1225},"labelStyle":{"__isSmartRef__":true,"id":1226},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets"},"1225":{"fill":{"__isSmartRef__":true,"id":227},"strokeOpacity":1,"borderRadius":"8px 8px 0px 0px","borderWidth":1,"borderColor":{"__isSmartRef__":true,"id":1205},"adjustForNewBounds":true,"resizeWidth":true},"1226":{"borderRadius":0,"padding":{"__isSmartRef__":true,"id":1227},"fill":null,"fontSize":10,"align":"center","clipMode":"hidden","fixedWidth":true,"fixedHeight":true,"resizeWidth":true},"1227":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"1228":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1229},"string":"class full: TitleBar: setTitle"},"1229":{"object":{"__isSmartRef__":true,"id":1224},"method":"setTitle","string":"TitleBar: setTitle","type":"class","search":"sender"},"1230":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1231},"string":"class name: Morph: adjustForNewBounds"},"1231":{"object":{"__isSmartRef__":true,"id":1181},"method":"adjustForNewBounds","string":"Morph: adjustForNewBounds","type":"class","search":"implementor"},"1232":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1233},"string":"class name: TitleBar: adjustForNewBounds"},"1233":{"object":{"__isSmartRef__":true,"id":1224},"method":"adjustForNewBounds","string":"TitleBar: adjustForNewBounds","type":"class","search":"implementor"},"1234":{"isListItem":true,"value":{"__isSmartRef__":true,"id":1235},"string":"script full: PartsBinBrowser(1675): addMorphsForPartItems"},"1235":{"object":{"__isSmartRef__":true,"id":1236},"method":"addMorphsForPartItems","string":"PartsBinBrowser(1675): addMorphsForPartItems","type":"script","search":"sender"},"1236":{"submorphs":[{"__isSmartRef__":true,"id":1237},{"__isSmartRef__":true,"id":1461},{"__isSmartRef__":true,"id":1475},{"__isSmartRef__":true,"id":1521},{"__isSmartRef__":true,"id":1601},{"__isSmartRef__":true,"id":1651},{"__isSmartRef__":true,"id":1701},{"__isSmartRef__":true,"id":1717},{"__isSmartRef__":true,"id":1730}],"scripts":[],"id":1675,"shape":{"__isSmartRef__":true,"id":2000},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"PartsBinBrowser","partsBinMetaInfo":{"__isSmartRef__":true,"id":2005},"__SourceModuleName__":"Global.lively.morphic.Core","attributeConnections":[{"__isSmartRef__":true,"id":2006},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1966},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970}],"doNotSerialize":["$$categoryName","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$categoryName","$$_Position","$$_Scale","$$_Rotation","$$owner"],"selectedPartItem":{"__isSmartRef__":true,"id":1560},"layout":{"__isSmartRef__":true,"id":2007},"priorExtent":{"__isSmartRef__":true,"id":2008},"renderContextTable":{"__isSmartRef__":true,"id":2009},"eventHandler":{"__isSmartRef__":true,"id":2010},"connections":{"__isSmartRef__":true,"id":2011},"magnets":[{"__isSmartRef__":true,"id":1786}],"categories":{"__isSmartRef__":true,"id":2013},"allURLs":[{"__isSmartRef__":true,"id":2044},{"__isSmartRef__":true,"id":2045},{"__isSmartRef__":true,"id":2046},{"__isSmartRef__":true,"id":2047},{"__isSmartRef__":true,"id":2048},{"__isSmartRef__":true,"id":2049},{"__isSmartRef__":true,"id":2050},{"__isSmartRef__":true,"id":2051},{"__isSmartRef__":true,"id":2052},{"__isSmartRef__":true,"id":2053},{"__isSmartRef__":true,"id":2054},{"__isSmartRef__":true,"id":2055},{"__isSmartRef__":true,"id":2056},{"__isSmartRef__":true,"id":2057},{"__isSmartRef__":true,"id":2058},{"__isSmartRef__":true,"id":2059},{"__isSmartRef__":true,"id":2060},{"__isSmartRef__":true,"id":2061},{"__isSmartRef__":true,"id":2062},{"__isSmartRef__":true,"id":2063},{"__isSmartRef__":true,"id":2064},{"__isSmartRef__":true,"id":2065},{"__isSmartRef__":true,"id":2066},{"__isSmartRef__":true,"id":2067},{"__isSmartRef__":true,"id":2068},{"__isSmartRef__":true,"id":2069},{"__isSmartRef__":true,"id":2070},{"__isSmartRef__":true,"id":2071},{"__isSmartRef__":true,"id":2072},{"__isSmartRef__":true,"id":2073},{"__isSmartRef__":true,"id":2074},{"__isSmartRef__":true,"id":2075},{"__isSmartRef__":true,"id":2076},{"__isSmartRef__":true,"id":2077},{"__isSmartRef__":true,"id":2078},{"__isSmartRef__":true,"id":2079},{"__isSmartRef__":true,"id":2080},{"__isSmartRef__":true,"id":2081},{"__isSmartRef__":true,"id":2082},{"__isSmartRef__":true,"id":2083},{"__isSmartRef__":true,"id":2084},{"__isSmartRef__":true,"id":2085},{"__isSmartRef__":true,"id":2086},{"__isSmartRef__":true,"id":2087},{"__isSmartRef__":true,"id":2088},{"__isSmartRef__":true,"id":2089},{"__isSmartRef__":true,"id":2090},{"__isSmartRef__":true,"id":2091},{"__isSmartRef__":true,"id":2092},{"__isSmartRef__":true,"id":2093},{"__isSmartRef__":true,"id":2094},{"__isSmartRef__":true,"id":2095},{"__isSmartRef__":true,"id":2096},{"__isSmartRef__":true,"id":2097},{"__isSmartRef__":true,"id":2098},{"__isSmartRef__":true,"id":2099},{"__isSmartRef__":true,"id":2100},{"__isSmartRef__":true,"id":2101},{"__isSmartRef__":true,"id":2102},{"__isSmartRef__":true,"id":2103},{"__isSmartRef__":true,"id":2104},{"__isSmartRef__":true,"id":2105},{"__isSmartRef__":true,"id":2106},{"__isSmartRef__":true,"id":2107},{"__isSmartRef__":true,"id":2108},{"__isSmartRef__":true,"id":2109},{"__isSmartRef__":true,"id":2110},{"__isSmartRef__":true,"id":2111},{"__isSmartRef__":true,"id":2112},{"__isSmartRef__":true,"id":2113},{"__isSmartRef__":true,"id":2114},{"__isSmartRef__":true,"id":2115},{"__isSmartRef__":true,"id":2116},{"__isSmartRef__":true,"id":2117},{"__isSmartRef__":true,"id":2118},{"__isSmartRef__":true,"id":2119},{"__isSmartRef__":true,"id":2120},{"__isSmartRef__":true,"id":2121},{"__isSmartRef__":true,"id":2122},{"__isSmartRef__":true,"id":2123},{"__isSmartRef__":true,"id":2124},{"__isSmartRef__":true,"id":2125},{"__isSmartRef__":true,"id":2126},{"__isSmartRef__":true,"id":2127},{"__isSmartRef__":true,"id":2128},{"__isSmartRef__":true,"id":2129},{"__isSmartRef__":true,"id":2130},{"__isSmartRef__":true,"id":2131},{"__isSmartRef__":true,"id":2132},{"__isSmartRef__":true,"id":2133},{"__isSmartRef__":true,"id":2134},{"__isSmartRef__":true,"id":2135},{"__isSmartRef__":true,"id":2136},{"__isSmartRef__":true,"id":2137},{"__isSmartRef__":true,"id":2138},{"__isSmartRef__":true,"id":2139},{"__isSmartRef__":true,"id":2140},{"__isSmartRef__":true,"id":2141},{"__isSmartRef__":true,"id":2142},{"__isSmartRef__":true,"id":2143},{"__isSmartRef__":true,"id":2144},{"__isSmartRef__":true,"id":2145},{"__isSmartRef__":true,"id":2146},{"__isSmartRef__":true,"id":2147},{"__isSmartRef__":true,"id":2148},{"__isSmartRef__":true,"id":2149},{"__isSmartRef__":true,"id":2150},{"__isSmartRef__":true,"id":2151},{"__isSmartRef__":true,"id":2152},{"__isSmartRef__":true,"id":2153},{"__isSmartRef__":true,"id":2154},{"__isSmartRef__":true,"id":2155},{"__isSmartRef__":true,"id":2156},{"__isSmartRef__":true,"id":2157},{"__isSmartRef__":true,"id":2158},{"__isSmartRef__":true,"id":2159},{"__isSmartRef__":true,"id":2160},{"__isSmartRef__":true,"id":2161},{"__isSmartRef__":true,"id":2162},{"__isSmartRef__":true,"id":2163},{"__isSmartRef__":true,"id":2164},{"__isSmartRef__":true,"id":2165},{"__isSmartRef__":true,"id":2166},{"__isSmartRef__":true,"id":2167},{"__isSmartRef__":true,"id":2168},{"__isSmartRef__":true,"id":2169},{"__isSmartRef__":true,"id":2170},{"__isSmartRef__":true,"id":2171},{"__isSmartRef__":true,"id":2172},{"__isSmartRef__":true,"id":2173},{"__isSmartRef__":true,"id":2174},{"__isSmartRef__":true,"id":2175},{"__isSmartRef__":true,"id":2176},{"__isSmartRef__":true,"id":2177},{"__isSmartRef__":true,"id":2178},{"__isSmartRef__":true,"id":2179},{"__isSmartRef__":true,"id":2180},{"__isSmartRef__":true,"id":2181},{"__isSmartRef__":true,"id":2182},{"__isSmartRef__":true,"id":2183},{"__isSmartRef__":true,"id":2184},{"__isSmartRef__":true,"id":2185},{"__isSmartRef__":true,"id":2186},{"__isSmartRef__":true,"id":2187},{"__isSmartRef__":true,"id":2188},{"__isSmartRef__":true,"id":2189},{"__isSmartRef__":true,"id":2190},{"__isSmartRef__":true,"id":2191},{"__isSmartRef__":true,"id":2192},{"__isSmartRef__":true,"id":2193},{"__isSmartRef__":true,"id":2194},{"__isSmartRef__":true,"id":2195},{"__isSmartRef__":true,"id":2196},{"__isSmartRef__":true,"id":2197},{"__isSmartRef__":true,"id":2198},{"__isSmartRef__":true,"id":2199},{"__isSmartRef__":true,"id":2200},{"__isSmartRef__":true,"id":2201},{"__isSmartRef__":true,"id":2202},{"__isSmartRef__":true,"id":2203},{"__isSmartRef__":true,"id":2204},{"__isSmartRef__":true,"id":2205},{"__isSmartRef__":true,"id":2206},{"__isSmartRef__":true,"id":2207},{"__isSmartRef__":true,"id":2208},{"__isSmartRef__":true,"id":2209},{"__isSmartRef__":true,"id":2210},{"__isSmartRef__":true,"id":2211},{"__isSmartRef__":true,"id":2212},{"__isSmartRef__":true,"id":2213},{"__isSmartRef__":true,"id":2214},{"__isSmartRef__":true,"id":2215},{"__isSmartRef__":true,"id":2216},{"__isSmartRef__":true,"id":2217},{"__isSmartRef__":true,"id":2218},{"__isSmartRef__":true,"id":2219},{"__isSmartRef__":true,"id":2220},{"__isSmartRef__":true,"id":2221},{"__isSmartRef__":true,"id":2222},{"__isSmartRef__":true,"id":2223},{"__isSmartRef__":true,"id":2224},{"__isSmartRef__":true,"id":2225},{"__isSmartRef__":true,"id":2226},{"__isSmartRef__":true,"id":2227},{"__isSmartRef__":true,"id":2228},{"__isSmartRef__":true,"id":2229},{"__isSmartRef__":true,"id":2230},{"__isSmartRef__":true,"id":2231},{"__isSmartRef__":true,"id":2232},{"__isSmartRef__":true,"id":2233},{"__isSmartRef__":true,"id":2234},{"__isSmartRef__":true,"id":2235},{"__isSmartRef__":true,"id":2236},{"__isSmartRef__":true,"id":2237},{"__isSmartRef__":true,"id":2238},{"__isSmartRef__":true,"id":2239},{"__isSmartRef__":true,"id":2240},{"__isSmartRef__":true,"id":2241},{"__isSmartRef__":true,"id":2242},{"__isSmartRef__":true,"id":2243},{"__isSmartRef__":true,"id":2244},{"__isSmartRef__":true,"id":2245},{"__isSmartRef__":true,"id":2246},{"__isSmartRef__":true,"id":2247},{"__isSmartRef__":true,"id":2248},{"__isSmartRef__":true,"id":2249},{"__isSmartRef__":true,"id":2250},{"__isSmartRef__":true,"id":2251},{"__isSmartRef__":true,"id":2252},{"__isSmartRef__":true,"id":2253},{"__isSmartRef__":true,"id":2254},{"__isSmartRef__":true,"id":2255},{"__isSmartRef__":true,"id":2256},{"__isSmartRef__":true,"id":2257},{"__isSmartRef__":true,"id":2258},{"__isSmartRef__":true,"id":2259},{"__isSmartRef__":true,"id":2260},{"__isSmartRef__":true,"id":2261},{"__isSmartRef__":true,"id":2262},{"__isSmartRef__":true,"id":2263},{"__isSmartRef__":true,"id":2264},{"__isSmartRef__":true,"id":2265},{"__isSmartRef__":true,"id":2266},{"__isSmartRef__":true,"id":2267},{"__isSmartRef__":true,"id":2268},{"__isSmartRef__":true,"id":2269},{"__isSmartRef__":true,"id":2270},{"__isSmartRef__":true,"id":2271},{"__isSmartRef__":true,"id":2272},{"__isSmartRef__":true,"id":2273},{"__isSmartRef__":true,"id":2274},{"__isSmartRef__":true,"id":2275},{"__isSmartRef__":true,"id":2276},{"__isSmartRef__":true,"id":2277},{"__isSmartRef__":true,"id":2278},{"__isSmartRef__":true,"id":2279},{"__isSmartRef__":true,"id":2280},{"__isSmartRef__":true,"id":2281},{"__isSmartRef__":true,"id":2282},{"__isSmartRef__":true,"id":2283},{"__isSmartRef__":true,"id":2284},{"__isSmartRef__":true,"id":2285},{"__isSmartRef__":true,"id":2286},{"__isSmartRef__":true,"id":2287},{"__isSmartRef__":true,"id":2288},{"__isSmartRef__":true,"id":2289},{"__isSmartRef__":true,"id":2290},{"__isSmartRef__":true,"id":2291},{"__isSmartRef__":true,"id":2292},{"__isSmartRef__":true,"id":2293},{"__isSmartRef__":true,"id":2294},{"__isSmartRef__":true,"id":2295},{"__isSmartRef__":true,"id":2296},{"__isSmartRef__":true,"id":2297},{"__isSmartRef__":true,"id":2298},{"__isSmartRef__":true,"id":2299},{"__isSmartRef__":true,"id":2300},{"__isSmartRef__":true,"id":2301},{"__isSmartRef__":true,"id":2302},{"__isSmartRef__":true,"id":2303},{"__isSmartRef__":true,"id":2304},{"__isSmartRef__":true,"id":2305},{"__isSmartRef__":true,"id":2306},{"__isSmartRef__":true,"id":2307},{"__isSmartRef__":true,"id":2308},{"__isSmartRef__":true,"id":2309},{"__isSmartRef__":true,"id":2310},{"__isSmartRef__":true,"id":2311},{"__isSmartRef__":true,"id":2312},{"__isSmartRef__":true,"id":2313},{"__isSmartRef__":true,"id":2314},{"__isSmartRef__":true,"id":2315},{"__isSmartRef__":true,"id":2316},{"__isSmartRef__":true,"id":2317},{"__isSmartRef__":true,"id":2318},{"__isSmartRef__":true,"id":2319},{"__isSmartRef__":true,"id":2320},{"__isSmartRef__":true,"id":2321},{"__isSmartRef__":true,"id":2322},{"__isSmartRef__":true,"id":2323},{"__isSmartRef__":true,"id":2324},{"__isSmartRef__":true,"id":2325},{"__isSmartRef__":true,"id":2326},{"__isSmartRef__":true,"id":2327},{"__isSmartRef__":true,"id":2328},{"__isSmartRef__":true,"id":2329},{"__isSmartRef__":true,"id":2330},{"__isSmartRef__":true,"id":2331},{"__isSmartRef__":true,"id":2332},{"__isSmartRef__":true,"id":2333},{"__isSmartRef__":true,"id":2334},{"__isSmartRef__":true,"id":2335},{"__isSmartRef__":true,"id":2336},{"__isSmartRef__":true,"id":2337},{"__isSmartRef__":true,"id":2338},{"__isSmartRef__":true,"id":2339},{"__isSmartRef__":true,"id":2340},{"__isSmartRef__":true,"id":2341},{"__isSmartRef__":true,"id":2342},{"__isSmartRef__":true,"id":2343},{"__isSmartRef__":true,"id":2344},{"__isSmartRef__":true,"id":2345},{"__isSmartRef__":true,"id":2346},{"__isSmartRef__":true,"id":2347},{"__isSmartRef__":true,"id":2348},{"__isSmartRef__":true,"id":2349},{"__isSmartRef__":true,"id":2350},{"__isSmartRef__":true,"id":2351},{"__isSmartRef__":true,"id":2352},{"__isSmartRef__":true,"id":2353},{"__isSmartRef__":true,"id":2354},{"__isSmartRef__":true,"id":2355},{"__isSmartRef__":true,"id":2356},{"__isSmartRef__":true,"id":2357},{"__isSmartRef__":true,"id":2358},{"__isSmartRef__":true,"id":2359},{"__isSmartRef__":true,"id":2360},{"__isSmartRef__":true,"id":2361},{"__isSmartRef__":true,"id":2362},{"__isSmartRef__":true,"id":2363},{"__isSmartRef__":true,"id":2364},{"__isSmartRef__":true,"id":2365},{"__isSmartRef__":true,"id":2366},{"__isSmartRef__":true,"id":2367},{"__isSmartRef__":true,"id":2368},{"__isSmartRef__":true,"id":2369},{"__isSmartRef__":true,"id":2370},{"__isSmartRef__":true,"id":2371},{"__isSmartRef__":true,"id":2372},{"__isSmartRef__":true,"id":2373},{"__isSmartRef__":true,"id":2374},{"__isSmartRef__":true,"id":2375},{"__isSmartRef__":true,"id":2376},{"__isSmartRef__":true,"id":2377},{"__isSmartRef__":true,"id":2378},{"__isSmartRef__":true,"id":2379},{"__isSmartRef__":true,"id":2380},{"__isSmartRef__":true,"id":2381},{"__isSmartRef__":true,"id":2382},{"__isSmartRef__":true,"id":2383},{"__isSmartRef__":true,"id":2384},{"__isSmartRef__":true,"id":2385},{"__isSmartRef__":true,"id":2386},{"__isSmartRef__":true,"id":2387},{"__isSmartRef__":true,"id":2388},{"__isSmartRef__":true,"id":2389},{"__isSmartRef__":true,"id":2390},{"__isSmartRef__":true,"id":2391},{"__isSmartRef__":true,"id":2392},{"__isSmartRef__":true,"id":2393},{"__isSmartRef__":true,"id":2394},{"__isSmartRef__":true,"id":2395},{"__isSmartRef__":true,"id":2396},{"__isSmartRef__":true,"id":2397},{"__isSmartRef__":true,"id":2398},{"__isSmartRef__":true,"id":2399},{"__isSmartRef__":true,"id":2400},{"__isSmartRef__":true,"id":2401},{"__isSmartRef__":true,"id":2402},{"__isSmartRef__":true,"id":2403},{"__isSmartRef__":true,"id":2404},{"__isSmartRef__":true,"id":2405},{"__isSmartRef__":true,"id":2406},{"__isSmartRef__":true,"id":2407},{"__isSmartRef__":true,"id":2408},{"__isSmartRef__":true,"id":2409},{"__isSmartRef__":true,"id":2410},{"__isSmartRef__":true,"id":2411},{"__isSmartRef__":true,"id":2412},{"__isSmartRef__":true,"id":2413},{"__isSmartRef__":true,"id":2414},{"__isSmartRef__":true,"id":2415},{"__isSmartRef__":true,"id":2416},{"__isSmartRef__":true,"id":2417},{"__isSmartRef__":true,"id":2418},{"__isSmartRef__":true,"id":2419},{"__isSmartRef__":true,"id":2420},{"__isSmartRef__":true,"id":2421},{"__isSmartRef__":true,"id":2422},{"__isSmartRef__":true,"id":2423},{"__isSmartRef__":true,"id":2424},{"__isSmartRef__":true,"id":2425},{"__isSmartRef__":true,"id":2426},{"__isSmartRef__":true,"id":2427},{"__isSmartRef__":true,"id":2428},{"__isSmartRef__":true,"id":2429},{"__isSmartRef__":true,"id":2430},{"__isSmartRef__":true,"id":2431},{"__isSmartRef__":true,"id":2432},{"__isSmartRef__":true,"id":2433},{"__isSmartRef__":true,"id":2434},{"__isSmartRef__":true,"id":2435},{"__isSmartRef__":true,"id":2436},{"__isSmartRef__":true,"id":2437},{"__isSmartRef__":true,"id":2438},{"__isSmartRef__":true,"id":2439},{"__isSmartRef__":true,"id":2440},{"__isSmartRef__":true,"id":2441},{"__isSmartRef__":true,"id":2442},{"__isSmartRef__":true,"id":2443},{"__isSmartRef__":true,"id":2444},{"__isSmartRef__":true,"id":2445},{"__isSmartRef__":true,"id":2446},{"__isSmartRef__":true,"id":2447},{"__isSmartRef__":true,"id":2448},{"__isSmartRef__":true,"id":2449},{"__isSmartRef__":true,"id":2450},{"__isSmartRef__":true,"id":2451},{"__isSmartRef__":true,"id":2452},{"__isSmartRef__":true,"id":2453},{"__isSmartRef__":true,"id":2454},{"__isSmartRef__":true,"id":2455},{"__isSmartRef__":true,"id":2456},{"__isSmartRef__":true,"id":2457},{"__isSmartRef__":true,"id":2458},{"__isSmartRef__":true,"id":2459},{"__isSmartRef__":true,"id":2460},{"__isSmartRef__":true,"id":2461},{"__isSmartRef__":true,"id":2462},{"__isSmartRef__":true,"id":2463},{"__isSmartRef__":true,"id":2464},{"__isSmartRef__":true,"id":2465},{"__isSmartRef__":true,"id":2466},{"__isSmartRef__":true,"id":2467},{"__isSmartRef__":true,"id":2468},{"__isSmartRef__":true,"id":2469},{"__isSmartRef__":true,"id":2470},{"__isSmartRef__":true,"id":2471},{"__isSmartRef__":true,"id":2472},{"__isSmartRef__":true,"id":2473},{"__isSmartRef__":true,"id":2474},{"__isSmartRef__":true,"id":2475},{"__isSmartRef__":true,"id":2476},{"__isSmartRef__":true,"id":2477},{"__isSmartRef__":true,"id":2478},{"__isSmartRef__":true,"id":2479},{"__isSmartRef__":true,"id":2480},{"__isSmartRef__":true,"id":2481},{"__isSmartRef__":true,"id":2482},{"__isSmartRef__":true,"id":2483},{"__isSmartRef__":true,"id":2484},{"__isSmartRef__":true,"id":2485},{"__isSmartRef__":true,"id":2486},{"__isSmartRef__":true,"id":2487},{"__isSmartRef__":true,"id":2488},{"__isSmartRef__":true,"id":2489},{"__isSmartRef__":true,"id":2490},{"__isSmartRef__":true,"id":2491},{"__isSmartRef__":true,"id":2492},{"__isSmartRef__":true,"id":2493},{"__isSmartRef__":true,"id":2494},{"__isSmartRef__":true,"id":2495},{"__isSmartRef__":true,"id":2496},{"__isSmartRef__":true,"id":2497},{"__isSmartRef__":true,"id":2498},{"__isSmartRef__":true,"id":2499},{"__isSmartRef__":true,"id":2500},{"__isSmartRef__":true,"id":2501},{"__isSmartRef__":true,"id":2502},{"__isSmartRef__":true,"id":2503},{"__isSmartRef__":true,"id":2504},{"__isSmartRef__":true,"id":2505},{"__isSmartRef__":true,"id":2506},{"__isSmartRef__":true,"id":2507},{"__isSmartRef__":true,"id":2508},{"__isSmartRef__":true,"id":2509},{"__isSmartRef__":true,"id":2510},{"__isSmartRef__":true,"id":2511},{"__isSmartRef__":true,"id":2512},{"__isSmartRef__":true,"id":2513},{"__isSmartRef__":true,"id":2514},{"__isSmartRef__":true,"id":2515},{"__isSmartRef__":true,"id":2516},{"__isSmartRef__":true,"id":2517},{"__isSmartRef__":true,"id":2518},{"__isSmartRef__":true,"id":2519},{"__isSmartRef__":true,"id":2520},{"__isSmartRef__":true,"id":2521},{"__isSmartRef__":true,"id":2522},{"__isSmartRef__":true,"id":2523},{"__isSmartRef__":true,"id":2524},{"__isSmartRef__":true,"id":2525},{"__isSmartRef__":true,"id":2526},{"__isSmartRef__":true,"id":2527},{"__isSmartRef__":true,"id":2528},{"__isSmartRef__":true,"id":2529},{"__isSmartRef__":true,"id":2530},{"__isSmartRef__":true,"id":2531},{"__isSmartRef__":true,"id":2532},{"__isSmartRef__":true,"id":2533},{"__isSmartRef__":true,"id":2534},{"__isSmartRef__":true,"id":2535},{"__isSmartRef__":true,"id":2536},{"__isSmartRef__":true,"id":2537},{"__isSmartRef__":true,"id":2538},{"__isSmartRef__":true,"id":2539},{"__isSmartRef__":true,"id":2540},{"__isSmartRef__":true,"id":2541},{"__isSmartRef__":true,"id":2542},{"__isSmartRef__":true,"id":2543},{"__isSmartRef__":true,"id":2544},{"__isSmartRef__":true,"id":2545},{"__isSmartRef__":true,"id":2546},{"__isSmartRef__":true,"id":2547},{"__isSmartRef__":true,"id":2548},{"__isSmartRef__":true,"id":2549},{"__isSmartRef__":true,"id":2550},{"__isSmartRef__":true,"id":2551},{"__isSmartRef__":true,"id":2552},{"__isSmartRef__":true,"id":2553},{"__isSmartRef__":true,"id":2554},{"__isSmartRef__":true,"id":2555},{"__isSmartRef__":true,"id":2556},{"__isSmartRef__":true,"id":2557},{"__isSmartRef__":true,"id":2558},{"__isSmartRef__":true,"id":2559},{"__isSmartRef__":true,"id":2560},{"__isSmartRef__":true,"id":2561},{"__isSmartRef__":true,"id":2562},{"__isSmartRef__":true,"id":2563},{"__isSmartRef__":true,"id":2564},{"__isSmartRef__":true,"id":2565},{"__isSmartRef__":true,"id":2566},{"__isSmartRef__":true,"id":2567},{"__isSmartRef__":true,"id":2568},{"__isSmartRef__":true,"id":2569},{"__isSmartRef__":true,"id":2570},{"__isSmartRef__":true,"id":2571},{"__isSmartRef__":true,"id":2572},{"__isSmartRef__":true,"id":2573},{"__isSmartRef__":true,"id":2574},{"__isSmartRef__":true,"id":2575},{"__isSmartRef__":true,"id":2576},{"__isSmartRef__":true,"id":2577},{"__isSmartRef__":true,"id":2578},{"__isSmartRef__":true,"id":2579},{"__isSmartRef__":true,"id":2580},{"__isSmartRef__":true,"id":2581},{"__isSmartRef__":true,"id":2582},{"__isSmartRef__":true,"id":2583},{"__isSmartRef__":true,"id":2584},{"__isSmartRef__":true,"id":2585},{"__isSmartRef__":true,"id":2586},{"__isSmartRef__":true,"id":2587},{"__isSmartRef__":true,"id":2588},{"__isSmartRef__":true,"id":2589},{"__isSmartRef__":true,"id":2590},{"__isSmartRef__":true,"id":2591},{"__isSmartRef__":true,"id":2592},{"__isSmartRef__":true,"id":2593},{"__isSmartRef__":true,"id":2594},{"__isSmartRef__":true,"id":2595},{"__isSmartRef__":true,"id":2596},{"__isSmartRef__":true,"id":2597},{"__isSmartRef__":true,"id":2598},{"__isSmartRef__":true,"id":2599},{"__isSmartRef__":true,"id":2600},{"__isSmartRef__":true,"id":2601},{"__isSmartRef__":true,"id":2602},{"__isSmartRef__":true,"id":2603},{"__isSmartRef__":true,"id":2604},{"__isSmartRef__":true,"id":2605},{"__isSmartRef__":true,"id":2606},{"__isSmartRef__":true,"id":2607},{"__isSmartRef__":true,"id":2608},{"__isSmartRef__":true,"id":2609},{"__isSmartRef__":true,"id":2610},{"__isSmartRef__":true,"id":2611},{"__isSmartRef__":true,"id":2612},{"__isSmartRef__":true,"id":2613},{"__isSmartRef__":true,"id":2614},{"__isSmartRef__":true,"id":2615},{"__isSmartRef__":true,"id":2616},{"__isSmartRef__":true,"id":2617},{"__isSmartRef__":true,"id":2618},{"__isSmartRef__":true,"id":2619},{"__isSmartRef__":true,"id":2620},{"__isSmartRef__":true,"id":2621},{"__isSmartRef__":true,"id":2622},{"__isSmartRef__":true,"id":2623},{"__isSmartRef__":true,"id":2624},{"__isSmartRef__":true,"id":2625},{"__isSmartRef__":true,"id":2626},{"__isSmartRef__":true,"id":2627},{"__isSmartRef__":true,"id":2628},{"__isSmartRef__":true,"id":2629},{"__isSmartRef__":true,"id":2630},{"__isSmartRef__":true,"id":2631},{"__isSmartRef__":true,"id":2632},{"__isSmartRef__":true,"id":2633},{"__isSmartRef__":true,"id":2634},{"__isSmartRef__":true,"id":2635},{"__isSmartRef__":true,"id":2636},{"__isSmartRef__":true,"id":2637}],"_Position":{"__isSmartRef__":true,"id":1952},"_Scale":1,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":1808},"categoryName":"*search*","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2638},"__LivelyClassName__":"lively.morphic.Box"},"1237":{"submorphs":[{"__isSmartRef__":true,"id":1238},{"__isSmartRef__":true,"id":1284},{"__isSmartRef__":true,"id":1331},{"__isSmartRef__":true,"id":1378},{"__isSmartRef__":true,"id":1391},{"__isSmartRef__":true,"id":1420},{"__isSmartRef__":true,"id":1436}],"scripts":[],"id":1676,"shape":{"__isSmartRef__":true,"id":1449},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1455},"showsHalos":false,"name":"morePane","partsBinMetaInfo":{"__isSmartRef__":true,"id":1456},"__SourceModuleName__":"Global.lively.morphic.Core","_Rotation":0,"_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":1457},"eventHandler":{"__isSmartRef__":true,"id":1458},"owner":{"__isSmartRef__":true,"id":1236},"priorExtent":{"__isSmartRef__":true,"id":1459},"layout":{"__isSmartRef__":true,"id":1460},"_Visible":false,"__LivelyClassName__":"lively.morphic.Box"},"1238":{"submorphs":[{"__isSmartRef__":true,"id":1239}],"scripts":[],"id":1677,"shape":{"__isSmartRef__":true,"id":1253},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1268},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1256},"lighterFill":{"__isSmartRef__":true,"id":1269},"label":{"__isSmartRef__":true,"id":1239},"attributeConnections":[{"__isSmartRef__":true,"id":1278}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","_Rotation":0,"padding":{"__isSmartRef__":true,"id":1279},"name":"movePartButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1280},"_Scale":1,"owner":{"__isSmartRef__":true,"id":1237},"layout":{"__isSmartRef__":true,"id":1281},"renderContextTable":{"__isSmartRef__":true,"id":1282},"eventHandler":{"__isSmartRef__":true,"id":1283},"__LivelyClassName__":"lively.morphic.Button"},"1239":{"submorphs":[],"scripts":[],"id":1678,"shape":{"__isSmartRef__":true,"id":1240},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":66,"_MaxTextHeight":21,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1245},"textColor":{"__isSmartRef__":true,"id":1243},"owner":{"__isSmartRef__":true,"id":1238},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1246}],"padding":{"__isSmartRef__":true,"id":1248},"_Padding":{"__isSmartRef__":true,"id":1249},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1250},"renderContextTable":{"__isSmartRef__":true,"id":1251},"eventHandler":{"__isSmartRef__":true,"id":1252},"_HandStyle":"default","_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1240":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1241},"_Extent":{"__isSmartRef__":true,"id":1242},"_BorderColor":{"__isSmartRef__":true,"id":1243},"renderContextTable":{"__isSmartRef__":true,"id":1244},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1241":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1242":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1243":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1244":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1245":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1246":{"style":{"__isSmartRef__":true,"id":1247},"morph":{"__isSmartRef__":true,"id":1239},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1239},"storedString":"move","__LivelyClassName__":"lively.morphic.TextChunk"},"1247":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1248":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1249":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1250":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1251":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1252":{"morph":{"__isSmartRef__":true,"id":1239},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1253":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1254},"_Extent":{"__isSmartRef__":true,"id":1255},"_Fill":{"__isSmartRef__":true,"id":1256},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1266},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1267},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1254":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1255":{"x":66,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1256":{"stops":[{"__isSmartRef__":true,"id":1257},{"__isSmartRef__":true,"id":1259},{"__isSmartRef__":true,"id":1261},{"__isSmartRef__":true,"id":1263}],"vector":{"__isSmartRef__":true,"id":1265},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1257":{"offset":0,"color":{"__isSmartRef__":true,"id":1258}},"1258":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1259":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1260}},"1260":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1261":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1262}},"1262":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1263":{"offset":1,"color":{"__isSmartRef__":true,"id":1264}},"1264":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1265":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1266":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1267":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1268":{"x":163.67911865694913,"y":393.86777109042464,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1269":{"stops":[{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1272},{"__isSmartRef__":true,"id":1274},{"__isSmartRef__":true,"id":1276}],"vector":{"__isSmartRef__":true,"id":1265},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1270":{"offset":0,"color":{"__isSmartRef__":true,"id":1271}},"1271":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1272":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1273}},"1273":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1274":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1275}},"1275":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1276":{"offset":1,"color":{"__isSmartRef__":true,"id":1277}},"1277":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1278":{"sourceObj":{"__isSmartRef__":true,"id":1238},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"interactivelyMoveSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1279":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1280":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1281":{"moveVertical":true},"1282":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1283":{"morph":{"__isSmartRef__":true,"id":1238},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1284":{"submorphs":[{"__isSmartRef__":true,"id":1285}],"scripts":[],"id":1679,"shape":{"__isSmartRef__":true,"id":1299},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1314},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1302},"lighterFill":{"__isSmartRef__":true,"id":1315},"label":{"__isSmartRef__":true,"id":1285},"attributeConnections":[{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1325}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","_Rotation":0,"padding":{"__isSmartRef__":true,"id":1326},"name":"removePartButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1327},"_Scale":1,"owner":{"__isSmartRef__":true,"id":1237},"layout":{"__isSmartRef__":true,"id":1328},"renderContextTable":{"__isSmartRef__":true,"id":1329},"eventHandler":{"__isSmartRef__":true,"id":1330},"__LivelyClassName__":"lively.morphic.Button"},"1285":{"submorphs":[],"scripts":[],"id":1680,"shape":{"__isSmartRef__":true,"id":1286},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":66,"_MaxTextHeight":21,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1291},"textColor":{"__isSmartRef__":true,"id":1289},"owner":{"__isSmartRef__":true,"id":1284},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1292}],"padding":{"__isSmartRef__":true,"id":1294},"_Padding":{"__isSmartRef__":true,"id":1295},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1296},"renderContextTable":{"__isSmartRef__":true,"id":1297},"eventHandler":{"__isSmartRef__":true,"id":1298},"_HandStyle":"default","_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1286":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1287},"_Extent":{"__isSmartRef__":true,"id":1288},"_BorderColor":{"__isSmartRef__":true,"id":1289},"renderContextTable":{"__isSmartRef__":true,"id":1290},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1287":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1288":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1289":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1290":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1291":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1292":{"style":{"__isSmartRef__":true,"id":1293},"morph":{"__isSmartRef__":true,"id":1285},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1285},"storedString":"remove","__LivelyClassName__":"lively.morphic.TextChunk"},"1293":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1294":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1295":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1296":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1297":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1298":{"morph":{"__isSmartRef__":true,"id":1285},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1299":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1300},"_Extent":{"__isSmartRef__":true,"id":1301},"_Fill":{"__isSmartRef__":true,"id":1302},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1312},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1313},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1300":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1301":{"x":66,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1302":{"stops":[{"__isSmartRef__":true,"id":1303},{"__isSmartRef__":true,"id":1305},{"__isSmartRef__":true,"id":1307},{"__isSmartRef__":true,"id":1309}],"vector":{"__isSmartRef__":true,"id":1311},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1303":{"offset":0,"color":{"__isSmartRef__":true,"id":1304}},"1304":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1305":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1306}},"1306":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1307":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1308}},"1308":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1309":{"offset":1,"color":{"__isSmartRef__":true,"id":1310}},"1310":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1311":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1312":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1313":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1314":{"x":92.12005863445097,"y":393.8518587078797,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1315":{"stops":[{"__isSmartRef__":true,"id":1316},{"__isSmartRef__":true,"id":1318},{"__isSmartRef__":true,"id":1320},{"__isSmartRef__":true,"id":1322}],"vector":{"__isSmartRef__":true,"id":1311},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1316":{"offset":0,"color":{"__isSmartRef__":true,"id":1317}},"1317":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1318":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1319}},"1319":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1320":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1321}},"1321":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1322":{"offset":1,"color":{"__isSmartRef__":true,"id":1323}},"1323":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1324":{"sourceObj":{"__isSmartRef__":true,"id":1284},"sourceAttrName":"fire","targetMethodName":"reloadEverything","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1325":{"sourceObj":{"__isSmartRef__":true,"id":1284},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"interactivelyRemoveSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1326":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1327":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1328":{"moveVertical":true},"1329":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1330":{"morph":{"__isSmartRef__":true,"id":1284},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1331":{"submorphs":[{"__isSmartRef__":true,"id":1332}],"scripts":[],"id":1681,"shape":{"__isSmartRef__":true,"id":1346},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1361},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1349},"lighterFill":{"__isSmartRef__":true,"id":1362},"label":{"__isSmartRef__":true,"id":1332},"attributeConnections":[{"__isSmartRef__":true,"id":1371},{"__isSmartRef__":true,"id":1372}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","_Rotation":0,"padding":{"__isSmartRef__":true,"id":1373},"name":"loadPartButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1374},"_Scale":1,"owner":{"__isSmartRef__":true,"id":1237},"layout":{"__isSmartRef__":true,"id":1375},"renderContextTable":{"__isSmartRef__":true,"id":1376},"eventHandler":{"__isSmartRef__":true,"id":1377},"__LivelyClassName__":"lively.morphic.Button"},"1332":{"submorphs":[],"scripts":[],"id":1682,"shape":{"__isSmartRef__":true,"id":1333},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":66,"_MaxTextHeight":21,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1338},"textColor":{"__isSmartRef__":true,"id":1336},"owner":{"__isSmartRef__":true,"id":1331},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1339}],"padding":{"__isSmartRef__":true,"id":1341},"_Padding":{"__isSmartRef__":true,"id":1342},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1343},"renderContextTable":{"__isSmartRef__":true,"id":1344},"eventHandler":{"__isSmartRef__":true,"id":1345},"_HandStyle":"default","_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1333":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1334},"_Extent":{"__isSmartRef__":true,"id":1335},"_BorderColor":{"__isSmartRef__":true,"id":1336},"renderContextTable":{"__isSmartRef__":true,"id":1337},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1334":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1335":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1336":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1337":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1338":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1339":{"style":{"__isSmartRef__":true,"id":1340},"morph":{"__isSmartRef__":true,"id":1332},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1332},"storedString":"load","__LivelyClassName__":"lively.morphic.TextChunk"},"1340":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1341":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1342":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1343":{"x":66,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1344":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1345":{"morph":{"__isSmartRef__":true,"id":1332},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1346":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1347},"_Extent":{"__isSmartRef__":true,"id":1348},"_Fill":{"__isSmartRef__":true,"id":1349},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1359},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1360},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1347":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1348":{"x":66,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1349":{"stops":[{"__isSmartRef__":true,"id":1350},{"__isSmartRef__":true,"id":1352},{"__isSmartRef__":true,"id":1354},{"__isSmartRef__":true,"id":1356}],"vector":{"__isSmartRef__":true,"id":1358},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1350":{"offset":0,"color":{"__isSmartRef__":true,"id":1351}},"1351":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1352":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1353}},"1353":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1354":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1355}},"1355":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1356":{"offset":1,"color":{"__isSmartRef__":true,"id":1357}},"1357":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1358":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1359":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1360":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1361":{"x":22.154971194602297,"y":393.89144835121806,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1362":{"stops":[{"__isSmartRef__":true,"id":1363},{"__isSmartRef__":true,"id":1365},{"__isSmartRef__":true,"id":1367},{"__isSmartRef__":true,"id":1369}],"vector":{"__isSmartRef__":true,"id":1358},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1363":{"offset":0,"color":{"__isSmartRef__":true,"id":1364}},"1364":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1365":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1366}},"1366":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1367":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1368}},"1368":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1369":{"offset":1,"color":{"__isSmartRef__":true,"id":1370}},"1370":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1371":{"sourceObj":{"__isSmartRef__":true,"id":1331},"sourceAttrName":"fire","targetMethodName":"reloadEverything","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1372":{"sourceObj":{"__isSmartRef__":true,"id":1331},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"loadAndOpenSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1373":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1374":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1375":{"moveVertical":true},"1376":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1377":{"morph":{"__isSmartRef__":true,"id":1331},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1378":{"submorphs":[],"scripts":[],"id":1683,"shape":{"__isSmartRef__":true,"id":1379},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1384},"_MaxTextWidth":258,"_MaxTextHeight":17,"textColor":{"__isSmartRef__":true,"id":1382},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"name":"selectedPartName","partsBinMetaInfo":{"__isSmartRef__":true,"id":1385},"textChunks":[{"__isSmartRef__":true,"id":1386}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[20,20],"prevScroll":[0,0],"_Scale":1,"owner":{"__isSmartRef__":true,"id":1237},"_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1388},"renderContextTable":{"__isSmartRef__":true,"id":1389},"eventHandler":{"__isSmartRef__":true,"id":1390},"_WhiteSpaceHandling":"pre-wrap","__LivelyClassName__":"lively.morphic.Text"},"1379":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1380},"_Extent":{"__isSmartRef__":true,"id":1381},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1382},"renderContextTable":{"__isSmartRef__":true,"id":1383},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1380":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1381":{"x":258,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1382":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1383":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1384":{"x":24.074220912172564,"y":8.635794805933187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1385":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1386":{"style":{"__isSmartRef__":true,"id":1387},"chunkOwner":{"__isSmartRef__":true,"id":1378},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"ProgressBar","__LivelyClassName__":"lively.morphic.TextChunk"},"1387":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1388":{"x":258,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1389":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1390":{"morph":{"__isSmartRef__":true,"id":1378},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1391":{"submorphs":[],"scripts":[],"id":1684,"shape":{"__isSmartRef__":true,"id":1392},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1398},"itemList":[{"__isSmartRef__":true,"id":1399},{"__isSmartRef__":true,"id":1403},{"__isSmartRef__":true,"id":1407},{"__isSmartRef__":true,"id":1411}],"showsHalos":false,"name":"selectedPartVersions","partsBinMetaInfo":{"__isSmartRef__":true,"id":1415},"__SourceModuleName__":"Global.lively.morphic.Core","_Rotation":0,"_Scale":1,"_ClipMode":"scroll","owner":{"__isSmartRef__":true,"id":1237},"prevScroll":[0,144],"layout":{"__isSmartRef__":true,"id":1416},"priorExtent":{"__isSmartRef__":true,"id":1417},"renderContextTable":{"__isSmartRef__":true,"id":1418},"eventHandler":{"__isSmartRef__":true,"id":1419},"__LivelyClassName__":"lively.morphic.List"},"1392":{"position":{"__isSmartRef__":true,"id":1393},"_Extent":{"__isSmartRef__":true,"id":1394},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1395},"_Fill":{"__isSmartRef__":true,"id":1396},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1397},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1393":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1394":{"x":259.7762078882963,"y":175.97632273920658,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1395":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1396":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1397":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1398":{"x":23.98146549080036,"y":56.349422571268406,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1399":{"rev":81967,"author":"robertkrahn","date":{"__isSmartRef__":true,"id":1400},"url":{"__isSmartRef__":true,"id":1401},"changes":[{"__isSmartRef__":true,"id":1402}],"__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"SVNVersionInfo"},"1400":{"isSerializedDate":true,"string":"Sun Jun 05 2011 12:08:46 GMT+0200 (CEST)"},"1401":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"1402":{"type":"S:modified","url":"/PartsBin/Widgets/ProgressBar.json"},"1403":{"rev":81742,"author":"jenslincke","date":{"__isSmartRef__":true,"id":1404},"url":{"__isSmartRef__":true,"id":1405},"changes":[{"__isSmartRef__":true,"id":1406}],"__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"SVNVersionInfo"},"1404":{"isSerializedDate":true,"string":"Fri Jun 03 2011 17:26:07 GMT+0200 (CEST)"},"1405":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"1406":{"type":"S:modified","url":"/PartsBin/Widgets/ProgressBar.json"},"1407":{"rev":77005,"author":"markoroeder","date":{"__isSmartRef__":true,"id":1408},"url":{"__isSmartRef__":true,"id":1409},"changes":[{"__isSmartRef__":true,"id":1410}],"__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"SVNVersionInfo"},"1408":{"isSerializedDate":true,"string":"Wed May 25 2011 21:39:04 GMT+0200 (CEST)"},"1409":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"1410":{"type":"S:added","url":null},"1411":{"rev":76955,"author":"markoroeder","date":{"__isSmartRef__":true,"id":1412},"url":{"__isSmartRef__":true,"id":1413},"changes":[{"__isSmartRef__":true,"id":1414}],"__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"SVNVersionInfo"},"1412":{"isSerializedDate":true,"string":"Wed May 25 2011 20:22:07 GMT+0200 (CEST)"},"1413":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/ProgressBar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"1414":{"type":"S:added","url":null},"1415":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":2,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1416":{"resizeWidth":true},"1417":{"x":258.7762078882963,"y":175.97632273920658,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1418":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"1419":{"morph":{"__isSmartRef__":true,"id":1391},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1420":{"submorphs":[],"scripts":[],"id":1685,"shape":{"__isSmartRef__":true,"id":1421},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1426},"_MaxTextWidth":261,"_MaxTextHeight":156,"textColor":{"__isSmartRef__":true,"id":1427},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"name":"selectedPartComment","partsBinMetaInfo":{"__isSmartRef__":true,"id":1428},"textChunks":[{"__isSmartRef__":true,"id":1429}],"charsReplaced":"No comment yet","lastFindLoc":0,"priorSelectionRange":[0,14],"prevScroll":[0,0],"_Scale":1,"owner":{"__isSmartRef__":true,"id":1237},"_ClipMode":"auto","priorExtent":{"__isSmartRef__":true,"id":1431},"attributeConnections":[{"__isSmartRef__":true,"id":1432}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"layout":{"__isSmartRef__":true,"id":1433},"renderContextTable":{"__isSmartRef__":true,"id":1434},"eventHandler":{"__isSmartRef__":true,"id":1435},"savedTextString":"Convert logos of a certain parts category","__LivelyClassName__":"lively.morphic.Text"},"1421":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1422},"_Extent":{"__isSmartRef__":true,"id":1423},"_BorderWidth":2.3680000000000003,"_BorderColor":{"__isSmartRef__":true,"id":1424},"renderContextTable":{"__isSmartRef__":true,"id":1425},"_BorderRadius":7.400000000000001,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1422":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1423":{"x":261,"y":156,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1424":{"r":0.753,"g":0.753,"b":0.753,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1425":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1426":{"x":22.028628699363026,"y":235.5767084837372,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1427":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1428":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1429":{"style":{"__isSmartRef__":true,"id":1430},"chunkOwner":{"__isSmartRef__":true,"id":1420},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"A simple progress bar that can have a label and a value (between 0 and 1).","__LivelyClassName__":"lively.morphic.TextChunk"},"1430":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1431":{"x":261,"y":156,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1432":{"sourceObj":{"__isSmartRef__":true,"id":1420},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"saveCommentForSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1433":{"resizeWidth":true,"resizeHeight":true},"1434":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1435":{"morph":{"__isSmartRef__":true,"id":1420},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1436":{"submorphs":[],"scripts":[],"id":1686,"shape":{"__isSmartRef__":true,"id":1437},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1442},"_MaxTextWidth":260,"_MaxTextHeight":18,"textColor":{"__isSmartRef__":true,"id":1440},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"name":"selectedPartSpaceName","partsBinMetaInfo":{"__isSmartRef__":true,"id":1443},"textChunks":[{"__isSmartRef__":true,"id":1444}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[16,16],"prevScroll":[0,0],"_Scale":1,"_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1446},"renderContextTable":{"__isSmartRef__":true,"id":1447},"eventHandler":{"__isSmartRef__":true,"id":1448},"owner":{"__isSmartRef__":true,"id":1237},"_Align":"right","_WhiteSpaceHandling":"pre-wrap","__LivelyClassName__":"lively.morphic.Text"},"1437":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1438},"_Extent":{"__isSmartRef__":true,"id":1439},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1440},"renderContextTable":{"__isSmartRef__":true,"id":1441},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1438":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1439":{"x":260,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1440":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1441":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1442":{"x":22.381974001732715,"y":30.870025607392563,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1443":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1444":{"style":{"__isSmartRef__":true,"id":1445},"chunkOwner":{"__isSmartRef__":true,"id":1436},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"PartsBin/Widgets/","__LivelyClassName__":"lively.morphic.TextChunk"},"1445":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1446":{"x":260,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1447":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1448":{"morph":{"__isSmartRef__":true,"id":1436},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1449":{"position":{"__isSmartRef__":true,"id":1450},"_Extent":{"__isSmartRef__":true,"id":1451},"_BorderWidth":2.294,"_BorderColor":{"__isSmartRef__":true,"id":1452},"_Fill":{"__isSmartRef__":true,"id":1453},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1454},"_BorderRadius":6.12,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1450":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1451":{"x":292.3858567057799,"y":420.7461090825698,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1452":{"r":0.258,"g":0.258,"b":0.258,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1453":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1454":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1455":{"x":399.61414329422007,"y":37,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1456":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1457":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1458":{"morph":{"__isSmartRef__":true,"id":1237},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1459":{"x":292.3858567057799,"y":421.7461090825698,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1460":{"moveHorizontal":true},"1461":{"submorphs":[],"scripts":[],"id":1687,"shape":{"__isSmartRef__":true,"id":1462},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1468},"itemList":["*all*","*latest*","*search*","Basic","CodeSnippets","Database","Debugging","Demos","Documentation","DroppableBehaviors","Examples","Forms","Fun","Inputs","Issues","Layout","NewWorld","Persistence","Presenting","Robert","Scripting","Server","Testing","Text","Text support","Tools","uncategorized","Visualization","Widgets","Wiki","Worlds"],"showsHalos":false,"name":"categoryList","partsBinMetaInfo":{"__isSmartRef__":true,"id":1469},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":1236},"_Rotation":0,"_Scale":1,"_ClipMode":"auto","prevScroll":[0,0],"attributeConnections":[{"__isSmartRef__":true,"id":1470}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"priorExtent":{"__isSmartRef__":true,"id":1471},"layout":{"__isSmartRef__":true,"id":1472},"selectedLineNo":2,"renderContextTable":{"__isSmartRef__":true,"id":1473},"eventHandler":{"__isSmartRef__":true,"id":1474},"selection":"*search*","__LivelyClassName__":"lively.morphic.List"},"1462":{"position":{"__isSmartRef__":true,"id":1463},"_Extent":{"__isSmartRef__":true,"id":1464},"_BorderWidth":1.258,"_BorderColor":{"__isSmartRef__":true,"id":1465},"_Fill":{"__isSmartRef__":true,"id":1466},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":1467},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1463":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1464":{"x":145.0100150200251,"y":425.002003004005,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1465":{"r":0.8280587561201496,"g":0.8280587561201496,"b":0.8280587561201496,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1466":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1467":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1468":{"x":9,"y":37,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1469":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1470":{"sourceObj":{"__isSmartRef__":true,"id":1461},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"categoryName","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1471":{"x":145.0100150200251,"y":426.002003004005,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1472":{"resizeHeight":true},"1473":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"1474":{"morph":{"__isSmartRef__":true,"id":1461},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1475":{"submorphs":[{"__isSmartRef__":true,"id":1476}],"scripts":[],"id":1688,"shape":{"__isSmartRef__":true,"id":1490},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1505},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1493},"lighterFill":{"__isSmartRef__":true,"id":1506},"label":{"__isSmartRef__":true,"id":1476},"attributeConnections":[{"__isSmartRef__":true,"id":1515}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","_Rotation":0,"padding":{"__isSmartRef__":true,"id":1516},"name":"reloadButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1517},"owner":{"__isSmartRef__":true,"id":1236},"_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":1518},"eventHandler":{"__isSmartRef__":true,"id":1519},"priorExtent":{"__isSmartRef__":true,"id":1520},"__LivelyClassName__":"lively.morphic.Button"},"1476":{"submorphs":[],"scripts":[],"id":1689,"shape":{"__isSmartRef__":true,"id":1477},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":20,"_MaxTextHeight":20,"fixedHeight":true,"allowsInput":false,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1482},"textColor":{"__isSmartRef__":true,"id":1480},"owner":{"__isSmartRef__":true,"id":1475},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1483}],"padding":{"__isSmartRef__":true,"id":1485},"_Padding":{"__isSmartRef__":true,"id":1486},"prevScroll":[0,0],"_Align":"center","_FontFamily":"Arial","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_VerticalAlign":"middle","_Display":"table-cell","priorExtent":{"__isSmartRef__":true,"id":1487},"renderContextTable":{"__isSmartRef__":true,"id":1488},"eventHandler":{"__isSmartRef__":true,"id":1489},"_HandStyle":"default","_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1477":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1478},"_Extent":{"__isSmartRef__":true,"id":1479},"_BorderColor":{"__isSmartRef__":true,"id":1480},"renderContextTable":{"__isSmartRef__":true,"id":1481},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1478":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1479":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1480":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1481":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1482":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1483":{"style":{"__isSmartRef__":true,"id":1484},"chunkOwner":{"__isSmartRef__":true,"id":1476},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"⟳","__LivelyClassName__":"lively.morphic.TextChunk"},"1484":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1485":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1486":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1487":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1488":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1489":{"morph":{"__isSmartRef__":true,"id":1476},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1490":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1491},"_Extent":{"__isSmartRef__":true,"id":1492},"_Fill":{"__isSmartRef__":true,"id":1493},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1503},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1504},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1491":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1492":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1493":{"stops":[{"__isSmartRef__":true,"id":1494},{"__isSmartRef__":true,"id":1496},{"__isSmartRef__":true,"id":1498},{"__isSmartRef__":true,"id":1500}],"vector":{"__isSmartRef__":true,"id":1502},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1494":{"offset":0,"color":{"__isSmartRef__":true,"id":1495}},"1495":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1496":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1497}},"1497":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1498":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1499}},"1499":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1500":{"offset":1,"color":{"__isSmartRef__":true,"id":1501}},"1501":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1502":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1503":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1504":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1505":{"x":79,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1506":{"stops":[{"__isSmartRef__":true,"id":1507},{"__isSmartRef__":true,"id":1509},{"__isSmartRef__":true,"id":1511},{"__isSmartRef__":true,"id":1513}],"vector":{"__isSmartRef__":true,"id":1502},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1507":{"offset":0,"color":{"__isSmartRef__":true,"id":1508}},"1508":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1509":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1510}},"1510":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1511":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1512}},"1512":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1513":{"offset":1,"color":{"__isSmartRef__":true,"id":1514}},"1514":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1515":{"sourceObj":{"__isSmartRef__":true,"id":1475},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"reloadEverything","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1516":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1517":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1518":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1519":{"morph":{"__isSmartRef__":true,"id":1475},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1520":{"x":140,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1521":{"submorphs":[{"__isSmartRef__":true,"id":1522}],"scripts":[],"id":1690,"shape":{"__isSmartRef__":true,"id":1574},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1580},"showsHalos":false,"name":"partsBinContents","partsBinMetaInfo":{"__isSmartRef__":true,"id":1581},"__SourceModuleName__":"Global.lively.morphic.Core","_Rotation":0,"_Scale":1,"_ClipMode":"scroll","owner":{"__isSmartRef__":true,"id":1236},"priorExtent":{"__isSmartRef__":true,"id":1582},"attributeConnections":[{"__isSmartRef__":true,"id":1583}],"doNotSerialize":["$$selectedItem"],"doNotCopyProperties":["$$selectedItem"],"isClip":true,"layout":{"__isSmartRef__":true,"id":1584},"renderContextTable":{"__isSmartRef__":true,"id":1585},"eventHandler":{"__isSmartRef__":true,"id":1586},"selectedItem":{"__isSmartRef__":true,"id":1560},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1587},"__LivelyClassName__":"lively.morphic.Box"},"1522":{"submorphs":[{"__isSmartRef__":true,"id":1523},{"__isSmartRef__":true,"id":1537}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1550},"id":91,"renderContextTable":{"__isSmartRef__":true,"id":1556},"eventHandler":{"__isSmartRef__":true,"id":1557},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"accessibleInInactiveWindow":true,"_Position":{"__isSmartRef__":true,"id":1558},"partsBinURL":{"__isSmartRef__":true,"id":1559},"targetName":"ProgressBar","partItem":{"__isSmartRef__":true,"id":1560},"owner":{"__isSmartRef__":true,"id":1521},"isSelected":true,"__SourceModuleName__":"Global.lively.morphic.ScriptingSupport","__LivelyClassName__":"lively.morphic.PartsBinItem"},"1523":{"submorphs":[{"__isSmartRef__":true,"id":1524}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1530},"id":93,"renderContextTable":{"__isSmartRef__":true,"id":1534},"eventHandler":{"__isSmartRef__":true,"id":1535},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1536},"_ClipMode":"hidden","owner":{"__isSmartRef__":true,"id":1522},"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Clip"},"1524":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1525},"id":92,"renderContextTable":{"__isSmartRef__":true,"id":1528},"eventHandler":{"__isSmartRef__":true,"id":1529},"droppingEnabled":true,"halosEnabled":true,"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":1523},"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Morph"},"1525":{"renderContextTable":{"__isSmartRef__":true,"id":1526},"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":1527},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.External"},"1526":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"1527":{"x":200,"y":200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1528":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1529":{"morph":{"__isSmartRef__":true,"id":1524},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1530":{"_Position":{"__isSmartRef__":true,"id":1531},"renderContextTable":{"__isSmartRef__":true,"id":1532},"_Extent":{"__isSmartRef__":true,"id":1533},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1531":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1532":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1533":{"x":94,"y":94,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1534":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1535":{"morph":{"__isSmartRef__":true,"id":1523},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1536":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1537":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1538},"id":94,"renderContextTable":{"__isSmartRef__":true,"id":1543},"textChunks":[{"__isSmartRef__":true,"id":1544}],"eventHandler":{"__isSmartRef__":true,"id":1546},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1547},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":1548},"priorExtent":{"__isSmartRef__":true,"id":1549},"_MaxTextWidth":null,"_MaxTextHeight":null,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":1522},"_Visible":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"1538":{"_Position":{"__isSmartRef__":true,"id":1539},"renderContextTable":{"__isSmartRef__":true,"id":1540},"_Extent":{"__isSmartRef__":true,"id":1541},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":{"__isSmartRef__":true,"id":1542},"_Opacity":0.8,"_BorderRadius":2,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1539":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1540":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1541":{"x":72,"y":15,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1542":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1543":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1544":{"style":{"__isSmartRef__":true,"id":1545},"chunkOwner":{"__isSmartRef__":true,"id":1537},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"ProgressBar","__LivelyClassName__":"lively.morphic.TextChunk"},"1545":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1546":{"morph":{"__isSmartRef__":true,"id":1537},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1547":{"x":5,"y":2,"width":0,"height":-2,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1548":{"x":14,"y":81,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1549":{"x":72,"y":15,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1550":{"_Position":{"__isSmartRef__":true,"id":1551},"renderContextTable":{"__isSmartRef__":true,"id":1552},"_Extent":{"__isSmartRef__":true,"id":1553},"_BorderColor":{"__isSmartRef__":true,"id":1554},"_Fill":{"__isSmartRef__":true,"id":1555},"_BorderRadius":6,"_BorderWidth":3,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1551":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1552":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1553":{"x":100,"y":100,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1554":{"r":0.8,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1555":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1556":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1557":{"morph":{"__isSmartRef__":true,"id":1522},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1558":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1559":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"1560":{"partsSpaceName":"PartsBin/Widgets/","name":"ProgressBar","attributeConnections":[{"__isSmartRef__":true,"id":1561},{"__isSmartRef__":true,"id":1562},{"__isSmartRef__":true,"id":1563},{"__isSmartRef__":true,"id":1573}],"doNotSerialize":["$$partVersions","$$loadedMetaInfo","$$part"],"doNotCopyProperties":["$$partVersions","$$loadedMetaInfo","$$part"],"json":"{\"id\":0,\"registry\":{\"0\":{\"submorphs\":[{\"__isSmartRef__\":true,\"id\":1},{\"__isSmartRef__\":true,\"id\":13}],\"scripts\":[],\"id\":1327,\"shape\":{\"__isSmartRef__\":true,\"id\":28},\"droppingEnabled\":true,\"halosEnabled\":true,\"registeredForMouseEvents\":true,\"_Position\":{\"__isSmartRef__\":true,\"id\":34},\"showsHalos\":false,\"name\":\"ProgressBar\",\"partsBinMetaInfo\":{\"__isSmartRef__\":true,\"id\":35},\"__SourceModuleName__\":\"Global.lively.morphic.Core\",\"_Rotation\":0,\"_Scale\":1.002003004005006,\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":36},\"eventHandler\":{\"__isSmartRef__\":true,\"id\":37},\"priorExtent\":{\"__isSmartRef__\":true,\"id\":38},\"attributeConnections\":[{\"__isSmartRef__\":true,\"id\":39},{\"__isSmartRef__\":true,\"id\":40}],\"doNotSerialize\":[\"$$value\"],\"doNotCopyProperties\":[\"$$value\"],\"value\":0.2,\"__serializedLivelyClosures__\":{\"__isSmartRef__\":true,\"id\":45},\"__LivelyClassName__\":\"lively.morphic.Box\",\"withLayers\":[\"ScriptListUpdateLayer\"]},\"1\":{\"submorphs\":[],\"scripts\":[],\"id\":1328,\"shape\":{\"__isSmartRef__\":true,\"id\":2},\"droppingEnabled\":true,\"halosEnabled\":true,\"registeredForMouseEvents\":true,\"_Position\":{\"__isSmartRef__\":true,\"id\":8},\"showsHalos\":false,\"name\":\"bar\",\"partsBinMetaInfo\":{\"__isSmartRef__\":true,\"id\":9},\"__SourceModuleName__\":\"Global.lively.morphic.Core\",\"_Rotation\":0,\"_Scale\":1,\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":10},\"eventHandler\":{\"__isSmartRef__\":true,\"id\":11},\"owner\":{\"__isSmartRef__\":true,\"id\":0},\"priorExtent\":{\"__isSmartRef__\":true,\"id\":12},\"eventsAreIgnored\":true,\"_HandStyle\":\"default\",\"_PointerEvents\":\"none\",\"__LivelyClassName__\":\"lively.morphic.Box\"},\"2\":{\"position\":{\"__isSmartRef__\":true,\"id\":3},\"_Extent\":{\"__isSmartRef__\":true,\"id\":4},\"_BorderWidth\":1,\"_BorderColor\":{\"__isSmartRef__\":true,\"id\":5},\"_Fill\":{\"__isSmartRef__\":true,\"id\":6},\"__SourceModuleName__\":\"Global.lively.morphic.Shapes\",\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":7},\"_BorderRadius\":0,\"_BorderStyle\":\"hidden\",\"__LivelyClassName__\":\"lively.morphic.Shapes.Rectangle\"},\"3\":{\"x\":0,\"y\":0,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Point\"},\"4\":{\"x\":40,\"y\":25,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"5\":{\"r\":0,\"g\":0,\"b\":0,\"a\":1,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Color\"},\"6\":{\"r\":0.474,\"g\":0.474,\"b\":0.474,\"a\":1,\"__LivelyClassName__\":\"Color\",\"__SourceModuleName__\":\"Global\"},\"7\":{\"init\":\"initHTML\",\"appendShape\":\"renderHTML\",\"setPosition\":\"setPositionHTML\",\"setExtent\":\"setExtentHTML\",\"setFill\":\"setFillHTML\",\"setBorderColor\":\"setBorderColorHTML\",\"setBorderWidth\":\"setBorderWidthHTML\",\"setStrokeOpacity\":\"setStrokeOpacityHTML\",\"setBorderRadius\":\"setBorderRadiusHTML\",\"setBorderStyle\":\"setBorderStyleHTML\",\"setOpacity\":\"setOpacityHTML\"},\"8\":{\"x\":1,\"y\":1,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"9\":{\"partsSpaceName\":\"PartsBin/Basic\",\"__SourceModuleName__\":\"Global.lively.PartsBin\",\"comment\":\"A simple box morph\",\"migrationLevel\":2,\"__LivelyClassName__\":\"lively.PartsBin.PartsBinMetaInfo\"},\"10\":{\"replaceRenderContext\":\"replaceRenderContextHTML\",\"init\":\"initHTML\",\"append\":\"appendHTML\",\"remove\":\"removeHTML\",\"triggerEvent\":\"triggerEventHTML\",\"setPosition\":\"setPositionHTML\",\"setRotation\":\"setRotationHTML\",\"setExtent\":\"setExtentHTML\",\"setScale\":\"setScaleHTML\",\"setVisible\":\"setVisibleHTML\",\"setOrigin\":\"setOriginHTML\",\"setClipMode\":\"setClipModeHTML\",\"setHandStyle\":\"setHandStyleHTML\",\"setPointerEvents\":\"setPointerEventsHTML\"},\"11\":{\"morph\":{\"__isSmartRef__\":true,\"id\":1},\"__SourceModuleName__\":\"Global.lively.morphic.Events\",\"__LivelyClassName__\":\"lively.morphic.EventHandler\"},\"12\":{\"x\":318,\"y\":23.00400600801001,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"13\":{\"submorphs\":[],\"scripts\":[],\"id\":1329,\"shape\":{\"__isSmartRef__\":true,\"id\":14},\"grabbingEnabled\":false,\"droppingEnabled\":false,\"halosEnabled\":true,\"fixedWidth\":true,\"fixedHeight\":false,\"allowsInput\":true,\"_FontFamily\":\"Arial, sans-serif\",\"registeredForMouseEvents\":true,\"_Position\":{\"__isSmartRef__\":true,\"id\":19},\"_MaxTextWidth\":200,\"_MaxTextHeight\":null,\"textColor\":{\"__isSmartRef__\":true,\"id\":17},\"showsHalos\":false,\"_FontSize\":12,\"__SourceModuleName__\":\"Global.lively.morphic.TextCore\",\"_Rotation\":0,\"name\":\"label\",\"partsBinMetaInfo\":{\"__isSmartRef__\":true,\"id\":20},\"textChunks\":[{\"__isSmartRef__\":true,\"id\":21}],\"charsReplaced\":\"HPITitleSlide\",\"lastFindLoc\":-13,\"priorSelectionRange\":[0,5],\"prevScroll\":[0,0],\"_Scale\":1,\"priorExtent\":{\"__isSmartRef__\":true,\"id\":23},\"_ClipMode\":\"visible\",\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":24},\"eventHandler\":{\"__isSmartRef__\":true,\"id\":25},\"owner\":{\"__isSmartRef__\":true,\"id\":0},\"_Align\":\"center\",\"eventsAreIgnored\":true,\"_HandStyle\":\"default\",\"_PointerEvents\":\"none\",\"_TextColor\":{\"__isSmartRef__\":true,\"id\":26},\"_WhiteSpaceHandling\":\"pre-wrap\",\"_Padding\":{\"__isSmartRef__\":true,\"id\":27},\"__LivelyClassName__\":\"lively.morphic.Text\"},\"14\":{\"fill\":null,\"__SourceModuleName__\":\"Global.lively.morphic.Shapes\",\"_Position\":{\"__isSmartRef__\":true,\"id\":15},\"_Extent\":{\"__isSmartRef__\":true,\"id\":16},\"_BorderWidth\":0,\"_BorderColor\":{\"__isSmartRef__\":true,\"id\":17},\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":18},\"__LivelyClassName__\":\"lively.morphic.Shapes.Rectangle\"},\"15\":{\"x\":0,\"y\":0,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Point\"},\"16\":{\"x\":200,\"y\":24,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"17\":{\"r\":0,\"g\":0,\"b\":0,\"a\":1,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Color\"},\"18\":{\"init\":\"initHTML\",\"appendShape\":\"renderHTML\",\"setPosition\":\"setPositionHTML\",\"setExtent\":\"setExtentHTML\",\"setFill\":\"setFillHTML\",\"setBorderColor\":\"setBorderColorHTML\",\"setBorderWidth\":\"setBorderWidthHTML\",\"setStrokeOpacity\":\"setStrokeOpacityHTML\",\"setBorderRadius\":\"setBorderRadiusHTML\",\"setBorderStyle\":\"setBorderStyleHTML\",\"setOpacity\":\"setOpacityHTML\"},\"19\":{\"x\":0,\"y\":0,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"20\":{\"partsSpaceName\":\"PartsBin/Basic\",\"__SourceModuleName__\":\"Global.lively.PartsBin\",\"migrationLevel\":1,\"__LivelyClassName__\":\"lively.PartsBin.PartsBinMetaInfo\"},\"21\":{\"style\":{\"__isSmartRef__\":true,\"id\":22},\"chunkOwner\":{\"__isSmartRef__\":true,\"id\":13},\"storedString\":\"\",\"__LivelyClassName__\":\"lively.morphic.TextChunk\",\"__SourceModuleName__\":\"Global.lively.morphic.TextCore\"},\"22\":{\"__LivelyClassName__\":\"lively.morphic.TextEmphasis\",\"__SourceModuleName__\":\"Global.lively.morphic.TextCore\"},\"23\":{\"x\":200,\"y\":24,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"24\":{\"replaceRenderContext\":\"replaceRenderContextHTML\",\"init\":\"initHTML\",\"append\":\"appendHTML\",\"remove\":\"removeHTML\",\"triggerEvent\":\"triggerEventHTML\",\"setPosition\":\"setPositionHTML\",\"setRotation\":\"setRotationHTML\",\"setExtent\":\"setExtentHTML\",\"setScale\":\"setScaleHTML\",\"setVisible\":\"setVisibleHTML\",\"setOrigin\":\"setOriginHTML\",\"setClipMode\":\"setClipModeHTML\",\"setHandStyle\":\"setHandStyleHTML\",\"setPointerEvents\":\"setPointerEventsHTML\",\"updateText\":\"updateTextHTML\",\"setTextExtent\":\"setTextExtentHTML\",\"setMaxTextWidth\":\"setMaxTextWidthHTML\",\"setMaxTextHeight\":\"setMaxTextHeightHTML\",\"getTextExtent\":\"getTextExtentHTML\",\"getTextString\":\"getTextStringHTML\",\"ignoreTextEvents\":\"ignoreTextEventsHTML\",\"enableTextEvents\":\"enableTextEventsHTML\",\"setFontFamily\":\"setFontFamilyHTML\",\"setFontSize\":\"setFontSizeHTML\",\"setTextColor\":\"setTextColorHTML\",\"setPadding\":\"setPaddingHTML\",\"setAlign\":\"setAlignHTML\",\"setVerticalAlign\":\"setVerticalAlignHTML\",\"setDisplay\":\"setDisplayHTML\",\"setWhiteSpaceHandling\":\"setWhiteSpaceHandlingHTML\"},\"25\":{\"morph\":{\"__isSmartRef__\":true,\"id\":13},\"__SourceModuleName__\":\"Global.lively.morphic.Events\",\"__LivelyClassName__\":\"lively.morphic.EventHandler\"},\"26\":{\"r\":1,\"g\":1,\"b\":1,\"a\":1,\"__LivelyClassName__\":\"Color\",\"__SourceModuleName__\":\"Global\"},\"27\":{\"x\":0,\"y\":3,\"width\":0,\"height\":0,\"__LivelyClassName__\":\"Rectangle\",\"__SourceModuleName__\":\"Global\"},\"28\":{\"position\":{\"__isSmartRef__\":true,\"id\":29},\"_Extent\":{\"__isSmartRef__\":true,\"id\":30},\"_BorderWidth\":1,\"_BorderColor\":{\"__isSmartRef__\":true,\"id\":31},\"_Fill\":{\"__isSmartRef__\":true,\"id\":32},\"__SourceModuleName__\":\"Global.lively.morphic.Shapes\",\"renderContextTable\":{\"__isSmartRef__\":true,\"id\":33},\"_BorderRadius\":0,\"_BorderStyle\":\"solid\",\"__LivelyClassName__\":\"lively.morphic.Shapes.Rectangle\"},\"29\":{\"x\":0,\"y\":0,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Point\"},\"30\":{\"x\":200,\"y\":25,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"31\":{\"r\":0,\"g\":0,\"b\":0,\"a\":1,\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"Color\"},\"32\":{\"r\":0.839,\"g\":0.839,\"b\":0.839,\"a\":1,\"__LivelyClassName__\":\"Color\",\"__SourceModuleName__\":\"Global\"},\"33\":{\"init\":\"initHTML\",\"appendShape\":\"renderHTML\",\"setPosition\":\"setPositionHTML\",\"setExtent\":\"setExtentHTML\",\"setFill\":\"setFillHTML\",\"setBorderColor\":\"setBorderColorHTML\",\"setBorderWidth\":\"setBorderWidthHTML\",\"setStrokeOpacity\":\"setStrokeOpacityHTML\",\"setBorderRadius\":\"setBorderRadiusHTML\",\"setBorderStyle\":\"setBorderStyleHTML\",\"setOpacity\":\"setOpacityHTML\"},\"34\":{\"x\":0,\"y\":0,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"35\":{\"partsSpaceName\":\"PartsBin/Widgets/\",\"__SourceModuleName__\":\"Global.lively.PartsBin\",\"comment\":\"A simple progress bar that can have a label and a value (between 0 and 1).\",\"migrationLevel\":2,\"partName\":\"ProgressBar\",\"__LivelyClassName__\":\"lively.PartsBin.PartsBinMetaInfo\"},\"36\":{\"replaceRenderContext\":\"replaceRenderContextHTML\",\"init\":\"initHTML\",\"append\":\"appendHTML\",\"remove\":\"removeHTML\",\"triggerEvent\":\"triggerEventHTML\",\"setPosition\":\"setPositionHTML\",\"setRotation\":\"setRotationHTML\",\"setExtent\":\"setExtentHTML\",\"setScale\":\"setScaleHTML\",\"setVisible\":\"setVisibleHTML\",\"setOrigin\":\"setOriginHTML\",\"setClipMode\":\"setClipModeHTML\",\"setHandStyle\":\"setHandStyleHTML\",\"setPointerEvents\":\"setPointerEventsHTML\"},\"37\":{\"morph\":{\"__isSmartRef__\":true,\"id\":0},\"__SourceModuleName__\":\"Global.lively.morphic.Events\",\"__LivelyClassName__\":\"lively.morphic.EventHandler\"},\"38\":{\"x\":200,\"y\":25,\"__LivelyClassName__\":\"Point\",\"__SourceModuleName__\":\"Global\"},\"39\":{\"sourceObj\":{\"__isSmartRef__\":true,\"id\":0},\"sourceAttrName\":\"value\",\"targetObj\":{\"__isSmartRef__\":true,\"id\":0},\"targetMethodName\":\"updateBar\",\"__SourceModuleName__\":\"Global.lively.bindings\",\"__LivelyClassName__\":\"AttributeConnection\"},\"40\":{\"sourceObj\":{\"__isSmartRef__\":true,\"id\":0},\"sourceAttrName\":\"setExtent\",\"targetObj\":{\"__isSmartRef__\":true,\"id\":0},\"targetMethodName\":\"updateBar\",\"converterString\":\"function () { return this.sourceObj.getValue(); }\",\"updater\":null,\"updaterString\":null,\"varMapping\":{\"__isSmartRef__\":true,\"id\":41},\"__SourceModuleName__\":\"Global.lively.bindings\",\"__serializedLivelyClosures__\":{\"__isSmartRef__\":true,\"id\":42},\"__LivelyClassName__\":\"AttributeConnection\"},\"41\":{\"source\":{\"__isSmartRef__\":true,\"id\":0},\"target\":{\"__isSmartRef__\":true,\"id\":0}},\"42\":{\"converter\":{\"__isSmartRef__\":true,\"id\":43}},\"43\":{\"originalFunc\":null,\"varMapping\":{\"__isSmartRef__\":true,\"id\":41},\"source\":\"function () { return this.sourceObj.getValue(); }\",\"funcProperties\":{\"__isSmartRef__\":true,\"id\":44},\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"lively.Closure\"},\"44\":{},\"45\":{\"setValue\":{\"__isSmartRef__\":true,\"id\":46},\"getValue\":{\"__isSmartRef__\":true,\"id\":49},\"setLabel\":{\"__isSmartRef__\":true,\"id\":52},\"updateBar\":{\"__isSmartRef__\":true,\"id\":55}},\"46\":{\"varMapping\":{\"__isSmartRef__\":true,\"id\":47},\"source\":\"function setValue(number) {\\n\\tthis.value = number;\\n}\",\"funcProperties\":{\"__isSmartRef__\":true,\"id\":48},\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"lively.Closure\"},\"47\":{\"this\":{\"__isSmartRef__\":true,\"id\":0}},\"48\":{},\"49\":{\"varMapping\":{\"__isSmartRef__\":true,\"id\":50},\"source\":\"function getValue() {\\n\\treturn this.value;\\n}\",\"funcProperties\":{\"__isSmartRef__\":true,\"id\":51},\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"lively.Closure\"},\"50\":{\"this\":{\"__isSmartRef__\":true,\"id\":0}},\"51\":{},\"52\":{\"varMapping\":{\"__isSmartRef__\":true,\"id\":53},\"source\":\"function setLabel(label) {\\n\\tthis.get('label').setTextString(label);\\n}\",\"funcProperties\":{\"__isSmartRef__\":true,\"id\":54},\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"lively.Closure\"},\"53\":{\"this\":{\"__isSmartRef__\":true,\"id\":0}},\"54\":{},\"55\":{\"varMapping\":{\"__isSmartRef__\":true,\"id\":56},\"source\":\"function updateBar(value) {\\n\\tvar maxExt = this.getExtent();\\n\\n var bar = this.get('bar');\\n bar.setPosition(pt(1,1));\\n bar.setExtent(pt(Math.floor(maxExt.x * value), maxExt.y));\\n}\",\"funcProperties\":{\"__isSmartRef__\":true,\"id\":57},\"__SourceModuleName__\":\"Global\",\"__LivelyClassName__\":\"lively.Closure\"},\"56\":{\"this\":{\"__isSmartRef__\":true,\"id\":0}},\"57\":{},\"isSimplifiedRegistry\":true}}","__SourceModuleName__":"Global.lively.PartsBin","partVersions":[{"__isSmartRef__":true,"id":1399},{"__isSmartRef__":true,"id":1403},{"__isSmartRef__":true,"id":1407},{"__isSmartRef__":true,"id":1411}],"loadedMetaInfo":{"__isSmartRef__":true,"id":888},"part":{"__isSmartRef__":true,"id":853},"__LivelyClassName__":"lively.PartsBin.PartItem"},"1561":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"partVersions","targetObj":{"__isSmartRef__":true,"id":1391},"targetMethodName":"updateList","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1562":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"loadedMetaInfo","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"setMetaInfoOfSelectedItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1563":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"part","targetObj":{"__isSmartRef__":true,"id":1564},"targetMethodName":"remove","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1564":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1565},"id":95,"renderContextTable":{"__isSmartRef__":true,"id":1570},"eventHandler":{"__isSmartRef__":true,"id":1571},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1572},"owner":null,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Box"},"1565":{"_Position":{"__isSmartRef__":true,"id":1566},"renderContextTable":{"__isSmartRef__":true,"id":1567},"_Extent":{"__isSmartRef__":true,"id":1568},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":{"__isSmartRef__":true,"id":1569},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1566":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1567":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1568":{"x":100,"y":100,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1569":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1570":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1571":{"morph":{"__isSmartRef__":true,"id":1564},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1572":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1573":{"sourceObj":{"__isSmartRef__":true,"id":1560},"sourceAttrName":"part","targetObj":{"__isSmartRef__":true,"id":1522},"targetMethodName":"openLoadedPartsBinItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1574":{"position":{"__isSmartRef__":true,"id":1575},"_Extent":{"__isSmartRef__":true,"id":1576},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1577},"_Fill":{"__isSmartRef__":true,"id":1578},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1579},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1575":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1576":{"x":538,"y":421.01402102803513,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1577":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1578":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1579":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1580":{"x":154,"y":37,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1581":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1582":{"x":538,"y":421.01402102803513,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1583":{"sourceObj":{"__isSmartRef__":true,"id":1521},"sourceAttrName":"selectedItem","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"setSelectedPartItem","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1584":{"resizeHeight":true,"resizeWidth":true},"1585":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1586":{"morph":{"__isSmartRef__":true,"id":1521},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1587":{"adjustForNewBounds":{"__isSmartRef__":true,"id":1588},"unselectAll":{"__isSmartRef__":true,"id":1595},"selectPartItem":{"__isSmartRef__":true,"id":1598}},"1588":{"varMapping":{"__isSmartRef__":true,"id":1589},"source":"function adjustForNewBounds() {\n/*\n\tthis.adjustForNewBounds()\n*/\n\t$super();\n\tvar bounds = this.innerBounds(),\n\t\tx = bounds.x,\n\t\ty = bounds.y,\n\t\twidth = bounds.width;\n\tthis.submorphs.forEach(function(morph) {\n\t\tvar extent = morph.getExtent();\n\t\tif (extent.x + x > width) {\n\t\t\tx = 0;\n\t\t\ty += extent.y + 5;\n\t\t}\n\t\tmorph.setPosition(pt(x,y))\n\t\tx += extent.x + 5;\n\t})\n}","funcProperties":{"__isSmartRef__":true,"id":1594},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1589":{"this":{"__isSmartRef__":true,"id":1521},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1590}},"1590":{"$super":{"__isSmartRef__":true,"id":1591}},"1591":{"varMapping":{"__isSmartRef__":true,"id":1592},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1593},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1592":{"obj":{"__isSmartRef__":true,"id":1521},"name":"adjustForNewBounds"},"1593":{},"1594":{},"1595":{"varMapping":{"__isSmartRef__":true,"id":1596},"source":"function unselectAll() {\n\tthis.submorphs.invoke('showAsNotSelected');\n}","funcProperties":{"__isSmartRef__":true,"id":1597},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1596":{"this":{"__isSmartRef__":true,"id":1521}},"1597":{},"1598":{"varMapping":{"__isSmartRef__":true,"id":1599},"source":"function selectPartItem(item) {\n\tthis.selectedItem = item && item.partItem;\n\tthis.submorphs.without(item).invoke('showAsNotSelected');\n}","funcProperties":{"__isSmartRef__":true,"id":1600},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1599":{"this":{"__isSmartRef__":true,"id":1521}},"1600":{},"1601":{"submorphs":[{"__isSmartRef__":true,"id":1602}],"scripts":[],"id":1691,"shape":{"__isSmartRef__":true,"id":1616},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1631},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1620},"lighterFill":{"__isSmartRef__":true,"id":1632},"label":{"__isSmartRef__":true,"id":1602},"_Rotation":0,"name":"removeCategoryButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":1641},"attributeConnections":[{"__isSmartRef__":true,"id":1642}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":1643},"owner":{"__isSmartRef__":true,"id":1236},"layout":{"__isSmartRef__":true,"id":1644},"renderContextTable":{"__isSmartRef__":true,"id":1645},"eventHandler":{"__isSmartRef__":true,"id":1646},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1647},"__LivelyClassName__":"lively.morphic.Button"},"1602":{"submorphs":[],"scripts":[],"id":1692,"shape":{"__isSmartRef__":true,"id":1603},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1608},"_MaxTextWidth":20,"_MaxTextHeight":20,"textStyle":null,"padding":{"__isSmartRef__":true,"id":1609},"_Padding":{"__isSmartRef__":true,"id":1610},"owner":{"__isSmartRef__":true,"id":1601},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1611},"textChunks":[{"__isSmartRef__":true,"id":1612}],"_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1614},"eventHandler":{"__isSmartRef__":true,"id":1615},"_HandStyle":"default","_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1603":{"position":{"__isSmartRef__":true,"id":1604},"_Extent":{"__isSmartRef__":true,"id":1605},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1606},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1607},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1604":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1605":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1606":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1607":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1608":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1609":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1610":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1611":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1612":{"style":{"__isSmartRef__":true,"id":1613},"chunkOwner":{"__isSmartRef__":true,"id":1602},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"-","__LivelyClassName__":"lively.morphic.TextChunk"},"1613":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1614":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1615":{"morph":{"__isSmartRef__":true,"id":1602},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1616":{"position":{"__isSmartRef__":true,"id":1617},"_Extent":{"__isSmartRef__":true,"id":1618},"_BorderWidth":1.1840000000000002,"_BorderColor":{"__isSmartRef__":true,"id":1619},"_Fill":{"__isSmartRef__":true,"id":1620},"_BorderRadius":5.2,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1630},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1617":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1618":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1619":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1620":{"stops":[{"__isSmartRef__":true,"id":1621},{"__isSmartRef__":true,"id":1623},{"__isSmartRef__":true,"id":1625},{"__isSmartRef__":true,"id":1627}],"vector":{"__isSmartRef__":true,"id":1629},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1621":{"offset":0,"color":{"__isSmartRef__":true,"id":1622}},"1622":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1623":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1624}},"1624":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1625":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1626}},"1626":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1627":{"offset":1,"color":{"__isSmartRef__":true,"id":1628}},"1628":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1629":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1630":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1631":{"x":120,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1632":{"stops":[{"__isSmartRef__":true,"id":1633},{"__isSmartRef__":true,"id":1635},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1639}],"vector":{"__isSmartRef__":true,"id":1629},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1633":{"offset":0,"color":{"__isSmartRef__":true,"id":1634}},"1634":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1635":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1636}},"1636":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1637":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1638}},"1638":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1639":{"offset":1,"color":{"__isSmartRef__":true,"id":1640}},"1640":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1641":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1642":{"sourceObj":{"__isSmartRef__":true,"id":1601},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1601},"targetMethodName":"onFire","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1643":{"x":134.06609913216516,"y":21,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1644":{"moveVertical":true},"1645":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1646":{"morph":{"__isSmartRef__":true,"id":1601},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1647":{"onFire":{"__isSmartRef__":true,"id":1648}},"1648":{"varMapping":{"__isSmartRef__":true,"id":1649},"source":"function onFire() {\n\tthis.get('PartsBinBrowser').removeCategoryInteractively()\n}","funcProperties":{"__isSmartRef__":true,"id":1650},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1649":{"this":{"__isSmartRef__":true,"id":1601}},"1650":{},"1651":{"submorphs":[{"__isSmartRef__":true,"id":1652}],"scripts":[],"id":1693,"shape":{"__isSmartRef__":true,"id":1666},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1681},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1670},"lighterFill":{"__isSmartRef__":true,"id":1682},"label":{"__isSmartRef__":true,"id":1652},"_Rotation":0,"name":"addCategoryButton","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":1691},"attributeConnections":[{"__isSmartRef__":true,"id":1692}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":1693},"owner":{"__isSmartRef__":true,"id":1236},"layout":{"__isSmartRef__":true,"id":1694},"renderContextTable":{"__isSmartRef__":true,"id":1695},"eventHandler":{"__isSmartRef__":true,"id":1696},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1697},"__LivelyClassName__":"lively.morphic.Button"},"1652":{"submorphs":[],"scripts":[],"id":1694,"shape":{"__isSmartRef__":true,"id":1653},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1658},"_MaxTextWidth":20,"_MaxTextHeight":20,"textStyle":null,"padding":{"__isSmartRef__":true,"id":1659},"_Padding":{"__isSmartRef__":true,"id":1660},"owner":{"__isSmartRef__":true,"id":1651},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":1661},"textChunks":[{"__isSmartRef__":true,"id":1662}],"_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1664},"eventHandler":{"__isSmartRef__":true,"id":1665},"_HandStyle":"default","_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1653":{"position":{"__isSmartRef__":true,"id":1654},"_Extent":{"__isSmartRef__":true,"id":1655},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1656},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1657},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1654":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1655":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1656":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1657":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1658":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1659":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1660":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1661":{"x":20,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1662":{"style":{"__isSmartRef__":true,"id":1663},"chunkOwner":{"__isSmartRef__":true,"id":1652},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"+","__LivelyClassName__":"lively.morphic.TextChunk"},"1663":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1664":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1665":{"morph":{"__isSmartRef__":true,"id":1652},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1666":{"position":{"__isSmartRef__":true,"id":1667},"_Extent":{"__isSmartRef__":true,"id":1668},"_BorderWidth":1.1840000000000002,"_BorderColor":{"__isSmartRef__":true,"id":1669},"_Fill":{"__isSmartRef__":true,"id":1670},"_BorderRadius":5.2,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1680},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1667":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1668":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1669":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1670":{"stops":[{"__isSmartRef__":true,"id":1671},{"__isSmartRef__":true,"id":1673},{"__isSmartRef__":true,"id":1675},{"__isSmartRef__":true,"id":1677}],"vector":{"__isSmartRef__":true,"id":1679},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1671":{"offset":0,"color":{"__isSmartRef__":true,"id":1672}},"1672":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1673":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1674}},"1674":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1675":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1676}},"1676":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1677":{"offset":1,"color":{"__isSmartRef__":true,"id":1678}},"1678":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1679":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1680":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1681":{"x":100,"y":10,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1682":{"stops":[{"__isSmartRef__":true,"id":1683},{"__isSmartRef__":true,"id":1685},{"__isSmartRef__":true,"id":1687},{"__isSmartRef__":true,"id":1689}],"vector":{"__isSmartRef__":true,"id":1679},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1683":{"offset":0,"color":{"__isSmartRef__":true,"id":1684}},"1684":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1685":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1686}},"1686":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1687":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1688}},"1688":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1689":{"offset":1,"color":{"__isSmartRef__":true,"id":1690}},"1690":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1691":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1692":{"sourceObj":{"__isSmartRef__":true,"id":1651},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1651},"targetMethodName":"onFire","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1693":{"x":134.06609913216516,"y":19.99799699599498,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1694":{"moveVertical":true},"1695":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1696":{"morph":{"__isSmartRef__":true,"id":1651},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1697":{"onFire":{"__isSmartRef__":true,"id":1698}},"1698":{"varMapping":{"__isSmartRef__":true,"id":1699},"source":"function onFire() {\n\tthis.get('PartsBinBrowser').addCategoryInteractively()\n}","funcProperties":{"__isSmartRef__":true,"id":1700},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1699":{"this":{"__isSmartRef__":true,"id":1651}},"1700":{},"1701":{"submorphs":[],"scripts":[],"id":1695,"shape":{"__isSmartRef__":true,"id":1702},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1707},"_MaxTextWidth":488,"_MaxTextHeight":21,"textColor":{"__isSmartRef__":true,"id":1708},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"name":"searchText","partsBinMetaInfo":{"__isSmartRef__":true,"id":1709},"textChunks":[{"__isSmartRef__":true,"id":1710}],"charsReplaced":"Search","lastFindLoc":-6,"priorSelectionRange":[0,0],"prevScroll":[0,0],"_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":1712},"renderContextTable":{"__isSmartRef__":true,"id":1713},"eventHandler":{"__isSmartRef__":true,"id":1714},"owner":{"__isSmartRef__":true,"id":1236},"isInputLine":true,"attributeConnections":[{"__isSmartRef__":true,"id":1715}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"layout":{"__isSmartRef__":true,"id":1716},"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"hidden","savedTextString":"progressb","__LivelyClassName__":"lively.morphic.Text"},"1702":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1703},"_Extent":{"__isSmartRef__":true,"id":1704},"_BorderWidth":2.3680000000000003,"_BorderColor":{"__isSmartRef__":true,"id":1705},"renderContextTable":{"__isSmartRef__":true,"id":1706},"_BorderRadius":1.8500000000000003,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1703":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1704":{"x":488,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1705":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1706":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1707":{"x":153.76802363450668,"y":13.108574301564317,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1708":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1709":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1710":{"style":{"__isSmartRef__":true,"id":1711},"chunkOwner":{"__isSmartRef__":true,"id":1701},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"progressb","__LivelyClassName__":"lively.morphic.TextChunk"},"1711":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1712":{"x":488,"y":21,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1713":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1714":{"morph":{"__isSmartRef__":true,"id":1701},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1715":{"sourceObj":{"__isSmartRef__":true,"id":1701},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"search","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1716":{},"1717":{"submorphs":[],"scripts":[],"id":1696,"shape":{"__isSmartRef__":true,"id":1718},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1723},"_MaxTextWidth":168,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1721},"showsHalos":false,"_FontSize":9,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"name":"Text4","partsBinMetaInfo":{"__isSmartRef__":true,"id":1724},"textChunks":[{"__isSmartRef__":true,"id":1725}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[6,6],"prevScroll":[0,0],"_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":1727},"renderContextTable":{"__isSmartRef__":true,"id":1728},"eventHandler":{"__isSmartRef__":true,"id":1729},"owner":{"__isSmartRef__":true,"id":1236},"__LivelyClassName__":"lively.morphic.Text"},"1718":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1719},"_Extent":{"__isSmartRef__":true,"id":1720},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1721},"renderContextTable":{"__isSmartRef__":true,"id":1722},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1719":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1720":{"x":168,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1721":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1722":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1723":{"x":154.76802363450668,"y":0.10857430156420378,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1724":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1725":{"style":{"__isSmartRef__":true,"id":1726},"morph":{"__isSmartRef__":true,"id":1717},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1717},"storedString":"search","__LivelyClassName__":"lively.morphic.TextChunk"},"1726":{"__SourceModuleName__":"Global.lively.morphic.TextCore","italics":"italic","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1727":{"x":168,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1728":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1729":{"morph":{"__isSmartRef__":true,"id":1717},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1730":{"submorphs":[{"__isSmartRef__":true,"id":1731}],"scripts":[],"id":1697,"shape":{"__isSmartRef__":true,"id":1745},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1748},"lighterFill":{"__isSmartRef__":true,"id":1760},"label":{"__isSmartRef__":true,"id":1731},"attributeConnections":[{"__isSmartRef__":true,"id":1769},{"__isSmartRef__":true,"id":1796},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800}],"doNotSerialize":["$$fire","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$fire","$$_Position","$$_Scale","$$_Rotation","$$owner"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":1993},"name":"moreButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1994},"renderContextTable":{"__isSmartRef__":true,"id":1995},"eventHandler":{"__isSmartRef__":true,"id":1996},"priorExtent":{"__isSmartRef__":true,"id":1997},"magnets":[{"__isSmartRef__":true,"id":1783}],"layout":{"__isSmartRef__":true,"id":1998},"_Position":{"__isSmartRef__":true,"id":1999},"_Scale":1,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":1236},"__LivelyClassName__":"lively.morphic.Button"},"1731":{"submorphs":[],"scripts":[],"id":1698,"shape":{"__isSmartRef__":true,"id":1732},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":45.76199368290986,"_MaxTextHeight":20,"fixedHeight":true,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1737},"textColor":{"__isSmartRef__":true,"id":1735},"owner":{"__isSmartRef__":true,"id":1730},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":1738}],"padding":{"__isSmartRef__":true,"id":1740},"_Padding":{"__isSmartRef__":true,"id":1741},"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":1742},"_FontFamily":"Helvetica, Sans-Serif","renderContextTable":{"__isSmartRef__":true,"id":1743},"eventHandler":{"__isSmartRef__":true,"id":1744},"_HandStyle":"default","_PointerEvents":"none","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_FontSize":11,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1732":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1733},"_Extent":{"__isSmartRef__":true,"id":1734},"_BorderColor":{"__isSmartRef__":true,"id":1735},"renderContextTable":{"__isSmartRef__":true,"id":1736},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1733":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1734":{"x":45.76199368290986,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1735":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1736":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1737":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1738":{"style":{"__isSmartRef__":true,"id":1739},"chunkOwner":{"__isSmartRef__":true,"id":1731},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"more","__LivelyClassName__":"lively.morphic.TextChunk"},"1739":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1740":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1741":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1742":{"x":45.76199368290986,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1743":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1744":{"morph":{"__isSmartRef__":true,"id":1731},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1745":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1746},"_Extent":{"__isSmartRef__":true,"id":1747},"_Fill":{"__isSmartRef__":true,"id":1748},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1758},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":1759},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1746":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1747":{"x":45.76199368290986,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1748":{"stops":[{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1753},{"__isSmartRef__":true,"id":1755}],"vector":{"__isSmartRef__":true,"id":1757},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1749":{"offset":0,"color":{"__isSmartRef__":true,"id":1750}},"1750":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1751":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1752}},"1752":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1753":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1754}},"1754":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1755":{"offset":1,"color":{"__isSmartRef__":true,"id":1756}},"1756":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1757":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1758":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1759":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1760":{"stops":[{"__isSmartRef__":true,"id":1761},{"__isSmartRef__":true,"id":1763},{"__isSmartRef__":true,"id":1765},{"__isSmartRef__":true,"id":1767}],"vector":{"__isSmartRef__":true,"id":1757},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1761":{"offset":0,"color":{"__isSmartRef__":true,"id":1762}},"1762":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1763":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1764}},"1764":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1765":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1766}},"1766":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1767":{"offset":1,"color":{"__isSmartRef__":true,"id":1768}},"1768":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1769":{"sourceObj":{"__isSmartRef__":true,"id":1730},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"toggleMorePane","visualConnector":{"__isSmartRef__":true,"id":1770},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1770":{"submorphs":[],"scripts":[],"id":7318,"renderContextTable":{"__isSmartRef__":true,"id":1771},"shape":{"__isSmartRef__":true,"id":1772},"droppingEnabled":true,"halosEnabled":true,"eventHandler":{"__isSmartRef__":true,"id":1781},"controlPoints":[{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1785}],"con":{"__isSmartRef__":true,"id":1769},"showsMorphMenu":true,"isCopyMorphRef":true,"morphRefId":1,"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1788},"__LivelyClassName__":"lively.morphic.Path"},"1771":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1772":{"dontChangeShape":false,"cachedVertices":[{"__isSmartRef__":true,"id":1773},{"__isSmartRef__":true,"id":1774}],"_PathElements":[{"__isSmartRef__":true,"id":1775},{"__isSmartRef__":true,"id":1776}],"renderContextTable":{"__isSmartRef__":true,"id":1777},"_Position":{"__isSmartRef__":true,"id":1778},"_Extent":{"__isSmartRef__":true,"id":1779},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1780},"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.Path"},"1773":{"x":1689.7977591071476,"y":217.97218975832595,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1774":{"x":1041,"y":204,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1775":{"isAbsolute":true,"x":1689.7977591071476,"y":217.97218975832595,"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.MoveTo"},"1776":{"isAbsolute":true,"x":1041,"y":204,"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.LineTo"},"1777":{},"1778":{"x":-2,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1779":{"x":720.7977294921875,"y":13.972190856933594,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1780":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1781":{"morph":{"__isSmartRef__":true,"id":1770},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1782":{"morph":{"__isSmartRef__":true,"id":1770},"index":0,"connectedMagnet":{"__isSmartRef__":true,"id":1783},"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__LivelyClassName__":"lively.morphic.ControlPoint"},"1783":{"morph":{"__isSmartRef__":true,"id":1730},"position":{"__isSmartRef__":true,"id":1784},"connectedControlPoints":[{"__isSmartRef__":true,"id":1782}],"__SourceModuleName__":"Global.lively.morphic.Connectors","__LivelyClassName__":"lively.morphic.Magnet"},"1784":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1785":{"morph":{"__isSmartRef__":true,"id":1770},"index":1,"connectedMagnet":{"__isSmartRef__":true,"id":1786},"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__LivelyClassName__":"lively.morphic.ControlPoint"},"1786":{"morph":{"__isSmartRef__":true,"id":1236},"position":{"__isSmartRef__":true,"id":1787},"connectedControlPoints":[{"__isSmartRef__":true,"id":1785}],"__SourceModuleName__":"Global.lively.morphic.Connectors","__LivelyClassName__":"lively.morphic.Magnet"},"1787":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1788":{"morphMenuItems":{"__isSmartRef__":true,"id":1789}},"1789":{"varMapping":{"__isSmartRef__":true,"id":1790},"source":"function morphMenuItems() {\n var visualConnector = this, con = this.con, world = this.world();\n var items = [\n ['edit converter', function() {\n var source = con.converterString || 'function converter(value) {\\n return value\\n}',\n editor = new lively.morphic.Text(new Rectangle(0,0, 400, 200), source);\n editor.doitContext = con;\n connect(editor, 'savedTextString', con, 'converterString', {updater:\n function($upd, source) { this.targetObj.converter = null; $upd(source) }});\n connect(editor, 'savedTextString', world, 'alertOK', {converter: \n function() { return 'setting new converter' }})\n editor.applyStyle({syntaxHighlighting: true, fontFamily: 'Courier', resizeWidth: true, resizeHeight: true});\n var title = con.targetObj.name && con.sourceObj.name ?\n 'Editor for ' + con.targetObj.name + ' -> ' + con.sourceObj.name :\n 'Editor for converter function';\n var window = world.addFramedMorph(editor, title)\n window.align(window.bounds().topCenter(), visualConnector.bounds().bottomCenter())\n }],\n ['hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['cancel', function() {}],\n ];\n return items;\n }","funcProperties":{"__isSmartRef__":true,"id":1795},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1790":{"this":{"__isSmartRef__":true,"id":1770},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1791}},"1791":{"$super":{"__isSmartRef__":true,"id":1792}},"1792":{"varMapping":{"__isSmartRef__":true,"id":1793},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1794},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1793":{"obj":{"__isSmartRef__":true,"id":1770},"name":"morphMenuItems"},"1794":{},"1795":{},"1796":{"sourceObj":{"__isSmartRef__":true,"id":1730},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":1782},"targetMethodName":"alignToMagnet","dependendConnections":[{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798},{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803},{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959}],"oldTransform":{"__isSmartRef__":true,"id":1991},"__SourceModuleName__":"Global.lively.bindings.GeometryBindings","__LivelyClassName__":"lively.morphic.GeometryTransformConnection"},"1797":{"sourceObj":{"__isSmartRef__":true,"id":1730},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1798":{"sourceObj":{"__isSmartRef__":true,"id":1730},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1799":{"sourceObj":{"__isSmartRef__":true,"id":1730},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1800":{"sourceObj":{"__isSmartRef__":true,"id":1730},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"updateOwners","converter":null,"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1801},"dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1801":{"source":{"__isSmartRef__":true,"id":1730},"target":{"__isSmartRef__":true,"id":1796}},"1802":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1803":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1804":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1805":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"updateOwners","converter":null,"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1806},"dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1806":{"source":{"__isSmartRef__":true,"id":1236},"target":{"__isSmartRef__":true,"id":1796}},"1807":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1808":{"submorphs":[{"__isSmartRef__":true,"id":1236},{"__isSmartRef__":true,"id":1809}],"scripts":[],"id":1674,"shape":{"__isSmartRef__":true,"id":1947},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":1950},"priorExtent":{"__isSmartRef__":true,"id":1951},"targetMorph":{"__isSmartRef__":true,"id":1236},"titleBar":{"__isSmartRef__":true,"id":1809},"contentOffset":{"__isSmartRef__":true,"id":1952},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"highlighted":true,"prevDragPos":{"__isSmartRef__":true,"id":1953},"showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":1954},"name":"PartsBinBrowser","__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":1955},"eventHandler":{"__isSmartRef__":true,"id":1956},"cameForward":false,"attributeConnections":[{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958},{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974}],"doNotSerialize":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"_Position":{"__isSmartRef__":true,"id":1982},"_Scale":1,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1983},"__LivelyClassName__":"lively.morphic.Window"},"1809":{"submorphs":[{"__isSmartRef__":true,"id":1810},{"__isSmartRef__":true,"id":1823},{"__isSmartRef__":true,"id":1867},{"__isSmartRef__":true,"id":1899}],"scripts":[],"id":1699,"shape":{"__isSmartRef__":true,"id":1932},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":1942},"_Position":{"__isSmartRef__":true,"id":1943},"eventsAreIgnored":true,"_HandStyle":"default","windowMorph":{"__isSmartRef__":true,"id":1808},"label":{"__isSmartRef__":true,"id":1810},"closeButton":{"__isSmartRef__":true,"id":1823},"menuButton":{"__isSmartRef__":true,"id":1867},"collapseButton":{"__isSmartRef__":true,"id":1899},"priorExtent":{"__isSmartRef__":true,"id":1944},"owner":{"__isSmartRef__":true,"id":1808},"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":1945},"eventHandler":{"__isSmartRef__":true,"id":1946},"_Scale":1,"__LivelyClassName__":"lively.morphic.TitleBar"},"1810":{"submorphs":[],"scripts":[],"id":1700,"shape":{"__isSmartRef__":true,"id":1811},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1816},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":1817},"priorExtent":{"__isSmartRef__":true,"id":1818},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":1819}],"evalEnabled":false,"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_FontSize":10,"_Align":"center","owner":{"__isSmartRef__":true,"id":1809},"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":1821},"eventHandler":{"__isSmartRef__":true,"id":1822},"_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1811":{"_Position":{"__isSmartRef__":true,"id":1812},"_Extent":{"__isSmartRef__":true,"id":1813},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1814},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1815},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1812":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1813":{"x":642.1842763684606,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1814":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1815":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1816":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1817":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1818":{"x":642.1842763684606,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1819":{"style":{"__isSmartRef__":true,"id":1820},"morph":{"__isSmartRef__":true,"id":1810},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1810},"storedString":"PartsBinBrowser","__LivelyClassName__":"lively.morphic.TextChunk"},"1820":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1821":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1822":{"morph":{"__isSmartRef__":true,"id":1810},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1823":{"submorphs":[{"__isSmartRef__":true,"id":1824}],"scripts":[],"id":1701,"shape":{"__isSmartRef__":true,"id":1836},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1851},"priorExtent":{"__isSmartRef__":true,"id":1852},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1840},"lighterFill":{"__isSmartRef__":true,"id":1853},"label":{"__isSmartRef__":true,"id":1824},"owner":{"__isSmartRef__":true,"id":1809},"layout":{"__isSmartRef__":true,"id":1862},"attributeConnections":[{"__isSmartRef__":true,"id":1863},{"__isSmartRef__":true,"id":1864}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":1865},"eventHandler":{"__isSmartRef__":true,"id":1866},"_Scale":1,"__LivelyClassName__":"lively.morphic.WindowControl"},"1824":{"submorphs":[],"scripts":[],"id":1702,"shape":{"__isSmartRef__":true,"id":1825},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1829},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":1830},"priorExtent":{"__isSmartRef__":true,"id":1831},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":1832}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1823},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":1834},"eventHandler":{"__isSmartRef__":true,"id":1835},"_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1825":{"_Position":{"__isSmartRef__":true,"id":1826},"_Extent":{"__isSmartRef__":true,"id":1827},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1814},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1828},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1826":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1827":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1828":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1829":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1830":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1831":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1832":{"style":{"__isSmartRef__":true,"id":1833},"morph":{"__isSmartRef__":true,"id":1824},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1824},"storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"1833":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1834":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1835":{"morph":{"__isSmartRef__":true,"id":1824},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1836":{"_Position":{"__isSmartRef__":true,"id":1837},"_Extent":{"__isSmartRef__":true,"id":1838},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1839},"_Fill":{"__isSmartRef__":true,"id":1840},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1850},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1837":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1838":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1839":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1840":{"stops":[{"__isSmartRef__":true,"id":1841},{"__isSmartRef__":true,"id":1843},{"__isSmartRef__":true,"id":1845},{"__isSmartRef__":true,"id":1847}],"vector":{"__isSmartRef__":true,"id":1849},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1841":{"offset":0,"color":{"__isSmartRef__":true,"id":1842}},"1842":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1843":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1844}},"1844":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1845":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1846}},"1846":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1847":{"offset":1,"color":{"__isSmartRef__":true,"id":1848}},"1848":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1849":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1850":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1851":{"x":681.1842763684606,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1852":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1853":{"stops":[{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1856},{"__isSmartRef__":true,"id":1858},{"__isSmartRef__":true,"id":1860}],"vector":{"__isSmartRef__":true,"id":1849},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1854":{"offset":0,"color":{"__isSmartRef__":true,"id":1855}},"1855":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1856":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1857}},"1857":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1858":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1859}},"1859":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1860":{"offset":1,"color":{"__isSmartRef__":true,"id":1861}},"1861":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1862":{"moveHorizontal":true},"1863":{"sourceObj":{"__isSmartRef__":true,"id":1823},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1808},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1864":{"sourceObj":{"__isSmartRef__":true,"id":1823},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1808},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1865":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1866":{"morph":{"__isSmartRef__":true,"id":1823},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1867":{"submorphs":[{"__isSmartRef__":true,"id":1868}],"scripts":[],"id":1703,"shape":{"__isSmartRef__":true,"id":1880},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1884},"priorExtent":{"__isSmartRef__":true,"id":1885},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1840},"lighterFill":{"__isSmartRef__":true,"id":1886},"label":{"__isSmartRef__":true,"id":1868},"owner":{"__isSmartRef__":true,"id":1809},"attributeConnections":[{"__isSmartRef__":true,"id":1895},{"__isSmartRef__":true,"id":1896}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":1897},"eventHandler":{"__isSmartRef__":true,"id":1898},"_Scale":1,"__LivelyClassName__":"lively.morphic.WindowControl"},"1868":{"submorphs":[],"scripts":[],"id":1704,"shape":{"__isSmartRef__":true,"id":1869},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1873},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":1874},"priorExtent":{"__isSmartRef__":true,"id":1875},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":1876}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1867},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":1878},"eventHandler":{"__isSmartRef__":true,"id":1879},"_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1869":{"_Position":{"__isSmartRef__":true,"id":1870},"_Extent":{"__isSmartRef__":true,"id":1871},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1814},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1872},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1870":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1871":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1872":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1873":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1874":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1875":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1876":{"style":{"__isSmartRef__":true,"id":1877},"morph":{"__isSmartRef__":true,"id":1868},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1868},"storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"1877":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1878":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1879":{"morph":{"__isSmartRef__":true,"id":1868},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1880":{"_Position":{"__isSmartRef__":true,"id":1881},"_Extent":{"__isSmartRef__":true,"id":1882},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1839},"_Fill":{"__isSmartRef__":true,"id":1840},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1883},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1881":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1882":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1883":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1884":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1885":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1886":{"stops":[{"__isSmartRef__":true,"id":1887},{"__isSmartRef__":true,"id":1889},{"__isSmartRef__":true,"id":1891},{"__isSmartRef__":true,"id":1893}],"vector":{"__isSmartRef__":true,"id":1849},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1887":{"offset":0,"color":{"__isSmartRef__":true,"id":1888}},"1888":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1889":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1890}},"1890":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1891":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1892}},"1892":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1893":{"offset":1,"color":{"__isSmartRef__":true,"id":1894}},"1894":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1895":{"sourceObj":{"__isSmartRef__":true,"id":1867},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1808},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1896":{"sourceObj":{"__isSmartRef__":true,"id":1867},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1808},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1897":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1898":{"morph":{"__isSmartRef__":true,"id":1867},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1899":{"submorphs":[{"__isSmartRef__":true,"id":1900}],"scripts":[],"id":1705,"shape":{"__isSmartRef__":true,"id":1912},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1916},"priorExtent":{"__isSmartRef__":true,"id":1917},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1840},"lighterFill":{"__isSmartRef__":true,"id":1918},"label":{"__isSmartRef__":true,"id":1900},"owner":{"__isSmartRef__":true,"id":1809},"layout":{"__isSmartRef__":true,"id":1927},"attributeConnections":[{"__isSmartRef__":true,"id":1928},{"__isSmartRef__":true,"id":1929}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":1930},"eventHandler":{"__isSmartRef__":true,"id":1931},"_Scale":1,"__LivelyClassName__":"lively.morphic.WindowControl"},"1900":{"submorphs":[],"scripts":[],"id":1706,"shape":{"__isSmartRef__":true,"id":1901},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1905},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":1906},"priorExtent":{"__isSmartRef__":true,"id":1907},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":1908}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1899},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":1910},"eventHandler":{"__isSmartRef__":true,"id":1911},"_PointerEvents":"none","_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1901":{"_Position":{"__isSmartRef__":true,"id":1902},"_Extent":{"__isSmartRef__":true,"id":1903},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1814},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1904},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1902":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1903":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1904":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1905":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1906":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1907":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1908":{"style":{"__isSmartRef__":true,"id":1909},"morph":{"__isSmartRef__":true,"id":1900},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1900},"storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"1909":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1910":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"1911":{"morph":{"__isSmartRef__":true,"id":1900},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1912":{"_Position":{"__isSmartRef__":true,"id":1913},"_Extent":{"__isSmartRef__":true,"id":1914},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1839},"_Fill":{"__isSmartRef__":true,"id":1840},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1915},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1913":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1914":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1915":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1916":{"x":662.1842763684606,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1917":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1918":{"stops":[{"__isSmartRef__":true,"id":1919},{"__isSmartRef__":true,"id":1921},{"__isSmartRef__":true,"id":1923},{"__isSmartRef__":true,"id":1925}],"vector":{"__isSmartRef__":true,"id":1849},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1919":{"offset":0,"color":{"__isSmartRef__":true,"id":1920}},"1920":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1921":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1922}},"1922":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1923":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1924}},"1924":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1925":{"offset":1,"color":{"__isSmartRef__":true,"id":1926}},"1926":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1927":{"moveHorizontal":true},"1928":{"sourceObj":{"__isSmartRef__":true,"id":1899},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1808},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1929":{"sourceObj":{"__isSmartRef__":true,"id":1899},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1808},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1930":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1931":{"morph":{"__isSmartRef__":true,"id":1899},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1932":{"_Position":{"__isSmartRef__":true,"id":1933},"_Extent":{"__isSmartRef__":true,"id":1934},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":1935},"_Fill":{"__isSmartRef__":true,"id":1936},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1941},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1933":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1934":{"x":701.1842763684606,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1935":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"1936":{"stops":[{"__isSmartRef__":true,"id":1937},{"__isSmartRef__":true,"id":1939}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1937":{"offset":0,"color":{"__isSmartRef__":true,"id":1938}},"1938":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1939":{"offset":1,"color":{"__isSmartRef__":true,"id":1940}},"1940":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"1941":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1942":{"resizeWidth":true,"adjustForNewBounds":true},"1943":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1944":{"x":701.1842763684606,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1945":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1946":{"morph":{"__isSmartRef__":true,"id":1809},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1947":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":1948},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1949},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1948":{"x":701.1842763684606,"y":493.01402102803513,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1949":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1950":{"adjustForNewBounds":true},"1951":{"x":701.1842763684606,"y":493.01402102803513,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1952":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1953":{"x":1386,"y":200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1954":{"partsSpaceName":"PartsBin/Tools","__SourceModuleName__":"Global.lively.PartsBin","requiredModules":["lively.PartsBin"],"migrationLevel":2,"comment":"Browser for a Parts repository.","partName":"PartsBinBrowser","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1955":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1956":{"morph":{"__isSmartRef__":true,"id":1808},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1957":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1958":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1959":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1796},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1960},"dependedBy":{"__isSmartRef__":true,"id":1796},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1961},"__LivelyClassName__":"AttributeConnection"},"1960":{"source":{"__isSmartRef__":true,"id":1808},"target":{"__isSmartRef__":true,"id":1796}},"1961":{"converter":{"__isSmartRef__":true,"id":1962}},"1962":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":1963},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":1964},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1963":{"source":{"__isSmartRef__":true,"id":1808},"target":{"__isSmartRef__":true,"id":1796}},"1964":{},"1965":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1966":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":1785},"targetMethodName":"alignToMagnet","dependendConnections":[{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968},{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973},{"__isSmartRef__":true,"id":1974}],"oldTransform":{"__isSmartRef__":true,"id":1980},"__SourceModuleName__":"Global.lively.bindings.GeometryBindings","__LivelyClassName__":"lively.morphic.GeometryTransformConnection"},"1967":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1968":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1969":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1970":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"updateOwners","converter":null,"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1971},"dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1971":{"source":{"__isSmartRef__":true,"id":1236},"target":{"__isSmartRef__":true,"id":1966}},"1972":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1973":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1974":{"sourceObj":{"__isSmartRef__":true,"id":1808},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":1966},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1975},"dependedBy":{"__isSmartRef__":true,"id":1966},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1976},"__LivelyClassName__":"AttributeConnection"},"1975":{"source":{"__isSmartRef__":true,"id":1808},"target":{"__isSmartRef__":true,"id":1966}},"1976":{"converter":{"__isSmartRef__":true,"id":1977}},"1977":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":1978},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":1979},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1978":{"source":{"__isSmartRef__":true,"id":1808},"target":{"__isSmartRef__":true,"id":1966}},"1979":{},"1980":{"d":1,"a":1,"f":206,"e":1043,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":1981},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"1981":{"a":1,"b":0,"c":0,"d":1,"e":1043,"f":206,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"1982":{"x":1043,"y":184,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"1983":{"onLoadFromPartsBin":{"__isSmartRef__":true,"id":1984}},"1984":{"varMapping":{"__isSmartRef__":true,"id":1985},"source":"function onLoadFromPartsBin() {\n\t$super();\n\tthis.targetMorph.reloadEverything();\n}","funcProperties":{"__isSmartRef__":true,"id":1990},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1985":{"this":{"__isSmartRef__":true,"id":1808},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1986}},"1986":{"$super":{"__isSmartRef__":true,"id":1987}},"1987":{"varMapping":{"__isSmartRef__":true,"id":1988},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":1989},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"1988":{"obj":{"__isSmartRef__":true,"id":1808},"name":"onLoadFromPartsBin"},"1989":{},"1990":{},"1991":{"d":1,"a":1,"f":219.97218975832595,"e":1691.7977591071476,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":1992},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"1992":{"a":1,"b":0,"c":0,"d":1,"e":1691.7977591071476,"f":219.97218975832595,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"1993":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"1994":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","partName":"Button","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1995":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"1996":{"morph":{"__isSmartRef__":true,"id":1730},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1997":{"x":46.754037491637405,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"1998":{"moveHorizontal":true},"1999":{"x":648.7977591071475,"y":13.972189758325953,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2000":{"position":{"__isSmartRef__":true,"id":2001},"_Extent":{"__isSmartRef__":true,"id":2002},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":1814},"_Fill":{"__isSmartRef__":true,"id":2003},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":2004},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2001":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2002":{"x":701.1842763684606,"y":471.01402102803513,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2003":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"2004":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"2005":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","requiredModules":["lively.PartsBin"],"migrationLevel":2,"comment":"Browser for a Parts repository.","partName":"PartsBinBrowser","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"2006":{"sourceObj":{"__isSmartRef__":true,"id":1236},"sourceAttrName":"categoryName","targetObj":{"__isSmartRef__":true,"id":1236},"targetMethodName":"loadPartsOfCategory","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"2007":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":true},"2008":{"x":701.1842763684606,"y":471.01402102803513,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2009":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"2010":{"morph":{"__isSmartRef__":true,"id":1236},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2011":{"toggleMorePane":{"__isSmartRef__":true,"id":2012}},"2012":{},"2013":{"uncategorized":"PartsBin/","Text support":{"__isSmartRef__":true,"id":2014},"Forms":{"__isSmartRef__":true,"id":2015},"Fun":{"__isSmartRef__":true,"id":2016},"Visualization":{"__isSmartRef__":true,"id":2017},"Wiki":{"__isSmartRef__":true,"id":2018},"Widgets":{"__isSmartRef__":true,"id":2019},"Documentation":{"__isSmartRef__":true,"id":2020},"Worlds":{"__isSmartRef__":true,"id":2021},"DroppableBehaviors":{"__isSmartRef__":true,"id":2022},"Issues":{"__isSmartRef__":true,"id":2023},"Presenting":{"__isSmartRef__":true,"id":2024},"Examples":{"__isSmartRef__":true,"id":2025},"Basic":{"__isSmartRef__":true,"id":2026},"Inputs":{"__isSmartRef__":true,"id":2027},"Persistence":{"__isSmartRef__":true,"id":2028},"Text":{"__isSmartRef__":true,"id":2029},"Debugging":{"__isSmartRef__":true,"id":2030},"Robert":{"__isSmartRef__":true,"id":2031},"CodeSnippets":{"__isSmartRef__":true,"id":2032},"Tools":{"__isSmartRef__":true,"id":2033},"NewWorld":{"__isSmartRef__":true,"id":2034},"Scripting":{"__isSmartRef__":true,"id":2035},"Database":{"__isSmartRef__":true,"id":2036},"Server":{"__isSmartRef__":true,"id":2037},"Demos":{"__isSmartRef__":true,"id":2038},"Layout":{"__isSmartRef__":true,"id":2039},"Testing":{"__isSmartRef__":true,"id":2040},"*latest*":{"__isSmartRef__":true,"id":2041},"*all*":{"__isSmartRef__":true,"id":2042},"*search*":{"__isSmartRef__":true,"id":2043}},"2014":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text support/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2015":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2016":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2017":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2018":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2019":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2020":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2021":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2022":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2023":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2024":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2025":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Examples/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2026":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2027":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2028":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Persistence/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2029":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2030":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2031":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2032":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2033":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2034":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2035":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2036":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2037":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2038":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2039":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2040":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2041":{"isSpecialCategory":true},"2042":{"isSpecialCategory":true},"2043":{"isSpecialCategory":true},"2044":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CPUInspector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2045":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text%20support/FontList.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2046":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text%20support/FontList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2047":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text%20support/FontList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2048":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/Label.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2049":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/SubmitButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2050":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2051":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/Label.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2052":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/SubmitButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2053":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2054":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2055":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/Label.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2056":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/SubmitButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2057":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/InputField.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2058":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/Label.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2059":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Forms/SubmitButton.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2060":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EvenNewerCPUVisualization.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2061":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewCPUVisualization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2062":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/FunnyWatcher.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2063":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColorsAgain.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2064":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ColoredRectCreator.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2065":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/FunnyWatcher.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2066":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Alien.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2067":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ColoredRectCreator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2068":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ColoredRectCreator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2069":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/GridColorArt.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2070":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Alien.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2071":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Alien.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2072":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/GridColorArt.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2073":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/ColoredRectCreator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2074":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/GridColorArt.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2075":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/RefactorMan.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2076":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/Alien.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2077":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/RefactorMan.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2078":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/GridColorArt.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2079":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/RefactorMan.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2080":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColorsAgain.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2081":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/RefactorMan.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2082":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColorsAgain.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2083":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/FunnyWatcher.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2084":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColorsAgain.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2085":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/CrazyColors.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2086":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Fun/FunnyWatcher.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2087":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/GridColorArt.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2088":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLCirclePacking.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2089":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLCirclePacking.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2090":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTree.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2091":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/WorldMorphTreeMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2092":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLCirclePacking.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2093":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTree.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2094":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisStackDrawing.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2095":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisStackDrawing.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2096":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLSunbursts.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2097":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLCirclePacking.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2098":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTree.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2099":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisStackDrawing.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2100":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLIndentedTree.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2101":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLSunbursts.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2102":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/CPUVisualization1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2103":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLIndentedTree.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2104":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLSunbursts.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2105":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisStackDrawing.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2106":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLIndentedTree.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2107":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLSunbursts.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2108":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLIndentedTree.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2109":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTree.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2110":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTreeMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2111":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTreeMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2112":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTreeMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2113":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisMiserableExample.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2114":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/TreeMap.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2115":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/TreeMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2116":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisDrawing.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2117":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/TreeMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2118":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisDrawing.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2119":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisDrawing.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2120":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/TreeMap.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2121":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/ProtovisDrawing.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2122":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/WorldMorphTreeMap.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2123":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/CPUVisualization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2124":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/WorldMorphTreeMap.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2125":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/URLTreeMap.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2126":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Visualization/WorldMorphTreeMap.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2127":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/LatestChangesViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2128":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/VersionViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2129":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/CommitCounter.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2130":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WikiActivities.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2131":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/CommitCounter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2132":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WikiActivities.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2133":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/CommitCounter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2134":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WikiActivities.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2135":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/CommitCounter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2136":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/WikiActivities.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2137":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/LatestChangesViewer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2138":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/VersionViewer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2139":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/LatestChangesViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2140":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/VersionViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2141":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/LatestChangesViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2142":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Wiki/VersionViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2143":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/robertsTestRectangle.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2144":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/TestObject.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2145":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EventPlayerMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2146":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/StyleEditor.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2147":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CodePane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2148":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CodePane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2149":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/NameLabel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2150":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/NameLabel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2151":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CheckBox.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2152":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CodePane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2153":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/NameLabel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2154":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/DropDownList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2155":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/JournalEntry.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2156":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/DropDownList.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2157":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/DropDownList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2158":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/TabFolder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2159":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/TabFolder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2160":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/TabFolder.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2161":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ResizeCorner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2162":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CodePane.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2163":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ResizeCorner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2164":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/NameLabel.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2165":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ResizeCorner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2166":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/DropDownList.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2167":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2168":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CheckBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2169":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CheckBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2170":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2171":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ClipMorph.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2172":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2173":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/JournalEntry.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2174":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ClipMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2175":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CheckBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2176":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CloseButton.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2177":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/JournalEntry.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2178":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/LabeledBox.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2179":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ClipMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2180":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/TabFolder.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2181":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ProgressBar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2182":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/LabeledBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2183":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CloseButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2184":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/FilterableList.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2185":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/LabeledBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2186":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/JournalEntry.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2187":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CloseButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2188":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ClipMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2189":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/FilterableList.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2190":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/ResizeCorner.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2191":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/LabeledBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2192":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/CloseButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2193":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Widgets/FilterableList.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2194":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/robertsTestRectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2195":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EventPlayerMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2196":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/robertsTestRectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2197":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/StyleEditor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2198":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelyHelp.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2199":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelyHelp.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2200":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelyHelp.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2201":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Documentation/LivelyHelp.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2202":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CPUVisulization.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2203":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/RemoveWorldButton.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2204":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/Title.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2205":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/RemoveWorldButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2206":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/Title.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2207":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/RemoveWorldButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2208":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/Title.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2209":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/RemoveWorldButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2210":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Worlds/Title.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2211":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/RotationBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2212":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/RotationBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2213":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/RotationBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2214":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ColorBehavior.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2215":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ColorBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2216":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ColorBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2217":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/LaTeXHighlighting.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2218":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/InvisibleBehavior.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2219":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/LaTeXHighlighting.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2220":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/InvisibleBehavior.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2221":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/ColorBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2222":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/LaTeXHighlighting.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2223":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/InvisibleBehavior.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2224":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/LaTeXHighlighting.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2225":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/InvisibleBehavior.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2226":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/DroppableBehaviors/RotationBehavior.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2227":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CPUVisulization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2228":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUVisualization.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2229":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUWorkload.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2230":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUVisualization.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2231":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUWorkload.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2232":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUVisualization.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2233":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUWorkload.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2234":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUVisualization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2235":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Issues/CPUWorkload.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2236":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EventPlayerMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2237":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/robertsTestRectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2238":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2239":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2240":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationControllerPane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2241":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2242":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TemplateSlide.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2243":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideOverlay.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2244":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TestSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2245":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2246":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TestSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2247":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPLogo.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2248":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPLogo.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2249":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TestSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2250":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlide.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2251":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWATitleSlide.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2252":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlideOverlay.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2253":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPLogo.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2254":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2255":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2256":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlideOverlay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2257":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWATitleSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2258":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPSWASlideOverlay.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2259":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlideOverlay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2260":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWATitleSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2261":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPSWASlideOverlay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2262":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2263":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPSWASlideOverlay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2264":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWASlideOverlay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2265":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SWATitleSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2266":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPSWASlideOverlay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2267":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TemplateSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2268":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TestSlide.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2269":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TemplateSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2270":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/HPITitleSlide.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2271":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SAPLogo.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2272":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideOverlay.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2273":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/HPITitleSlide.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2274":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController2.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2275":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/TemplateSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2276":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideOverlay.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2277":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/HPITitleSlide.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2278":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/SlideOverlay.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2279":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/HPITitleSlide.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2280":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Presenting/PresentationController.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2281":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Examples/LongTextExample.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2282":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Examples/LongTextExample.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2283":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Examples/LongTextExample3.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2284":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Examples/LongTextExample.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2285":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Examples/LongTextExample.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2286":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/StyleEditor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2287":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CPUVisulization.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2288":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrows.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2289":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PrimitiveShapes.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2290":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrows.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2291":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/List.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2292":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Image.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2293":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrows.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2294":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PrimitiveShapes.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2295":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Line.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2296":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Image.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2297":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Text.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2298":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Text.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2299":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Line.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2300":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Rectangle1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2301":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrows.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2302":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Image.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2303":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Line.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2304":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Ellipse.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2305":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Text.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2306":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/CPUWorkload.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2307":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Ellipse.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2308":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Line.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2309":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrow.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2310":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/TextBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2311":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/ServerPart.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2312":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Ellipse.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2313":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrow.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2314":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Triangle.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2315":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/JSONConverter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2316":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/TabFolder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2317":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Rectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2318":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Ellipse.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2319":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrow.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2320":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Triangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2321":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/SnappingRectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2322":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Star.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2323":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Triangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2324":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PrimitiveShapes.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2325":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Star.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2326":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Rectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2327":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Star.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2328":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Triangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2329":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Marker.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2330":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Image.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2331":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/JSONPrinter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2332":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PaperMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2333":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Star.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2334":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Marker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2335":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Text.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2336":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Timer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2337":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Marker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2338":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/ObjectEditorPane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2339":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/ColoredRectCreator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2340":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Marker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2341":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/LineWithArrow.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2342":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Rectangle.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2343":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/Car.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2344":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/List.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2345":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/List.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2346":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/CrazyColors.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2347":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/PrimitiveShapes.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2348":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Basic/List.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2349":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Slider.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2350":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ScriptableButton.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2351":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Slider.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2352":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Button.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2353":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ChoiceButton.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2354":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Slider.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2355":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ScriptableButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2356":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ChoiceButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2357":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ScriptableButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2358":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ChoiceButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2359":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Slider.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2360":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ScriptableButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2361":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/StartStopButton.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2362":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ChoiceButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2363":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/StartStopButton.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2364":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2365":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/StartStopButton.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2366":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2367":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2368":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/StartStopButton.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2369":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Button.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2370":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/ComboText.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2371":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Button.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2372":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Inputs/Button.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2373":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MetaNoteText.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2374":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/PaperMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2375":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Journal.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2376":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MetaNoteText.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2377":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MetaNoteText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2378":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/PaperMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2379":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/MetaNoteText.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2380":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Cool.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2381":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/TextBox.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2382":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Cool.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2383":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/TextBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2384":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Cool.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2385":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/TextBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2386":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Cool.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2387":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/TextBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2388":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Journal.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2389":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/PaperMorph.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2390":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Journal.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2391":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/Journal.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2392":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Text/PaperMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2393":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CheckBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2394":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EvenNewerCPUVisualization.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2395":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ConvertPartsBinLogos.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2396":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectTracer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2397":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/CurveInspector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2398":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/TextInspector.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2399":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectSerializationGraph.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2400":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectDiffer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2401":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertyWatcher.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2402":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertyWatcher.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2403":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker2.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2404":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertyWatcher.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2405":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertySheet.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2406":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertySheet.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2407":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2408":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertySheet.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2409":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2410":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/AlternativeObjectDiffer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2411":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2412":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertySheet.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2413":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/AlternativeObjectDiffer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2414":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectDiffer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2415":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectSerializationGraph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2416":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/AlternativeObjectDiffer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2417":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectDiffer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2418":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/Benchmarker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2419":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectSerializationGraph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2420":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/AlternativeObjectDiffer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2421":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectDiffer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2422":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectSerializationGraph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2423":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/PropertyWatcher.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2424":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectTracer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2425":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectTracer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2426":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/TextInspector.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2427":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/CurveInspector.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2428":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/ObjectTracer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2429":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/CurveInspector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2430":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/TextInspector.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2431":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/CurveInspector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2432":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Debugging/TextInspector.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2433":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EvenNewerCPUVisualization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2434":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/VeryNewCPUVisualization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2435":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/RobertsTransportationMorph.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2436":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/RobertsTransportationMorph.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2437":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/RobertsTransportationMorph.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2438":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Robert/RobertsTransportationMorph.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2439":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EvenNewerCPUVisualization.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2440":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/ConvertPartsBinLogos.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2441":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/ConvertPartsBinLogos.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2442":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/ConvertPartsBinLogos.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2443":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CodeSnippets/ConvertPartsBinLogos.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2444":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MethodFinder.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2445":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ClassBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2446":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SpreadsheetScripter.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2447":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SpreadsheetScripter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2448":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2449":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/BugTracker.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2450":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/IFrameLoader.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2451":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2452":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/BugTracker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2453":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SpreadsheetScripter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2454":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/BugTracker.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2455":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ServerSearch.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2456":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2457":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ServerSearch.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2458":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/BugTracker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2459":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ServerSearch.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2460":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MethodFinder.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2461":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2462":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2463":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SearchSourceCode.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2464":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2465":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SearchSourceCode.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2466":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/PartsBinBrowser.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2467":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2468":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/SearchSourceCode.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2469":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ServerSearch.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2470":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/IFrameLoader.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2471":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/IFrameLoader.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2472":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ObjectEditor1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2473":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/IFrameLoader.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2474":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ClassBrowser.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2475":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MethodFinder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2476":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ClassBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2477":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/MethodFinder.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2478":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Tools/ClassBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2479":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/LatestChangesViewer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2480":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/DiffExample.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2481":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/ColorField.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2482":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/ColorField.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2483":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserComboBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2484":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Text.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2485":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/TextAttributePanel.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2486":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/PartsBinBrowser.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2487":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Text.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2488":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/PartsBinBrowser.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2489":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/ColorField.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2490":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserComboBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2491":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Text.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2492":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/PartsBinBrowser.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2493":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/StyleEditor.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2494":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/CollapsiblePanel.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2495":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserDialog.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2496":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/SAPLogo.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2497":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/StyleEditor.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2498":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/WordCounter.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2499":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/CollapsiblePanel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2500":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/StyleEditor.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2501":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/WordCounter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2502":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/CollapsiblePanel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2503":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserDialog.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2504":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/WordCounter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2505":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/StyleEditor.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2506":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserComboBox.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2507":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/ColorField.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2508":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/CollapsiblePanel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2509":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/FontChooserDialog.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2510":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Text.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2511":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/WordCounter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2512":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/PartsBinBrowser.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2513":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/MetaNoteText.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2514":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/DiffExample.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2515":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/DiffExample.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2516":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/TextAttributePanel.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2517":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VideoCodecTester.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2518":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/TextAttributePanel.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2519":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/DiffExample.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2520":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VideoCodecTester.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2521":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VideoCodecTester.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2522":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/Cool.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2523":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/TextAttributePanel.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2524":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/TracBugTracker.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2525":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VersionDiffer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2526":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VideoCodecTester.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2527":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/TracBugTracker.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2528":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/LatestChangesViewer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2529":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VersionDiffer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2530":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/LatestChangesViewer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2531":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VersionDiffer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2532":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/LatestChangesViewer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2533":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/TracBugTracker.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2534":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/NewWorld/VersionDiffer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2535":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/EventPlayerMorph.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2536":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONConverter.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2537":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONPrinter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2538":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Timer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2539":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONConverter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2540":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Timer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2541":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONConverter.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2542":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONPrinter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2543":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Timer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2544":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONConverter.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2545":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONPrinter.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2546":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/JSONPrinter.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2547":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Scripting/Timer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2548":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/DatabaseContainer.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2549":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/DatabaseContainer.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2550":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/DatabaseContainer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2551":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Database/DatabaseContainer.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2552":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CPUVisulization.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2553":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUVis.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2554":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CommandLine.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2555":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerCommands.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2556":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CommandLine.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2557":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerCommands.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2558":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CommandLine.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2559":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerPart.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2560":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerCommands.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2561":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/JSRemoteServerWorkspace.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2562":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUWorkload.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2563":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerPart.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2564":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CommandLine.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2565":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/JSRemoteServerWorkspace.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2566":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerPart.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2567":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerCommands.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2568":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/JSRemoteServerWorkspace.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2569":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/FibonacciPart.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2570":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/FibonacciPart.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2571":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/ServerPart.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2572":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/JSRemoteServerWorkspace.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2573":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/FibonacciPart.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2574":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUVis.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2575":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUVis.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2576":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/FibonacciPart.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2577":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Server/CPUVis.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2578":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RotatingStar.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2579":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/SillyClock.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2580":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/TestWidget.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2581":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/ArchitectureOverview.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2582":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RotatingStar.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2583":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/TestWidget.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2584":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RotatingStar.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2585":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/TestWidget.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2586":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Clock.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2587":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/RotatingStar.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2588":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/TestWidget.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2589":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Clock.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2590":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Clock.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2591":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/Clock.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2592":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/SillyClock.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2593":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/ArchitectureOverview.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2594":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/SillyClock.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2595":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/ArchitectureOverview.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2596":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/SillyClock.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2597":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Demos/ArchitectureOverview.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2598":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/TestObject.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2599":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/ObjectTracer.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2600":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/MethodFinder.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2601":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/CPUVisualization.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2602":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/VBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2603":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/VBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2604":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/JournalBox.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2605":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/JournalBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2606":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/VBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2607":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/JournalBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2608":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/JournalBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2609":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/HBox.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2610":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/LayoutConfigurator.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2611":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/HBox.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2612":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/LayoutConfigurator.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2613":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/SnappingRectangle.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2614":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/HBox.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2615":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/LayoutConfigurator.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2616":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/SnappingRectangle.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2617":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/SnappingRectangle.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2618":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/LayoutConfigurator.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2619":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/HBox.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2620":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/SnappingRectangle.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2621":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Layout/VBox.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2622":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Journal.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2623":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestClassRunner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2624":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunPane.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2625":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2626":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestClassRunner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2627":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunPane.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2628":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestClassRunner.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2629":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunner.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2630":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestNewHTMLLogoObject.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2631":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunPane.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2632":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunner.metainfo","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2633":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunPane.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2634":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunPane1.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2635":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestRunner.html","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2636":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/Testing/TestClassRunner.svg","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2637":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/PartsBin/TestObject.json","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"2638":{"onLoadFromPartsBin":{"__isSmartRef__":true,"id":2639},"reloadEverything":{"__isSmartRef__":true,"id":2646},"ensureCategories":{"__isSmartRef__":true,"id":2649},"updateCategoriesDictFromPartsBin":{"__isSmartRef__":true,"id":2652},"updateCategoryList":{"__isSmartRef__":true,"id":2655},"defaultPartsBinURL":{"__isSmartRef__":true,"id":2658},"reset":{"__isSmartRef__":true,"id":2661},"setupConnections":{"__isSmartRef__":true,"id":2664},"loadPartsOfCategory":{"__isSmartRef__":true,"id":2667},"removeParts":{"__isSmartRef__":true,"id":2670},"getPartsSpaceForCategory":{"__isSmartRef__":true,"id":2673},"addMorphsForPartItems":{"__isSmartRef__":true,"id":2676},"getURLForCategoryNamed":{"__isSmartRef__":true,"id":2679},"setSelectedPartItem":{"__isSmartRef__":true,"id":2682},"makeUpPartNameFor":{"__isSmartRef__":true,"id":2685},"openPart":{"__isSmartRef__":true,"id":2688},"interactivelyRemoveSelectedPartItem":{"__isSmartRef__":true,"id":2691},"loadAndOpenSelectedPartItem":{"__isSmartRef__":true,"id":2694},"addCategory":{"__isSmartRef__":true,"id":2697},"addCategoryInteractively":{"__isSmartRef__":true,"id":2700},"addExternalCategory":{"__isSmartRef__":true,"id":2703},"removeCategory":{"__isSmartRef__":true,"id":2706},"removeCategoryInteractively":{"__isSmartRef__":true,"id":2709},"interactivelyMoveSelectedPartItem":{"__isSmartRef__":true,"id":2712},"setMetaInfoOfSelectedItem":{"__isSmartRef__":true,"id":2715},"saveCommentForSelectedPartItem":{"__isSmartRef__":true,"id":2718},"addPartsOfCategory":{"__isSmartRef__":true,"id":2721},"onLoadLatest":{"__isSmartRef__":true,"id":2724},"onLoadAll":{"__isSmartRef__":true,"id":2727},"onSearch":{"__isSmartRef__":true,"id":2730},"addPartsFromURLs":{"__isSmartRef__":true,"id":2733},"search":{"__isSmartRef__":true,"id":2736},"showMsg":{"__isSmartRef__":true,"id":2739},"toggleMorePane":{"__isSmartRef__":true,"id":2742}},"2639":{"varMapping":{"__isSmartRef__":true,"id":2640},"source":"function onLoadFromPartsBin() {\n\t$super();\n\tthis.reloadEverything();\n}","funcProperties":{"__isSmartRef__":true,"id":2645},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2640":{"this":{"__isSmartRef__":true,"id":1236},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2641}},"2641":{"$super":{"__isSmartRef__":true,"id":2642}},"2642":{"varMapping":{"__isSmartRef__":true,"id":2643},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":2644},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2643":{"obj":{"__isSmartRef__":true,"id":1236},"name":"onLoadFromPartsBin"},"2644":{},"2645":{},"2646":{"varMapping":{"__isSmartRef__":true,"id":2647},"source":"function reloadEverything() {\n\tthis.setSelectedPartItem(null)\n\tthis.updateCategoriesDictFromPartsBin();\n var selectedCategory = this.categoryName;\n this.addCategory(\"*latest*\", true);\n this.addCategory(\"*all*\", true);\n this.addCategory(\"*search*\", true);\n this.updateCategoryList(selectedCategory);\n}","funcProperties":{"__isSmartRef__":true,"id":2648},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2647":{"this":{"__isSmartRef__":true,"id":1236}},"2648":{},"2649":{"varMapping":{"__isSmartRef__":true,"id":2650},"source":"function ensureCategories() {\n\tif (!this.categories)\n\t\tthis.categories = {uncategorized: 'PartsBin/'};\n}","funcProperties":{"__isSmartRef__":true,"id":2651},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2650":{"this":{"__isSmartRef__":true,"id":1236}},"2651":{},"2652":{"varMapping":{"__isSmartRef__":true,"id":2653},"source":"function updateCategoriesDictFromPartsBin() {\n\tthis.ensureCategories();\n\tvar webR = new WebResource(this.defaultPartsBinURL());\n\twebR.getSubElements().subCollections.forEach(function(dir) {\n\t\t// FIXME OMeta does something here...!\n\t\tvar unescape = Global.urlUnescape || Global.unescape,\n\t\t\tunescaped = unescape(dir.getURL().filename()),\n\t\t\tname = unescaped.replace(/\\/$/,\"\");\n\t\tthis.categories[name] = this.defaultPartsBinURL().withFilename(unescaped);\n\t}, this);\n}","funcProperties":{"__isSmartRef__":true,"id":2654},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2653":{"this":{"__isSmartRef__":true,"id":1236}},"2654":{},"2655":{"varMapping":{"__isSmartRef__":true,"id":2656},"source":"function updateCategoryList(optCategoryName) {\n\tthis.get('categoryList').updateList(\n\t\tProperties.own(this.categories).sortBy(function(name) { return name.toLowerCase()}))\n\tthis.get('categoryList').setSelection(optCategoryName)\n}","funcProperties":{"__isSmartRef__":true,"id":2657},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2656":{"this":{"__isSmartRef__":true,"id":1236}},"2657":{},"2658":{"varMapping":{"__isSmartRef__":true,"id":2659},"source":"function defaultPartsBinURL() {\n\treturn URL.codeBase.withFilename('PartsBin/');\n}","funcProperties":{"__isSmartRef__":true,"id":2660},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2659":{"this":{"__isSmartRef__":true,"id":1236}},"2660":{},"2661":{"varMapping":{"__isSmartRef__":true,"id":2662},"source":"function reset() {\n this.connections = {toggleMorePane: {}} \n\t// this.getPartsBinMetaInfo().addRequiredModule('lively.PartsBin')\n\tthis.setSelectedPartItem(null)\n\tdelete this.categories;\n\tthis.get('categoryList').updateList([])\n\tthis.get('partsBinContents').removeAllMorphs();\n this.get('searchText').setTextString(\"\")\n}","funcProperties":{"__isSmartRef__":true,"id":2663},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2662":{"this":{"__isSmartRef__":true,"id":1236}},"2663":{},"2664":{"varMapping":{"__isSmartRef__":true,"id":2665},"source":"function setupConnections() {\n\tconnect(this.closeButton, 'fire', this, 'remove')\n\tconnect(this.addCategoryButton, 'fire', this, 'addCategoryInteractively')\n\tconnect(this.get('removeCategoryButton'), 'fire', this, 'removeCategoryInteractively')\n\tconnect(this.get('categoryList'), 'selection', this, 'categoryName')\n\tconnect(this, 'categoryName', this, 'loadPartsOfCategory')\n\n\tconnect(this.get('partsBinContents'), 'selectedItem', this, 'setSelectedPartItem')\n\n\tconnect(this.get('reloadButton'), \"fire\", this, \"reloadEverything\")\n\n\tconnect(this.get('loadPartButton'), \"fire\", this, \"loadAndOpenSelectedPartItem\")\n\n\tconnect(this.get('removePartButton'), \"fire\", this, \"interactivelyRemoveSelectedPartItem\")\n\n\tconnect(this.get('movePartButton'), \"fire\", this, \"interactivelyMoveSelectedPartItem\")\n\n\tconnect(this.get('selectedPartComment'), \"savedTextString\", this, \"saveCommentForSelectedPartItem\")\n}","funcProperties":{"__isSmartRef__":true,"id":2666},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2665":{"this":{"__isSmartRef__":true,"id":1236}},"2666":{},"2667":{"varMapping":{"__isSmartRef__":true,"id":2668},"source":"function loadPartsOfCategory(categoryName) {\n\tthis.removeParts();\n\tthis.setSelectedPartItem(null);\n if (!categoryName) return;\n if (categoryName == \"*all*\") {\n this.showMsg(\"loading all...\");\n webR = new WebResource(this.defaultPartsBinURL()).beAsync();\n\t lively.bindings.connect(webR, 'subDocuments', this, 'onLoadAll');\n\t webR.getSubElements(10)\n } else if (categoryName == \"*latest*\") {\n this.showMsg(\"loading latest...\");\n webR = new WebResource(this.defaultPartsBinURL()).beAsync();\n\t lively.bindings.connect(webR, 'contentDocument', this, 'onLoadLatest');\n\t webR.propfind('infinity')\n } else if (categoryName == \"*search*\") {\n this.showMsg(\"searching...\");\n webR = new WebResource(this.defaultPartsBinURL()).beAsync();\n \t lively.bindings.connect(webR, 'subDocuments', this, 'allURLs', {\n converter: function(subDocuments) {\n return subDocuments.invoke('getURL')\n }\n });\n lively.bindings.connect(this, 'allURLs', this, 'onSearch', {\n removeAfterUpdate: true});\n\t webR.getSubElements(10)\n } else {\n\t this.addPartsOfCategory(categoryName)\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2669},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2668":{"this":{"__isSmartRef__":true,"id":1236}},"2669":{},"2670":{"varMapping":{"__isSmartRef__":true,"id":2671},"source":"function removeParts() {\n\tthis.get('partsBinContents').submorphs.clone().invoke('remove')\n}","funcProperties":{"__isSmartRef__":true,"id":2672},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2671":{"this":{"__isSmartRef__":true,"id":1236}},"2672":{},"2673":{"varMapping":{"__isSmartRef__":true,"id":2674},"source":"function getPartsSpaceForCategory(categoryName) {\n\tvar url = this.getURLForCategoryNamed(categoryName);\n\treturn lively.PartsBin.partsSpaceWithURL(url);\n}","funcProperties":{"__isSmartRef__":true,"id":2675},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2674":{"this":{"__isSmartRef__":true,"id":1236}},"2675":{},"2676":{"varMapping":{"__isSmartRef__":true,"id":2677},"source":"function addMorphsForPartItems(partItems, doNotSort) {\n\tthis.removeParts();\n if (!doNotSort)\n partItems = partItems.sortBy(function(ea) { return ea.name.toLowerCase() })\n\tpartItems.forEach(function(partItem) {\n\t\t\tvar morph = partItem.asPartsBinItem();\n\t\t\tthis.get('partsBinContents').addMorph(morph);\n\t\t}, this);\n\tthis.get('partsBinContents').adjustForNewBounds()\n\t// this.get('partsBinContents').scrollToTop()\n}","funcProperties":{"__isSmartRef__":true,"id":2678},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2677":{"this":{"__isSmartRef__":true,"id":1236}},"2678":{},"2679":{"varMapping":{"__isSmartRef__":true,"id":2680},"source":"function getURLForCategoryNamed(categoryName) {\n\tvar relative = this.categories[categoryName];\n\tif (!relative) return null;\n\treturn URL.ensureAbsoluteCodeBaseURL(relative).withRelativePartsResolved()\n}","funcProperties":{"__isSmartRef__":true,"id":2681},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2680":{"this":{"__isSmartRef__":true,"id":1236}},"2681":{},"2682":{"varMapping":{"__isSmartRef__":true,"id":2683},"source":"function setSelectedPartItem(item) {\n\tthis.selectedPartItem = item;\n\tthis.get('selectedPartComment').textString = '';\n\tthis.get('selectedPartVersions').updateList(item ? ['Loading versions...']: []);\n\tthis.get('selectedPartVersions').setSelection(null);\n\tif (!item) {\n\t\tthis.get('selectedPartName').textString = 'nothing selected'\n this.get('selectedPartSpaceName').textString = ''\n\t\treturn;\n\t}\n\tthis.get('selectedPartName').textString = item.name\n this.get('selectedPartSpaceName').textString = item.partsSpaceName\n\n\t// load versions\n\tconnect(item, 'partVersions', this.get('selectedPartVersions'), 'updateList');\n\titem.loadPartVersions(true);\n\n\t// load meta info\n\tconnect(item, 'loadedMetaInfo', this, 'setMetaInfoOfSelectedItem');\n\titem.loadPartMetaInfo(true);\n}","funcProperties":{"__isSmartRef__":true,"id":2684},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2683":{"this":{"__isSmartRef__":true,"id":1236}},"2684":{},"2685":{"varMapping":{"__isSmartRef__":true,"id":2686},"source":"function makeUpPartNameFor(name) {\n\tif (!$morph(name)) return name;\n\tvar i = 2\n\twhile($morph(name + i)) { i++}\n\treturn name + i;\n}","funcProperties":{"__isSmartRef__":true,"id":2687},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2686":{"this":{"__isSmartRef__":true,"id":1236}},"2687":{},"2688":{"varMapping":{"__isSmartRef__":true,"id":2689},"source":"function openPart(partMorph) {\n\tpartMorph.setName(this.makeUpPartNameFor(partMorph.getName()));\n\tlively.morphic.World.current().firstHand().grabMorph(partMorph, null);\n\tpartMorph.setPosition(pt(0,0));\n\t// partMorph.forceRestartAllActiveScripts();\n}","funcProperties":{"__isSmartRef__":true,"id":2690},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2689":{"this":{"__isSmartRef__":true,"id":1236}},"2690":{},"2691":{"varMapping":{"__isSmartRef__":true,"id":2692},"source":"function interactivelyRemoveSelectedPartItem(partMorph) {\n\tvar item = this.selectedPartItem;\n\tif (!item) return;\n\tthis.world().confirm(\"really delete \" + item.name + \" in PartsBin?\", function(answer) {\n\t\tif (!answer) return;\n\t\titem.del();\n\t\tthis.reloadEverything();\n\t\talertOK(\"deleted \" + item.name);\n\t}.bind(this))\n}","funcProperties":{"__isSmartRef__":true,"id":2693},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2692":{"this":{"__isSmartRef__":true,"id":1236}},"2693":{},"2694":{"varMapping":{"__isSmartRef__":true,"id":2695},"source":"function loadAndOpenSelectedPartItem(partMorph) {\n\tvar item = this.selectedPartItem;\n\tif (!item) return;\n\tconnect(item, 'part', this, 'openPart');\n\tvar selectedVersion = this.get('selectedPartVersions').selection,\n\t\trev = selectedVersion ? selectedVersion.rev : null;\n\titem.loadPart(true, null, rev);\n\talert('loading ' + item.name + '...');\n}","funcProperties":{"__isSmartRef__":true,"id":2696},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2695":{"this":{"__isSmartRef__":true,"id":1236}},"2696":{},"2697":{"varMapping":{"__isSmartRef__":true,"id":2698},"source":"function addCategory(categoryName, doNotUpdate) {\n // this.addCategory(\"*all*\") \n\tif (!categoryName.startsWith(\"*\")) {\n\t var url = this.defaultPartsBinURL().withFilename(categoryName)\n this.addExternalCategory(categoryName, url, true);\n } else {\n // alertOK(\"add special category: \" + categoryName);\n this.categories[categoryName] = {isSpecialCategory: true};\n if (!doNotUpdate)\n this.updateCategoryList(categoryName)\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2699},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2698":{"this":{"__isSmartRef__":true,"id":1236}},"2699":{},"2700":{"varMapping":{"__isSmartRef__":true,"id":2701},"source":"function addCategoryInteractively() {\n\tvar partsBin = this, world = this.world();\n\tworld.prompt('Name of new category?', function(categoryName) {\n\t\tif (!categoryName || categoryName == '') {\n\t\t\talert('no category created!')\n\t\t\treturn;\n\t\t}\n\t\tpartsBin.addCategory(categoryName)\n\t})\t\n}","funcProperties":{"__isSmartRef__":true,"id":2702},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2701":{"this":{"__isSmartRef__":true,"id":1236}},"2702":{},"2703":{"varMapping":{"__isSmartRef__":true,"id":2704},"source":"function addExternalCategory(categoryName, url, createPath) {\n\turl = url.asDirectory();\n\tthis.categories[categoryName] = url;\n\tif (createPath) {\n\t\tthis.getPartsSpaceForCategory(categoryName).ensureExistance();\n\t}\n\tthis.updateCategoryList(categoryName)\n}","funcProperties":{"__isSmartRef__":true,"id":2705},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2704":{"this":{"__isSmartRef__":true,"id":1236}},"2705":{},"2706":{"varMapping":{"__isSmartRef__":true,"id":2707},"source":"function removeCategory(categoryName) {\n\t// categoryName = this.categoryName\n\tvar url = this.getURLForCategoryNamed(categoryName);\n\tif (!url) {\n\t\talert('No category ' + categoryName + ' exists! Doing nothing')\n\t\treturn;\n\t}\n\tvar webR = new WebResource(url);\n\tif (!webR.exists()) {\n\t\talert('Does not exist: ' + url);\n\t\tdelete this.categories[categoryName];\n\t\tlively.PartsBin.removePartsSpace(name);\n\t\tthis.updateCategoryList();\n\t\treturn\n\t}\n\twebR.getSubElements()\n\tif (!webR.subDocuments || webR.subDocuments.length > 0 ||\n\t\t\t !webR.subCollections || webR.subCollections.length > 0) {\n\t\talert('Will not remove directory ' + url + ' because it is not empty')\n\t} else {\n\t\twebR.del();\n\t\talertOK('Removed ' + categoryName + ' url ' + url);\n\t}\n\tdelete this.categories[categoryName];\n\tlively.PartsBin.removePartsSpace(name);\n\tthis.updateCategoryList();\n}","funcProperties":{"__isSmartRef__":true,"id":2708},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2707":{"this":{"__isSmartRef__":true,"id":1236}},"2708":{},"2709":{"varMapping":{"__isSmartRef__":true,"id":2710},"source":"function removeCategoryInteractively() {\n\tvar partsBin = this, world = this.world();\n\tworld.confirm('Really remove ' + this.categoryName + '?', function(result) {\n\t\tif (!result) {\n\t\t\talert('no category removed!')\n\t\t\treturn;\n\t\t}\n\t\tpartsBin.removeCategory(partsBin.categoryName)\n\t})\t\n}","funcProperties":{"__isSmartRef__":true,"id":2711},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2710":{"this":{"__isSmartRef__":true,"id":1236}},"2711":{},"2712":{"varMapping":{"__isSmartRef__":true,"id":2713},"source":"function interactivelyMoveSelectedPartItem(partMorph) {\n\tvar partItem = this.selectedPartItem, categories = this.categories, self = this;\n\tif (!partItem) { alert('no item selected'); return }\n\tvar items = Properties.own(categories).sort()\n .reject(function(ea) { return ea.startsWith(\"*\")})\n .collect(function(catName) {\n\t\treturn [catName, function() {\n\t\t\tvar url = new URL(categories[catName]);\n\t\t\tvar partsSpace = lively.PartsBin.partsSpaceWithURL(url)\n\t\t\tpartItem.moveToPartsSpace(partsSpace);\n\t\t\tself.reloadEverything();\n\t\t\talertOK('Moved ' + partItem.name + ' to ' + url);\n\t\t}]\n\t})\n\tlively.morphic.Menu.openAtHand('Select category', items);\n}","funcProperties":{"__isSmartRef__":true,"id":2714},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2713":{"this":{"__isSmartRef__":true,"id":1236}},"2714":{},"2715":{"varMapping":{"__isSmartRef__":true,"id":2716},"source":"function setMetaInfoOfSelectedItem(metaInfo) {\n\tvar comment = (metaInfo && metaInfo.getComment()) || 'No comment yet';\n\tthis.get('selectedPartComment').textString = comment;\n}","funcProperties":{"__isSmartRef__":true,"id":2717},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2716":{"this":{"__isSmartRef__":true,"id":1236}},"2717":{},"2718":{"varMapping":{"__isSmartRef__":true,"id":2719},"source":"function saveCommentForSelectedPartItem(comment) {\n\tif (!this.selectedPartItem) {\n\t\talert('no part item selected!')\n\t\treturn;\n\t}\n\tvar metaInfo = this.selectedPartItem.getMetaInfo();\n\tmetaInfo.setComment(comment);\n\tthis.selectedPartItem.uploadMetaInfoOnly();\n}","funcProperties":{"__isSmartRef__":true,"id":2720},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2719":{"this":{"__isSmartRef__":true,"id":1236}},"2720":{},"2721":{"varMapping":{"__isSmartRef__":true,"id":2722},"source":"function addPartsOfCategory(categoryName) {\n\tvar partsSpace = this.getPartsSpaceForCategory(categoryName);\n\tconnect(partsSpace, 'partItems', this, 'addMorphsForPartItems', {\n\t\tconverter: function(partItemObj) { return Properties.ownValues(partItemObj) }})\n\tpartsSpace.load(false)\n}","funcProperties":{"__isSmartRef__":true,"id":2723},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2722":{"this":{"__isSmartRef__":true,"id":1236}},"2723":{},"2724":{"varMapping":{"__isSmartRef__":true,"id":2725},"source":"function onLoadLatest(propfindXML) {\n\t// extract\n\tvar rawNodes = new Query(\"/D:multistatus/D:response\").findAll(propfindXML.documentElement);\n\n\tvar svnVersionInfos = rawNodes.map(function(rawNode) { return SVNVersionInfo.fromPropfindNode(rawNode) });\n\n // alertOK(\"loaded latest: \" + svnVersionInfos.length)\n \t// this.svnLatestVersionInfos = svnVersionInfos;\n\n var top20 = svnVersionInfos\n .select(function(ea) { return ea.url.endsWith(\".json\")})\n .sortBy(function(ea) { return ea.rev}).reverse().slice(0,20);\n var top20URLs = top20.collect(function(ea) { \n return new URL(\"http://\" + URL.codeBase.hostname + ea.url)})\n \n this.addPartsFromURLs(top20URLs) \n}","funcProperties":{"__isSmartRef__":true,"id":2726},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2725":{"this":{"__isSmartRef__":true,"id":1236}},"2726":{},"2727":{"varMapping":{"__isSmartRef__":true,"id":2728},"source":"function onLoadAll(subDocuments) {\n // alertOK(\"load all \" + subDocuments.length)\n var all = subDocuments.invoke('getURL')\n .select(function(ea) {return ea.filename().endsWith(\".json\")})\n .sortBy(function(ea) {return ea.filename()});\n \n this.addPartsFromURLs(all) \n}","funcProperties":{"__isSmartRef__":true,"id":2729},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2728":{"this":{"__isSmartRef__":true,"id":1236}},"2729":{},"2730":{"varMapping":{"__isSmartRef__":true,"id":2731},"source":"function onSearch(allPartURLs) {\n var searchString = this.get('searchText').textString;\n var matchingPartURLs = allPartURLs\n .select(function(ea) {return new RegExp(searchString, 'i').test(ea.filename())})\n .sortBy(function(ea) {return ea.filename()});\n this.addPartsFromURLs(matchingPartURLs) \n if (matchingPartURLs.length == 0)\n this.showMsg(\"nothing found for '\" + searchString + \"'\")\n}","funcProperties":{"__isSmartRef__":true,"id":2732},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2731":{"this":{"__isSmartRef__":true,"id":1236}},"2732":{},"2733":{"varMapping":{"__isSmartRef__":true,"id":2734},"source":"function addPartsFromURLs(urls) {\n var partItems = [];\n urls.each(function(ea) {\n var partPath = ea.relativePathFrom(URL.codeBase)\n var match = partPath.match(/(.*\\/)(.*).json/)\n if (match) partItems.push(lively.PartsBin.getPartItem(match[2],match[1]))\n })\n this.addMorphsForPartItems(partItems, true) \n}","funcProperties":{"__isSmartRef__":true,"id":2735},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2734":{"this":{"__isSmartRef__":true,"id":1236}},"2735":{},"2736":{"varMapping":{"__isSmartRef__":true,"id":2737},"source":"function search(searchString) {\n this.get('categoryList').setSelection(\"*search*\")\n}","funcProperties":{"__isSmartRef__":true,"id":2738},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2737":{"this":{"__isSmartRef__":true,"id":1236}},"2738":{},"2739":{"varMapping":{"__isSmartRef__":true,"id":2740},"source":"function showMsg(string) {\n var label = new lively.morphic.Text(new Rectangle(0,0,200,30), string);\n label.applyStyle({fill: null, borderWidth: 0})\n this.get('partsBinContents').addMorph(label)\n}","funcProperties":{"__isSmartRef__":true,"id":2741},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2740":{"this":{"__isSmartRef__":true,"id":1236}},"2741":{},"2742":{"varMapping":{"__isSmartRef__":true,"id":2743},"source":"function toggleMorePane() {\n var pane = this.get('morePane');\n moveOffset = pane.getExtent().withY(0),\n steps = 5, timePerStep = 10,\n btn = pane.get('moreButton');\n if (pane.isVisible()) {\n var dest = pane.getPosition().addPt(moveOffset.negated());\n pane.animatedInterpolateTo(dest, steps, timePerStep, function() {\n btn.setLabel('more')\n pane.setVisible(false)\n });\n\n } else {\n btn.setLabel('hide')\n pane.setVisible(true)\n this.addMorphBack(pane);\n pane.align(\n pane.bounds().topRight(), \n this.get('partsBinContents').bounds().topRight());\n // move it so that it is completely visible\n var dest = pane.getPosition().addPt(moveOffset);\n pane.animatedInterpolateTo(dest, steps, timePerStep, Functions.Null);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2744},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"2743":{"this":{"__isSmartRef__":true,"id":1236}},"2744":{},"2745":{"isListItem":true,"value":{"__isSmartRef__":true,"id":2746},"string":"script full: ProgressBar(96): $$setExtent"},"2746":{"object":{"__isSmartRef__":true,"id":853},"method":"$$setExtent","string":"ProgressBar(96): $$setExtent","type":"script","search":"sender"},"2747":{"isListItem":true,"value":{"__isSmartRef__":true,"id":2748},"string":"script full: ProgressBar(96): setExtent"},"2748":{"object":{"__isSmartRef__":true,"id":853},"method":"setExtent","string":"ProgressBar(96): setExtent","type":"script","search":"sender"},"2749":{"isListItem":true,"value":{"__isSmartRef__":true,"id":2750},"string":"script name: partsBinContents(1690): adjustForNewBounds"},"2750":{"object":{"__isSmartRef__":true,"id":1521},"method":"adjustForNewBounds","string":"partsBinContents(1690): adjustForNewBounds","type":"script","search":"implementor"},"2751":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"2752":{"sourceObj":{"__isSmartRef__":true,"id":1163},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":1103},"targetMethodName":"browse","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"2753":{"resizeWidth":true},"2754":{"x":874.3800299912526,"y":145.98799096394293,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2755":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"2756":{"morph":{"__isSmartRef__":true,"id":1163},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"2757":{"submorphs":[],"scripts":[],"id":405,"shape":{"__isSmartRef__":true,"id":2758},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco, Courier","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":2764},"_MaxTextWidth":874.0469590469621,"_MaxTextHeight":227.48209598213498,"textStyle":null,"layout":{"__isSmartRef__":true,"id":2765},"doitContext":{"__isSmartRef__":true,"id":1103},"charsReplaced":"","lastFindLoc":127,"showsHalos":false,"_Rotation":0,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"sourceText","savedTextString":"// changes here only affect runtime\nObject.extend(lively.morphic.Morph,{\n\tmakeLine:function (verts, lineWidth, lineColor) {\n\t\tif (verts.length < 2) return null;\n\t\tif (verts.length > 2) {\n\t\t\t// Polylines become a mere blob for now...\n\t\t\tvar morph = this.makeRectangle(Rectangle.unionPts(verts));\n\t\t\tmorph.setBorderWidth(lineWidth);\n\t\t\tmorph.setBorderColor(lineColor);\n\t\t\tmorph.setFill(null);\n\t\t\treturn morph;\n\t\t} \n\t\t// Okay, it's a simple line...\n\t\tvar p1 = verts[0]; var p2 = verts[1];\n\t\tvar v = p2.subPt(p1);\n \n\t\t// First make a horizontal line of the same length with origin at (0, 0)\n\t\tvar morph = this.makeRectangle(Rectangle.unionPts([pt(0, -lineWidth/2), Point.polar(v.r(), 0).addXY(0, lineWidth/2)]));\n\n\t\t// *** Not right, but we want to make position and center of rot = (0, 0):\n\t\t// morph._Position = pt(0, 0);\n\n\t\tmorph.setBorderWidth(0);\n\t\tmorph.setFill(lineColor);\n\n\t\t// Then move and rotate, with first vertex being the rotation center\n\t\tmorph.moveBy(p1);\n\t\tmorph.setOrigin(pt(0, lineWidth/2));\n\t\tmorph.isLine = true;\n\t\treturn morph.rotateBy(v.theta());\n\t}\n});","textChunks":[{"__isSmartRef__":true,"id":2766},{"__isSmartRef__":true,"id":2768},{"__isSmartRef__":true,"id":2770},{"__isSmartRef__":true,"id":2773},{"__isSmartRef__":true,"id":2775},{"__isSmartRef__":true,"id":2778},{"__isSmartRef__":true,"id":2780},{"__isSmartRef__":true,"id":2782},{"__isSmartRef__":true,"id":2784},{"__isSmartRef__":true,"id":2787},{"__isSmartRef__":true,"id":2790},{"__isSmartRef__":true,"id":2792},{"__isSmartRef__":true,"id":2794},{"__isSmartRef__":true,"id":2796},{"__isSmartRef__":true,"id":2798},{"__isSmartRef__":true,"id":2800},{"__isSmartRef__":true,"id":2802},{"__isSmartRef__":true,"id":2804},{"__isSmartRef__":true,"id":2806},{"__isSmartRef__":true,"id":2808},{"__isSmartRef__":true,"id":2810},{"__isSmartRef__":true,"id":2812},{"__isSmartRef__":true,"id":2814},{"__isSmartRef__":true,"id":2816},{"__isSmartRef__":true,"id":2818},{"__isSmartRef__":true,"id":2820},{"__isSmartRef__":true,"id":2822},{"__isSmartRef__":true,"id":2824},{"__isSmartRef__":true,"id":2826},{"__isSmartRef__":true,"id":2828},{"__isSmartRef__":true,"id":2830},{"__isSmartRef__":true,"id":2832},{"__isSmartRef__":true,"id":2834},{"__isSmartRef__":true,"id":2836},{"__isSmartRef__":true,"id":2838},{"__isSmartRef__":true,"id":2840},{"__isSmartRef__":true,"id":2842},{"__isSmartRef__":true,"id":2844},{"__isSmartRef__":true,"id":2846},{"__isSmartRef__":true,"id":2848},{"__isSmartRef__":true,"id":2850},{"__isSmartRef__":true,"id":2852},{"__isSmartRef__":true,"id":2854},{"__isSmartRef__":true,"id":2856},{"__isSmartRef__":true,"id":2858},{"__isSmartRef__":true,"id":2860},{"__isSmartRef__":true,"id":2862},{"__isSmartRef__":true,"id":2864},{"__isSmartRef__":true,"id":2866},{"__isSmartRef__":true,"id":2868},{"__isSmartRef__":true,"id":2870},{"__isSmartRef__":true,"id":2872},{"__isSmartRef__":true,"id":2874},{"__isSmartRef__":true,"id":2876},{"__isSmartRef__":true,"id":2878},{"__isSmartRef__":true,"id":2880},{"__isSmartRef__":true,"id":2882},{"__isSmartRef__":true,"id":2884},{"__isSmartRef__":true,"id":2886},{"__isSmartRef__":true,"id":2888},{"__isSmartRef__":true,"id":2890},{"__isSmartRef__":true,"id":2892},{"__isSmartRef__":true,"id":2894},{"__isSmartRef__":true,"id":2896},{"__isSmartRef__":true,"id":2898},{"__isSmartRef__":true,"id":2900},{"__isSmartRef__":true,"id":2902},{"__isSmartRef__":true,"id":2904},{"__isSmartRef__":true,"id":2906},{"__isSmartRef__":true,"id":2908},{"__isSmartRef__":true,"id":2910},{"__isSmartRef__":true,"id":2912},{"__isSmartRef__":true,"id":2914},{"__isSmartRef__":true,"id":2916},{"__isSmartRef__":true,"id":2918},{"__isSmartRef__":true,"id":2920},{"__isSmartRef__":true,"id":2922},{"__isSmartRef__":true,"id":2924},{"__isSmartRef__":true,"id":2926},{"__isSmartRef__":true,"id":2928},{"__isSmartRef__":true,"id":2930},{"__isSmartRef__":true,"id":2932},{"__isSmartRef__":true,"id":2934},{"__isSmartRef__":true,"id":2936},{"__isSmartRef__":true,"id":2938},{"__isSmartRef__":true,"id":2940},{"__isSmartRef__":true,"id":2942},{"__isSmartRef__":true,"id":2944},{"__isSmartRef__":true,"id":2946},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2950},{"__isSmartRef__":true,"id":2952},{"__isSmartRef__":true,"id":2954},{"__isSmartRef__":true,"id":2956},{"__isSmartRef__":true,"id":2958},{"__isSmartRef__":true,"id":2960},{"__isSmartRef__":true,"id":2962},{"__isSmartRef__":true,"id":2964},{"__isSmartRef__":true,"id":2966},{"__isSmartRef__":true,"id":2968},{"__isSmartRef__":true,"id":2970},{"__isSmartRef__":true,"id":2972},{"__isSmartRef__":true,"id":2974},{"__isSmartRef__":true,"id":2976},{"__isSmartRef__":true,"id":2978},{"__isSmartRef__":true,"id":2980},{"__isSmartRef__":true,"id":2982},{"__isSmartRef__":true,"id":2984},{"__isSmartRef__":true,"id":2986},{"__isSmartRef__":true,"id":2988},{"__isSmartRef__":true,"id":2990},{"__isSmartRef__":true,"id":2992},{"__isSmartRef__":true,"id":2994},{"__isSmartRef__":true,"id":2996},{"__isSmartRef__":true,"id":2998},{"__isSmartRef__":true,"id":3000},{"__isSmartRef__":true,"id":3002},{"__isSmartRef__":true,"id":3004},{"__isSmartRef__":true,"id":3006}],"priorSelectionRange":[865,865],"_ClipMode":"auto","prevScroll":[0,549],"_FontSize":9,"owner":{"__isSmartRef__":true,"id":1103},"_Scale":0.9979990019999998,"priorExtent":{"__isSmartRef__":true,"id":3008},"lastSyntaxHighlightTime":1308932603720,"renderContextTable":{"__isSmartRef__":true,"id":3009},"eventHandler":{"__isSmartRef__":true,"id":3010},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3011},"__LivelyClassName__":"lively.morphic.Text"},"2758":{"position":{"__isSmartRef__":true,"id":2759},"_Extent":{"__isSmartRef__":true,"id":2760},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":2761},"_Fill":{"__isSmartRef__":true,"id":2762},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":2763},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"2759":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2760":{"x":874.0469590469621,"y":227.48209598213498,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"2761":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"2762":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"2763":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"2764":{"x":10.701682800375693,"y":247.98173452400079,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"2765":{"resizeWidth":true,"resizeHeight":true,"moveVertical":false,"moveHorizontal":false},"2766":{"style":{"__isSmartRef__":true,"id":2767},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"// changes here only affect runtime","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2767":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2768":{"style":{"__isSmartRef__":true,"id":2769},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2769":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2770":{"style":{"__isSmartRef__":true,"id":2771},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"lively.morphic.Morph","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2771":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2772":{"r":0,"g":0,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"2773":{"style":{"__isSmartRef__":true,"id":2774},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2774":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2775":{"style":{"__isSmartRef__":true,"id":2776},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"addMethods","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2776":{"color":{"__isSmartRef__":true,"id":2777},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2777":{"r":0.5019607843137255,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"2778":{"style":{"__isSmartRef__":true,"id":2779},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2779":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2780":{"style":{"__isSmartRef__":true,"id":2781},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2781":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2782":{"style":{"__isSmartRef__":true,"id":2783},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2783":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2784":{"style":{"__isSmartRef__":true,"id":2785},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"adjustForNewBounds","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2785":{"color":{"__isSmartRef__":true,"id":2786},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2786":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"2787":{"style":{"__isSmartRef__":true,"id":2788},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":":","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2788":{"color":{"__isSmartRef__":true,"id":2789},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2789":{"r":0.5450980392156862,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"2790":{"style":{"__isSmartRef__":true,"id":2791},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2791":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2792":{"style":{"__isSmartRef__":true,"id":2793},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2793":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2794":{"style":{"__isSmartRef__":true,"id":2795},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" () ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2795":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2796":{"style":{"__isSmartRef__":true,"id":2797},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2797":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2798":{"style":{"__isSmartRef__":true,"id":2799},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2799":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2800":{"style":{"__isSmartRef__":true,"id":2801},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"// resizeVertical, resizeHorizontal, moveVertical, moveHorizontal","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2801":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2802":{"style":{"__isSmartRef__":true,"id":2803},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2803":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2804":{"style":{"__isSmartRef__":true,"id":2805},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2805":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2806":{"style":{"__isSmartRef__":true,"id":2807},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2807":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2808":{"style":{"__isSmartRef__":true,"id":2809},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2809":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2810":{"style":{"__isSmartRef__":true,"id":2811},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".getLayouter()) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2811":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2812":{"style":{"__isSmartRef__":true,"id":2813},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2813":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2814":{"style":{"__isSmartRef__":true,"id":2815},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2815":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2816":{"style":{"__isSmartRef__":true,"id":2817},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2817":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2818":{"style":{"__isSmartRef__":true,"id":2819},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".applyLayout();\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2819":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2820":{"style":{"__isSmartRef__":true,"id":2821},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2821":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2822":{"style":{"__isSmartRef__":true,"id":2823},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2823":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2824":{"style":{"__isSmartRef__":true,"id":2825},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2825":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2826":{"style":{"__isSmartRef__":true,"id":2827},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2827":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2828":{"style":{"__isSmartRef__":true,"id":2829},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2829":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2830":{"style":{"__isSmartRef__":true,"id":2831},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" newExtent = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2831":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2832":{"style":{"__isSmartRef__":true,"id":2833},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2833":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2834":{"style":{"__isSmartRef__":true,"id":2835},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".getShape().getBounds().extent();\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2835":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2836":{"style":{"__isSmartRef__":true,"id":2837},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2837":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2838":{"style":{"__isSmartRef__":true,"id":2839},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (!","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2839":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2840":{"style":{"__isSmartRef__":true,"id":2841},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2841":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2842":{"style":{"__isSmartRef__":true,"id":2843},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".priorExtent) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2843":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2844":{"style":{"__isSmartRef__":true,"id":2845},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2845":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2846":{"style":{"__isSmartRef__":true,"id":2847},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2847":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2848":{"style":{"__isSmartRef__":true,"id":2849},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2849":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2850":{"style":{"__isSmartRef__":true,"id":2851},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".priorExtent = newExtent;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2851":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2852":{"style":{"__isSmartRef__":true,"id":2853},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2853":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2854":{"style":{"__isSmartRef__":true,"id":2855},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2855":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2856":{"style":{"__isSmartRef__":true,"id":2857},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2857":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2858":{"style":{"__isSmartRef__":true,"id":2859},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2859":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2860":{"style":{"__isSmartRef__":true,"id":2861},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2861":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2862":{"style":{"__isSmartRef__":true,"id":2863},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" scalePt = newExtent.scaleByPt(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2863":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2864":{"style":{"__isSmartRef__":true,"id":2865},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2865":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2866":{"style":{"__isSmartRef__":true,"id":2867},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".priorExtent.invertedSafely()),\n diff = newExtent.subPt(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2867":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2868":{"style":{"__isSmartRef__":true,"id":2869},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2869":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2870":{"style":{"__isSmartRef__":true,"id":2871},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".priorExtent); \n \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2871":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2872":{"style":{"__isSmartRef__":true,"id":2873},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2873":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2874":{"style":{"__isSmartRef__":true,"id":2875},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2875":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2876":{"style":{"__isSmartRef__":true,"id":2877},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2877":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2878":{"style":{"__isSmartRef__":true,"id":2879},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" i = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2879":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2880":{"style":{"__isSmartRef__":true,"id":2881},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2881":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2882":{"style":{"__isSmartRef__":true,"id":2883},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"; i < ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2883":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2884":{"style":{"__isSmartRef__":true,"id":2885},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2885":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2886":{"style":{"__isSmartRef__":true,"id":2887},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".submorphs.length; i++) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2887":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2888":{"style":{"__isSmartRef__":true,"id":2889},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2889":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2890":{"style":{"__isSmartRef__":true,"id":2891},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2891":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2892":{"style":{"__isSmartRef__":true,"id":2893},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2893":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2894":{"style":{"__isSmartRef__":true,"id":2895},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" morph = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2895":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2896":{"style":{"__isSmartRef__":true,"id":2897},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2897":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2898":{"style":{"__isSmartRef__":true,"id":2899},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".submorphs[i], spec = morph.layout;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2899":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2900":{"style":{"__isSmartRef__":true,"id":2901},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2901":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2902":{"style":{"__isSmartRef__":true,"id":2903},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (!spec) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2903":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2904":{"style":{"__isSmartRef__":true,"id":2905},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"continue","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2905":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2906":{"style":{"__isSmartRef__":true,"id":2907},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":";\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2907":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2908":{"style":{"__isSmartRef__":true,"id":2909},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2909":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2910":{"style":{"__isSmartRef__":true,"id":2911},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" moveX = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2911":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2912":{"style":{"__isSmartRef__":true,"id":2913},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2913":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2914":{"style":{"__isSmartRef__":true,"id":2915},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":", moveY = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2915":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2916":{"style":{"__isSmartRef__":true,"id":2917},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2917":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2918":{"style":{"__isSmartRef__":true,"id":2919},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":", resizeX = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2919":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2920":{"style":{"__isSmartRef__":true,"id":2921},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2921":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2922":{"style":{"__isSmartRef__":true,"id":2923},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":", resizeY = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2923":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2924":{"style":{"__isSmartRef__":true,"id":2925},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2925":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2926":{"style":{"__isSmartRef__":true,"id":2927},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":";\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2927":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2928":{"style":{"__isSmartRef__":true,"id":2929},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2929":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2930":{"style":{"__isSmartRef__":true,"id":2931},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (spec.centeredHorizontal)\n moveX = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2931":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2932":{"style":{"__isSmartRef__":true,"id":2933},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2933":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2934":{"style":{"__isSmartRef__":true,"id":2935},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".innerBounds().center().x - morph.bounds().center().x;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2935":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2936":{"style":{"__isSmartRef__":true,"id":2937},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2937":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2938":{"style":{"__isSmartRef__":true,"id":2939},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (spec.centeredVertical)\n moveY = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2939":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2940":{"style":{"__isSmartRef__":true,"id":2941},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2941":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2942":{"style":{"__isSmartRef__":true,"id":2943},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".innerBounds().center().y - morph.bounds().center().y;\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2943":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2944":{"style":{"__isSmartRef__":true,"id":2945},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2945":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2946":{"style":{"__isSmartRef__":true,"id":2947},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (spec.moveHorizontal) moveX = diff.x;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2947":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2948":{"style":{"__isSmartRef__":true,"id":2949},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2949":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2950":{"style":{"__isSmartRef__":true,"id":2951},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (spec.moveVertical) moveY = diff.y;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2951":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2952":{"style":{"__isSmartRef__":true,"id":2953},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2953":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2954":{"style":{"__isSmartRef__":true,"id":2955},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (spec.resizeWidth) resizeX = diff.x;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2955":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2956":{"style":{"__isSmartRef__":true,"id":2957},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2957":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2958":{"style":{"__isSmartRef__":true,"id":2959},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (spec.resizeHeight) resizeY = diff.y;\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2959":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2960":{"style":{"__isSmartRef__":true,"id":2961},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2961":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2962":{"style":{"__isSmartRef__":true,"id":2963},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (spec.scaleHorizontal || spec.scaleVertical) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2963":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2964":{"style":{"__isSmartRef__":true,"id":2965},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2965":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2966":{"style":{"__isSmartRef__":true,"id":2967},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2967":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2968":{"style":{"__isSmartRef__":true,"id":2969},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2969":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2970":{"style":{"__isSmartRef__":true,"id":2971},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" morphScale = pt(\n spec.scaleHorizontal ? scalePt.x : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2971":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2972":{"style":{"__isSmartRef__":true,"id":2973},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2973":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2974":{"style":{"__isSmartRef__":true,"id":2975},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":",\n spec.scaleVertical ? scalePt.y : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2975":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2976":{"style":{"__isSmartRef__":true,"id":2977},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2977":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2978":{"style":{"__isSmartRef__":true,"id":2979},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":");\n morph.setPosition(morph.getPosition().scaleByPt(morphScale));\n morph.setExtent(morph.getExtent().scaleByPt(morphScale));\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2979":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2980":{"style":{"__isSmartRef__":true,"id":2981},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2981":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2982":{"style":{"__isSmartRef__":true,"id":2983},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2983":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2984":{"style":{"__isSmartRef__":true,"id":2985},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2985":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2986":{"style":{"__isSmartRef__":true,"id":2987},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (moveX || moveY) morph.moveBy(pt(moveX, moveY));\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2987":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2988":{"style":{"__isSmartRef__":true,"id":2989},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2989":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2990":{"style":{"__isSmartRef__":true,"id":2991},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":" (resizeX || resizeY) morph.setExtent(morph.getExtent().addXY(resizeX, resizeY));\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2991":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2992":{"style":{"__isSmartRef__":true,"id":2993},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2993":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2994":{"style":{"__isSmartRef__":true,"id":2995},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2995":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2996":{"style":{"__isSmartRef__":true,"id":2997},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2997":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2998":{"style":{"__isSmartRef__":true,"id":2999},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":".priorExtent = newExtent;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2999":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3000":{"style":{"__isSmartRef__":true,"id":3001},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3001":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3002":{"style":{"__isSmartRef__":true,"id":3003},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3003":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3004":{"style":{"__isSmartRef__":true,"id":3005},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3005":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3006":{"style":{"__isSmartRef__":true,"id":3007},"chunkOwner":{"__isSmartRef__":true,"id":2757},"storedString":");","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3007":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3008":{"x":874.0469590469621,"y":227.48209598213498,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3009":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3010":{"morph":{"__isSmartRef__":true,"id":2757},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3011":{"doSave":{"__isSmartRef__":true,"id":3012},"getDoitContext":{"__isSmartRef__":true,"id":3019}},"3012":{"varMapping":{"__isSmartRef__":true,"id":3013},"source":"function doSave() {\n\t$super()\n\talertOK(\"eval all for \" + this.getDoitContext())\n\tthis.boundEval(this.textString)\n}","funcProperties":{"__isSmartRef__":true,"id":3018},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3013":{"this":{"__isSmartRef__":true,"id":2757},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3014}},"3014":{"$super":{"__isSmartRef__":true,"id":3015}},"3015":{"varMapping":{"__isSmartRef__":true,"id":3016},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":3017},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3016":{"obj":{"__isSmartRef__":true,"id":2757},"name":"doSave"},"3017":{},"3018":{},"3019":{"varMapping":{"__isSmartRef__":true,"id":3020},"source":"function getDoitContext() {\n\treturn this.owner.targetObject\n}","funcProperties":{"__isSmartRef__":true,"id":3025},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3020":{"this":{"__isSmartRef__":true,"id":2757},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3021}},"3021":{"$super":{"__isSmartRef__":true,"id":3022}},"3022":{"varMapping":{"__isSmartRef__":true,"id":3023},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":3024},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3023":{"obj":{"__isSmartRef__":true,"id":2757},"name":"getDoitContext"},"3024":{},"3025":{},"3026":{"submorphs":[],"scripts":[],"id":406,"shape":{"__isSmartRef__":true,"id":3027},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco, Courier","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3033},"_MaxTextWidth":874.0469590469621,"_MaxTextHeight":20.48209598213498,"textStyle":null,"layout":{"__isSmartRef__":true,"id":3034},"charsReplaced":"","lastFindLoc":697,"showsHalos":false,"_Rotation":0,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"infoText","savedTextString":"// MethodFinder (this)\n\n// ** MethodFinder's Scripts **\nthis.addScript(function browse(fileFragment) {\n\tfileFragment && fileFragment.browseIt()\n});\n\nthis.addScript(function reset() {\n\tthis.get('searchResultList').updateList([]);\n\tthis.get('searchResultList').setSelection(null);\n\tthis.get('searchText').setTextString('enter search term here');\n});\n\n\nthis.addScript(function search(searchString) {\n\tvar finds = [];\n\tvar re = new RegExp(searchString)\n\tvar i=0;\n\tvar time = Functions.timeToRun(function() {\n\tGlobal.classes(true).forEach(function(eaClass) {\n\t\tFunctions.own(eaClass.prototype)\n\t\t\t.forEach(function(eaMethod) {\n\t\t\t\ti++;\n\t\t\t\tif (eaMethod.match(re)){\n\t\t\t\t\tfinds.push([eaClass, eaMethod])\n\t\t\t\t}\t\n\t\t\t})\t\n\t})})\n\talert(\"search \" + i + \" methods, found \" + finds.length + \" methods in \" + time + \"ms\")\n\n\tvar items = finds.collect(function(ea) {\n\t\treturn {\n\t\t\tisListItem: true,\n\t\t\tvalue: ea,\n\t\t\tstring: ea[0].name + \": \" + ea[1],\n\t\t}\n\t})\n\tthis.get('searchResultList').updateList(items);\n});","textChunks":[{"__isSmartRef__":true,"id":3035}],"priorSelectionRange":[37,37],"_ClipMode":"hidden","prevScroll":[0,0],"_FontSize":10,"_Scale":0.9979990019999998,"priorExtent":{"__isSmartRef__":true,"id":3037},"owner":{"__isSmartRef__":true,"id":1103},"renderContextTable":{"__isSmartRef__":true,"id":3038},"eventHandler":{"__isSmartRef__":true,"id":3039},"__LivelyClassName__":"lively.morphic.Text"},"3027":{"position":{"__isSmartRef__":true,"id":3028},"_Extent":{"__isSmartRef__":true,"id":3029},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3030},"_Fill":{"__isSmartRef__":true,"id":3031},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3032},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3028":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3029":{"x":874.0469590469621,"y":20.48209598213498,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3030":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3031":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3032":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3033":{"x":6.701682800375693,"y":215.98173452400079,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3034":{"resizeWidth":true,"resizeHeight":false,"moveVertical":false,"moveHorizontal":false},"3035":{"style":{"__isSmartRef__":true,"id":3036},"chunkOwner":{"__isSmartRef__":true,"id":3026},"storedString":"module(Global.lively.morphic.Layout)","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3036":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3037":{"x":874.0469590469621,"y":20.48209598213498,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3038":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3039":{"morph":{"__isSmartRef__":true,"id":3026},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3040":{"submorphs":[{"__isSmartRef__":true,"id":3041}],"scripts":[],"id":407,"shape":{"__isSmartRef__":true,"id":3055},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3070},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3059},"lighterFill":{"__isSmartRef__":true,"id":3071},"label":{"__isSmartRef__":true,"id":3041},"showsHalos":false,"name":"browse","partsBinMetaInfo":{"__isSmartRef__":true,"id":3080},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Rotation":0,"attributeConnections":[{"__isSmartRef__":true,"id":3081}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":3082},"owner":{"__isSmartRef__":true,"id":1103},"renderContextTable":{"__isSmartRef__":true,"id":3083},"eventHandler":{"__isSmartRef__":true,"id":3084},"__LivelyClassName__":"lively.morphic.Button"},"3041":{"submorphs":[],"scripts":[],"id":408,"shape":{"__isSmartRef__":true,"id":3042},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3047},"_MaxTextWidth":78,"_MaxTextHeight":20,"padding":{"__isSmartRef__":true,"id":3048},"_Padding":{"__isSmartRef__":true,"id":3049},"owner":{"__isSmartRef__":true,"id":3040},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textStyle":null,"textChunks":[{"__isSmartRef__":true,"id":3050}],"prevScroll":[0,0],"_ClipMode":"hidden","priorExtent":{"__isSmartRef__":true,"id":3052},"_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":3053},"eventHandler":{"__isSmartRef__":true,"id":3054},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"3042":{"position":{"__isSmartRef__":true,"id":3043},"_Extent":{"__isSmartRef__":true,"id":3044},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3045},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3046},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3043":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3044":{"x":78,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3045":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3046":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3047":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3048":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3049":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3050":{"style":{"__isSmartRef__":true,"id":3051},"morph":{"__isSmartRef__":true,"id":3041},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3041},"storedString":"browse","__LivelyClassName__":"lively.morphic.TextChunk"},"3051":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3052":{"x":78,"y":20,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3053":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3054":{"morph":{"__isSmartRef__":true,"id":3041},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3055":{"position":{"__isSmartRef__":true,"id":3056},"_Extent":{"__isSmartRef__":true,"id":3057},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3058},"_Fill":{"__isSmartRef__":true,"id":3059},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3069},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3056":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3057":{"x":78,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3058":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3059":{"stops":[{"__isSmartRef__":true,"id":3060},{"__isSmartRef__":true,"id":3062},{"__isSmartRef__":true,"id":3064},{"__isSmartRef__":true,"id":3066}],"vector":{"__isSmartRef__":true,"id":3068},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3060":{"offset":0,"color":{"__isSmartRef__":true,"id":3061}},"3061":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3062":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3063}},"3063":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3064":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3065}},"3065":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3066":{"offset":1,"color":{"__isSmartRef__":true,"id":3067}},"3067":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3068":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3069":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3070":{"x":401.0439335888881,"y":26.725910952184506,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3071":{"stops":[{"__isSmartRef__":true,"id":3072},{"__isSmartRef__":true,"id":3074},{"__isSmartRef__":true,"id":3076},{"__isSmartRef__":true,"id":3078}],"vector":{"__isSmartRef__":true,"id":3068},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3072":{"offset":0,"color":{"__isSmartRef__":true,"id":3073}},"3073":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3074":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3075}},"3075":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3076":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3077}},"3077":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3078":{"offset":1,"color":{"__isSmartRef__":true,"id":3079}},"3079":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3080":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3081":{"sourceObj":{"__isSmartRef__":true,"id":3040},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1103},"targetMethodName":"browseMethod","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3082":{"x":77,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3083":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3084":{"morph":{"__isSmartRef__":true,"id":3040},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3085":{"position":{"__isSmartRef__":true,"id":3086},"_Extent":{"__isSmartRef__":true,"id":3087},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":3088},"_Fill":{"__isSmartRef__":true,"id":3089},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3090},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3086":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3087":{"x":896.4170420843768,"y":485.002005010021,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3088":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3089":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3090":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3091":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3092":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"requiredModules":["lively.ide"],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3093":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":true},"3094":{"x":896.4170420843768,"y":485.002005010021,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3095":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3096":{"morph":{"__isSmartRef__":true,"id":1103},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3097":{"search":{"__isSmartRef__":true,"id":3098},"browse":{"__isSmartRef__":true,"id":3101},"reset":{"__isSmartRef__":true,"id":3104},"setSearch":{"__isSmartRef__":true,"id":3107},"emphasizeStringIn":{"__isSmartRef__":true,"id":3110},"withAllMethodsDo":{"__isSmartRef__":true,"id":3113},"itemsFromFinds":{"__isSmartRef__":true,"id":3116},"browseMethod":{"__isSmartRef__":true,"id":3119},"openMethodInSystemBrowser":{"__isSmartRef__":true,"id":3122}},"3098":{"varMapping":{"__isSmartRef__":true,"id":3099},"source":"function search(searchString) { \n this.get('searchResultList').updateList([]);\n this.get('sourceText').setTextString('');\n if (!searchString || (searchString.length < 2)) {\n this.get('sourceText').setTextString('\"' + searchString + '\" is to short');\n return;\n }\n var finds = [];\n var i=0;\n var matches = function(s) {\n return s.include(searchString)\n } \n\n // var re = new RegExp(searchString)\n var time = Functions.timeToRun(function() {\n this.withAllMethodsDo(function(object, eaMethod, type) {\n i++;\n var name;\n if (!object) return;\n\n if (object.constructor.prototype == object)\n name = object.constructor.name\n\n if (object.name) name = object.name;\n if (object.namespaceIdentifier)\n name = object.namespaceIdentifier\n\n if (object.constructor.prototype != object)\n name = name + \"(object)\"\n\n if ((object.constructor.prototype != object) && (object instanceof Morph))\n name = object.name + \"(\" + object.id + \")\"\n\n if (object === Global)\n name = \" \";\n\n var string = name + \": \" + eaMethod; \n var item = {object: object, method: eaMethod, string: string, type: type};\n\n if (matches(eaMethod)) {\n item.search= 'implementor',\n finds.push(item)\n return;\n } \n\n var f = object[eaMethod];\n if (!f || !f.getOriginal) return;\n var source = String(f.getOriginal())\n if (matches(source)){\n item.search = 'sender'\n finds.push(item)\n } \n })\n }.bind(this))\n this.get('sourceText').setTextString(\"search \" + i + \" methods, found \" \n + finds.length + \" methods in \" + time + \"ms\");\n var items = this.itemsFromFinds(finds)\n this.get('searchResultList').updateList(items);\n}","funcProperties":{"__isSmartRef__":true,"id":3100},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3099":{"this":{"__isSmartRef__":true,"id":1103}},"3100":{},"3101":{"varMapping":{"__isSmartRef__":true,"id":3102},"source":"function browse(methodItem) {\n if (! methodItem) return;\n var methodName = methodItem.method;\n var object = methodItem.object;\n var orgFunc = object[methodName];\n if (!orgFunc) {\n this.get('sourceText').setTextString('no source');\n return\n }\n orgFunc = orgFunc.getOriginal()\n \n this.targetFunction = orgFunc;\n this.targetObject = object;\n\n var source = \"// changes here only affect runtime\\n\", tab = lively.morphic.Text.prototype.tab;\n if (orgFunc.declaredClass) {\n source += orgFunc.declaredClass + \".addMethods({\\n\" + tab + methodName + \": \" +\n orgFunc + \"\\n});\"\n } else if(methodItem.type == 'extend') {\n // perhaps it is a an class object\n source += \"Object.extend(\" + (object.type || object.namespaceIdentifier) + \",{\\n\" + tab + methodName + \": \" +\n orgFunc + \"\\n});\"\n } else if(object.isMorph && (object.constructor.prototype !== object) ) {\n // display as script\n source = \"this.addScript(\" + orgFunc + \");\"\n } else if(object === Global) {\n // display as script\n source += \"Object.extend(Global, {\\n\" + tab + methodName + \": \" +\n orgFunc + \"\\n});\"\n }\n\n this.get('sourceText').setTextString(source)\n\n module('lively.ide.SyntaxHighlighting').load(true)\n this.get('sourceText').highlightJavaScriptSyntax()\n\n this.get('sourceText').emphasizeRegex(new RegExp(this.get('searchText').textString, \"g\"), {color: Color.red});\n\n var info = '' + orgFunc.sourceModule \n\n this.get('infoText').setTextString(info)\n}","funcProperties":{"__isSmartRef__":true,"id":3103},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3102":{"this":{"__isSmartRef__":true,"id":1103}},"3103":{},"3104":{"varMapping":{"__isSmartRef__":true,"id":3105},"source":"function reset() {\n this.get('searchResultList').updateList([]);\n this.get('searchResultList').setSelection(null);\n this.get('searchText').setTextString('enter method name her');\n this.get('sourceText').setTextString('no code');\n this.get('infoText').setTextString('');\n this.targetFunction = null;\n this.targetObject = null;\n}","funcProperties":{"__isSmartRef__":true,"id":3106},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3105":{"this":{"__isSmartRef__":true,"id":1103}},"3106":{},"3107":{"varMapping":{"__isSmartRef__":true,"id":3108},"source":"function setSearch(searchString) {\n this.get('searchText').setTextString(searchString);\n this.search(searchString)\n var list = this.get('searchResultList').getList();\n if (list.length > 0) this.get('searchResultList').setSelection(list[0])\n}","funcProperties":{"__isSmartRef__":true,"id":3109},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3108":{"this":{"__isSmartRef__":true,"id":1103}},"3109":{},"3110":{"varMapping":{"__isSmartRef__":true,"id":3111},"source":"function emphasizeStringIn(morph, string, style) {\n var m;\n var re = new RegExp(string, \"g\");\n while(m = re.exec(morph.textString)) {\n var from = m.index,\n to = m.index + m[0].length;\n morph.emphasize(style, from, to)\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3112},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3111":{"this":{"__isSmartRef__":true,"id":1103}},"3112":{},"3113":{"varMapping":{"__isSmartRef__":true,"id":3114},"source":"function withAllMethodsDo(func) {\n var visited = [];\n\n Functions.own(Global).forEach(function(eaMethod) {\n func(Global, eaMethod, 'global')\n }); \n\n this.world().withAllSubmorphsDo(function(ea) {\n Functions.own(ea).forEach(function(eaMethod) {\n func(ea, eaMethod, 'script')\n }); \n });\n\n Global.subNamespaces(true).forEach(function(ea) {\n Functions.own(ea).forEach(function(eaMethod) {\n func(ea, eaMethod, 'extend')\n }); \n });\n\n Global.classes(true).uniq().forEach(function(eaClass) {\n Functions.own(eaClass).forEach(function(eaMethod) {\n func(eaClass, eaMethod, 'extend')\n }); \n\n Functions.own(eaClass.prototype).forEach(function(eaMethod) {\n func(eaClass.prototype, eaMethod, 'class')\n }) \n })\n}","funcProperties":{"__isSmartRef__":true,"id":3115},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3114":{"this":{"__isSmartRef__":true,"id":1103}},"3115":{},"3116":{"varMapping":{"__isSmartRef__":true,"id":3117},"source":"function itemsFromFinds(finds) {\n var items = finds.collect(function(ea) {\n var pref = \"\" + ea.type + \" \";\n if (ea.search == \"sender\") pref += \"full: \"\n if (ea.search == \"implementor\") pref += \"name: \"\n return {\n isListItem: true,\n value: ea,\n string: pref + ea.string,\n }\n })\n items = items.sortBy(function(ea) {return ea.string})\n return items\n}","funcProperties":{"__isSmartRef__":true,"id":3118},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3117":{"this":{"__isSmartRef__":true,"id":1103}},"3118":{},"3119":{"varMapping":{"__isSmartRef__":true,"id":3120},"source":"function browseMethod() {\n alertOK('browseMethod')\n if (!this.targetFunction) return;\n var methodName = this.targetFunction.methodName; \n if(this.targetFunction.declaredClass) {\n var classObj = eval(this.targetFunction.declaredClass)\n this.openMethodInSystemBrowser(classObj.type, methodName);\n return;\n }\n if(Class.isClass(this.targetObject)) {\n this.openMethodInSystemBrowser(this.targetObject.type, methodName);\n return;\n }\n if(this.targetObject.namespaceIdentifier) {\n this.openMethodInSystemBrowser(this.targetObject.namespaceIdentifier, methodName);\n return;\n }\n if(this.targetObject instanceof lively.morphic.Morph) {\n var editor = this.world().openScriptEditorFor(this.targetObject);\n editor.align(editor.bounds().center(), this.world().visibleBounds().center());\n return;\n }\n alert('not implemented yet for ' + this.targetFunction)\n}","funcProperties":{"__isSmartRef__":true,"id":3121},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3120":{"this":{"__isSmartRef__":true,"id":1103}},"3121":{},"3122":{"varMapping":{"__isSmartRef__":true,"id":3123},"source":"function openMethodInSystemBrowser(objectName, methodName) {\n alert(\"browse \" + objectName + \":\" + methodName)\n var uri = new URL(this.targetFunction.sourceModule.uri()),\n relative = uri.relativePathFrom(new URL(Config.codeBase)),\n moduleNode = lively.ide.startSourceControl().addModule(relative),\n rootNode = moduleNode.ast();\n\n var fileFragments = rootNode.subElements(10).select(function(ea) {\n var path = ea.getOwnerNamePath()\n return path.include(objectName) && path.include(methodName) \n });\n\n alertOK(\"found following places to browse: \" + fileFragments)\n if (fileFragments.length > 0) {\n fileFragments[0].browseIt()\n }\n\n}","funcProperties":{"__isSmartRef__":true,"id":3124},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3123":{"this":{"__isSmartRef__":true,"id":1103}},"3124":{},"3125":{"submorphs":[{"__isSmartRef__":true,"id":3126},{"__isSmartRef__":true,"id":3138},{"__isSmartRef__":true,"id":3182},{"__isSmartRef__":true,"id":3214}],"scripts":[],"id":409,"shape":{"__isSmartRef__":true,"id":3247},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3252},"_Position":{"__isSmartRef__":true,"id":3253},"eventsAreIgnored":true,"windowMorph":{"__isSmartRef__":true,"id":1102},"label":{"__isSmartRef__":true,"id":3126},"closeButton":{"__isSmartRef__":true,"id":3138},"menuButton":{"__isSmartRef__":true,"id":3182},"collapseButton":{"__isSmartRef__":true,"id":3214},"priorExtent":{"__isSmartRef__":true,"id":3254},"owner":{"__isSmartRef__":true,"id":1102},"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":3255},"eventHandler":{"__isSmartRef__":true,"id":3256},"__LivelyClassName__":"lively.morphic.TitleBar"},"3126":{"submorphs":[],"scripts":[],"id":410,"shape":{"__isSmartRef__":true,"id":3127},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3131},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":3132},"priorExtent":{"__isSmartRef__":true,"id":3133},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":3134}],"evalEnabled":false,"isLabel":true,"eventsAreIgnored":true,"_FontSize":10,"owner":{"__isSmartRef__":true,"id":3125},"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":3136},"eventHandler":{"__isSmartRef__":true,"id":3137},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"3127":{"_Position":{"__isSmartRef__":true,"id":3128},"_Extent":{"__isSmartRef__":true,"id":3129},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3088},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3130},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3128":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3129":{"x":837.4170420843768,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3130":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3131":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3132":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3133":{"x":837.4170420843768,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3134":{"style":{"__isSmartRef__":true,"id":3135},"morph":{"__isSmartRef__":true,"id":3126},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3126},"storedString":"MethodFinder","__LivelyClassName__":"lively.morphic.TextChunk"},"3135":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3136":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3137":{"morph":{"__isSmartRef__":true,"id":3126},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3138":{"submorphs":[{"__isSmartRef__":true,"id":3139}],"scripts":[],"id":411,"shape":{"__isSmartRef__":true,"id":3151},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3166},"priorExtent":{"__isSmartRef__":true,"id":3167},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3155},"lighterFill":{"__isSmartRef__":true,"id":3168},"label":{"__isSmartRef__":true,"id":3139},"owner":{"__isSmartRef__":true,"id":3125},"layout":{"__isSmartRef__":true,"id":3177},"attributeConnections":[{"__isSmartRef__":true,"id":3178},{"__isSmartRef__":true,"id":3179}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":3180},"eventHandler":{"__isSmartRef__":true,"id":3181},"__LivelyClassName__":"lively.morphic.WindowControl"},"3139":{"submorphs":[],"scripts":[],"id":412,"shape":{"__isSmartRef__":true,"id":3140},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3144},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":3145},"priorExtent":{"__isSmartRef__":true,"id":3146},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":3147}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3138},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":3149},"eventHandler":{"__isSmartRef__":true,"id":3150},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"3140":{"_Position":{"__isSmartRef__":true,"id":3141},"_Extent":{"__isSmartRef__":true,"id":3142},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3088},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3143},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3141":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3142":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3143":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3144":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3145":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3146":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3147":{"style":{"__isSmartRef__":true,"id":3148},"morph":{"__isSmartRef__":true,"id":3139},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3139},"storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"3148":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3149":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3150":{"morph":{"__isSmartRef__":true,"id":3139},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3151":{"_Position":{"__isSmartRef__":true,"id":3152},"_Extent":{"__isSmartRef__":true,"id":3153},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3154},"_Fill":{"__isSmartRef__":true,"id":3155},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3165},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3152":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3153":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3154":{"r":0.8392156862745098,"g":0.8392156862745098,"b":0.8392156862745098,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3155":{"stops":[{"__isSmartRef__":true,"id":3156},{"__isSmartRef__":true,"id":3158},{"__isSmartRef__":true,"id":3160},{"__isSmartRef__":true,"id":3162}],"vector":{"__isSmartRef__":true,"id":3164},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3156":{"offset":0,"color":{"__isSmartRef__":true,"id":3157}},"3157":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3158":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3159}},"3159":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3160":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3161}},"3161":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3162":{"offset":1,"color":{"__isSmartRef__":true,"id":3163}},"3163":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3164":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3165":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3166":{"x":876.4170420843768,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3167":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3168":{"stops":[{"__isSmartRef__":true,"id":3169},{"__isSmartRef__":true,"id":3171},{"__isSmartRef__":true,"id":3173},{"__isSmartRef__":true,"id":3175}],"vector":{"__isSmartRef__":true,"id":3164},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3169":{"offset":0,"color":{"__isSmartRef__":true,"id":3170}},"3170":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3171":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3172}},"3172":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3173":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3174}},"3174":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3175":{"offset":1,"color":{"__isSmartRef__":true,"id":3176}},"3176":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3177":{"moveHorizontal":true},"3178":{"sourceObj":{"__isSmartRef__":true,"id":3138},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1102},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3179":{"sourceObj":{"__isSmartRef__":true,"id":3138},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1102},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3180":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3181":{"morph":{"__isSmartRef__":true,"id":3138},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3182":{"submorphs":[{"__isSmartRef__":true,"id":3183}],"scripts":[],"id":413,"shape":{"__isSmartRef__":true,"id":3195},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3199},"priorExtent":{"__isSmartRef__":true,"id":3200},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3155},"lighterFill":{"__isSmartRef__":true,"id":3201},"label":{"__isSmartRef__":true,"id":3183},"owner":{"__isSmartRef__":true,"id":3125},"attributeConnections":[{"__isSmartRef__":true,"id":3210},{"__isSmartRef__":true,"id":3211}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":3212},"eventHandler":{"__isSmartRef__":true,"id":3213},"__LivelyClassName__":"lively.morphic.WindowControl"},"3183":{"submorphs":[],"scripts":[],"id":414,"shape":{"__isSmartRef__":true,"id":3184},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3188},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":3189},"priorExtent":{"__isSmartRef__":true,"id":3190},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":3191}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3182},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":3193},"eventHandler":{"__isSmartRef__":true,"id":3194},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"3184":{"_Position":{"__isSmartRef__":true,"id":3185},"_Extent":{"__isSmartRef__":true,"id":3186},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3088},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3187},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3185":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3186":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3187":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3188":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3189":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3190":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3191":{"style":{"__isSmartRef__":true,"id":3192},"morph":{"__isSmartRef__":true,"id":3183},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3183},"storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"3192":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3193":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3194":{"morph":{"__isSmartRef__":true,"id":3183},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3195":{"_Position":{"__isSmartRef__":true,"id":3196},"_Extent":{"__isSmartRef__":true,"id":3197},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3154},"_Fill":{"__isSmartRef__":true,"id":3155},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3198},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3196":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3197":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3198":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3199":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3200":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3201":{"stops":[{"__isSmartRef__":true,"id":3202},{"__isSmartRef__":true,"id":3204},{"__isSmartRef__":true,"id":3206},{"__isSmartRef__":true,"id":3208}],"vector":{"__isSmartRef__":true,"id":3164},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3202":{"offset":0,"color":{"__isSmartRef__":true,"id":3203}},"3203":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3204":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3205}},"3205":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3206":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3207}},"3207":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3208":{"offset":1,"color":{"__isSmartRef__":true,"id":3209}},"3209":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3210":{"sourceObj":{"__isSmartRef__":true,"id":3182},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1102},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3211":{"sourceObj":{"__isSmartRef__":true,"id":3182},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1102},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3212":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3213":{"morph":{"__isSmartRef__":true,"id":3182},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3214":{"submorphs":[{"__isSmartRef__":true,"id":3215}],"scripts":[],"id":415,"shape":{"__isSmartRef__":true,"id":3227},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3231},"priorExtent":{"__isSmartRef__":true,"id":3232},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3155},"lighterFill":{"__isSmartRef__":true,"id":3233},"label":{"__isSmartRef__":true,"id":3215},"owner":{"__isSmartRef__":true,"id":3125},"layout":{"__isSmartRef__":true,"id":3242},"attributeConnections":[{"__isSmartRef__":true,"id":3243},{"__isSmartRef__":true,"id":3244}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","renderContextTable":{"__isSmartRef__":true,"id":3245},"eventHandler":{"__isSmartRef__":true,"id":3246},"__LivelyClassName__":"lively.morphic.WindowControl"},"3215":{"submorphs":[],"scripts":[],"id":416,"shape":{"__isSmartRef__":true,"id":3216},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3220},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":3221},"priorExtent":{"__isSmartRef__":true,"id":3222},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":3223}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3214},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","renderContextTable":{"__isSmartRef__":true,"id":3225},"eventHandler":{"__isSmartRef__":true,"id":3226},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"3216":{"_Position":{"__isSmartRef__":true,"id":3217},"_Extent":{"__isSmartRef__":true,"id":3218},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3088},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3219},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3217":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3218":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3219":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3220":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3221":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3222":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3223":{"style":{"__isSmartRef__":true,"id":3224},"morph":{"__isSmartRef__":true,"id":3215},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3215},"storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"3224":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3225":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3226":{"morph":{"__isSmartRef__":true,"id":3215},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3227":{"_Position":{"__isSmartRef__":true,"id":3228},"_Extent":{"__isSmartRef__":true,"id":3229},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3154},"_Fill":{"__isSmartRef__":true,"id":3155},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3230},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3228":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3229":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3230":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3231":{"x":857.4170420843768,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3232":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3233":{"stops":[{"__isSmartRef__":true,"id":3234},{"__isSmartRef__":true,"id":3236},{"__isSmartRef__":true,"id":3238},{"__isSmartRef__":true,"id":3240}],"vector":{"__isSmartRef__":true,"id":3164},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3234":{"offset":0,"color":{"__isSmartRef__":true,"id":3235}},"3235":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3236":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3237}},"3237":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3238":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3239}},"3239":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3240":{"offset":1,"color":{"__isSmartRef__":true,"id":3241}},"3241":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3242":{"moveHorizontal":true},"3243":{"sourceObj":{"__isSmartRef__":true,"id":3214},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":1102},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3244":{"sourceObj":{"__isSmartRef__":true,"id":3214},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1102},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3245":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3246":{"morph":{"__isSmartRef__":true,"id":3214},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3247":{"_Position":{"__isSmartRef__":true,"id":3248},"_Extent":{"__isSmartRef__":true,"id":3249},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":3250},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3251},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3248":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3249":{"x":896.4170420843768,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3250":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3251":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3252":{"resizeWidth":true,"adjustForNewBounds":true},"3253":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3254":{"x":896.4170420843768,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3255":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3256":{"morph":{"__isSmartRef__":true,"id":3125},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3257":{"submorphs":[],"scripts":[],"id":417,"shape":{"__isSmartRef__":true,"id":3258},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3264},"showsHalos":false,"name":"ResizeCorner2","partsBinMetaInfo":{"__isSmartRef__":true,"id":3265},"__SourceModuleName__":"Global.lively.morphic.Core","_Rotation":0,"_Scale":1.0000000000000002,"draggingEnabled":true,"dragStartPoint":null,"originalExtent":{"__isSmartRef__":true,"id":3266},"originalTargetExtent":null,"owner":{"__isSmartRef__":true,"id":1102},"renderContextTable":{"__isSmartRef__":true,"id":3267},"eventHandler":{"__isSmartRef__":true,"id":3268},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3269},"__LivelyClassName__":"lively.morphic.Box"},"3258":{"position":{"__isSmartRef__":true,"id":3259},"_Extent":{"__isSmartRef__":true,"id":3260},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3261},"_Fill":{"__isSmartRef__":true,"id":3262},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3263},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3259":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3260":{"x":13,"y":15,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3261":{"r":0.568,"g":0.568,"b":0.568,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3262":{"r":0.258,"g":0.258,"b":0.258,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3263":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3264":{"x":883.4170420843768,"y":492.002005010021,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3265":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3266":{"x":239,"y":138,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3267":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3268":{"morph":{"__isSmartRef__":true,"id":3257},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3269":{"onDrag":{"__isSmartRef__":true,"id":3270},"onDragEnd":{"__isSmartRef__":true,"id":3277},"onDragStart":{"__isSmartRef__":true,"id":3284}},"3270":{"varMapping":{"__isSmartRef__":true,"id":3271},"source":"function onDrag(evt) {\n\t// alert(\"onDrag\")\n\t\tvar moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n\t\tif (evt.isShiftDown()) {\n\t\t\tvar maxDelta = Math.max(moveDelta.x, moveDelta.y);\n\t\t\tmoveDelta = pt(maxDelta, maxDelta);\n\t\t}\n\t\tthis.owner.setExtent(this.originalTargetExtent.addPt(moveDelta));\n\t\tthis.align(this.bounds().bottomRight(), this.owner.getExtent())\n}","funcProperties":{"__isSmartRef__":true,"id":3276},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3271":{"this":{"__isSmartRef__":true,"id":3257},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3272}},"3272":{"$super":{"__isSmartRef__":true,"id":3273}},"3273":{"varMapping":{"__isSmartRef__":true,"id":3274},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":3275},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3274":{"obj":{"__isSmartRef__":true,"id":3257},"name":"onDrag"},"3275":{},"3276":{},"3277":{"varMapping":{"__isSmartRef__":true,"id":3278},"source":"function onDragEnd(evt) {\n\tthis.dragStartPoint = null;\n\tthis.originalTargetExtent = null;\n}","funcProperties":{"__isSmartRef__":true,"id":3283},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3278":{"this":{"__isSmartRef__":true,"id":3257},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3279}},"3279":{"$super":{"__isSmartRef__":true,"id":3280}},"3280":{"varMapping":{"__isSmartRef__":true,"id":3281},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":3282},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3281":{"obj":{"__isSmartRef__":true,"id":3257},"name":"onDragEnd"},"3282":{},"3283":{},"3284":{"varMapping":{"__isSmartRef__":true,"id":3285},"source":"function onDragStart(evt) {\n\tthis.dragStartPoint = evt.mousePoint;\n\tthis.originalTargetExtent = this.owner.getExtent();\n}","funcProperties":{"__isSmartRef__":true,"id":3290},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3285":{"this":{"__isSmartRef__":true,"id":3257},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3286}},"3286":{"$super":{"__isSmartRef__":true,"id":3287}},"3287":{"varMapping":{"__isSmartRef__":true,"id":3288},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":3289},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3288":{"obj":{"__isSmartRef__":true,"id":3257},"name":"onDragStart"},"3289":{},"3290":{},"3291":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":3292},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3293},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3292":{"x":896.4170420843768,"y":507.002005010021,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3293":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3294":{"adjustForNewBounds":true},"3295":{"x":1087.2914789578117,"y":1251.9989974949895,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3296":{"x":896.4170420843768,"y":507.002005010021,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3297":{"x":1651,"y":1270,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3298":{"requiredModules":["lively.ide"],"migrationLevel":2,"partsSpaceName":"PartsBin/Tools","__SourceModuleName__":"Global.lively.PartsBin","comment":"A method finder that searches all loaded classes and methods for matches in the source. ","partName":"MethodFinder","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3299":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3300":{"morph":{"__isSmartRef__":true,"id":1102},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3301":{"submorphs":[{"__isSmartRef__":true,"id":3302},{"__isSmartRef__":true,"id":3318}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3343},"id":2152,"renderContextTable":{"__isSmartRef__":true,"id":3349},"eventHandler":{"__isSmartRef__":true,"id":3350},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3351},"_Position":{"__isSmartRef__":true,"id":3352},"progressMorph":{"__isSmartRef__":true,"id":3318},"labelBlack":{"__isSmartRef__":true,"id":3302},"labelWhite":{"__isSmartRef__":true,"id":3308},"value":0.5,"owner":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.ProgressBar","__SourceModuleName__":"Global.lively.morphic.Widgets"},"3302":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3303},"id":2154,"renderContextTable":{"__isSmartRef__":true,"id":3336},"textChunks":[{"__isSmartRef__":true,"id":3337}],"eventHandler":{"__isSmartRef__":true,"id":3339},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":14,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":3340},"_TextColor":{"__isSmartRef__":true,"id":3306},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":3301},"priorExtent":{"__isSmartRef__":true,"id":3334},"_MaxTextWidth":0,"_MaxTextHeight":null,"attributeConnections":[{"__isSmartRef__":true,"id":3335},{"__isSmartRef__":true,"id":3341},{"__isSmartRef__":true,"id":3342}],"doNotSerialize":["$$_Position"],"doNotCopyProperties":["$$_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3303":{"_Position":{"__isSmartRef__":true,"id":3304},"renderContextTable":{"__isSmartRef__":true,"id":3305},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"attributeConnections":[{"__isSmartRef__":true,"id":3307}],"doNotSerialize":["$$_Extent"],"doNotCopyProperties":["$$_Extent"],"_Extent":{"__isSmartRef__":true,"id":3312},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3304":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3305":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3306":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3307":{"sourceObj":{"__isSmartRef__":true,"id":3303},"sourceAttrName":"_Extent","targetObj":{"__isSmartRef__":true,"id":3308},"targetMethodName":"setExtent","dependedBy":{"__isSmartRef__":true,"id":3335},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3308":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3309},"id":2155,"renderContextTable":{"__isSmartRef__":true,"id":3313},"textChunks":[{"__isSmartRef__":true,"id":3314}],"eventHandler":{"__isSmartRef__":true,"id":3316},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":14,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":229},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":3318},"priorExtent":{"__isSmartRef__":true,"id":3334},"_MaxTextWidth":0,"_MaxTextHeight":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3309":{"_Position":{"__isSmartRef__":true,"id":3310},"renderContextTable":{"__isSmartRef__":true,"id":3311},"_Extent":{"__isSmartRef__":true,"id":3312},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3310":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3311":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3312":{"x":0,"y":24,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3313":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3314":{"style":{"__isSmartRef__":true,"id":3315},"chunkOwner":{"__isSmartRef__":true,"id":3308},"storedString":"test","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3315":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3316":{"morph":{"__isSmartRef__":true,"id":3308},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3317":{"x":2,"y":1,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"3318":{"submorphs":[{"__isSmartRef__":true,"id":3308}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3319},"id":2153,"renderContextTable":{"__isSmartRef__":true,"id":3329},"eventHandler":{"__isSmartRef__":true,"id":3330},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3331},"owner":{"__isSmartRef__":true,"id":3301},"_ClipMode":"hidden","layout":{"__isSmartRef__":true,"id":3332},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","priorExtent":{"__isSmartRef__":true,"id":3333},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core"},"3319":{"_Position":{"__isSmartRef__":true,"id":3320},"renderContextTable":{"__isSmartRef__":true,"id":3321},"_Extent":{"__isSmartRef__":true,"id":3322},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3323},"_Fill":{"__isSmartRef__":true,"id":3324},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3320":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3321":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3322":{"x":100,"y":40,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3323":{"r":0.6666666666666666,"g":0.6666666666666666,"b":0.6666666666666666,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3324":{"stops":[{"__isSmartRef__":true,"id":3325},{"__isSmartRef__":true,"id":3327}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3325":{"offset":0,"color":{"__isSmartRef__":true,"id":3326}},"3326":{"r":0.8745098039215686,"g":0.8745098039215686,"b":0.8745098039215686,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3327":{"offset":1,"color":{"__isSmartRef__":true,"id":3328}},"3328":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3329":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3330":{"morph":{"__isSmartRef__":true,"id":3318},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3331":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3332":{"scaleHorizontal":true,"scaleVertical":true},"3333":{"x":0,"y":40,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3334":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3335":{"sourceObj":{"__isSmartRef__":true,"id":3302},"sourceAttrName":"extent","targetObj":{"__isSmartRef__":true,"id":3308},"targetMethodName":"setExtent","dependendConnections":[{"__isSmartRef__":true,"id":3307}],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"3336":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3337":{"style":{"__isSmartRef__":true,"id":3338},"chunkOwner":{"__isSmartRef__":true,"id":3302},"storedString":"test","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3338":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3339":{"morph":{"__isSmartRef__":true,"id":3302},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3340":{"scaleHorizontal":true,"centeredVertical":true},"3341":{"sourceObj":{"__isSmartRef__":true,"id":3302},"sourceAttrName":"position","targetObj":{"__isSmartRef__":true,"id":3308},"targetMethodName":"setPosition","dependendConnections":[{"__isSmartRef__":true,"id":3342}],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"3342":{"sourceObj":{"__isSmartRef__":true,"id":3302},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3308},"targetMethodName":"setPosition","dependedBy":{"__isSmartRef__":true,"id":3341},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3343":{"_Position":{"__isSmartRef__":true,"id":3344},"renderContextTable":{"__isSmartRef__":true,"id":3345},"_Extent":{"__isSmartRef__":true,"id":3346},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3347},"_Fill":{"__isSmartRef__":true,"id":3348},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3344":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3345":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3346":{"x":200,"y":40,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3347":{"r":0.6666666666666666,"g":0.6666666666666666,"b":0.6666666666666666,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3348":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3349":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3350":{"morph":{"__isSmartRef__":true,"id":3301},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3351":{"adjustForNewBounds":true},"3352":{"x":1095,"y":864,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3353":{"submorphs":[{"__isSmartRef__":true,"id":3354},{"__isSmartRef__":true,"id":3368}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3389},"id":2158,"renderContextTable":{"__isSmartRef__":true,"id":3394},"eventHandler":{"__isSmartRef__":true,"id":3395},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3396},"_Position":{"__isSmartRef__":true,"id":3397},"progressMorph":{"__isSmartRef__":true,"id":3368},"labelBlack":{"__isSmartRef__":true,"id":3354},"labelWhite":{"__isSmartRef__":true,"id":3359},"value":0.5,"owner":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.ProgressBar","__SourceModuleName__":"Global.lively.morphic.Widgets"},"3354":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3355},"id":2160,"renderContextTable":{"__isSmartRef__":true,"id":3381},"textChunks":[{"__isSmartRef__":true,"id":3382}],"eventHandler":{"__isSmartRef__":true,"id":3384},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":14,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":3385},"_TextColor":{"__isSmartRef__":true,"id":3306},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":3353},"priorExtent":{"__isSmartRef__":true,"id":3386},"_MaxTextWidth":0,"_MaxTextHeight":null,"attributeConnections":[{"__isSmartRef__":true,"id":3379},{"__isSmartRef__":true,"id":3387},{"__isSmartRef__":true,"id":3388}],"doNotSerialize":["$$_Position"],"doNotCopyProperties":["$$_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3355":{"_Position":{"__isSmartRef__":true,"id":3356},"renderContextTable":{"__isSmartRef__":true,"id":3357},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"attributeConnections":[{"__isSmartRef__":true,"id":3358}],"doNotSerialize":["$$_Extent"],"doNotCopyProperties":["$$_Extent"],"_Extent":{"__isSmartRef__":true,"id":3380},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3356":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3357":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3358":{"sourceObj":{"__isSmartRef__":true,"id":3355},"sourceAttrName":"_Extent","targetObj":{"__isSmartRef__":true,"id":3359},"targetMethodName":"setExtent","dependedBy":{"__isSmartRef__":true,"id":3379},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3359":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3360},"id":2161,"renderContextTable":{"__isSmartRef__":true,"id":3364},"textChunks":[{"__isSmartRef__":true,"id":3365}],"eventHandler":{"__isSmartRef__":true,"id":3367},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":14,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":229},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":3368},"priorExtent":{"__isSmartRef__":true,"id":3378},"_MaxTextWidth":0,"_MaxTextHeight":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3360":{"_Position":{"__isSmartRef__":true,"id":3361},"renderContextTable":{"__isSmartRef__":true,"id":3362},"_Extent":{"__isSmartRef__":true,"id":3363},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3361":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3362":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3363":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3364":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3365":{"style":{"__isSmartRef__":true,"id":3366},"chunkOwner":{"__isSmartRef__":true,"id":3359},"storedString":"test","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3366":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3367":{"morph":{"__isSmartRef__":true,"id":3359},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3368":{"submorphs":[{"__isSmartRef__":true,"id":3359}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3369},"id":2159,"renderContextTable":{"__isSmartRef__":true,"id":3373},"eventHandler":{"__isSmartRef__":true,"id":3374},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3375},"owner":{"__isSmartRef__":true,"id":3353},"_ClipMode":"hidden","layout":{"__isSmartRef__":true,"id":3376},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","priorExtent":{"__isSmartRef__":true,"id":3377},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core"},"3369":{"_Position":{"__isSmartRef__":true,"id":3370},"renderContextTable":{"__isSmartRef__":true,"id":3371},"_Extent":{"__isSmartRef__":true,"id":3372},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3323},"_Fill":{"__isSmartRef__":true,"id":3324},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3370":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3371":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3372":{"x":100,"y":40,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3373":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3374":{"morph":{"__isSmartRef__":true,"id":3368},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3375":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3376":{"scaleHorizontal":true,"scaleVertical":true},"3377":{"x":0,"y":40,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3378":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3379":{"sourceObj":{"__isSmartRef__":true,"id":3354},"sourceAttrName":"extent","targetObj":{"__isSmartRef__":true,"id":3359},"targetMethodName":"setExtent","dependendConnections":[{"__isSmartRef__":true,"id":3358}],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"3380":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3381":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3382":{"style":{"__isSmartRef__":true,"id":3383},"chunkOwner":{"__isSmartRef__":true,"id":3354},"storedString":"test","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3383":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3384":{"morph":{"__isSmartRef__":true,"id":3354},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3385":{"scaleHorizontal":true,"centeredVertical":true},"3386":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3387":{"sourceObj":{"__isSmartRef__":true,"id":3354},"sourceAttrName":"position","targetObj":{"__isSmartRef__":true,"id":3359},"targetMethodName":"setPosition","dependendConnections":[{"__isSmartRef__":true,"id":3388}],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"3388":{"sourceObj":{"__isSmartRef__":true,"id":3354},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3359},"targetMethodName":"setPosition","dependedBy":{"__isSmartRef__":true,"id":3387},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3389":{"_Position":{"__isSmartRef__":true,"id":3390},"renderContextTable":{"__isSmartRef__":true,"id":3391},"_Extent":{"__isSmartRef__":true,"id":3392},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3347},"_Fill":{"__isSmartRef__":true,"id":3393},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3390":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3391":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3392":{"x":200,"y":40,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3393":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3394":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3395":{"morph":{"__isSmartRef__":true,"id":3353},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3396":{"adjustForNewBounds":true},"3397":{"x":1095,"y":864,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3398":{"submorphs":[{"__isSmartRef__":true,"id":3399},{"__isSmartRef__":true,"id":3413}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3433},"id":2166,"renderContextTable":{"__isSmartRef__":true,"id":3438},"eventHandler":{"__isSmartRef__":true,"id":3439},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3440},"_Position":{"__isSmartRef__":true,"id":3441},"progressMorph":{"__isSmartRef__":true,"id":3413},"labelBlack":{"__isSmartRef__":true,"id":3399},"labelWhite":{"__isSmartRef__":true,"id":3404},"value":0.5,"owner":{"__isSmartRef__":true,"id":0},"showsHalos":false,"priorExtent":{"__isSmartRef__":true,"id":3442},"__LivelyClassName__":"lively.morphic.ProgressBar","__SourceModuleName__":"Global.lively.morphic.Widgets"},"3399":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3400},"id":2168,"renderContextTable":{"__isSmartRef__":true,"id":3426},"textChunks":[{"__isSmartRef__":true,"id":3427}],"eventHandler":{"__isSmartRef__":true,"id":3429},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":14,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":3430},"_TextColor":{"__isSmartRef__":true,"id":3306},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":3398},"priorExtent":{"__isSmartRef__":true,"id":3423},"_MaxTextWidth":199.99999999999994,"_MaxTextHeight":null,"attributeConnections":[{"__isSmartRef__":true,"id":3425},{"__isSmartRef__":true,"id":3431},{"__isSmartRef__":true,"id":3432}],"doNotSerialize":["$$_Position"],"doNotCopyProperties":["$$_Position"],"_Position":{"__isSmartRef__":true,"id":3424},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3400":{"_Position":{"__isSmartRef__":true,"id":3401},"renderContextTable":{"__isSmartRef__":true,"id":3402},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"attributeConnections":[{"__isSmartRef__":true,"id":3403}],"doNotSerialize":["$$_Extent"],"doNotCopyProperties":["$$_Extent"],"_Extent":{"__isSmartRef__":true,"id":3408},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3401":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3402":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3403":{"sourceObj":{"__isSmartRef__":true,"id":3400},"sourceAttrName":"_Extent","targetObj":{"__isSmartRef__":true,"id":3404},"targetMethodName":"setExtent","dependedBy":{"__isSmartRef__":true,"id":3425},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3404":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3405},"id":2169,"renderContextTable":{"__isSmartRef__":true,"id":3409},"textChunks":[{"__isSmartRef__":true,"id":3410}],"eventHandler":{"__isSmartRef__":true,"id":3412},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":false,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":14,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":229},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":3413},"priorExtent":{"__isSmartRef__":true,"id":3423},"_MaxTextWidth":199.99999999999994,"_MaxTextHeight":null,"_Position":{"__isSmartRef__":true,"id":3424},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3405":{"_Position":{"__isSmartRef__":true,"id":3406},"renderContextTable":{"__isSmartRef__":true,"id":3407},"_Extent":{"__isSmartRef__":true,"id":3408},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3406":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3407":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3408":{"x":199.99999999999994,"y":24,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3409":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3410":{"style":{"__isSmartRef__":true,"id":3411},"chunkOwner":{"__isSmartRef__":true,"id":3404},"storedString":"test","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3411":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3412":{"morph":{"__isSmartRef__":true,"id":3404},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3413":{"submorphs":[{"__isSmartRef__":true,"id":3404}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3414},"id":2167,"renderContextTable":{"__isSmartRef__":true,"id":3418},"eventHandler":{"__isSmartRef__":true,"id":3419},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3420},"owner":{"__isSmartRef__":true,"id":3398},"_ClipMode":"hidden","layout":{"__isSmartRef__":true,"id":3421},"eventsAreIgnored":true,"_HandStyle":"default","_PointerEvents":"none","priorExtent":{"__isSmartRef__":true,"id":3422},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core"},"3414":{"_Position":{"__isSmartRef__":true,"id":3415},"renderContextTable":{"__isSmartRef__":true,"id":3416},"_Extent":{"__isSmartRef__":true,"id":3417},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3323},"_Fill":{"__isSmartRef__":true,"id":3324},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3415":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3416":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3417":{"x":99.99999999999997,"y":24.99999999999988,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3418":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3419":{"morph":{"__isSmartRef__":true,"id":3413},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3420":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3421":{"scaleHorizontal":true,"scaleVertical":true},"3422":{"x":99.99999999999997,"y":23.999999999999886,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3423":{"x":199.99999999999994,"y":24,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3424":{"x":0,"y":0.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3425":{"sourceObj":{"__isSmartRef__":true,"id":3399},"sourceAttrName":"extent","targetObj":{"__isSmartRef__":true,"id":3404},"targetMethodName":"setExtent","dependendConnections":[{"__isSmartRef__":true,"id":3403}],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"3426":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3427":{"style":{"__isSmartRef__":true,"id":3428},"chunkOwner":{"__isSmartRef__":true,"id":3399},"storedString":"test","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3428":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3429":{"morph":{"__isSmartRef__":true,"id":3399},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3430":{"scaleHorizontal":true,"centeredVertical":true},"3431":{"sourceObj":{"__isSmartRef__":true,"id":3399},"sourceAttrName":"position","targetObj":{"__isSmartRef__":true,"id":3404},"targetMethodName":"setPosition","dependendConnections":[{"__isSmartRef__":true,"id":3432}],"__LivelyClassName__":"lively.morphic.GeometryConnection","__SourceModuleName__":"Global.lively.bindings.GeometryBindings"},"3432":{"sourceObj":{"__isSmartRef__":true,"id":3399},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":3404},"targetMethodName":"setPosition","dependedBy":{"__isSmartRef__":true,"id":3431},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"3433":{"_Position":{"__isSmartRef__":true,"id":3434},"renderContextTable":{"__isSmartRef__":true,"id":3435},"_Extent":{"__isSmartRef__":true,"id":3436},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3347},"_Fill":{"__isSmartRef__":true,"id":3437},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"3434":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3435":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3436":{"x":200,"y":25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3437":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3438":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3439":{"morph":{"__isSmartRef__":true,"id":3398},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3440":{"adjustForNewBounds":true},"3441":{"x":1095,"y":864,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3442":{"x":200,"y":25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3443":{"submorphs":[],"scripts":[],"id":2313,"shape":{"__isSmartRef__":true,"id":3444},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3449},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3447},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text","partsBinMetaInfo":{"__isSmartRef__":true,"id":3450},"textChunks":[{"__isSmartRef__":true,"id":3451}],"charsReplaced":"s","lastFindLoc":6,"priorSelectionRange":[4,4],"prevScroll":[0,0],"_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":3453},"renderContextTable":{"__isSmartRef__":true,"id":3454},"eventHandler":{"__isSmartRef__":true,"id":3455},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_WhiteSpaceHandling":"pre","layout":{"__isSmartRef__":true,"id":3456},"__LivelyClassName__":"lively.morphic.Text"},"3444":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3445},"_Extent":{"__isSmartRef__":true,"id":3446},"_BorderWidth":2.516,"_BorderColor":{"__isSmartRef__":true,"id":3447},"renderContextTable":{"__isSmartRef__":true,"id":3448},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3445":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3446":{"x":91,"y":32,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3447":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3448":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3449":{"x":1252,"y":754,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3450":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3451":{"style":{"__isSmartRef__":true,"id":3452},"morph":{"__isSmartRef__":true,"id":3443},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3443},"storedString":"some text","__LivelyClassName__":"lively.morphic.TextChunk"},"3452":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3453":{"x":90,"y":33,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3454":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3455":{"morph":{"__isSmartRef__":true,"id":3443},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3456":{},"3457":{"submorphs":[{"__isSmartRef__":true,"id":3458},{"__isSmartRef__":true,"id":4228}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4366},"id":2420,"renderContextTable":{"__isSmartRef__":true,"id":4369},"eventHandler":{"__isSmartRef__":true,"id":4370},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":4371},"LK2":true,"priorExtent":{"__isSmartRef__":true,"id":4372},"attributeConnections":[{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182}],"doNotSerialize":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$_Position","$$_Scale","$$_Rotation","$$owner"],"targetMorph":{"__isSmartRef__":true,"id":3458},"titleBar":{"__isSmartRef__":true,"id":4228},"contentOffset":{"__isSmartRef__":true,"id":4201},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":4373},"name":"StyleEditor","prevDragPos":{"__isSmartRef__":true,"id":4374},"highlighted":true,"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":{"__isSmartRef__":true,"id":4375},"_Scale":1,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4376},"__LivelyClassName__":"lively.morphic.Window"},"3458":{"submorphs":[{"__isSmartRef__":true,"id":3459},{"__isSmartRef__":true,"id":3480},{"__isSmartRef__":true,"id":3500},{"__isSmartRef__":true,"id":3518},{"__isSmartRef__":true,"id":3536},{"__isSmartRef__":true,"id":3554},{"__isSmartRef__":true,"id":3572},{"__isSmartRef__":true,"id":3604},{"__isSmartRef__":true,"id":3616},{"__isSmartRef__":true,"id":3629},{"__isSmartRef__":true,"id":3642},{"__isSmartRef__":true,"id":3655},{"__isSmartRef__":true,"id":3668},{"__isSmartRef__":true,"id":3681},{"__isSmartRef__":true,"id":3696},{"__isSmartRef__":true,"id":3711},{"__isSmartRef__":true,"id":3726},{"__isSmartRef__":true,"id":3768},{"__isSmartRef__":true,"id":3810},{"__isSmartRef__":true,"id":3828},{"__isSmartRef__":true,"id":3845},{"__isSmartRef__":true,"id":3863},{"__isSmartRef__":true,"id":3905},{"__isSmartRef__":true,"id":3927},{"__isSmartRef__":true,"id":3942},{"__isSmartRef__":true,"id":4040},{"__isSmartRef__":true,"id":4053},{"__isSmartRef__":true,"id":4068},{"__isSmartRef__":true,"id":4083},{"__isSmartRef__":true,"id":4096},{"__isSmartRef__":true,"id":4111},{"__isSmartRef__":true,"id":4124},{"__isSmartRef__":true,"id":4137},{"__isSmartRef__":true,"id":4147}],"scripts":[],"id":2421,"shape":{"__isSmartRef__":true,"id":4157},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"name":"StyleEditor","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":4163},"__SourceModuleName__":"Global.lively.morphic.Core","attributeConnections":[{"__isSmartRef__":true,"id":4164},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4169},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173}],"doNotSerialize":["target","$$target","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$target","$$_Position","$$_Scale","$$_Rotation","$$owner"],"priorExtent":{"__isSmartRef__":true,"id":4190},"renderContextTable":{"__isSmartRef__":true,"id":4191},"eventHandler":{"__isSmartRef__":true,"id":4192},"layout":{"__isSmartRef__":true,"id":4193},"magnets":[{"__isSmartRef__":true,"id":3998}],"scriptAnnotations":{"__isSmartRef__":true,"id":4194},"layoutProps":["adjustForNewBounds","resizeWidth","resizeHeight","moveVertical","moveHorizontal","centeredHorizontal","centeredVertical","scaleHorizontal","scaleVertical"],"_Position":{"__isSmartRef__":true,"id":4201},"_Scale":1,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":3457},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4202},"__LivelyClassName__":"lively.morphic.Box","withLayers":["ScriptListUpdateLayer"]},"3459":{"submorphs":[],"scripts":[],"id":2422,"shape":{"__isSmartRef__":true,"id":3460},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3465},"_MaxTextWidth":267,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3466},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"TargetName","partsBinMetaInfo":{"__isSmartRef__":true,"id":3467},"charsReplaced":"TestRunPane","lastFindLoc":-3,"textStyle":{"__isSmartRef__":true,"id":3468},"owner":{"__isSmartRef__":true,"id":3458},"textChunks":[{"__isSmartRef__":true,"id":3473}],"priorSelectionRange":[13,13],"prevScroll":[0,0],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3475},"renderContextTable":{"__isSmartRef__":true,"id":3476},"eventHandler":{"__isSmartRef__":true,"id":3477},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"distanceToDragEvent":{"__isSmartRef__":true,"id":3478},"_Align":"center","layout":{"__isSmartRef__":true,"id":3479},"_WhiteSpaceHandling":"pre-wrap","__LivelyClassName__":"lively.morphic.Text"},"3460":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3461},"_Extent":{"__isSmartRef__":true,"id":3462},"_BorderWidth":2.22,"_BorderColor":{"__isSmartRef__":true,"id":3463},"renderContextTable":{"__isSmartRef__":true,"id":3464},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"ridge","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3461":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3462":{"x":267,"y":27,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3463":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3464":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3465":{"x":4,"y":2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3466":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3467":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3468":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3469},{"__isSmartRef__":true,"id":3470},{"__isSmartRef__":true,"id":3471},{"__isSmartRef__":true,"id":3470},{"__isSmartRef__":true,"id":3472},{"__isSmartRef__":true,"id":3470}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3469":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3470":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3471":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3472":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3473":{"style":{"__isSmartRef__":true,"id":3474},"chunkOwner":{"__isSmartRef__":true,"id":3459},"storedString":"no target","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3474":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3475":{"x":267,"y":27,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3476":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3477":{"morph":{"__isSmartRef__":true,"id":3459},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3478":{"x":191,"y":-15,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3479":{},"3480":{"submorphs":[],"scripts":[],"id":2423,"shape":{"__isSmartRef__":true,"id":3481},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3486},"_MaxTextWidth":91,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3484},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text","partsBinMetaInfo":{"__isSmartRef__":true,"id":3487},"charsReplaced":"Fill","lastFindLoc":-4,"textStyle":{"__isSmartRef__":true,"id":3488},"owner":{"__isSmartRef__":true,"id":3458},"textChunks":[{"__isSmartRef__":true,"id":3493},{"__isSmartRef__":true,"id":3495}],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3497},"priorSelectionRange":[12,12],"prevScroll":[0,0],"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":3498},"eventHandler":{"__isSmartRef__":true,"id":3499},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3481":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3482},"_Extent":{"__isSmartRef__":true,"id":3483},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3484},"renderContextTable":{"__isSmartRef__":true,"id":3485},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3482":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3483":{"x":91,"y":13,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3484":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3485":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3486":{"x":13,"y":65,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3487":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3488":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3489},{"__isSmartRef__":true,"id":3490},{"__isSmartRef__":true,"id":3491},{"__isSmartRef__":true,"id":3490},{"__isSmartRef__":true,"id":3492},{"__isSmartRef__":true,"id":3490}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3489":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3490":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3491":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3492":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3493":{"style":{"__isSmartRef__":true,"id":3494},"morph":{"__isSmartRef__":true,"id":3480},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3480},"storedString":"Border color","__LivelyClassName__":"lively.morphic.TextChunk"},"3494":{"__SourceModuleName__":"Global.lively.morphic.TextCore","fontSize":"11","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3495":{"style":{"__isSmartRef__":true,"id":3496},"morph":{"__isSmartRef__":true,"id":3480},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3480},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk"},"3496":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3497":{"x":91,"y":13,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3498":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3499":{"morph":{"__isSmartRef__":true,"id":3480},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3500":{"submorphs":[],"scripts":[],"id":2424,"shape":{"__isSmartRef__":true,"id":3501},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3506},"_MaxTextWidth":85,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3504},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text","partsBinMetaInfo":{"__isSmartRef__":true,"id":3507},"charsReplaced":"= Motivation =\n\n= Approach = \n\n= Implementation =\n\n= Evaluation =\n\n= Related Work =\n\n\n= Conclusion = ","lastFindLoc":-101,"textStyle":{"__isSmartRef__":true,"id":3508},"owner":{"__isSmartRef__":true,"id":3458},"textChunks":[{"__isSmartRef__":true,"id":3513}],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3515},"priorSelectionRange":[4,4],"prevScroll":[0,0],"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":3516},"eventHandler":{"__isSmartRef__":true,"id":3517},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3501":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3502},"_Extent":{"__isSmartRef__":true,"id":3503},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3504},"renderContextTable":{"__isSmartRef__":true,"id":3505},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3502":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3503":{"x":85,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3504":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3505":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3506":{"x":12,"y":34,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3507":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3508":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3509},{"__isSmartRef__":true,"id":3510},{"__isSmartRef__":true,"id":3511},{"__isSmartRef__":true,"id":3510},{"__isSmartRef__":true,"id":3512},{"__isSmartRef__":true,"id":3510}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3509":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3510":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3511":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3512":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3513":{"style":{"__isSmartRef__":true,"id":3514},"morph":{"__isSmartRef__":true,"id":3500},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3500},"storedString":"Fill\n","__LivelyClassName__":"lively.morphic.TextChunk"},"3514":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3515":{"x":85,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3516":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3517":{"morph":{"__isSmartRef__":true,"id":3500},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3518":{"submorphs":[],"scripts":[],"id":2425,"shape":{"__isSmartRef__":true,"id":3519},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3524},"_MaxTextWidth":92.99198798397993,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3522},"showsHalos":false,"_FontSize":"11","__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text4","partsBinMetaInfo":{"__isSmartRef__":true,"id":3525},"charsReplaced":"color","lastFindLoc":2,"textStyle":{"__isSmartRef__":true,"id":3526},"textChunks":[{"__isSmartRef__":true,"id":3531}],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3533},"priorSelectionRange":[13,13],"prevScroll":[0,0],"owner":{"__isSmartRef__":true,"id":3458},"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":3534},"eventHandler":{"__isSmartRef__":true,"id":3535},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3519":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3520},"_Extent":{"__isSmartRef__":true,"id":3521},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3522},"renderContextTable":{"__isSmartRef__":true,"id":3523},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3520":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3521":{"x":92.99198798397993,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3522":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3523":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3524":{"x":13.008012016019848,"y":97.06609913216585,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3525":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3526":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3527},{"__isSmartRef__":true,"id":3528},{"__isSmartRef__":true,"id":3529},{"__isSmartRef__":true,"id":3528},{"__isSmartRef__":true,"id":3530},{"__isSmartRef__":true,"id":3528}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3527":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3528":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3529":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3530":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3531":{"style":{"__isSmartRef__":true,"id":3532},"morph":{"__isSmartRef__":true,"id":3518},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3518},"storedString":"Border width ","__LivelyClassName__":"lively.morphic.TextChunk"},"3532":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3533":{"x":92.99198798397993,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3534":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3535":{"morph":{"__isSmartRef__":true,"id":3518},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3536":{"submorphs":[],"scripts":[],"id":2426,"shape":{"__isSmartRef__":true,"id":3537},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3542},"_MaxTextWidth":94.99198798397993,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3540},"showsHalos":false,"_FontSize":"11","__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text5","partsBinMetaInfo":{"__isSmartRef__":true,"id":3543},"charsReplaced":"width","lastFindLoc":2,"textStyle":{"__isSmartRef__":true,"id":3544},"textChunks":[{"__isSmartRef__":true,"id":3549}],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3551},"priorSelectionRange":[12,12],"prevScroll":[0,0],"_Scale":1,"owner":{"__isSmartRef__":true,"id":3458},"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":3552},"eventHandler":{"__isSmartRef__":true,"id":3553},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3537":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3538},"_Extent":{"__isSmartRef__":true,"id":3539},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3540},"renderContextTable":{"__isSmartRef__":true,"id":3541},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3538":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3539":{"x":94.99198798397993,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3540":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3541":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3542":{"x":13.006009012015,"y":130.13420126833637,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3543":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3544":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3545},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3547},{"__isSmartRef__":true,"id":3546},{"__isSmartRef__":true,"id":3548},{"__isSmartRef__":true,"id":3546}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3545":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3546":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3547":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3548":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3549":{"style":{"__isSmartRef__":true,"id":3550},"morph":{"__isSmartRef__":true,"id":3536},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3536},"storedString":"Border radius ","__LivelyClassName__":"lively.morphic.TextChunk"},"3550":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3551":{"x":94.99198798397993,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3552":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3553":{"morph":{"__isSmartRef__":true,"id":3536},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3554":{"submorphs":[],"scripts":[],"id":2427,"shape":{"__isSmartRef__":true,"id":3555},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3560},"_MaxTextWidth":50.991987983979925,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3558},"showsHalos":false,"_FontSize":"11","__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text9","partsBinMetaInfo":{"__isSmartRef__":true,"id":3561},"charsReplaced":"Border radius ","lastFindLoc":-14,"textStyle":{"__isSmartRef__":true,"id":3562},"textChunks":[{"__isSmartRef__":true,"id":3567}],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3569},"priorSelectionRange":[4,4],"prevScroll":[0,0],"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":3458},"renderContextTable":{"__isSmartRef__":true,"id":3570},"eventHandler":{"__isSmartRef__":true,"id":3571},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3555":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3556},"_Extent":{"__isSmartRef__":true,"id":3557},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3558},"renderContextTable":{"__isSmartRef__":true,"id":3559},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3556":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3557":{"x":50.991987983979925,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3558":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3559":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3560":{"x":15.006009012015056,"y":220.13420126833626,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3561":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3562":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3563},{"__isSmartRef__":true,"id":3564},{"__isSmartRef__":true,"id":3565},{"__isSmartRef__":true,"id":3564},{"__isSmartRef__":true,"id":3566},{"__isSmartRef__":true,"id":3564}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3563":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3564":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3565":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3566":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3567":{"style":{"__isSmartRef__":true,"id":3568},"morph":{"__isSmartRef__":true,"id":3554},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3554},"storedString":"Layout","__LivelyClassName__":"lively.morphic.TextChunk"},"3568":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3569":{"x":50.991987983979925,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3570":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3571":{"morph":{"__isSmartRef__":true,"id":3554},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3572":{"submorphs":[],"scripts":[],"id":2428,"shape":{"__isSmartRef__":true,"id":3573},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3578},"showsHalos":false,"name":"StyleBorderColorField","partsBinMetaInfo":{"__isSmartRef__":true,"id":3579},"__SourceModuleName__":"Global.lively.morphic.ColorChooserDraft","target":{"__isSmartRef__":true,"id":3580},"attributeConnections":[{"__isSmartRef__":true,"id":3596}],"owner":{"__isSmartRef__":true,"id":3458},"doNotSerialize":["$$color"],"doNotCopyProperties":["$$color"],"_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":3601},"eventHandler":{"__isSmartRef__":true,"id":3602},"_Rotation":0,"color":{"__isSmartRef__":true,"id":3603},"__LivelyClassName__":"lively.morphic.ColorField"},"3573":{"position":{"__isSmartRef__":true,"id":3574},"_Extent":{"__isSmartRef__":true,"id":3575},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3576},"_Fill":{"__isSmartRef__":true,"id":3447},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3577},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3574":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3575":{"x":30,"y":24,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3576":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3577":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3578":{"x":111,"y":66,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3579":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3580":{"submorphs":[],"scripts":[],"id":212,"cachedTextString":"Meta: I know its a bit risky using a new system for text production, but we need to get it going so I hope Robert, you know what we are doing... :-)","shape":{"__isSmartRef__":true,"id":3581},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3586},"_MaxTextWidth":545,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3584},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Rotation":0,"name":"Text1","partsBinMetaInfo":{"__isSmartRef__":true,"id":3587},"charsReplaced":"","lastFindLoc":1,"textStyle":{"__isSmartRef__":true,"id":3588},"isCopyMorphRef":true,"morphRefId":1,"textChunks":[{"__isSmartRef__":true,"id":3593}],"_ClipMode":"visible","renderContextTable":{"__isSmartRef__":true,"id":3595},"__LivelyClassName__":"lively.morphic.Text"},"3581":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3582},"_Extent":{"__isSmartRef__":true,"id":3583},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3584},"_Fill":{"__isSmartRef__":true,"id":3585},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3582":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3583":{"x":545,"y":66,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3584":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3585":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3586":{"x":33,"y":105,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3587":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3588":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3589},{"__isSmartRef__":true,"id":3590},{"__isSmartRef__":true,"id":3591},{"__isSmartRef__":true,"id":3590},{"__isSmartRef__":true,"id":3592},{"__isSmartRef__":true,"id":3590}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3589":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3590":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3591":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3592":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3593":{"style":{"__isSmartRef__":true,"id":3594},"chunkOwner":{"__isSmartRef__":true,"id":3580},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3594":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3595":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3596":{"sourceObj":{"__isSmartRef__":true,"id":3572},"sourceAttrName":"color","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (fill) { return {borderColor: fill} }","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3597},"__LivelyClassName__":"AttributeConnection"},"3597":{"converter":{"__isSmartRef__":true,"id":3598}},"3598":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3599},"source":"function (fill) { return {borderColor: fill} }","funcProperties":{"__isSmartRef__":true,"id":3600},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3599":{},"3600":{},"3601":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3602":{"morph":{"__isSmartRef__":true,"id":3572},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3603":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3604":{"submorphs":[],"scripts":[],"id":2429,"shape":{"__isSmartRef__":true,"id":3605},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3610},"showsHalos":false,"name":"StyleFillColorField","partsBinMetaInfo":{"__isSmartRef__":true,"id":3611},"__SourceModuleName__":"Global.lively.morphic.ColorChooserDraft","owner":{"__isSmartRef__":true,"id":3458},"target":{"__isSmartRef__":true,"id":3580},"attributeConnections":[{"__isSmartRef__":true,"id":3612}],"doNotSerialize":["$$color"],"doNotCopyProperties":["$$color"],"_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":3613},"eventHandler":{"__isSmartRef__":true,"id":3614},"_Rotation":0,"color":{"__isSmartRef__":true,"id":3615},"__LivelyClassName__":"lively.morphic.ColorField"},"3605":{"position":{"__isSmartRef__":true,"id":3606},"_Extent":{"__isSmartRef__":true,"id":3607},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3608},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3609},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3606":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3607":{"x":30,"y":24,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3608":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3609":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3610":{"x":110,"y":32,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3611":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3612":{"sourceObj":{"__isSmartRef__":true,"id":3604},"sourceAttrName":"color","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (fill) { return {fill: fill} }","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3613":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3614":{"morph":{"__isSmartRef__":true,"id":3604},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3615":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3616":{"submorphs":[],"scripts":[],"id":2430,"shape":{"__isSmartRef__":true,"id":3617},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3622},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3620},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text10","partsBinMetaInfo":{"__isSmartRef__":true,"id":3623},"textChunks":[{"__isSmartRef__":true,"id":3624}],"charsReplaced":"label","lastFindLoc":-5,"priorSelectionRange":[12,12],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":3626},"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":3458},"renderContextTable":{"__isSmartRef__":true,"id":3627},"eventHandler":{"__isSmartRef__":true,"id":3628},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3617":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3618},"_Extent":{"__isSmartRef__":true,"id":3619},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3620},"renderContextTable":{"__isSmartRef__":true,"id":3621},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3618":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3619":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3620":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3621":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3622":{"x":106.3910936543557,"y":224.79703121811872,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3623":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3624":{"style":{"__isSmartRef__":true,"id":3625},"morph":{"__isSmartRef__":true,"id":3616},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3616},"storedString":"adjustForNewBounds","__LivelyClassName__":"lively.morphic.TextChunk"},"3625":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3626":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3627":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3628":{"morph":{"__isSmartRef__":true,"id":3616},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3629":{"submorphs":[],"scripts":[],"id":2431,"shape":{"__isSmartRef__":true,"id":3630},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3635},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3633},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text11","partsBinMetaInfo":{"__isSmartRef__":true,"id":3636},"textChunks":[{"__isSmartRef__":true,"id":3637}],"charsReplaced":"adjustForNewBounds","lastFindLoc":-18,"priorSelectionRange":[0,11],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":3639},"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":3458},"renderContextTable":{"__isSmartRef__":true,"id":3640},"eventHandler":{"__isSmartRef__":true,"id":3641},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3630":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3631},"_Extent":{"__isSmartRef__":true,"id":3632},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3633},"renderContextTable":{"__isSmartRef__":true,"id":3634},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3631":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3632":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3633":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3634":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3635":{"x":106.3910936543557,"y":240.79703121811872,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3636":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3637":{"style":{"__isSmartRef__":true,"id":3638},"morph":{"__isSmartRef__":true,"id":3629},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3629},"storedString":"resizeWidth","__LivelyClassName__":"lively.morphic.TextChunk"},"3638":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3639":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3640":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3641":{"morph":{"__isSmartRef__":true,"id":3629},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3642":{"submorphs":[],"scripts":[],"id":2432,"shape":{"__isSmartRef__":true,"id":3643},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3648},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3646},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text12","partsBinMetaInfo":{"__isSmartRef__":true,"id":3649},"textChunks":[{"__isSmartRef__":true,"id":3650}],"charsReplaced":"Width","lastFindLoc":1,"priorSelectionRange":[0,12],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":3652},"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":3458},"renderContextTable":{"__isSmartRef__":true,"id":3653},"eventHandler":{"__isSmartRef__":true,"id":3654},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3643":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3644},"_Extent":{"__isSmartRef__":true,"id":3645},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3646},"renderContextTable":{"__isSmartRef__":true,"id":3647},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3644":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3645":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3646":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3647":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3648":{"x":105.3910936543557,"y":259.7970312181187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3649":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3650":{"style":{"__isSmartRef__":true,"id":3651},"morph":{"__isSmartRef__":true,"id":3642},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3642},"storedString":"resizeHeight","__LivelyClassName__":"lively.morphic.TextChunk"},"3651":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3652":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3653":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3654":{"morph":{"__isSmartRef__":true,"id":3642},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3655":{"submorphs":[],"scripts":[],"id":2433,"shape":{"__isSmartRef__":true,"id":3656},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3661},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3659},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text13","partsBinMetaInfo":{"__isSmartRef__":true,"id":3662},"textChunks":[{"__isSmartRef__":true,"id":3663}],"charsReplaced":"resizeHeight","lastFindLoc":-12,"priorSelectionRange":[0,0],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":3665},"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":3458},"renderContextTable":{"__isSmartRef__":true,"id":3666},"eventHandler":{"__isSmartRef__":true,"id":3667},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3656":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3657},"_Extent":{"__isSmartRef__":true,"id":3658},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3659},"renderContextTable":{"__isSmartRef__":true,"id":3660},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3657":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3658":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3659":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3660":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3661":{"x":105.3910936543557,"y":279.7970312181187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3662":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3663":{"style":{"__isSmartRef__":true,"id":3664},"morph":{"__isSmartRef__":true,"id":3655},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3655},"storedString":"moveVertical","__LivelyClassName__":"lively.morphic.TextChunk"},"3664":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3665":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3666":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3667":{"morph":{"__isSmartRef__":true,"id":3655},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3668":{"submorphs":[],"scripts":[],"id":2434,"shape":{"__isSmartRef__":true,"id":3669},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3674},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3672},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text14","partsBinMetaInfo":{"__isSmartRef__":true,"id":3675},"textChunks":[{"__isSmartRef__":true,"id":3676}],"charsReplaced":"Vertical","lastFindLoc":-4,"priorSelectionRange":[9,9],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":3678},"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":3458},"renderContextTable":{"__isSmartRef__":true,"id":3679},"eventHandler":{"__isSmartRef__":true,"id":3680},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3669":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3670},"_Extent":{"__isSmartRef__":true,"id":3671},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3672},"renderContextTable":{"__isSmartRef__":true,"id":3673},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3670":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3671":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3672":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3673":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3674":{"x":104.3910936543557,"y":297.7970312181187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3675":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3676":{"style":{"__isSmartRef__":true,"id":3677},"morph":{"__isSmartRef__":true,"id":3668},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3668},"storedString":"moveHorizontal","__LivelyClassName__":"lively.morphic.TextChunk"},"3677":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3678":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3679":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3680":{"morph":{"__isSmartRef__":true,"id":3668},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3681":{"submorphs":[],"scripts":[],"id":2435,"shape":{"__isSmartRef__":true,"id":3682},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":3686},"name":"adjustForNewBoundsCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":3687},"priorExtent":{"__isSmartRef__":true,"id":3688},"__SourceModuleName__":"Global.lively.morphic.Widgets","owner":{"__isSmartRef__":true,"id":3458},"_Scale":1,"layoutProperty":"adjustForNewBounds","attributeConnections":[{"__isSmartRef__":true,"id":3689}],"doNotSerialize":["$$checked"],"doNotCopyProperties":["$$checked"],"renderContextTable":{"__isSmartRef__":true,"id":3694},"eventHandler":{"__isSmartRef__":true,"id":3695},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"3682":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3683},"_Extent":{"__isSmartRef__":true,"id":3684},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3685},"__LivelyClassName__":"lively.morphic.Shapes.External"},"3683":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3684":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3685":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"3686":{"x":225,"y":223,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3687":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3688":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3689":{"sourceObj":{"__isSmartRef__":true,"id":3681},"sourceAttrName":"checked","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","varMapping":{"__isSmartRef__":true,"id":3690},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3691},"__LivelyClassName__":"AttributeConnection"},"3690":{"source":{"__isSmartRef__":true,"id":3681},"target":{"__isSmartRef__":true,"id":3458}},"3691":{"converter":{"__isSmartRef__":true,"id":3692}},"3692":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3690},"source":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","funcProperties":{"__isSmartRef__":true,"id":3693},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"3693":{},"3694":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3695":{"morph":{"__isSmartRef__":true,"id":3681},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3696":{"submorphs":[],"scripts":[],"id":2436,"shape":{"__isSmartRef__":true,"id":3697},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":3701},"name":"moveVerticalCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":3702},"priorExtent":{"__isSmartRef__":true,"id":3703},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"owner":{"__isSmartRef__":true,"id":3458},"layoutProperty":"moveVertical","attributeConnections":[{"__isSmartRef__":true,"id":3704}],"doNotSerialize":["$$checked"],"doNotCopyProperties":["$$checked"],"renderContextTable":{"__isSmartRef__":true,"id":3709},"eventHandler":{"__isSmartRef__":true,"id":3710},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"3697":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3698},"_Extent":{"__isSmartRef__":true,"id":3699},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3700},"__LivelyClassName__":"lively.morphic.Shapes.External"},"3698":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3699":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3700":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"3701":{"x":225,"y":277,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3702":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3703":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3704":{"sourceObj":{"__isSmartRef__":true,"id":3696},"sourceAttrName":"checked","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","varMapping":{"__isSmartRef__":true,"id":3705},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3706},"__LivelyClassName__":"AttributeConnection"},"3705":{"source":{"__isSmartRef__":true,"id":3696},"target":{"__isSmartRef__":true,"id":3458}},"3706":{"converter":{"__isSmartRef__":true,"id":3707}},"3707":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3705},"source":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","funcProperties":{"__isSmartRef__":true,"id":3708},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"3708":{},"3709":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3710":{"morph":{"__isSmartRef__":true,"id":3696},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3711":{"submorphs":[],"scripts":[],"id":2437,"shape":{"__isSmartRef__":true,"id":3712},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":3716},"name":"resizeWidthCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":3717},"priorExtent":{"__isSmartRef__":true,"id":3718},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"owner":{"__isSmartRef__":true,"id":3458},"layoutProperty":"resizeWidth","attributeConnections":[{"__isSmartRef__":true,"id":3719}],"doNotSerialize":["$$checked"],"doNotCopyProperties":["$$checked"],"renderContextTable":{"__isSmartRef__":true,"id":3724},"eventHandler":{"__isSmartRef__":true,"id":3725},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"3712":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3713},"_Extent":{"__isSmartRef__":true,"id":3714},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3715},"__LivelyClassName__":"lively.morphic.Shapes.External"},"3713":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3714":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3715":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"3716":{"x":225,"y":239,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3717":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3718":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3719":{"sourceObj":{"__isSmartRef__":true,"id":3711},"sourceAttrName":"checked","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","varMapping":{"__isSmartRef__":true,"id":3720},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3721},"__LivelyClassName__":"AttributeConnection"},"3720":{"source":{"__isSmartRef__":true,"id":3711},"target":{"__isSmartRef__":true,"id":3458}},"3721":{"converter":{"__isSmartRef__":true,"id":3722}},"3722":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3720},"source":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","funcProperties":{"__isSmartRef__":true,"id":3723},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"3723":{},"3724":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3725":{"morph":{"__isSmartRef__":true,"id":3711},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3726":{"submorphs":[{"__isSmartRef__":true,"id":3727}],"scripts":[],"id":2438,"shape":{"__isSmartRef__":true,"id":3746},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3757},"attributeConnections":[{"__isSmartRef__":true,"id":3758},{"__isSmartRef__":true,"id":3759}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"sliderExtent":0.1,"valueScale":20,"sliderKnob":{"__isSmartRef__":true,"id":3727},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"borderWidthSlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":3764},"__SourceModuleName__":"Global.lively.morphic.Widgets","owner":{"__isSmartRef__":true,"id":3458},"_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":3765},"renderContextTable":{"__isSmartRef__":true,"id":3766},"eventHandler":{"__isSmartRef__":true,"id":3767},"_Rotation":0,"value":0,"__LivelyClassName__":"lively.morphic.Slider"},"3727":{"submorphs":[],"scripts":[],"id":2439,"shape":{"__isSmartRef__":true,"id":3728},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"_Position":{"__isSmartRef__":true,"id":3741},"slider":{"__isSmartRef__":true,"id":3726},"owner":{"__isSmartRef__":true,"id":3726},"styleClass":["slider_horizontal"],"hitPoint":{"__isSmartRef__":true,"id":3742},"__SourceModuleName__":"Global.lively.morphic.Widgets","priorExtent":{"__isSmartRef__":true,"id":3743},"renderContextTable":{"__isSmartRef__":true,"id":3744},"eventHandler":{"__isSmartRef__":true,"id":3745},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.SliderKnob"},"3728":{"position":{"__isSmartRef__":true,"id":3729},"_Extent":{"__isSmartRef__":true,"id":3730},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3731},"_Fill":{"__isSmartRef__":true,"id":3732},"_BorderRadius":6,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3740},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3729":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3730":{"x":15,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3731":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3732":{"stops":[{"__isSmartRef__":true,"id":3733},{"__isSmartRef__":true,"id":3735},{"__isSmartRef__":true,"id":3737}],"vector":{"__isSmartRef__":true,"id":3739},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3733":{"offset":0,"color":{"__isSmartRef__":true,"id":3734}},"3734":{"r":0.7681568627450981,"g":0.8271372549019608,"b":0.8660392156862744,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3735":{"offset":0.5,"color":{"__isSmartRef__":true,"id":3736}},"3736":{"r":0.5363137254901961,"g":0.6542745098039215,"b":0.7320784313725489,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3737":{"offset":1,"color":{"__isSmartRef__":true,"id":3738}},"3738":{"r":0.3783529411764706,"g":0.5110588235294118,"b":0.5985882352941176,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3739":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3740":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3741":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3742":{"x":963,"y":194,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3743":{"x":15,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3744":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3745":{"morph":{"__isSmartRef__":true,"id":3727},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3746":{"position":{"__isSmartRef__":true,"id":3747},"_Extent":{"__isSmartRef__":true,"id":3748},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3731},"_Fill":{"__isSmartRef__":true,"id":3749},"_BorderRadius":6,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3756},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3747":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3748":{"x":150,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3749":{"stops":[{"__isSmartRef__":true,"id":3750},{"__isSmartRef__":true,"id":3752},{"__isSmartRef__":true,"id":3754}],"vector":{"__isSmartRef__":true,"id":3739},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3750":{"offset":0,"color":{"__isSmartRef__":true,"id":3751}},"3751":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3752":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3753}},"3753":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3754":{"offset":1,"color":{"__isSmartRef__":true,"id":3755}},"3755":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3756":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3757":{"x":111,"y":102,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3758":{"sourceObj":{"__isSmartRef__":true,"id":3726},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":3726},"targetMethodName":"adjustSliderParts","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3759":{"sourceObj":{"__isSmartRef__":true,"id":3726},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (v) { return {borderWidth: v} }","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3760},"__LivelyClassName__":"AttributeConnection"},"3760":{"converter":{"__isSmartRef__":true,"id":3761}},"3761":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3762},"source":"function (v) { return {borderWidth: v} }","funcProperties":{"__isSmartRef__":true,"id":3763},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3762":{},"3763":{},"3764":{"requiredModules":[],"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3765":{"x":150,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3766":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3767":{"morph":{"__isSmartRef__":true,"id":3726},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3768":{"submorphs":[{"__isSmartRef__":true,"id":3769}],"scripts":[],"id":2440,"shape":{"__isSmartRef__":true,"id":3788},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3799},"attributeConnections":[{"__isSmartRef__":true,"id":3800},{"__isSmartRef__":true,"id":3801}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"sliderExtent":0.1,"valueScale":50,"sliderKnob":{"__isSmartRef__":true,"id":3769},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"borderRadiusSlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":3806},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":3807},"owner":{"__isSmartRef__":true,"id":3458},"renderContextTable":{"__isSmartRef__":true,"id":3808},"eventHandler":{"__isSmartRef__":true,"id":3809},"_Rotation":0,"value":0,"__LivelyClassName__":"lively.morphic.Slider"},"3769":{"submorphs":[],"scripts":[],"id":2441,"shape":{"__isSmartRef__":true,"id":3770},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"_Position":{"__isSmartRef__":true,"id":3783},"slider":{"__isSmartRef__":true,"id":3768},"owner":{"__isSmartRef__":true,"id":3768},"styleClass":["slider_horizontal"],"hitPoint":{"__isSmartRef__":true,"id":3784},"__SourceModuleName__":"Global.lively.morphic.Widgets","priorExtent":{"__isSmartRef__":true,"id":3785},"renderContextTable":{"__isSmartRef__":true,"id":3786},"eventHandler":{"__isSmartRef__":true,"id":3787},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.SliderKnob"},"3770":{"position":{"__isSmartRef__":true,"id":3771},"_Extent":{"__isSmartRef__":true,"id":3772},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3773},"_Fill":{"__isSmartRef__":true,"id":3774},"_BorderRadius":6,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3782},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3771":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3772":{"x":15,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3773":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3774":{"stops":[{"__isSmartRef__":true,"id":3775},{"__isSmartRef__":true,"id":3777},{"__isSmartRef__":true,"id":3779}],"vector":{"__isSmartRef__":true,"id":3781},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3775":{"offset":0,"color":{"__isSmartRef__":true,"id":3776}},"3776":{"r":0.7681568627450981,"g":0.8271372549019608,"b":0.8660392156862744,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3777":{"offset":0.5,"color":{"__isSmartRef__":true,"id":3778}},"3778":{"r":0.5363137254901961,"g":0.6542745098039215,"b":0.7320784313725489,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3779":{"offset":1,"color":{"__isSmartRef__":true,"id":3780}},"3780":{"r":0.3783529411764706,"g":0.5110588235294118,"b":0.5985882352941176,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3781":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3782":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3783":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3784":{"x":963,"y":194,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3785":{"x":15,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3786":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3787":{"morph":{"__isSmartRef__":true,"id":3769},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3788":{"position":{"__isSmartRef__":true,"id":3789},"_Extent":{"__isSmartRef__":true,"id":3790},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3773},"_Fill":{"__isSmartRef__":true,"id":3791},"_BorderRadius":6,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3798},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3789":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3790":{"x":150,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3791":{"stops":[{"__isSmartRef__":true,"id":3792},{"__isSmartRef__":true,"id":3794},{"__isSmartRef__":true,"id":3796}],"vector":{"__isSmartRef__":true,"id":3781},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3792":{"offset":0,"color":{"__isSmartRef__":true,"id":3793}},"3793":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3794":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3795}},"3795":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3796":{"offset":1,"color":{"__isSmartRef__":true,"id":3797}},"3797":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3798":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3799":{"x":111,"y":131,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3800":{"sourceObj":{"__isSmartRef__":true,"id":3768},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":3768},"targetMethodName":"adjustSliderParts","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3801":{"sourceObj":{"__isSmartRef__":true,"id":3768},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (v) { return {borderRadius: v} }","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3802},"__LivelyClassName__":"AttributeConnection"},"3802":{"converter":{"__isSmartRef__":true,"id":3803}},"3803":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3804},"source":"function (v) { return {borderRadius: v} }","funcProperties":{"__isSmartRef__":true,"id":3805},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3804":{},"3805":{},"3806":{"requiredModules":[],"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3807":{"x":150,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3808":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3809":{"morph":{"__isSmartRef__":true,"id":3768},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3810":{"submorphs":[],"scripts":[],"id":2442,"shape":{"__isSmartRef__":true,"id":3811},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3816},"_MaxTextWidth":94.99198798397993,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3814},"showsHalos":false,"_FontSize":"11","__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text7","partsBinMetaInfo":{"__isSmartRef__":true,"id":3817},"charsReplaced":"radius","lastFindLoc":1,"textStyle":{"__isSmartRef__":true,"id":3818},"textChunks":[{"__isSmartRef__":true,"id":3823}],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3825},"priorSelectionRange":[8,8],"prevScroll":[0,0],"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":3826},"eventHandler":{"__isSmartRef__":true,"id":3827},"owner":{"__isSmartRef__":true,"id":3458},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3811":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3812},"_Extent":{"__isSmartRef__":true,"id":3813},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3814},"renderContextTable":{"__isSmartRef__":true,"id":3815},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3812":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3813":{"x":94.99198798397993,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3814":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3815":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3816":{"x":13.006009012015,"y":161.13420126833648,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3817":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3818":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3819},{"__isSmartRef__":true,"id":3820},{"__isSmartRef__":true,"id":3821},{"__isSmartRef__":true,"id":3820},{"__isSmartRef__":true,"id":3822},{"__isSmartRef__":true,"id":3820}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3819":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3820":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3821":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3822":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3823":{"style":{"__isSmartRef__":true,"id":3824},"morph":{"__isSmartRef__":true,"id":3810},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3810},"storedString":"Border style ","__LivelyClassName__":"lively.morphic.TextChunk"},"3824":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3825":{"x":94.99198798397993,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3826":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3827":{"morph":{"__isSmartRef__":true,"id":3810},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3828":{"submorphs":[],"scripts":[],"id":2443,"renderContextTable":{"__isSmartRef__":true,"id":3829},"shape":{"__isSmartRef__":true,"id":3830},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","eventHandler":{"__isSmartRef__":true,"id":3836},"_Position":{"__isSmartRef__":true,"id":3837},"itemList":["solid","hidden","dotted","dashed","double","groove","ridge","inset","outset"],"selectOnMove":false,"_Scale":1,"showsHalos":false,"priorExtent":{"__isSmartRef__":true,"id":3838},"attributeConnections":[{"__isSmartRef__":true,"id":3839}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"name":"borderStyleList","partsBinMetaInfo":{"__isSmartRef__":true,"id":3844},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":3458},"prevScroll":[0,0],"selectedLineNo":0,"valueScale":1,"_Rotation":0,"selection":"solid","__LivelyClassName__":"lively.morphic.DropDownList"},"3829":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"3830":{"_Position":{"__isSmartRef__":true,"id":3831},"renderContextTable":{"__isSmartRef__":true,"id":3832},"_Extent":{"__isSmartRef__":true,"id":3833},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3834},"_Fill":{"__isSmartRef__":true,"id":3835},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3831":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3832":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3833":{"x":150,"y":27,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3834":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3835":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3836":{"morph":{"__isSmartRef__":true,"id":3828},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3837":{"x":111,"y":163.9238700900221,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3838":{"x":151,"y":27,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3839":{"sourceObj":{"__isSmartRef__":true,"id":3828},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (v) { return {borderStyle: v} }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3840},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3841},"__LivelyClassName__":"AttributeConnection"},"3840":{"source":{"__isSmartRef__":true,"id":3828},"target":{"__isSmartRef__":true,"id":3458}},"3841":{"converter":{"__isSmartRef__":true,"id":3842}},"3842":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3840},"source":"function (v) { return {borderStyle: v} }","funcProperties":{"__isSmartRef__":true,"id":3843},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3843":{},"3844":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","comment":"\"Native\" drop down list","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3845":{"submorphs":[],"scripts":[],"id":2444,"shape":{"__isSmartRef__":true,"id":3846},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3851},"_MaxTextWidth":62.991987983979925,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":3849},"showsHalos":false,"_FontSize":"11","__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text6","partsBinMetaInfo":{"__isSmartRef__":true,"id":3852},"charsReplaced":"Border radius ","lastFindLoc":-14,"textStyle":{"__isSmartRef__":true,"id":3853},"textChunks":[{"__isSmartRef__":true,"id":3858}],"_ClipMode":"visible","priorExtent":{"__isSmartRef__":true,"id":3860},"priorSelectionRange":[7,7],"prevScroll":[0,0],"_Scale":1,"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":3861},"eventHandler":{"__isSmartRef__":true,"id":3862},"owner":{"__isSmartRef__":true,"id":3458},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"3846":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3847},"_Extent":{"__isSmartRef__":true,"id":3848},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3849},"renderContextTable":{"__isSmartRef__":true,"id":3850},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3847":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3848":{"x":62.991987983979925,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3849":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3850":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3851":{"x":13.006009012015056,"y":189.13420126833626,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3852":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3853":{"runs":[10,4,9,3,14,35],"values":[{"__isSmartRef__":true,"id":3854},{"__isSmartRef__":true,"id":3855},{"__isSmartRef__":true,"id":3856},{"__isSmartRef__":true,"id":3855},{"__isSmartRef__":true,"id":3857},{"__isSmartRef__":true,"id":3855}],"lastIndex":40,"lastRunIndex":5,"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.RunArray"},"3854":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3855":{"__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3856":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3857":{"style":"bold","__SourceModuleName__":"Global.lively.TextSupport","__LivelyClassName__":"lively.TextEmphasis"},"3858":{"style":{"__isSmartRef__":true,"id":3859},"morph":{"__isSmartRef__":true,"id":3845},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":3845},"storedString":"Opacity","__LivelyClassName__":"lively.morphic.TextChunk"},"3859":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3860":{"x":62.991987983979925,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3861":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3862":{"morph":{"__isSmartRef__":true,"id":3845},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3863":{"submorphs":[{"__isSmartRef__":true,"id":3864}],"scripts":[],"id":2445,"shape":{"__isSmartRef__":true,"id":3883},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":3894},"attributeConnections":[{"__isSmartRef__":true,"id":3895},{"__isSmartRef__":true,"id":3896}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"sliderExtent":0.1,"valueScale":1,"sliderKnob":{"__isSmartRef__":true,"id":3864},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"opacitySlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":3901},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"priorExtent":{"__isSmartRef__":true,"id":3902},"renderContextTable":{"__isSmartRef__":true,"id":3903},"eventHandler":{"__isSmartRef__":true,"id":3904},"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"value":1,"__LivelyClassName__":"lively.morphic.Slider"},"3864":{"submorphs":[],"scripts":[],"id":2446,"shape":{"__isSmartRef__":true,"id":3865},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"_Position":{"__isSmartRef__":true,"id":3878},"slider":{"__isSmartRef__":true,"id":3863},"owner":{"__isSmartRef__":true,"id":3863},"styleClass":["slider_horizontal"],"hitPoint":{"__isSmartRef__":true,"id":3879},"__SourceModuleName__":"Global.lively.morphic.Widgets","priorExtent":{"__isSmartRef__":true,"id":3880},"renderContextTable":{"__isSmartRef__":true,"id":3881},"eventHandler":{"__isSmartRef__":true,"id":3882},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.SliderKnob"},"3865":{"position":{"__isSmartRef__":true,"id":3866},"_Extent":{"__isSmartRef__":true,"id":3867},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3868},"_Fill":{"__isSmartRef__":true,"id":3869},"_BorderRadius":6,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3877},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3866":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3867":{"x":15,"y":16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3868":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3869":{"stops":[{"__isSmartRef__":true,"id":3870},{"__isSmartRef__":true,"id":3872},{"__isSmartRef__":true,"id":3874}],"vector":{"__isSmartRef__":true,"id":3876},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3870":{"offset":0,"color":{"__isSmartRef__":true,"id":3871}},"3871":{"r":0.7681568627450981,"g":0.8271372549019608,"b":0.8660392156862744,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3872":{"offset":0.5,"color":{"__isSmartRef__":true,"id":3873}},"3873":{"r":0.5363137254901961,"g":0.6542745098039215,"b":0.7320784313725489,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3874":{"offset":1,"color":{"__isSmartRef__":true,"id":3875}},"3875":{"r":0.3783529411764706,"g":0.5110588235294118,"b":0.5985882352941176,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3876":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3877":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3878":{"x":135,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3879":{"x":831,"y":1666,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3880":{"x":15,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3881":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3882":{"morph":{"__isSmartRef__":true,"id":3864},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3883":{"position":{"__isSmartRef__":true,"id":3884},"_Extent":{"__isSmartRef__":true,"id":3885},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3868},"_Fill":{"__isSmartRef__":true,"id":3886},"_BorderRadius":6,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3893},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3884":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3885":{"x":150,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3886":{"stops":[{"__isSmartRef__":true,"id":3887},{"__isSmartRef__":true,"id":3889},{"__isSmartRef__":true,"id":3891}],"vector":{"__isSmartRef__":true,"id":3876},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3887":{"offset":0,"color":{"__isSmartRef__":true,"id":3888}},"3888":{"r":0.8,"g":0.8,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3889":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3890}},"3890":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3891":{"offset":1,"color":{"__isSmartRef__":true,"id":3892}},"3892":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3893":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3894":{"x":112,"y":192,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3895":{"sourceObj":{"__isSmartRef__":true,"id":3863},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":3863},"targetMethodName":"adjustSliderParts","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3896":{"sourceObj":{"__isSmartRef__":true,"id":3863},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (v) { return {opacity: v} }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":3897},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3898},"__LivelyClassName__":"AttributeConnection"},"3897":{"source":{"__isSmartRef__":true,"id":3863},"target":{"__isSmartRef__":true,"id":3458}},"3898":{"converter":{"__isSmartRef__":true,"id":3899}},"3899":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3897},"source":"function (v) { return {opacity: v} }","funcProperties":{"__isSmartRef__":true,"id":3900},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3900":{},"3901":{"requiredModules":[],"partsSpaceName":"PartsBin/NewWorld","migrationLevel":1,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3902":{"x":150,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3903":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3904":{"morph":{"__isSmartRef__":true,"id":3863},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3905":{"submorphs":[],"scripts":[],"id":2447,"renderContextTable":{"__isSmartRef__":true,"id":3906},"shape":{"__isSmartRef__":true,"id":3907},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","eventHandler":{"__isSmartRef__":true,"id":3913},"_Position":{"__isSmartRef__":true,"id":3914},"itemList":[{"__isSmartRef__":true,"id":3915},{"__isSmartRef__":true,"id":3916},{"__isSmartRef__":true,"id":3917},{"__isSmartRef__":true,"id":3918},{"__isSmartRef__":true,"id":3919}],"selectOnMove":false,"_Scale":1.002003004005006,"showsHalos":false,"priorExtent":{"__isSmartRef__":true,"id":3920},"attributeConnections":[{"__isSmartRef__":true,"id":3921}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"name":"layouterList","partsBinMetaInfo":{"__isSmartRef__":true,"id":3922},"__SourceModuleName__":"Global.lively.morphic.Core","owner":{"__isSmartRef__":true,"id":3458},"changeTriggered":true,"_Rotation":0,"selection":null,"selectedLineNo":0,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3923},"__LivelyClassName__":"lively.morphic.DropDownList"},"3906":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"3907":{"_Position":{"__isSmartRef__":true,"id":3908},"renderContextTable":{"__isSmartRef__":true,"id":3909},"_Extent":{"__isSmartRef__":true,"id":3910},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3911},"_Fill":{"__isSmartRef__":true,"id":3912},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3908":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3909":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3910":{"x":148.08212316420526,"y":22.995993991989963,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3911":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3912":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"3913":{"morph":{"__isSmartRef__":true,"id":3905},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3914":{"x":116.21227830428035,"y":385.916119006298,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3915":{"isListItem":true,"string":"none","value":null},"3916":{"isListItem":true,"string":"HorizontalLayout","value":"lively.morphic.Layout.HorizontalLayout"},"3917":{"isListItem":true,"string":"TightHorizontalLayout","value":"lively.morphic.Layout.TightHorizontalLayout"},"3918":{"isListItem":true,"string":"VerticalLayout","value":"lively.morphic.Layout.VerticalLayout"},"3919":{"isListItem":true,"string":"JournalLayout","value":"lively.morphic.Layout.JournalLayout"},"3920":{"x":147.08012016020024,"y":22.995993991989963,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3921":{"sourceObj":{"__isSmartRef__":true,"id":3905},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setLayouter","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3922":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","comment":"\"Native\" drop down list","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3923":{"setup":{"__isSmartRef__":true,"id":3924}},"3924":{"varMapping":{"__isSmartRef__":true,"id":3925},"source":"function setup() {\n var layoutClasses = [lively.morphic.Layout.HorizontalLayout,\n lively.morphic.Layout.TightHorizontalLayout,\n lively.morphic.Layout.VerticalLayout,\n lively.morphic.Layout.JournalLayout],\n items = layoutClasses.collect(function(ea) {\n return {isListItem: true, string: ea.name, value: ea.type} })\n\n items.unshift({isListItem: true, string: 'none', value: null})\n this.setList(items)\n}","funcProperties":{"__isSmartRef__":true,"id":3926},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"3925":{"this":{"__isSmartRef__":true,"id":3905}},"3926":{},"3927":{"submorphs":[],"scripts":[],"id":2448,"shape":{"__isSmartRef__":true,"id":3928},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":3932},"name":"resizeHeightCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":3933},"priorExtent":{"__isSmartRef__":true,"id":3934},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"owner":{"__isSmartRef__":true,"id":3458},"layoutProperty":"resizeHeight","attributeConnections":[{"__isSmartRef__":true,"id":3935}],"doNotSerialize":["$$checked"],"doNotCopyProperties":["$$checked"],"renderContextTable":{"__isSmartRef__":true,"id":3940},"eventHandler":{"__isSmartRef__":true,"id":3941},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"3928":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":3929},"_Extent":{"__isSmartRef__":true,"id":3930},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":3931},"__LivelyClassName__":"lively.morphic.Shapes.External"},"3929":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3930":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3931":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"3932":{"x":225,"y":257,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3933":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"3934":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3935":{"sourceObj":{"__isSmartRef__":true,"id":3927},"sourceAttrName":"checked","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","varMapping":{"__isSmartRef__":true,"id":3936},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3937},"__LivelyClassName__":"AttributeConnection"},"3936":{"source":{"__isSmartRef__":true,"id":3927},"target":{"__isSmartRef__":true,"id":3458}},"3937":{"converter":{"__isSmartRef__":true,"id":3938}},"3938":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":3936},"source":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","funcProperties":{"__isSmartRef__":true,"id":3939},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"3939":{},"3940":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3941":{"morph":{"__isSmartRef__":true,"id":3927},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3942":{"submorphs":[{"__isSmartRef__":true,"id":3943}],"scripts":[],"id":2449,"shape":{"__isSmartRef__":true,"id":3957},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":3960},"lighterFill":{"__isSmartRef__":true,"id":3972},"label":{"__isSmartRef__":true,"id":3943},"attributeConnections":[{"__isSmartRef__":true,"id":3981},{"__isSmartRef__":true,"id":4008},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012}],"doNotSerialize":["$$fire","$$_Position","$$_Scale","$$_Rotation","$$owner"],"doNotCopyProperties":["$$fire","$$_Position","$$_Scale","$$_Rotation","$$owner"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","padding":{"__isSmartRef__":true,"id":4034},"name":"layoutConfigButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":4035},"renderContextTable":{"__isSmartRef__":true,"id":4036},"eventHandler":{"__isSmartRef__":true,"id":4037},"priorExtent":{"__isSmartRef__":true,"id":4038},"magnets":[{"__isSmartRef__":true,"id":3995}],"_Position":{"__isSmartRef__":true,"id":4039},"_Scale":1.0937924810140283,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":3458},"__LivelyClassName__":"lively.morphic.Button"},"3943":{"submorphs":[],"scripts":[],"id":2450,"shape":{"__isSmartRef__":true,"id":3944},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":138,"_MaxTextHeight":18,"fixedHeight":true,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":3949},"textColor":{"__isSmartRef__":true,"id":3947},"owner":{"__isSmartRef__":true,"id":3942},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":3950}],"padding":{"__isSmartRef__":true,"id":3952},"_Padding":{"__isSmartRef__":true,"id":3953},"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":3954},"_FontFamily":"Helvetica, Sans-Serif","renderContextTable":{"__isSmartRef__":true,"id":3955},"eventHandler":{"__isSmartRef__":true,"id":3956},"_HandStyle":"default","_PointerEvents":"none","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_FontSize":11,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"3944":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3945},"_Extent":{"__isSmartRef__":true,"id":3946},"_BorderColor":{"__isSmartRef__":true,"id":3947},"renderContextTable":{"__isSmartRef__":true,"id":3948},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3945":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3946":{"x":138,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3947":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3948":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3949":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3950":{"style":{"__isSmartRef__":true,"id":3951},"chunkOwner":{"__isSmartRef__":true,"id":3943},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"configure","__LivelyClassName__":"lively.morphic.TextChunk"},"3951":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"3952":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3953":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3954":{"x":138,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3955":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"3956":{"morph":{"__isSmartRef__":true,"id":3943},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3957":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":3958},"_Extent":{"__isSmartRef__":true,"id":3959},"_Fill":{"__isSmartRef__":true,"id":3960},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3970},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":3971},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"3958":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3959":{"x":138,"y":18,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3960":{"stops":[{"__isSmartRef__":true,"id":3961},{"__isSmartRef__":true,"id":3963},{"__isSmartRef__":true,"id":3965},{"__isSmartRef__":true,"id":3967}],"vector":{"__isSmartRef__":true,"id":3969},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3961":{"offset":0,"color":{"__isSmartRef__":true,"id":3962}},"3962":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3963":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3964}},"3964":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3965":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3966}},"3966":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3967":{"offset":1,"color":{"__isSmartRef__":true,"id":3968}},"3968":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3969":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"3970":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3971":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"3972":{"stops":[{"__isSmartRef__":true,"id":3973},{"__isSmartRef__":true,"id":3975},{"__isSmartRef__":true,"id":3977},{"__isSmartRef__":true,"id":3979}],"vector":{"__isSmartRef__":true,"id":3969},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"3973":{"offset":0,"color":{"__isSmartRef__":true,"id":3974}},"3974":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3975":{"offset":0.4,"color":{"__isSmartRef__":true,"id":3976}},"3976":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3977":{"offset":0.6,"color":{"__isSmartRef__":true,"id":3978}},"3978":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3979":{"offset":1,"color":{"__isSmartRef__":true,"id":3980}},"3980":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3981":{"sourceObj":{"__isSmartRef__":true,"id":3942},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"openLayoutConfigurator","visualConnector":{"__isSmartRef__":true,"id":3982},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"3982":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3983},"id":724,"renderContextTable":{"__isSmartRef__":true,"id":3992},"eventHandler":{"__isSmartRef__":true,"id":3993},"droppingEnabled":true,"halosEnabled":true,"controlPoints":[{"__isSmartRef__":true,"id":3994},{"__isSmartRef__":true,"id":3997}],"con":{"__isSmartRef__":true,"id":3981},"showsMorphMenu":true,"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","isCopyMorphRef":true,"morphRefId":2,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4000},"__LivelyClassName__":"lively.morphic.Path"},"3983":{"dontChangeShape":false,"cachedVertices":[{"__isSmartRef__":true,"id":3984},{"__isSmartRef__":true,"id":3985}],"_PathElements":[{"__isSmartRef__":true,"id":3986},{"__isSmartRef__":true,"id":3987}],"renderContextTable":{"__isSmartRef__":true,"id":3988},"_Position":{"__isSmartRef__":true,"id":3989},"_Extent":{"__isSmartRef__":true,"id":3990},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3991},"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.Path"},"3984":{"x":926.4023448012438,"y":1328.2183364770476,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3985":{"x":812.4023448012438,"y":915.3854043013202,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"3986":{"isAbsolute":true,"x":926.4023448012438,"y":1328.2183364770476,"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.MoveTo"},"3987":{"isAbsolute":true,"x":812.4023448012438,"y":915.3854043013202,"__SourceModuleName__":"Global.lively.morphic.PathShapes","__LivelyClassName__":"lively.morphic.Shapes.LineTo"},"3988":{},"3989":{"x":312,"y":134.1670684814453,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3990":{"x":114,"y":351.83294677734375,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3991":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"3992":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"3993":{"morph":{"__isSmartRef__":true,"id":3982},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"3994":{"morph":{"__isSmartRef__":true,"id":3982},"index":0,"connectedMagnet":{"__isSmartRef__":true,"id":3995},"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__LivelyClassName__":"lively.morphic.ControlPoint"},"3995":{"morph":{"__isSmartRef__":true,"id":3942},"position":{"__isSmartRef__":true,"id":3996},"connectedControlPoints":[{"__isSmartRef__":true,"id":3994}],"__SourceModuleName__":"Global.lively.morphic.Connectors","__LivelyClassName__":"lively.morphic.Magnet"},"3996":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"3997":{"morph":{"__isSmartRef__":true,"id":3982},"index":1,"connectedMagnet":{"__isSmartRef__":true,"id":3998},"__SourceModuleName__":"Global.lively.morphic.AdditionalMorphs","__LivelyClassName__":"lively.morphic.ControlPoint"},"3998":{"morph":{"__isSmartRef__":true,"id":3458},"position":{"__isSmartRef__":true,"id":3999},"connectedControlPoints":[{"__isSmartRef__":true,"id":3997}],"__SourceModuleName__":"Global.lively.morphic.Connectors","__LivelyClassName__":"lively.morphic.Magnet"},"3999":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4000":{"morphMenuItems":{"__isSmartRef__":true,"id":4001}},"4001":{"varMapping":{"__isSmartRef__":true,"id":4002},"source":"function morphMenuItems() {\n var visualConnector = this, con = this.con, world = this.world();\n var items = [\n ['edit converter', function() {\n var source = con.converterString || 'function converter(value) {\\n return value\\n}',\n editor = new lively.morphic.Text(new Rectangle(0,0, 400, 200), source);\n editor.doitContext = con;\n connect(editor, 'savedTextString', con, 'converterString', {updater:\n function($upd, source) { this.targetObj.converter = null; $upd(source) }});\n connect(editor, 'savedTextString', world, 'alertOK', {converter: \n function() { return 'setting new converter' }})\n editor.applyStyle({syntaxHighlighting: true, fontFamily: 'Courier', resizeWidth: true, resizeHeight: true});\n var title = con.targetObj.name && con.sourceObj.name ?\n 'Editor for ' + con.targetObj.name + ' -> ' + con.sourceObj.name :\n 'Editor for converter function';\n var window = world.addFramedMorph(editor, title)\n window.align(window.bounds().topCenter(), visualConnector.bounds().bottomCenter())\n }],\n ['hide', function() {\n visualConnector.disconnectFromMagnets();\n visualConnector.remove();\n }],\n ['disconnect', function() {\n alertOK('Disconnected ' + visualConnector.con);\n visualConnector.con.visualDisconnect();\n }],\n ['cancel', function() {}],\n ];\n return items;\n }","funcProperties":{"__isSmartRef__":true,"id":4007},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4002":{"this":{"__isSmartRef__":true,"id":3982},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4003}},"4003":{"$super":{"__isSmartRef__":true,"id":4004}},"4004":{"varMapping":{"__isSmartRef__":true,"id":4005},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4006},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4005":{"obj":{"__isSmartRef__":true,"id":3982},"name":"morphMenuItems"},"4006":{},"4007":{},"4008":{"sourceObj":{"__isSmartRef__":true,"id":3942},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":3994},"targetMethodName":"alignToMagnet","dependendConnections":[{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026},{"__isSmartRef__":true,"id":4009},{"__isSmartRef__":true,"id":4010},{"__isSmartRef__":true,"id":4011},{"__isSmartRef__":true,"id":4012},{"__isSmartRef__":true,"id":4014},{"__isSmartRef__":true,"id":4015},{"__isSmartRef__":true,"id":4016},{"__isSmartRef__":true,"id":4017},{"__isSmartRef__":true,"id":4023},{"__isSmartRef__":true,"id":4024},{"__isSmartRef__":true,"id":4025},{"__isSmartRef__":true,"id":4026}],"oldTransform":{"__isSmartRef__":true,"id":4032},"__SourceModuleName__":"Global.lively.bindings.GeometryBindings","__LivelyClassName__":"lively.morphic.GeometryTransformConnection"},"4009":{"sourceObj":{"__isSmartRef__":true,"id":3942},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4010":{"sourceObj":{"__isSmartRef__":true,"id":3942},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4011":{"sourceObj":{"__isSmartRef__":true,"id":3942},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4012":{"sourceObj":{"__isSmartRef__":true,"id":3942},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"updateOwners","converter":null,"converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4013},"dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4013":{"source":{"__isSmartRef__":true,"id":3942},"target":{"__isSmartRef__":true,"id":4008}},"4014":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4015":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4016":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4017":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4018},"dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4019},"__LivelyClassName__":"AttributeConnection"},"4018":{"source":{"__isSmartRef__":true,"id":3458},"target":{"__isSmartRef__":true,"id":4008}},"4019":{"converter":{"__isSmartRef__":true,"id":4020}},"4020":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4021},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":4022},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4021":{"source":{"__isSmartRef__":true,"id":3458},"target":{"__isSmartRef__":true,"id":4008}},"4022":{},"4023":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4024":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4025":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4026":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":4008},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4027},"dependedBy":{"__isSmartRef__":true,"id":4008},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4028},"__LivelyClassName__":"AttributeConnection"},"4027":{"source":{"__isSmartRef__":true,"id":3457},"target":{"__isSmartRef__":true,"id":4008}},"4028":{"converter":{"__isSmartRef__":true,"id":4029}},"4029":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4030},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":4031},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4030":{"source":{"__isSmartRef__":true,"id":3457},"target":{"__isSmartRef__":true,"id":4008}},"4031":{},"4032":{"d":1.0937924810140283,"a":1.0937924810140283,"f":1330.2183364770476,"e":928.4023448012438,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":4033},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"4033":{"a":1.0937924810140283,"b":0,"c":0,"d":1.0937924810140283,"e":928.4023448012438,"f":1330.2183364770476,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"4034":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"4035":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","partName":"Button","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4036":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4037":{"morph":{"__isSmartRef__":true,"id":3942},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4038":{"x":139,"y":18,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4039":{"x":114,"y":412.83293217572736,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4040":{"submorphs":[],"scripts":[],"id":2451,"shape":{"__isSmartRef__":true,"id":4041},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":4046},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":4044},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text15","partsBinMetaInfo":{"__isSmartRef__":true,"id":4047},"textChunks":[{"__isSmartRef__":true,"id":4048}],"charsReplaced":"moveHorizontal","lastFindLoc":0,"priorSelectionRange":[0,18],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":4050},"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":4051},"eventHandler":{"__isSmartRef__":true,"id":4052},"owner":{"__isSmartRef__":true,"id":3458},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"4041":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":4042},"_Extent":{"__isSmartRef__":true,"id":4043},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4044},"renderContextTable":{"__isSmartRef__":true,"id":4045},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4042":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4043":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4044":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4045":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4046":{"x":104.3910936543557,"y":316.7970312181187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4047":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4048":{"style":{"__isSmartRef__":true,"id":4049},"chunkOwner":{"__isSmartRef__":true,"id":4040},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"centeredHorizontal","__LivelyClassName__":"lively.morphic.TextChunk"},"4049":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4050":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4051":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4052":{"morph":{"__isSmartRef__":true,"id":4040},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4053":{"submorphs":[],"scripts":[],"id":2452,"shape":{"__isSmartRef__":true,"id":4054},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":4058},"name":"moveHorizontalCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":4059},"priorExtent":{"__isSmartRef__":true,"id":4060},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"owner":{"__isSmartRef__":true,"id":3458},"layoutProperty":"moveHorizontal","attributeConnections":[{"__isSmartRef__":true,"id":4061}],"doNotSerialize":["$$checked"],"doNotCopyProperties":["$$checked"],"renderContextTable":{"__isSmartRef__":true,"id":4066},"eventHandler":{"__isSmartRef__":true,"id":4067},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"4054":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":4055},"_Extent":{"__isSmartRef__":true,"id":4056},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":4057},"__LivelyClassName__":"lively.morphic.Shapes.External"},"4055":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4056":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4057":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"4058":{"x":225,"y":296,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4059":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4060":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4061":{"sourceObj":{"__isSmartRef__":true,"id":4053},"sourceAttrName":"checked","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","varMapping":{"__isSmartRef__":true,"id":4062},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4063},"__LivelyClassName__":"AttributeConnection"},"4062":{"source":{"__isSmartRef__":true,"id":4053},"target":{"__isSmartRef__":true,"id":3458}},"4063":{"converter":{"__isSmartRef__":true,"id":4064}},"4064":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4062},"source":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","funcProperties":{"__isSmartRef__":true,"id":4065},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"4065":{},"4066":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4067":{"morph":{"__isSmartRef__":true,"id":4053},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4068":{"submorphs":[],"scripts":[],"id":2453,"shape":{"__isSmartRef__":true,"id":4069},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":4073},"name":"centeredHorizontalCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":4074},"priorExtent":{"__isSmartRef__":true,"id":4075},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"layoutProperty":"centeredHorizontal","attributeConnections":[{"__isSmartRef__":true,"id":4076}],"doNotSerialize":["$$checked"],"doNotCopyProperties":["$$checked"],"renderContextTable":{"__isSmartRef__":true,"id":4081},"eventHandler":{"__isSmartRef__":true,"id":4082},"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"4069":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":4070},"_Extent":{"__isSmartRef__":true,"id":4071},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":4072},"__LivelyClassName__":"lively.morphic.Shapes.External"},"4070":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4071":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4072":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"4073":{"x":225,"y":313,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4074":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4075":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4076":{"sourceObj":{"__isSmartRef__":true,"id":4068},"sourceAttrName":"checked","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4077},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4078},"__LivelyClassName__":"AttributeConnection"},"4077":{"source":{"__isSmartRef__":true,"id":4068},"target":{"__isSmartRef__":true,"id":3458}},"4078":{"converter":{"__isSmartRef__":true,"id":4079}},"4079":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4077},"source":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","funcProperties":{"__isSmartRef__":true,"id":4080},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"4080":{},"4081":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4082":{"morph":{"__isSmartRef__":true,"id":4068},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4083":{"submorphs":[],"scripts":[],"id":2454,"shape":{"__isSmartRef__":true,"id":4084},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":4089},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":4087},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text16","partsBinMetaInfo":{"__isSmartRef__":true,"id":4090},"textChunks":[{"__isSmartRef__":true,"id":4091}],"charsReplaced":"Horizontal","lastFindLoc":-2,"priorSelectionRange":[0,16],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":4093},"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":4094},"eventHandler":{"__isSmartRef__":true,"id":4095},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"4084":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":4085},"_Extent":{"__isSmartRef__":true,"id":4086},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4087},"renderContextTable":{"__isSmartRef__":true,"id":4088},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4085":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4086":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4087":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4088":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4089":{"x":104.3910936543557,"y":333.7970312181187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4090":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4091":{"style":{"__isSmartRef__":true,"id":4092},"chunkOwner":{"__isSmartRef__":true,"id":4083},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"centeredVertical","__LivelyClassName__":"lively.morphic.TextChunk"},"4092":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4093":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4094":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4095":{"morph":{"__isSmartRef__":true,"id":4083},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4096":{"submorphs":[],"scripts":[],"id":2455,"shape":{"__isSmartRef__":true,"id":4097},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":4101},"name":"centeredVerticalCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":4102},"priorExtent":{"__isSmartRef__":true,"id":4103},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"layoutProperty":"centeredVertical","attributeConnections":[{"__isSmartRef__":true,"id":4104}],"doNotSerialize":["$$checked"],"doNotCopyProperties":["$$checked"],"renderContextTable":{"__isSmartRef__":true,"id":4109},"eventHandler":{"__isSmartRef__":true,"id":4110},"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"4097":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":4098},"_Extent":{"__isSmartRef__":true,"id":4099},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":4100},"__LivelyClassName__":"lively.morphic.Shapes.External"},"4098":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4099":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4100":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"4101":{"x":225,"y":330,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4102":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4103":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4104":{"sourceObj":{"__isSmartRef__":true,"id":4096},"sourceAttrName":"checked","targetObj":{"__isSmartRef__":true,"id":3458},"targetMethodName":"setTargetStyle","converterString":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4105},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4106},"__LivelyClassName__":"AttributeConnection"},"4105":{"source":{"__isSmartRef__":true,"id":4096},"target":{"__isSmartRef__":true,"id":3458}},"4106":{"converter":{"__isSmartRef__":true,"id":4107}},"4107":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4105},"source":"function (bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}","funcProperties":{"__isSmartRef__":true,"id":4108},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"4108":{},"4109":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4110":{"morph":{"__isSmartRef__":true,"id":4096},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4111":{"submorphs":[],"scripts":[],"id":2456,"shape":{"__isSmartRef__":true,"id":4112},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":4117},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":4115},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text17","partsBinMetaInfo":{"__isSmartRef__":true,"id":4118},"textChunks":[{"__isSmartRef__":true,"id":4119}],"charsReplaced":"scale horizontal","lastFindLoc":16,"priorSelectionRange":[0,15],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":4121},"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":4122},"eventHandler":{"__isSmartRef__":true,"id":4123},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"4112":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":4113},"_Extent":{"__isSmartRef__":true,"id":4114},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4115},"renderContextTable":{"__isSmartRef__":true,"id":4116},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4113":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4114":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4115":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4116":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4117":{"x":104.3910936543557,"y":349.7970312181187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4118":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4119":{"style":{"__isSmartRef__":true,"id":4120},"chunkOwner":{"__isSmartRef__":true,"id":4111},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"scaleHorizontal","__LivelyClassName__":"lively.morphic.TextChunk"},"4120":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4121":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4122":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4123":{"morph":{"__isSmartRef__":true,"id":4111},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4124":{"submorphs":[],"scripts":[],"id":2457,"shape":{"__isSmartRef__":true,"id":4125},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":4130},"_MaxTextWidth":144.65828402366867,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":4128},"showsHalos":false,"_FontSize":11,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text18","partsBinMetaInfo":{"__isSmartRef__":true,"id":4131},"textChunks":[{"__isSmartRef__":true,"id":4132}],"charsReplaced":"Horizontal","lastFindLoc":-5,"priorSelectionRange":[6,6],"prevScroll":[0,0],"_Scale":0.797031218118751,"priorExtent":{"__isSmartRef__":true,"id":4134},"_WhiteSpaceHandling":"pre-wrap","renderContextTable":{"__isSmartRef__":true,"id":4135},"eventHandler":{"__isSmartRef__":true,"id":4136},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"__LivelyClassName__":"lively.morphic.Text"},"4125":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":4126},"_Extent":{"__isSmartRef__":true,"id":4127},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4128},"renderContextTable":{"__isSmartRef__":true,"id":4129},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4126":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4127":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4128":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4129":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4130":{"x":104.3910936543557,"y":365.7970312181187,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4131":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":1,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4132":{"style":{"__isSmartRef__":true,"id":4133},"chunkOwner":{"__isSmartRef__":true,"id":4124},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"scaleVertical","__LivelyClassName__":"lively.morphic.TextChunk"},"4133":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4134":{"x":144.65828402366867,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4135":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4136":{"morph":{"__isSmartRef__":true,"id":4124},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4137":{"submorphs":[],"scripts":[],"id":2458,"shape":{"__isSmartRef__":true,"id":4138},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":4142},"name":"scaleHorizontalCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":4143},"priorExtent":{"__isSmartRef__":true,"id":4144},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"layoutProperty":"resizeUniformHorizontal","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"renderContextTable":{"__isSmartRef__":true,"id":4145},"eventHandler":{"__isSmartRef__":true,"id":4146},"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"4138":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":4139},"_Extent":{"__isSmartRef__":true,"id":4140},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":4141},"__LivelyClassName__":"lively.morphic.Shapes.External"},"4139":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4140":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4141":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"4142":{"x":225,"y":348,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4143":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4144":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4145":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4146":{"morph":{"__isSmartRef__":true,"id":4137},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4147":{"submorphs":[],"scripts":[],"id":2459,"shape":{"__isSmartRef__":true,"id":4148},"droppingEnabled":true,"halosEnabled":true,"showsHalos":false,"_Position":{"__isSmartRef__":true,"id":4152},"name":"scaleVerticalCheckBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":4153},"priorExtent":{"__isSmartRef__":true,"id":4154},"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"layoutProperty":"resizeUniformVertical","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"renderContextTable":{"__isSmartRef__":true,"id":4155},"eventHandler":{"__isSmartRef__":true,"id":4156},"owner":{"__isSmartRef__":true,"id":3458},"_Rotation":0,"__LivelyClassName__":"lively.morphic.CheckBox"},"4148":{"stringifiedShapeNode":"","extent":{"__isSmartRef__":true,"id":4149},"_Extent":{"__isSmartRef__":true,"id":4150},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":4151},"__LivelyClassName__":"lively.morphic.Shapes.External"},"4149":{"x":12,"y":12,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4150":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4151":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML"},"4152":{"x":225,"y":364,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4153":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4154":{"x":12,"y":12,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4155":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4156":{"morph":{"__isSmartRef__":true,"id":4147},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4157":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":4158},"_Extent":{"__isSmartRef__":true,"id":4159},"_Fill":{"__isSmartRef__":true,"id":4160},"_BorderWidth":1.112,"_BorderColor":{"__isSmartRef__":true,"id":4161},"_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":4162},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4158":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4159":{"x":276.19531039751246,"y":442.2291913973596,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4160":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4161":{"r":0.129,"g":0.129,"b":0.129,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4162":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4163":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","requiredModules":["lively.morphic.ColorChooserDraft"],"migrationLevel":2,"comment":"Very early style editor. Should be merged with text attribute editor somehow.","partName":"StyleEditor","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4164":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"target","targetObj":{"__isSmartRef__":true,"id":3459},"targetMethodName":"setTextString","converterString":"function (m) {\n\t\tif (!m) return 'no target'\n\t\treturn 'target: ' + m.name;\n\t}","updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4165},"__LivelyClassName__":"AttributeConnection"},"4165":{"converter":{"__isSmartRef__":true,"id":4166}},"4166":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4167},"source":"function (m) {\n\t\tif (!m) return 'no target'\n\t\treturn 'target: ' + m.name;\n\t}","funcProperties":{"__isSmartRef__":true,"id":4168},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4167":{},"4168":{},"4169":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"globalTransform","targetObj":{"__isSmartRef__":true,"id":3997},"targetMethodName":"alignToMagnet","dependendConnections":[{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182},{"__isSmartRef__":true,"id":4170},{"__isSmartRef__":true,"id":4171},{"__isSmartRef__":true,"id":4172},{"__isSmartRef__":true,"id":4173},{"__isSmartRef__":true,"id":4179},{"__isSmartRef__":true,"id":4180},{"__isSmartRef__":true,"id":4181},{"__isSmartRef__":true,"id":4182}],"oldTransform":{"__isSmartRef__":true,"id":4188},"__SourceModuleName__":"Global.lively.bindings.GeometryBindings","__LivelyClassName__":"lively.morphic.GeometryTransformConnection"},"4170":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4171":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4172":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4173":{"sourceObj":{"__isSmartRef__":true,"id":3458},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4174},"dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4175},"__LivelyClassName__":"AttributeConnection"},"4174":{"source":{"__isSmartRef__":true,"id":3458},"target":{"__isSmartRef__":true,"id":4169}},"4175":{"converter":{"__isSmartRef__":true,"id":4176}},"4176":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4177},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":4178},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4177":{"source":{"__isSmartRef__":true,"id":3458},"target":{"__isSmartRef__":true,"id":4169}},"4178":{},"4179":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"_Position","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4180":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"_Scale","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4181":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"_Rotation","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"signalTarget","dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4182":{"sourceObj":{"__isSmartRef__":true,"id":3457},"sourceAttrName":"owner","targetObj":{"__isSmartRef__":true,"id":4169},"targetMethodName":"updateOwners","converterString":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4183},"dependedBy":{"__isSmartRef__":true,"id":4169},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4184},"__LivelyClassName__":"AttributeConnection"},"4183":{"source":{"__isSmartRef__":true,"id":3457},"target":{"__isSmartRef__":true,"id":4169}},"4184":{"converter":{"__isSmartRef__":true,"id":4185}},"4185":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":4186},"source":"function (newOwner, oldOwner) {\n return [newOwner, oldOwner]\n }","funcProperties":{"__isSmartRef__":true,"id":4187},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4186":{"source":{"__isSmartRef__":true,"id":3457},"target":{"__isSmartRef__":true,"id":4169}},"4187":{},"4188":{"d":1,"a":1,"f":917.3854043013202,"e":814.4023448012438,"c":0,"b":0,"matrix_":{"__isSmartRef__":true,"id":4189},"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"4189":{"a":1,"b":0,"c":0,"d":1,"e":814.4023448012438,"f":917.3854043013202,"__LivelyClassName__":"lively.morphic.Similitude","__SourceModuleName__":"Global.lively.morphic.Core"},"4190":{"x":277.19531039751246,"y":442.2291913973596,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4191":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4192":{"morph":{"__isSmartRef__":true,"id":3458},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4193":{"resizeWidth":true,"resizeHeight":true},"4194":{"setupConnections":{"__isSmartRef__":true,"id":4195},"reset":{"__isSmartRef__":true,"id":4197},"setTarget":{"__isSmartRef__":true,"id":4199}},"4195":{"time":{"__isSmartRef__":true,"id":4196},"user":"robertkrahn"},"4196":{"isSerializedDate":true,"string":"Fri Jun 24 2011 17:27:55 GMT+0200 (CEST)"},"4197":{"time":{"__isSmartRef__":true,"id":4198},"user":"robertkrahn"},"4198":{"isSerializedDate":true,"string":"Fri Jun 24 2011 17:58:17 GMT+0200 (CEST)"},"4199":{"time":{"__isSmartRef__":true,"id":4200},"user":"robertkrahn"},"4200":{"isSerializedDate":true,"string":"Fri Jun 24 2011 17:28:31 GMT+0200 (CEST)"},"4201":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4202":{"setTarget":{"__isSmartRef__":true,"id":4203},"resetTarget":{"__isSmartRef__":true,"id":4206},"setTargetStyle":{"__isSmartRef__":true,"id":4209},"setupConnections":{"__isSmartRef__":true,"id":4212},"reset":{"__isSmartRef__":true,"id":4215},"setLayouter":{"__isSmartRef__":true,"id":4218},"openLayoutConfigurator":{"__isSmartRef__":true,"id":4225}},"4203":{"varMapping":{"__isSmartRef__":true,"id":4204},"source":"function setTarget(morph) {\n\tthis.target = morph;\n\tthis.get('StyleFillColorField').setFill(morph.getFill());\t\n\tthis.get('StyleBorderColorField').setFill(morph.getBorderColor());\n\n\tthis.get('borderWidthSlider').setValue(morph.getBorderWidth());\n\n\tthis.get('borderRadiusSlider').setValue(morph.getBorderRadius());\n\n this.get('opacitySlider').setValue(morph.getOpacity());\n\n this.get('borderStyleList').setSelection(morph.getBorderStyle());\n\n var layouter = morph.getLayouter();\n this.get('layouterList').setSelection(layouter && layouter.constructor.type);\n\n\t// layout\n\tvar layout = morph.layout;\n\tif (!layout) return;\n this.layoutProps.forEach(function(attr) {\n\t\tvar checkBox = this.get(attr + 'CheckBox');\n\t\tcheckBox.setChecked(layout[attr])\n\t}, this);\n\n\n}","funcProperties":{"__isSmartRef__":true,"id":4205},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4204":{"this":{"__isSmartRef__":true,"id":3458}},"4205":{},"4206":{"varMapping":{"__isSmartRef__":true,"id":4207},"source":"function resetTarget() {\n\tthis.target = undefined;\n}","funcProperties":{"__isSmartRef__":true,"id":4208},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4207":{"this":{"__isSmartRef__":true,"id":3458}},"4208":{},"4209":{"varMapping":{"__isSmartRef__":true,"id":4210},"source":"function setTargetStyle(style) {\n\t// alert(JSON.stringify(style))\n\tif (this.target) this.target.applyStyle(style)\n}","funcProperties":{"__isSmartRef__":true,"id":4211},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4210":{"this":{"__isSmartRef__":true,"id":3458}},"4211":{},"4212":{"varMapping":{"__isSmartRef__":true,"id":4213},"source":"function setupConnections() {\n// newShowMorph(this.get('borderWidthSlider'))\n// this.get('borderWidthSlider').attributeConnections\n// disconnectAll(this.get('borderWidthSlider'))\n// \n// newShowMorph(this.get('borderRadiusSlider'))\n// this.get('borderRadiusSlider').attributeConnections\n// disconnectAll(this.get('borderRadiusSlider'))\n\n\n\tconnect(this.get('borderWidthSlider'), 'value',\n\tthis, \"setTargetStyle\", {\n\t\tconverter: function(v) { return {borderWidth: v} }});\n\n\tconnect(this.get('borderRadiusSlider'), 'value',\n\t\tthis, \"setTargetStyle\", {\n\t\tconverter: function(v) { return {borderRadius: v} }});\n\n\tconnect(this.get('opacitySlider'), 'value',\n\t\tthis, \"setTargetStyle\", {\n\t\tconverter: function(v) { return {opacity: v} }});\n\n\tconnect(this.get('borderStyleList'), 'selection',\n\t\tthis, \"setTargetStyle\", {\n\t\tconverter: function(v) { return {borderStyle: v} }});\n\n connect(this.get('layouterList'), 'selection', this, 'setLayouter')\n\n this.layoutProps.forEach(function(attr) {\n \tvar checkBox = this.get(attr + 'CheckBox');\n \tcheckBox.layoutProperty = attr;\n \tconnect(checkBox, 'checked', this,\n \t\"setTargetStyle\", { converter:\n \tfunction(bool) {\n \t\tvar style = {},\n \t\t\tprop = this.sourceObj.layoutProperty;\n \t\tstyle[prop] = bool;\n \t\treturn style\n \t}})\n }, this);\n\n}","funcProperties":{"__isSmartRef__":true,"id":4214},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4213":{"this":{"__isSmartRef__":true,"id":3458}},"4214":{},"4215":{"varMapping":{"__isSmartRef__":true,"id":4216},"source":"function reset() {\n\tthis.get('borderWidthSlider').valueScale = 20\n\tthis.get('borderRadiusSlider').valueScale = 50\n this.get('layouterList').setSelection(null)\n this.layoutProps = ['adjustForNewBounds', 'resizeWidth', 'resizeHeight', 'moveVertical', 'moveHorizontal', 'centeredHorizontal', 'centeredVertical', 'scaleHorizontal', 'scaleVertical'];\n this.resetTarget()\n}","funcProperties":{"__isSmartRef__":true,"id":4217},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4216":{"this":{"__isSmartRef__":true,"id":3458}},"4217":{},"4218":{"varMapping":{"__isSmartRef__":true,"id":4219},"source":"function setLayouter(layoutClassName) {\n if (layoutClassName && layoutClassName !== 'none')\n var klass = Class.forName(layoutClassName);\n if (!this.target) return;\n this.target.setLayouter(klass && new klass(this.target));\n this.target.applyLayout();\n}","funcProperties":{"__isSmartRef__":true,"id":4224},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4219":{"this":{"__isSmartRef__":true,"id":3458},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":4220}},"4220":{"$super":{"__isSmartRef__":true,"id":4221}},"4221":{"varMapping":{"__isSmartRef__":true,"id":4222},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":4223},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4222":{"obj":{"__isSmartRef__":true,"id":3458},"name":"setLayouter"},"4223":{},"4224":{},"4225":{"varMapping":{"__isSmartRef__":true,"id":4226},"source":"function openLayoutConfigurator() {\n if (!this.target.getLayouter()) {\n alert('no layout selected');\n return;\n }\n var configurator = lively.PartsBin.getPart('LayoutConfigurator', 'PartsBin/Layout');\n configurator.openInWorld();\n configurator.align(\n configurator.bounds().center(), this.world().visibleBounds().center())\n configurator.setTarget(this.target.getLayouter());\n}","funcProperties":{"__isSmartRef__":true,"id":4227},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4226":{"this":{"__isSmartRef__":true,"id":3458}},"4227":{},"4228":{"submorphs":[{"__isSmartRef__":true,"id":4229},{"__isSmartRef__":true,"id":4243},{"__isSmartRef__":true,"id":4289},{"__isSmartRef__":true,"id":4322}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4356},"id":2460,"renderContextTable":{"__isSmartRef__":true,"id":4361},"eventHandler":{"__isSmartRef__":true,"id":4362},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4363},"_Position":{"__isSmartRef__":true,"id":4364},"windowMorph":{"__isSmartRef__":true,"id":3457},"label":{"__isSmartRef__":true,"id":4229},"closeButton":{"__isSmartRef__":true,"id":4243},"menuButton":{"__isSmartRef__":true,"id":4289},"collapseButton":{"__isSmartRef__":true,"id":4322},"priorExtent":{"__isSmartRef__":true,"id":4365},"owner":{"__isSmartRef__":true,"id":3457},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"4229":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4230},"id":2461,"renderContextTable":{"__isSmartRef__":true,"id":4235},"textChunks":[{"__isSmartRef__":true,"id":4236}],"eventHandler":{"__isSmartRef__":true,"id":4238},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":4240},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":4228},"priorExtent":{"__isSmartRef__":true,"id":4241},"_MaxTextWidth":217.19531039751246,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":4242},"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"4230":{"_Position":{"__isSmartRef__":true,"id":4231},"renderContextTable":{"__isSmartRef__":true,"id":4232},"_Extent":{"__isSmartRef__":true,"id":4233},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4234},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4231":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4232":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4233":{"x":217.19531039751246,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4234":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4235":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4236":{"style":{"__isSmartRef__":true,"id":4237},"chunkOwner":{"__isSmartRef__":true,"id":4229},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"StyleEditor","__LivelyClassName__":"lively.morphic.TextChunk"},"4237":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4238":{"morph":{"__isSmartRef__":true,"id":4229},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4239":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"4240":{"resizeWidth":true},"4241":{"x":217.19531039751246,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4242":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4243":{"submorphs":[{"__isSmartRef__":true,"id":4244}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4256},"id":2462,"renderContextTable":{"__isSmartRef__":true,"id":4271},"eventHandler":{"__isSmartRef__":true,"id":4272},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4273},"priorExtent":{"__isSmartRef__":true,"id":4274},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4261},"lighterFill":{"__isSmartRef__":true,"id":4275},"label":{"__isSmartRef__":true,"id":4244},"owner":{"__isSmartRef__":true,"id":4228},"layout":{"__isSmartRef__":true,"id":4284},"attributeConnections":[{"__isSmartRef__":true,"id":4285},{"__isSmartRef__":true,"id":4287}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"4244":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4245},"id":2463,"renderContextTable":{"__isSmartRef__":true,"id":4249},"textChunks":[{"__isSmartRef__":true,"id":4250}],"eventHandler":{"__isSmartRef__":true,"id":4252},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4253},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4254},"priorExtent":{"__isSmartRef__":true,"id":4255},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4243},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"4245":{"_Position":{"__isSmartRef__":true,"id":4246},"renderContextTable":{"__isSmartRef__":true,"id":4247},"_Extent":{"__isSmartRef__":true,"id":4248},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4234},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4246":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4247":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4248":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4249":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4250":{"style":{"__isSmartRef__":true,"id":4251},"chunkOwner":{"__isSmartRef__":true,"id":4244},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"4251":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4252":{"morph":{"__isSmartRef__":true,"id":4244},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4253":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"4254":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4255":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4256":{"_Position":{"__isSmartRef__":true,"id":4257},"renderContextTable":{"__isSmartRef__":true,"id":4258},"_Extent":{"__isSmartRef__":true,"id":4259},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4260},"_Fill":{"__isSmartRef__":true,"id":4261},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4257":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4258":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4259":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4260":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4261":{"stops":[{"__isSmartRef__":true,"id":4262},{"__isSmartRef__":true,"id":4264},{"__isSmartRef__":true,"id":4266},{"__isSmartRef__":true,"id":4268}],"vector":{"__isSmartRef__":true,"id":4270},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4262":{"offset":0,"color":{"__isSmartRef__":true,"id":4263}},"4263":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4264":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4265}},"4265":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4266":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4267}},"4267":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4268":{"offset":1,"color":{"__isSmartRef__":true,"id":4269}},"4269":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4270":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"4271":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4272":{"morph":{"__isSmartRef__":true,"id":4243},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4273":{"x":256.19531039751246,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4274":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4275":{"stops":[{"__isSmartRef__":true,"id":4276},{"__isSmartRef__":true,"id":4278},{"__isSmartRef__":true,"id":4280},{"__isSmartRef__":true,"id":4282}],"vector":{"__isSmartRef__":true,"id":4270},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4276":{"offset":0,"color":{"__isSmartRef__":true,"id":4277}},"4277":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4278":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4279}},"4279":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4280":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4281}},"4281":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4282":{"offset":1,"color":{"__isSmartRef__":true,"id":4283}},"4283":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4284":{"moveHorizontal":true},"4285":{"sourceObj":{"__isSmartRef__":true,"id":4243},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3457},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4286},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4286":{"source":{"__isSmartRef__":true,"id":4243},"target":{"__isSmartRef__":true,"id":3457}},"4287":{"sourceObj":{"__isSmartRef__":true,"id":4243},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3457},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4288},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4288":{"source":{"__isSmartRef__":true,"id":4243},"target":{"__isSmartRef__":true,"id":3457}},"4289":{"submorphs":[{"__isSmartRef__":true,"id":4290}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4301},"id":2464,"renderContextTable":{"__isSmartRef__":true,"id":4305},"eventHandler":{"__isSmartRef__":true,"id":4306},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4307},"priorExtent":{"__isSmartRef__":true,"id":4308},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4261},"lighterFill":{"__isSmartRef__":true,"id":4309},"label":{"__isSmartRef__":true,"id":4290},"owner":{"__isSmartRef__":true,"id":4228},"attributeConnections":[{"__isSmartRef__":true,"id":4318},{"__isSmartRef__":true,"id":4320}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"4290":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4291},"id":2465,"renderContextTable":{"__isSmartRef__":true,"id":4295},"textChunks":[{"__isSmartRef__":true,"id":4296}],"eventHandler":{"__isSmartRef__":true,"id":4298},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4253},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4299},"priorExtent":{"__isSmartRef__":true,"id":4300},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4289},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"4291":{"_Position":{"__isSmartRef__":true,"id":4292},"renderContextTable":{"__isSmartRef__":true,"id":4293},"_Extent":{"__isSmartRef__":true,"id":4294},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4234},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4292":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4293":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4294":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4295":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4296":{"style":{"__isSmartRef__":true,"id":4297},"chunkOwner":{"__isSmartRef__":true,"id":4290},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"4297":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4298":{"morph":{"__isSmartRef__":true,"id":4290},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4299":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4300":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4301":{"_Position":{"__isSmartRef__":true,"id":4302},"renderContextTable":{"__isSmartRef__":true,"id":4303},"_Extent":{"__isSmartRef__":true,"id":4304},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4260},"_Fill":{"__isSmartRef__":true,"id":4261},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4302":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4303":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4304":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4305":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4306":{"morph":{"__isSmartRef__":true,"id":4289},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4307":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4308":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4309":{"stops":[{"__isSmartRef__":true,"id":4310},{"__isSmartRef__":true,"id":4312},{"__isSmartRef__":true,"id":4314},{"__isSmartRef__":true,"id":4316}],"vector":{"__isSmartRef__":true,"id":4270},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4310":{"offset":0,"color":{"__isSmartRef__":true,"id":4311}},"4311":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4312":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4313}},"4313":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4314":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4315}},"4315":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4316":{"offset":1,"color":{"__isSmartRef__":true,"id":4317}},"4317":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4318":{"sourceObj":{"__isSmartRef__":true,"id":4289},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3457},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4319},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4319":{"source":{"__isSmartRef__":true,"id":4289},"target":{"__isSmartRef__":true,"id":3457}},"4320":{"sourceObj":{"__isSmartRef__":true,"id":4289},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3457},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4321},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4321":{"source":{"__isSmartRef__":true,"id":4289},"target":{"__isSmartRef__":true,"id":3457}},"4322":{"submorphs":[{"__isSmartRef__":true,"id":4323}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4334},"id":2466,"renderContextTable":{"__isSmartRef__":true,"id":4338},"eventHandler":{"__isSmartRef__":true,"id":4339},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4340},"priorExtent":{"__isSmartRef__":true,"id":4341},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4261},"lighterFill":{"__isSmartRef__":true,"id":4342},"label":{"__isSmartRef__":true,"id":4323},"owner":{"__isSmartRef__":true,"id":4228},"layout":{"__isSmartRef__":true,"id":4351},"attributeConnections":[{"__isSmartRef__":true,"id":4352},{"__isSmartRef__":true,"id":4354}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"4323":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4324},"id":2467,"renderContextTable":{"__isSmartRef__":true,"id":4328},"textChunks":[{"__isSmartRef__":true,"id":4329}],"eventHandler":{"__isSmartRef__":true,"id":4331},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4253},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4332},"priorExtent":{"__isSmartRef__":true,"id":4333},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4322},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"4324":{"_Position":{"__isSmartRef__":true,"id":4325},"renderContextTable":{"__isSmartRef__":true,"id":4326},"_Extent":{"__isSmartRef__":true,"id":4327},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4234},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4325":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4326":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4327":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4328":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4329":{"style":{"__isSmartRef__":true,"id":4330},"chunkOwner":{"__isSmartRef__":true,"id":4323},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"4330":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4331":{"morph":{"__isSmartRef__":true,"id":4323},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4332":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4333":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4334":{"_Position":{"__isSmartRef__":true,"id":4335},"renderContextTable":{"__isSmartRef__":true,"id":4336},"_Extent":{"__isSmartRef__":true,"id":4337},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4260},"_Fill":{"__isSmartRef__":true,"id":4261},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4335":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4336":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4337":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4338":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4339":{"morph":{"__isSmartRef__":true,"id":4322},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4340":{"x":237.19531039751246,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4341":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4342":{"stops":[{"__isSmartRef__":true,"id":4343},{"__isSmartRef__":true,"id":4345},{"__isSmartRef__":true,"id":4347},{"__isSmartRef__":true,"id":4349}],"vector":{"__isSmartRef__":true,"id":4270},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4343":{"offset":0,"color":{"__isSmartRef__":true,"id":4344}},"4344":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4345":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4346}},"4346":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4347":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4348}},"4348":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4349":{"offset":1,"color":{"__isSmartRef__":true,"id":4350}},"4350":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4351":{"moveHorizontal":true},"4352":{"sourceObj":{"__isSmartRef__":true,"id":4322},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3457},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4353},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4353":{"source":{"__isSmartRef__":true,"id":4322},"target":{"__isSmartRef__":true,"id":3457}},"4354":{"sourceObj":{"__isSmartRef__":true,"id":4322},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3457},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4355},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4355":{"source":{"__isSmartRef__":true,"id":4322},"target":{"__isSmartRef__":true,"id":3457}},"4356":{"_Position":{"__isSmartRef__":true,"id":4357},"renderContextTable":{"__isSmartRef__":true,"id":4358},"_Extent":{"__isSmartRef__":true,"id":4359},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4360},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4357":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4358":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4359":{"x":276.19531039751246,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4360":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4361":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4362":{"morph":{"__isSmartRef__":true,"id":4228},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4363":{"resizeWidth":true,"adjustForNewBounds":true},"4364":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4365":{"x":276.19531039751246,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4366":{"renderContextTable":{"__isSmartRef__":true,"id":4367},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":4368},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4367":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4368":{"x":276.19531039751246,"y":464.2291913973595,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4369":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4370":{"morph":{"__isSmartRef__":true,"id":3457},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4371":{"adjustForNewBounds":true},"4372":{"x":276.19531039751246,"y":464.2291913973595,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4373":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","requiredModules":["lively.morphic.ColorChooserDraft"],"migrationLevel":2,"comment":"Very early style editor. Should be merged with text attribute editor somehow.","partName":"StyleEditor","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"4374":{"x":2037,"y":1412,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4375":{"x":814.4023448012438,"y":895.3854043013202,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4376":{"setTarget":{"__isSmartRef__":true,"id":4377}},"4377":{"varMapping":{"__isSmartRef__":true,"id":4378},"source":"function setTarget(morph) {\n\tthis.targetMorph.setTarget(morph)\n}","funcProperties":{"__isSmartRef__":true,"id":4379},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"4378":{"this":{"__isSmartRef__":true,"id":3457}},"4379":{},"4380":{"submorphs":[{"__isSmartRef__":true,"id":4381},{"__isSmartRef__":true,"id":4394}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4528},"id":3322,"renderContextTable":{"__isSmartRef__":true,"id":4531},"eventHandler":{"__isSmartRef__":true,"id":4532},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":4533},"LK2":true,"_Position":{"__isSmartRef__":true,"id":4534},"priorExtent":{"__isSmartRef__":true,"id":4535},"targetMorph":{"__isSmartRef__":true,"id":4381},"titleBar":{"__isSmartRef__":true,"id":4394},"contentOffset":{"__isSmartRef__":true,"id":4391},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4381":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4382},"id":3321,"renderContextTable":{"__isSmartRef__":true,"id":4387},"textChunks":[{"__isSmartRef__":true,"id":4388}],"eventHandler":{"__isSmartRef__":true,"id":4390},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4391},"priorExtent":{"__isSmartRef__":true,"id":4392},"_MaxTextWidth":500,"_MaxTextHeight":200,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4380},"layout":{"__isSmartRef__":true,"id":4393},"doitContext":{"__isSmartRef__":true,"id":3398},"priorSelectionRange":[20,13],"charsReplaced":"width","lastFindLoc":14,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4382":{"_Position":{"__isSmartRef__":true,"id":4383},"renderContextTable":{"__isSmartRef__":true,"id":4384},"_Extent":{"__isSmartRef__":true,"id":4385},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":4386},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4383":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4384":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4385":{"x":500,"y":200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4386":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4387":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4388":{"style":{"__isSmartRef__":true,"id":4389},"chunkOwner":{"__isSmartRef__":true,"id":4381},"storedString":"this.bounds().","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4389":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4390":{"morph":{"__isSmartRef__":true,"id":4381},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4391":{"x":0,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4392":{"x":500,"y":200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4393":{"resizeWidth":true,"resizeHeight":true},"4394":{"submorphs":[{"__isSmartRef__":true,"id":4395},{"__isSmartRef__":true,"id":4407},{"__isSmartRef__":true,"id":4452},{"__isSmartRef__":true,"id":4485}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4519},"id":3323,"renderContextTable":{"__isSmartRef__":true,"id":4523},"eventHandler":{"__isSmartRef__":true,"id":4524},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4525},"_Position":{"__isSmartRef__":true,"id":4526},"windowMorph":{"__isSmartRef__":true,"id":4380},"label":{"__isSmartRef__":true,"id":4395},"closeButton":{"__isSmartRef__":true,"id":4407},"menuButton":{"__isSmartRef__":true,"id":4452},"collapseButton":{"__isSmartRef__":true,"id":4485},"priorExtent":{"__isSmartRef__":true,"id":4527},"owner":{"__isSmartRef__":true,"id":4380},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4395":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4396},"id":3324,"renderContextTable":{"__isSmartRef__":true,"id":4400},"textChunks":[{"__isSmartRef__":true,"id":4401}],"eventHandler":{"__isSmartRef__":true,"id":4403},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1227},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":4404},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":4394},"priorExtent":{"__isSmartRef__":true,"id":4405},"_MaxTextWidth":441,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":4406},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4396":{"_Position":{"__isSmartRef__":true,"id":4397},"renderContextTable":{"__isSmartRef__":true,"id":4398},"_Extent":{"__isSmartRef__":true,"id":4399},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"_BorderRadius":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4397":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4398":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4399":{"x":441,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4400":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4401":{"style":{"__isSmartRef__":true,"id":4402},"chunkOwner":{"__isSmartRef__":true,"id":4395},"storedString":"Inspector for ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4402":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4403":{"morph":{"__isSmartRef__":true,"id":4395},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4404":{"resizeWidth":true},"4405":{"x":0,"y":14,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4406":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4407":{"submorphs":[{"__isSmartRef__":true,"id":4408}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4420},"id":3325,"renderContextTable":{"__isSmartRef__":true,"id":4434},"eventHandler":{"__isSmartRef__":true,"id":4435},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4436},"priorExtent":{"__isSmartRef__":true,"id":4437},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4438},"label":{"__isSmartRef__":true,"id":4408},"owner":{"__isSmartRef__":true,"id":4394},"layout":{"__isSmartRef__":true,"id":4447},"attributeConnections":[{"__isSmartRef__":true,"id":4448},{"__isSmartRef__":true,"id":4450}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4408":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4409},"id":3326,"renderContextTable":{"__isSmartRef__":true,"id":4413},"textChunks":[{"__isSmartRef__":true,"id":4414}],"eventHandler":{"__isSmartRef__":true,"id":4416},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4417},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4418},"priorExtent":{"__isSmartRef__":true,"id":4419},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4407},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4409":{"_Position":{"__isSmartRef__":true,"id":4410},"renderContextTable":{"__isSmartRef__":true,"id":4411},"_Extent":{"__isSmartRef__":true,"id":4412},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4410":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4411":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4412":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4413":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4414":{"style":{"__isSmartRef__":true,"id":4415},"chunkOwner":{"__isSmartRef__":true,"id":4408},"storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4415":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4416":{"morph":{"__isSmartRef__":true,"id":4408},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4417":{"x":0,"y":3,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4418":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4419":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4420":{"_Position":{"__isSmartRef__":true,"id":4421},"renderContextTable":{"__isSmartRef__":true,"id":4422},"_Extent":{"__isSmartRef__":true,"id":4423},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_StrokeOpacity":0,"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4421":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4422":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4423":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4424":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4425":{"stops":[{"__isSmartRef__":true,"id":4426},{"__isSmartRef__":true,"id":4428},{"__isSmartRef__":true,"id":4430},{"__isSmartRef__":true,"id":4432}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4426":{"offset":0,"color":{"__isSmartRef__":true,"id":4427}},"4427":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4428":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4429}},"4429":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4430":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4431}},"4431":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4432":{"offset":1,"color":{"__isSmartRef__":true,"id":4433}},"4433":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4434":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4435":{"morph":{"__isSmartRef__":true,"id":4407},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4436":{"x":480,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4437":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4438":{"stops":[{"__isSmartRef__":true,"id":4439},{"__isSmartRef__":true,"id":4441},{"__isSmartRef__":true,"id":4443},{"__isSmartRef__":true,"id":4445}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4439":{"offset":0,"color":{"__isSmartRef__":true,"id":4440}},"4440":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4441":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4442}},"4442":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4443":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4444}},"4444":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4445":{"offset":1,"color":{"__isSmartRef__":true,"id":4446}},"4446":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4447":{"moveHorizontal":true},"4448":{"sourceObj":{"__isSmartRef__":true,"id":4407},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4380},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4449},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4449":{"source":{"__isSmartRef__":true,"id":4407},"target":{"__isSmartRef__":true,"id":4380}},"4450":{"sourceObj":{"__isSmartRef__":true,"id":4407},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4380},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4451},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4451":{"source":{"__isSmartRef__":true,"id":4407},"target":{"__isSmartRef__":true,"id":4380}},"4452":{"submorphs":[{"__isSmartRef__":true,"id":4453}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4464},"id":3327,"renderContextTable":{"__isSmartRef__":true,"id":4468},"eventHandler":{"__isSmartRef__":true,"id":4469},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4470},"priorExtent":{"__isSmartRef__":true,"id":4471},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4472},"label":{"__isSmartRef__":true,"id":4453},"owner":{"__isSmartRef__":true,"id":4394},"attributeConnections":[{"__isSmartRef__":true,"id":4481},{"__isSmartRef__":true,"id":4483}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4453":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4454},"id":3328,"renderContextTable":{"__isSmartRef__":true,"id":4458},"textChunks":[{"__isSmartRef__":true,"id":4459}],"eventHandler":{"__isSmartRef__":true,"id":4461},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4417},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4462},"priorExtent":{"__isSmartRef__":true,"id":4463},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4452},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4454":{"_Position":{"__isSmartRef__":true,"id":4455},"renderContextTable":{"__isSmartRef__":true,"id":4456},"_Extent":{"__isSmartRef__":true,"id":4457},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4455":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4456":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4457":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4458":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4459":{"style":{"__isSmartRef__":true,"id":4460},"chunkOwner":{"__isSmartRef__":true,"id":4453},"storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4460":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4461":{"morph":{"__isSmartRef__":true,"id":4453},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4462":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4463":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4464":{"_Position":{"__isSmartRef__":true,"id":4465},"renderContextTable":{"__isSmartRef__":true,"id":4466},"_Extent":{"__isSmartRef__":true,"id":4467},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_StrokeOpacity":0,"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4465":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4466":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4467":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4468":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4469":{"morph":{"__isSmartRef__":true,"id":4452},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4470":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4471":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4472":{"stops":[{"__isSmartRef__":true,"id":4473},{"__isSmartRef__":true,"id":4475},{"__isSmartRef__":true,"id":4477},{"__isSmartRef__":true,"id":4479}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4473":{"offset":0,"color":{"__isSmartRef__":true,"id":4474}},"4474":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4475":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4476}},"4476":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4477":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4478}},"4478":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4479":{"offset":1,"color":{"__isSmartRef__":true,"id":4480}},"4480":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4481":{"sourceObj":{"__isSmartRef__":true,"id":4452},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4380},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4482},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4482":{"source":{"__isSmartRef__":true,"id":4452},"target":{"__isSmartRef__":true,"id":4380}},"4483":{"sourceObj":{"__isSmartRef__":true,"id":4452},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4380},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4484},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4484":{"source":{"__isSmartRef__":true,"id":4452},"target":{"__isSmartRef__":true,"id":4380}},"4485":{"submorphs":[{"__isSmartRef__":true,"id":4486}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4497},"id":3329,"renderContextTable":{"__isSmartRef__":true,"id":4501},"eventHandler":{"__isSmartRef__":true,"id":4502},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4503},"priorExtent":{"__isSmartRef__":true,"id":4504},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4505},"label":{"__isSmartRef__":true,"id":4486},"owner":{"__isSmartRef__":true,"id":4394},"layout":{"__isSmartRef__":true,"id":4514},"attributeConnections":[{"__isSmartRef__":true,"id":4515},{"__isSmartRef__":true,"id":4517}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4486":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4487},"id":3330,"renderContextTable":{"__isSmartRef__":true,"id":4491},"textChunks":[{"__isSmartRef__":true,"id":4492}],"eventHandler":{"__isSmartRef__":true,"id":4494},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4417},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4495},"priorExtent":{"__isSmartRef__":true,"id":4496},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4485},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4487":{"_Position":{"__isSmartRef__":true,"id":4488},"renderContextTable":{"__isSmartRef__":true,"id":4489},"_Extent":{"__isSmartRef__":true,"id":4490},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4488":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4489":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4490":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4491":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4492":{"style":{"__isSmartRef__":true,"id":4493},"chunkOwner":{"__isSmartRef__":true,"id":4486},"storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4493":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4494":{"morph":{"__isSmartRef__":true,"id":4486},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4495":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4496":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4497":{"_Position":{"__isSmartRef__":true,"id":4498},"renderContextTable":{"__isSmartRef__":true,"id":4499},"_Extent":{"__isSmartRef__":true,"id":4500},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_StrokeOpacity":0,"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4498":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4499":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4500":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4501":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4502":{"morph":{"__isSmartRef__":true,"id":4485},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4503":{"x":461,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4504":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4505":{"stops":[{"__isSmartRef__":true,"id":4506},{"__isSmartRef__":true,"id":4508},{"__isSmartRef__":true,"id":4510},{"__isSmartRef__":true,"id":4512}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4506":{"offset":0,"color":{"__isSmartRef__":true,"id":4507}},"4507":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4508":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4509}},"4509":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4510":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4511}},"4511":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4512":{"offset":1,"color":{"__isSmartRef__":true,"id":4513}},"4513":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4514":{"moveHorizontal":true},"4515":{"sourceObj":{"__isSmartRef__":true,"id":4485},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4380},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4516},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4516":{"source":{"__isSmartRef__":true,"id":4485},"target":{"__isSmartRef__":true,"id":4380}},"4517":{"sourceObj":{"__isSmartRef__":true,"id":4485},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4380},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4518},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4518":{"source":{"__isSmartRef__":true,"id":4485},"target":{"__isSmartRef__":true,"id":4380}},"4519":{"_Position":{"__isSmartRef__":true,"id":4520},"renderContextTable":{"__isSmartRef__":true,"id":4521},"_Extent":{"__isSmartRef__":true,"id":4522},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1205},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4520":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4521":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4522":{"x":500,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4523":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4524":{"morph":{"__isSmartRef__":true,"id":4394},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4525":{"resizeWidth":true,"adjustForNewBounds":true},"4526":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4527":{"x":500,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4528":{"renderContextTable":{"__isSmartRef__":true,"id":4529},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":4530},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4529":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4530":{"x":500,"y":222,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4531":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4532":{"morph":{"__isSmartRef__":true,"id":4380},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4533":{"adjustForNewBounds":true},"4534":{"x":1300,"y":891,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4535":{"x":500,"y":222,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4536":{"submorphs":[{"__isSmartRef__":true,"id":4537},{"__isSmartRef__":true,"id":4660}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8350},"id":28,"renderContextTable":{"__isSmartRef__":true,"id":8353},"eventHandler":{"__isSmartRef__":true,"id":8354},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":8355},"LK2":true,"_Position":{"__isSmartRef__":true,"id":8356},"priorExtent":{"__isSmartRef__":true,"id":8357},"targetMorph":{"__isSmartRef__":true,"id":4660},"titleBar":{"__isSmartRef__":true,"id":4537},"contentOffset":{"__isSmartRef__":true,"id":8349},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"_Rotation":0,"_Scale":1,"__SourceModuleName__":"Global.lively.morphic.Widgets","prevDragPos":{"__isSmartRef__":true,"id":8358},"__LivelyClassName__":"lively.morphic.Window"},"4537":{"submorphs":[{"__isSmartRef__":true,"id":4538},{"__isSmartRef__":true,"id":4550},{"__isSmartRef__":true,"id":4584},{"__isSmartRef__":true,"id":4617}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4651},"id":29,"renderContextTable":{"__isSmartRef__":true,"id":4655},"eventHandler":{"__isSmartRef__":true,"id":4656},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4657},"_Position":{"__isSmartRef__":true,"id":4658},"windowMorph":{"__isSmartRef__":true,"id":4536},"label":{"__isSmartRef__":true,"id":4538},"closeButton":{"__isSmartRef__":true,"id":4550},"menuButton":{"__isSmartRef__":true,"id":4584},"collapseButton":{"__isSmartRef__":true,"id":4617},"priorExtent":{"__isSmartRef__":true,"id":4659},"owner":{"__isSmartRef__":true,"id":4536},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"4538":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4539},"id":30,"renderContextTable":{"__isSmartRef__":true,"id":4543},"textChunks":[{"__isSmartRef__":true,"id":4544}],"eventHandler":{"__isSmartRef__":true,"id":4546},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":105},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":4547},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":4537},"priorExtent":{"__isSmartRef__":true,"id":4548},"_MaxTextWidth":761,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":4549},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"4539":{"_Position":{"__isSmartRef__":true,"id":4540},"renderContextTable":{"__isSmartRef__":true,"id":4541},"_Extent":{"__isSmartRef__":true,"id":4542},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4540":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4541":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4542":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4543":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4544":{"style":{"__isSmartRef__":true,"id":4545},"chunkOwner":{"__isSmartRef__":true,"id":4538},"storedString":"MorphAddons.js:lively.morphic.World (extension):-- all --:addStatusProgress (proto)","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4545":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4546":{"morph":{"__isSmartRef__":true,"id":4538},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4547":{"resizeWidth":true},"4548":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4549":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4550":{"submorphs":[{"__isSmartRef__":true,"id":4551}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4562},"id":31,"renderContextTable":{"__isSmartRef__":true,"id":4566},"eventHandler":{"__isSmartRef__":true,"id":4567},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4568},"priorExtent":{"__isSmartRef__":true,"id":4569},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":4570},"label":{"__isSmartRef__":true,"id":4551},"owner":{"__isSmartRef__":true,"id":4537},"layout":{"__isSmartRef__":true,"id":4579},"attributeConnections":[{"__isSmartRef__":true,"id":4580},{"__isSmartRef__":true,"id":4582}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"4551":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4552},"id":32,"renderContextTable":{"__isSmartRef__":true,"id":4556},"textChunks":[{"__isSmartRef__":true,"id":4557}],"eventHandler":{"__isSmartRef__":true,"id":4559},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4560},"priorExtent":{"__isSmartRef__":true,"id":4561},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4550},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"4552":{"_Position":{"__isSmartRef__":true,"id":4553},"renderContextTable":{"__isSmartRef__":true,"id":4554},"_Extent":{"__isSmartRef__":true,"id":4555},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4553":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4554":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4555":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4556":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4557":{"style":{"__isSmartRef__":true,"id":4558},"chunkOwner":{"__isSmartRef__":true,"id":4551},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"4558":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4559":{"morph":{"__isSmartRef__":true,"id":4551},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4560":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4561":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4562":{"_Position":{"__isSmartRef__":true,"id":4563},"renderContextTable":{"__isSmartRef__":true,"id":4564},"_Extent":{"__isSmartRef__":true,"id":4565},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4563":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4564":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4565":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4566":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4567":{"morph":{"__isSmartRef__":true,"id":4550},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4568":{"x":800,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4569":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4570":{"stops":[{"__isSmartRef__":true,"id":4571},{"__isSmartRef__":true,"id":4573},{"__isSmartRef__":true,"id":4575},{"__isSmartRef__":true,"id":4577}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4571":{"offset":0,"color":{"__isSmartRef__":true,"id":4572}},"4572":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4573":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4574}},"4574":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4575":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4576}},"4576":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4577":{"offset":1,"color":{"__isSmartRef__":true,"id":4578}},"4578":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4579":{"moveHorizontal":true},"4580":{"sourceObj":{"__isSmartRef__":true,"id":4550},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4536},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4581},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4581":{"source":{"__isSmartRef__":true,"id":4550},"target":{"__isSmartRef__":true,"id":4536}},"4582":{"sourceObj":{"__isSmartRef__":true,"id":4550},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4536},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4583},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4583":{"source":{"__isSmartRef__":true,"id":4550},"target":{"__isSmartRef__":true,"id":4536}},"4584":{"submorphs":[{"__isSmartRef__":true,"id":4585}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4596},"id":33,"renderContextTable":{"__isSmartRef__":true,"id":4600},"eventHandler":{"__isSmartRef__":true,"id":4601},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4602},"priorExtent":{"__isSmartRef__":true,"id":4603},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":4604},"label":{"__isSmartRef__":true,"id":4585},"owner":{"__isSmartRef__":true,"id":4537},"attributeConnections":[{"__isSmartRef__":true,"id":4613},{"__isSmartRef__":true,"id":4615}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"4585":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4586},"id":34,"renderContextTable":{"__isSmartRef__":true,"id":4590},"textChunks":[{"__isSmartRef__":true,"id":4591}],"eventHandler":{"__isSmartRef__":true,"id":4593},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4594},"priorExtent":{"__isSmartRef__":true,"id":4595},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4584},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"4586":{"_Position":{"__isSmartRef__":true,"id":4587},"renderContextTable":{"__isSmartRef__":true,"id":4588},"_Extent":{"__isSmartRef__":true,"id":4589},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4587":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4588":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4589":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4590":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4591":{"style":{"__isSmartRef__":true,"id":4592},"chunkOwner":{"__isSmartRef__":true,"id":4585},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"4592":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4593":{"morph":{"__isSmartRef__":true,"id":4585},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4594":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4595":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4596":{"_Position":{"__isSmartRef__":true,"id":4597},"renderContextTable":{"__isSmartRef__":true,"id":4598},"_Extent":{"__isSmartRef__":true,"id":4599},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4597":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4598":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4599":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4600":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4601":{"morph":{"__isSmartRef__":true,"id":4584},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4602":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4603":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4604":{"stops":[{"__isSmartRef__":true,"id":4605},{"__isSmartRef__":true,"id":4607},{"__isSmartRef__":true,"id":4609},{"__isSmartRef__":true,"id":4611}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4605":{"offset":0,"color":{"__isSmartRef__":true,"id":4606}},"4606":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4607":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4608}},"4608":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4609":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4610}},"4610":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4611":{"offset":1,"color":{"__isSmartRef__":true,"id":4612}},"4612":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4613":{"sourceObj":{"__isSmartRef__":true,"id":4584},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4536},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4614},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4614":{"source":{"__isSmartRef__":true,"id":4584},"target":{"__isSmartRef__":true,"id":4536}},"4615":{"sourceObj":{"__isSmartRef__":true,"id":4584},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4536},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4616},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4616":{"source":{"__isSmartRef__":true,"id":4584},"target":{"__isSmartRef__":true,"id":4536}},"4617":{"submorphs":[{"__isSmartRef__":true,"id":4618}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4629},"id":35,"renderContextTable":{"__isSmartRef__":true,"id":4633},"eventHandler":{"__isSmartRef__":true,"id":4634},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4635},"priorExtent":{"__isSmartRef__":true,"id":4636},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":4637},"label":{"__isSmartRef__":true,"id":4618},"owner":{"__isSmartRef__":true,"id":4537},"layout":{"__isSmartRef__":true,"id":4646},"attributeConnections":[{"__isSmartRef__":true,"id":4647},{"__isSmartRef__":true,"id":4649}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"4618":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4619},"id":36,"renderContextTable":{"__isSmartRef__":true,"id":4623},"textChunks":[{"__isSmartRef__":true,"id":4624}],"eventHandler":{"__isSmartRef__":true,"id":4626},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":4627},"priorExtent":{"__isSmartRef__":true,"id":4628},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4617},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"4619":{"_Position":{"__isSmartRef__":true,"id":4620},"renderContextTable":{"__isSmartRef__":true,"id":4621},"_Extent":{"__isSmartRef__":true,"id":4622},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4620":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4621":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4622":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4623":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4624":{"style":{"__isSmartRef__":true,"id":4625},"chunkOwner":{"__isSmartRef__":true,"id":4618},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"4625":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"4626":{"morph":{"__isSmartRef__":true,"id":4618},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4627":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4628":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4629":{"_Position":{"__isSmartRef__":true,"id":4630},"renderContextTable":{"__isSmartRef__":true,"id":4631},"_Extent":{"__isSmartRef__":true,"id":4632},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4630":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4631":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4632":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4633":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4634":{"morph":{"__isSmartRef__":true,"id":4617},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4635":{"x":781,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4636":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4637":{"stops":[{"__isSmartRef__":true,"id":4638},{"__isSmartRef__":true,"id":4640},{"__isSmartRef__":true,"id":4642},{"__isSmartRef__":true,"id":4644}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"4638":{"offset":0,"color":{"__isSmartRef__":true,"id":4639}},"4639":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4640":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4641}},"4641":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4642":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4643}},"4643":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4644":{"offset":1,"color":{"__isSmartRef__":true,"id":4645}},"4645":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"4646":{"moveHorizontal":true},"4647":{"sourceObj":{"__isSmartRef__":true,"id":4617},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":4536},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4648},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4648":{"source":{"__isSmartRef__":true,"id":4617},"target":{"__isSmartRef__":true,"id":4536}},"4649":{"sourceObj":{"__isSmartRef__":true,"id":4617},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4536},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4650},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"4650":{"source":{"__isSmartRef__":true,"id":4617},"target":{"__isSmartRef__":true,"id":4536}},"4651":{"_Position":{"__isSmartRef__":true,"id":4652},"renderContextTable":{"__isSmartRef__":true,"id":4653},"_Extent":{"__isSmartRef__":true,"id":4654},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":226},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"4652":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4653":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4654":{"x":820,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4655":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4656":{"morph":{"__isSmartRef__":true,"id":4537},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"4657":{"resizeWidth":true,"adjustForNewBounds":true},"4658":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"4659":{"x":820,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4660":{"submorphs":[{"__isSmartRef__":true,"id":4661},{"__isSmartRef__":true,"id":8266},{"__isSmartRef__":true,"id":8299},{"__isSmartRef__":true,"id":4920},{"__isSmartRef__":true,"id":8113},{"__isSmartRef__":true,"id":8160},{"__isSmartRef__":true,"id":8190},{"__isSmartRef__":true,"id":8332},{"__isSmartRef__":true,"id":8229},{"__isSmartRef__":true,"id":4676},{"__isSmartRef__":true,"id":4710},{"__isSmartRef__":true,"id":4744},{"__isSmartRef__":true,"id":4778},{"__isSmartRef__":true,"id":4812},{"__isSmartRef__":true,"id":4846},{"__isSmartRef__":true,"id":4880}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8341},"id":79,"renderContextTable":{"__isSmartRef__":true,"id":8346},"eventHandler":{"__isSmartRef__":true,"id":8347},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":8348},"_Position":{"__isSmartRef__":true,"id":8349},"locationPane":{"__isSmartRef__":true,"id":4661},"codeBaseDirBtn":{"__isSmartRef__":true,"id":8266},"localDirBtn":{"__isSmartRef__":true,"id":8299},"Pane1":{"__isSmartRef__":true,"id":4920},"Pane2":{"__isSmartRef__":true,"id":8113},"Pane3":{"__isSmartRef__":true,"id":8160},"Pane4":{"__isSmartRef__":true,"id":8190},"midResizer":{"__isSmartRef__":true,"id":8332},"sourcePane":{"__isSmartRef__":true,"id":8229},"ownerWidget":{"__isSmartRef__":true,"id":4674},"owner":{"__isSmartRef__":true,"id":4536},"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"4661":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4662},"id":80,"renderContextTable":{"__isSmartRef__":true,"id":4666},"textChunks":[{"__isSmartRef__":true,"id":4667}],"eventHandler":{"__isSmartRef__":true,"id":4669},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4670},"priorExtent":{"__isSmartRef__":true,"id":4671},"_MaxTextWidth":656,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4660},"isInputLine":true,"layout":{"__isSmartRef__":true,"id":4672},"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":4673}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"priorSelectionRange":[0,0],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4662":{"_Position":{"__isSmartRef__":true,"id":4663},"renderContextTable":{"__isSmartRef__":true,"id":4664},"_Extent":{"__isSmartRef__":true,"id":4665},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4663":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4664":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4665":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4666":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4667":{"style":{"__isSmartRef__":true,"id":4668},"chunkOwner":{"__isSmartRef__":true,"id":4661},"storedString":"http://lively-kernel.org/repository/webwerkstatt/lively/morphic/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4668":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4669":{"morph":{"__isSmartRef__":true,"id":4661},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4670":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4671":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4672":{"resizeWidth":true},"4673":{"sourceObj":{"__isSmartRef__":true,"id":4661},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setTargetURL","converter":null,"converterString":"function (value) { return new URL(value) }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8265},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4674":{"buttonCommands":[{"__isSmartRef__":true,"id":4675},{"__isSmartRef__":true,"id":4709},{"__isSmartRef__":true,"id":4743},{"__isSmartRef__":true,"id":4777},{"__isSmartRef__":true,"id":4811},{"__isSmartRef__":true,"id":4845},{"__isSmartRef__":true,"id":4879}],"RootFilters":[{"__isSmartRef__":true,"id":4913}],"Pane1Filters":[{"__isSmartRef__":true,"id":4914},{"__isSmartRef__":true,"id":4915}],"Pane2Filters":[{"__isSmartRef__":true,"id":4916}],"Pane3Filters":[{"__isSmartRef__":true,"id":4917}],"Pane4Filters":[{"__isSmartRef__":true,"id":4918}],"evaluate":true,"panel":{"__isSmartRef__":true,"id":4660},"attributeConnections":[{"__isSmartRef__":true,"id":4919},{"__isSmartRef__":true,"id":8112},{"__isSmartRef__":true,"id":8159},{"__isSmartRef__":true,"id":8189},{"__isSmartRef__":true,"id":8228},{"__isSmartRef__":true,"id":8246}],"SourceString":" addStatusProgress: function(label) {\n return this.addStatusMessageMorph(this.addProgressBar(null, label));\n },","sourceString":" addStatusProgress: function(label) {\n return this.addStatusMessageMorph(this.addProgressBar(null, label));\n },","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"targetURL":{"__isSmartRef__":true,"id":8251},"_rootNode":{"__isSmartRef__":true,"id":4930},"Pane1Selection":{"__isSmartRef__":true,"id":6262},"pane1Selection":{"__isSmartRef__":true,"id":6262},"Pane2Selection":{"__isSmartRef__":true,"id":8131},"pane2Selection":{"__isSmartRef__":true,"id":8131},"Pane3Selection":{"__isSmartRef__":true,"id":8168},"pane3Selection":{"__isSmartRef__":true,"id":8168},"Pane4Selection":{"__isSmartRef__":true,"id":8208},"pane4Selection":{"__isSmartRef__":true,"id":8208},"Pane4Content":[{"__isSmartRef__":true,"id":8197},{"__isSmartRef__":true,"id":8199},{"__isSmartRef__":true,"id":8201},{"__isSmartRef__":true,"id":8203},{"__isSmartRef__":true,"id":8205},{"__isSmartRef__":true,"id":8207},{"__isSmartRef__":true,"id":8209}],"Pane3Content":[{"__isSmartRef__":true,"id":8167},{"__isSmartRef__":true,"id":8169},{"__isSmartRef__":true,"id":8171},{"__isSmartRef__":true,"id":8173}],"Pane2Content":[{"__isSmartRef__":true,"id":8120},{"__isSmartRef__":true,"id":8122},{"__isSmartRef__":true,"id":8124},{"__isSmartRef__":true,"id":8126},{"__isSmartRef__":true,"id":8128},{"__isSmartRef__":true,"id":8130},{"__isSmartRef__":true,"id":8132},{"__isSmartRef__":true,"id":8134},{"__isSmartRef__":true,"id":8136},{"__isSmartRef__":true,"id":8138},{"__isSmartRef__":true,"id":8140},{"__isSmartRef__":true,"id":8142}],"Pane1Content":[{"__isSmartRef__":true,"id":4927},{"__isSmartRef__":true,"id":8062},{"__isSmartRef__":true,"id":8063},{"__isSmartRef__":true,"id":8064},{"__isSmartRef__":true,"id":8065},{"__isSmartRef__":true,"id":8066},{"__isSmartRef__":true,"id":8067},{"__isSmartRef__":true,"id":8068},{"__isSmartRef__":true,"id":8069},{"__isSmartRef__":true,"id":8070},{"__isSmartRef__":true,"id":8071},{"__isSmartRef__":true,"id":8072},{"__isSmartRef__":true,"id":8073},{"__isSmartRef__":true,"id":8074},{"__isSmartRef__":true,"id":8075},{"__isSmartRef__":true,"id":8076},{"__isSmartRef__":true,"id":8077},{"__isSmartRef__":true,"id":8078},{"__isSmartRef__":true,"id":8079},{"__isSmartRef__":true,"id":8080},{"__isSmartRef__":true,"id":8081},{"__isSmartRef__":true,"id":8082},{"__isSmartRef__":true,"id":8083},{"__isSmartRef__":true,"id":8084},{"__isSmartRef__":true,"id":8085},{"__isSmartRef__":true,"id":8086},{"__isSmartRef__":true,"id":8087},{"__isSmartRef__":true,"id":8088},{"__isSmartRef__":true,"id":8089},{"__isSmartRef__":true,"id":8090},{"__isSmartRef__":true,"id":8091},{"__isSmartRef__":true,"id":8092},{"__isSmartRef__":true,"id":8093},{"__isSmartRef__":true,"id":8094},{"__isSmartRef__":true,"id":8095},{"__isSmartRef__":true,"id":8096}],"Pane1Menu":[["Add to world requirements"],["remove"],["reparse"],["-------"],["open in text editor"],["show versions"],["diff versions"]],"Pane2Menu":[["references"],["add sibling below"],["remove"],["-------"],["view hierarchy"],["add class"],["add object extension"],["add layer"]],"Pane3Menu":[["add sibling below"],["remove"]],"currentModuleName":"lively.morphic.MorphAddons","Pane4Menu":[["senders"],["implementors"],["add sibling below"],["remove"],["-------"],["add method"]],"_statusMorph":{"__isSmartRef__":true,"id":8252},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser"},"4675":{"browser":{"__isSmartRef__":true,"id":4674},"button":{"__isSmartRef__":true,"id":4676},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"4676":{"submorphs":[{"__isSmartRef__":true,"id":4677}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4689},"id":91,"renderContextTable":{"__isSmartRef__":true,"id":4693},"eventHandler":{"__isSmartRef__":true,"id":4694},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4695},"priorExtent":{"__isSmartRef__":true,"id":4696},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4697},"label":{"__isSmartRef__":true,"id":4677},"command":{"__isSmartRef__":true,"id":4675},"attributeConnections":[{"__isSmartRef__":true,"id":4706},{"__isSmartRef__":true,"id":4707}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4677":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4678},"id":92,"renderContextTable":{"__isSmartRef__":true,"id":4682},"textChunks":[{"__isSmartRef__":true,"id":4683}],"eventHandler":{"__isSmartRef__":true,"id":4685},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4686},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4687},"priorExtent":{"__isSmartRef__":true,"id":4688},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4676},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4678":{"_Position":{"__isSmartRef__":true,"id":4679},"renderContextTable":{"__isSmartRef__":true,"id":4680},"_Extent":{"__isSmartRef__":true,"id":4681},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4679":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4680":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4681":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4682":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4683":{"style":{"__isSmartRef__":true,"id":4684},"chunkOwner":{"__isSmartRef__":true,"id":4677},"storedString":"Add module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4684":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4685":{"morph":{"__isSmartRef__":true,"id":4677},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4686":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4687":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4688":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4689":{"_Position":{"__isSmartRef__":true,"id":4690},"renderContextTable":{"__isSmartRef__":true,"id":4691},"_Extent":{"__isSmartRef__":true,"id":4692},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4690":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4691":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4692":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4693":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4694":{"morph":{"__isSmartRef__":true,"id":4676},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4695":{"x":0,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4696":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4697":{"stops":[{"__isSmartRef__":true,"id":4698},{"__isSmartRef__":true,"id":4700},{"__isSmartRef__":true,"id":4702},{"__isSmartRef__":true,"id":4704}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4698":{"offset":0,"color":{"__isSmartRef__":true,"id":4699}},"4699":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4700":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4701}},"4701":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4702":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4703}},"4703":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4704":{"offset":1,"color":{"__isSmartRef__":true,"id":4705}},"4705":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4706":{"sourceObj":{"__isSmartRef__":true,"id":4676},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4675},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4707":{"sourceObj":{"__isSmartRef__":true,"id":4676},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4676},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4708},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4708":{"source":{"__isSmartRef__":true,"id":4676},"target":{"__isSmartRef__":true,"id":4676}},"4709":{"browser":{"__isSmartRef__":true,"id":4674},"button":{"__isSmartRef__":true,"id":4710},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"4710":{"submorphs":[{"__isSmartRef__":true,"id":4711}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4723},"id":93,"renderContextTable":{"__isSmartRef__":true,"id":4727},"eventHandler":{"__isSmartRef__":true,"id":4728},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4729},"priorExtent":{"__isSmartRef__":true,"id":4730},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4731},"label":{"__isSmartRef__":true,"id":4711},"command":{"__isSmartRef__":true,"id":4709},"attributeConnections":[{"__isSmartRef__":true,"id":4740},{"__isSmartRef__":true,"id":4741}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4711":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4712},"id":94,"renderContextTable":{"__isSmartRef__":true,"id":4716},"textChunks":[{"__isSmartRef__":true,"id":4717}],"eventHandler":{"__isSmartRef__":true,"id":4719},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4720},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4721},"priorExtent":{"__isSmartRef__":true,"id":4722},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4710},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4712":{"_Position":{"__isSmartRef__":true,"id":4713},"renderContextTable":{"__isSmartRef__":true,"id":4714},"_Extent":{"__isSmartRef__":true,"id":4715},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4713":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4714":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4715":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4716":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4717":{"style":{"__isSmartRef__":true,"id":4718},"chunkOwner":{"__isSmartRef__":true,"id":4711},"storedString":"Load all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4718":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4719":{"morph":{"__isSmartRef__":true,"id":4711},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4720":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4721":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4722":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4723":{"_Position":{"__isSmartRef__":true,"id":4724},"renderContextTable":{"__isSmartRef__":true,"id":4725},"_Extent":{"__isSmartRef__":true,"id":4726},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4724":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4725":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4726":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4727":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4728":{"morph":{"__isSmartRef__":true,"id":4710},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4729":{"x":117.14285714285714,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4730":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4731":{"stops":[{"__isSmartRef__":true,"id":4732},{"__isSmartRef__":true,"id":4734},{"__isSmartRef__":true,"id":4736},{"__isSmartRef__":true,"id":4738}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4732":{"offset":0,"color":{"__isSmartRef__":true,"id":4733}},"4733":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4734":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4735}},"4735":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4736":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4737}},"4737":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4738":{"offset":1,"color":{"__isSmartRef__":true,"id":4739}},"4739":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4740":{"sourceObj":{"__isSmartRef__":true,"id":4710},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4709},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4741":{"sourceObj":{"__isSmartRef__":true,"id":4710},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4710},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4742},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4742":{"source":{"__isSmartRef__":true,"id":4710},"target":{"__isSmartRef__":true,"id":4710}},"4743":{"browser":{"__isSmartRef__":true,"id":4674},"button":{"__isSmartRef__":true,"id":4744},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"4744":{"submorphs":[{"__isSmartRef__":true,"id":4745}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4757},"id":95,"renderContextTable":{"__isSmartRef__":true,"id":4761},"eventHandler":{"__isSmartRef__":true,"id":4762},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4763},"priorExtent":{"__isSmartRef__":true,"id":4764},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4765},"label":{"__isSmartRef__":true,"id":4745},"command":{"__isSmartRef__":true,"id":4743},"attributeConnections":[{"__isSmartRef__":true,"id":4774},{"__isSmartRef__":true,"id":4775}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4745":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4746},"id":96,"renderContextTable":{"__isSmartRef__":true,"id":4750},"textChunks":[{"__isSmartRef__":true,"id":4751}],"eventHandler":{"__isSmartRef__":true,"id":4753},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4754},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4755},"priorExtent":{"__isSmartRef__":true,"id":4756},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4744},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4746":{"_Position":{"__isSmartRef__":true,"id":4747},"renderContextTable":{"__isSmartRef__":true,"id":4748},"_Extent":{"__isSmartRef__":true,"id":4749},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4747":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4748":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4749":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4750":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4751":{"style":{"__isSmartRef__":true,"id":4752},"chunkOwner":{"__isSmartRef__":true,"id":4745},"storedString":"LineNo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4752":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4753":{"morph":{"__isSmartRef__":true,"id":4745},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4754":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4755":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4756":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4757":{"_Position":{"__isSmartRef__":true,"id":4758},"renderContextTable":{"__isSmartRef__":true,"id":4759},"_Extent":{"__isSmartRef__":true,"id":4760},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4758":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4759":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4760":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4761":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4762":{"morph":{"__isSmartRef__":true,"id":4744},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4763":{"x":234.28571428571428,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4764":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4765":{"stops":[{"__isSmartRef__":true,"id":4766},{"__isSmartRef__":true,"id":4768},{"__isSmartRef__":true,"id":4770},{"__isSmartRef__":true,"id":4772}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4766":{"offset":0,"color":{"__isSmartRef__":true,"id":4767}},"4767":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4768":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4769}},"4769":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4770":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4771}},"4771":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4772":{"offset":1,"color":{"__isSmartRef__":true,"id":4773}},"4773":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4774":{"sourceObj":{"__isSmartRef__":true,"id":4744},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4743},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4775":{"sourceObj":{"__isSmartRef__":true,"id":4744},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4744},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4776},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4776":{"source":{"__isSmartRef__":true,"id":4744},"target":{"__isSmartRef__":true,"id":4744}},"4777":{"browser":{"__isSmartRef__":true,"id":4674},"button":{"__isSmartRef__":true,"id":4778},"__LivelyClassName__":"lively.ide.ParserDebugCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"4778":{"submorphs":[{"__isSmartRef__":true,"id":4779}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4791},"id":97,"renderContextTable":{"__isSmartRef__":true,"id":4795},"eventHandler":{"__isSmartRef__":true,"id":4796},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4797},"priorExtent":{"__isSmartRef__":true,"id":4798},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4799},"label":{"__isSmartRef__":true,"id":4779},"command":{"__isSmartRef__":true,"id":4777},"attributeConnections":[{"__isSmartRef__":true,"id":4808},{"__isSmartRef__":true,"id":4809}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4779":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4780},"id":98,"renderContextTable":{"__isSmartRef__":true,"id":4784},"textChunks":[{"__isSmartRef__":true,"id":4785}],"eventHandler":{"__isSmartRef__":true,"id":4787},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4788},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4789},"priorExtent":{"__isSmartRef__":true,"id":4790},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4778},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4780":{"_Position":{"__isSmartRef__":true,"id":4781},"renderContextTable":{"__isSmartRef__":true,"id":4782},"_Extent":{"__isSmartRef__":true,"id":4783},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4781":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4782":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4783":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4784":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4785":{"style":{"__isSmartRef__":true,"id":4786},"chunkOwner":{"__isSmartRef__":true,"id":4779},"storedString":"Dbg errors is off","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4786":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4787":{"morph":{"__isSmartRef__":true,"id":4779},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4788":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4789":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4790":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4791":{"_Position":{"__isSmartRef__":true,"id":4792},"renderContextTable":{"__isSmartRef__":true,"id":4793},"_Extent":{"__isSmartRef__":true,"id":4794},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4792":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4793":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4794":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4795":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4796":{"morph":{"__isSmartRef__":true,"id":4778},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4797":{"x":351.42857142857144,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4798":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4799":{"stops":[{"__isSmartRef__":true,"id":4800},{"__isSmartRef__":true,"id":4802},{"__isSmartRef__":true,"id":4804},{"__isSmartRef__":true,"id":4806}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4800":{"offset":0,"color":{"__isSmartRef__":true,"id":4801}},"4801":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4802":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4803}},"4803":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4804":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4805}},"4805":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4806":{"offset":1,"color":{"__isSmartRef__":true,"id":4807}},"4807":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4808":{"sourceObj":{"__isSmartRef__":true,"id":4778},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4777},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4809":{"sourceObj":{"__isSmartRef__":true,"id":4778},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4778},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4810},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4810":{"source":{"__isSmartRef__":true,"id":4778},"target":{"__isSmartRef__":true,"id":4778}},"4811":{"browser":{"__isSmartRef__":true,"id":4674},"button":{"__isSmartRef__":true,"id":4812},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"4812":{"submorphs":[{"__isSmartRef__":true,"id":4813}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4825},"id":99,"renderContextTable":{"__isSmartRef__":true,"id":4829},"eventHandler":{"__isSmartRef__":true,"id":4830},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4831},"priorExtent":{"__isSmartRef__":true,"id":4832},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4833},"label":{"__isSmartRef__":true,"id":4813},"command":{"__isSmartRef__":true,"id":4811},"attributeConnections":[{"__isSmartRef__":true,"id":4842},{"__isSmartRef__":true,"id":4843}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4813":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4814},"id":100,"renderContextTable":{"__isSmartRef__":true,"id":4818},"textChunks":[{"__isSmartRef__":true,"id":4819}],"eventHandler":{"__isSmartRef__":true,"id":4821},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4822},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4823},"priorExtent":{"__isSmartRef__":true,"id":4824},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4812},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4814":{"_Position":{"__isSmartRef__":true,"id":4815},"renderContextTable":{"__isSmartRef__":true,"id":4816},"_Extent":{"__isSmartRef__":true,"id":4817},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4815":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4816":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4817":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4818":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4819":{"style":{"__isSmartRef__":true,"id":4820},"chunkOwner":{"__isSmartRef__":true,"id":4813},"storedString":"Eval on","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4820":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4821":{"morph":{"__isSmartRef__":true,"id":4813},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4822":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4823":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4824":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4825":{"_Position":{"__isSmartRef__":true,"id":4826},"renderContextTable":{"__isSmartRef__":true,"id":4827},"_Extent":{"__isSmartRef__":true,"id":4828},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4826":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4827":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4828":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4829":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4830":{"morph":{"__isSmartRef__":true,"id":4812},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4831":{"x":468.57142857142856,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4832":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4833":{"stops":[{"__isSmartRef__":true,"id":4834},{"__isSmartRef__":true,"id":4836},{"__isSmartRef__":true,"id":4838},{"__isSmartRef__":true,"id":4840}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4834":{"offset":0,"color":{"__isSmartRef__":true,"id":4835}},"4835":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4836":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4837}},"4837":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4838":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4839}},"4839":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4840":{"offset":1,"color":{"__isSmartRef__":true,"id":4841}},"4841":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4842":{"sourceObj":{"__isSmartRef__":true,"id":4812},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4811},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4843":{"sourceObj":{"__isSmartRef__":true,"id":4812},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4812},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4844},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4844":{"source":{"__isSmartRef__":true,"id":4812},"target":{"__isSmartRef__":true,"id":4812}},"4845":{"browser":{"__isSmartRef__":true,"id":4674},"button":{"__isSmartRef__":true,"id":4846},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"4846":{"submorphs":[{"__isSmartRef__":true,"id":4847}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4859},"id":101,"renderContextTable":{"__isSmartRef__":true,"id":4863},"eventHandler":{"__isSmartRef__":true,"id":4864},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4865},"priorExtent":{"__isSmartRef__":true,"id":4866},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4867},"label":{"__isSmartRef__":true,"id":4847},"command":{"__isSmartRef__":true,"id":4845},"attributeConnections":[{"__isSmartRef__":true,"id":4876},{"__isSmartRef__":true,"id":4877}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4847":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4848},"id":102,"renderContextTable":{"__isSmartRef__":true,"id":4852},"textChunks":[{"__isSmartRef__":true,"id":4853}],"eventHandler":{"__isSmartRef__":true,"id":4855},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4856},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4857},"priorExtent":{"__isSmartRef__":true,"id":4858},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4846},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4848":{"_Position":{"__isSmartRef__":true,"id":4849},"renderContextTable":{"__isSmartRef__":true,"id":4850},"_Extent":{"__isSmartRef__":true,"id":4851},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4849":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4850":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4851":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4852":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4853":{"style":{"__isSmartRef__":true,"id":4854},"chunkOwner":{"__isSmartRef__":true,"id":4847},"storedString":"Sort","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4854":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4855":{"morph":{"__isSmartRef__":true,"id":4847},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4856":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4857":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4858":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4859":{"_Position":{"__isSmartRef__":true,"id":4860},"renderContextTable":{"__isSmartRef__":true,"id":4861},"_Extent":{"__isSmartRef__":true,"id":4862},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4860":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4861":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4862":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4863":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4864":{"morph":{"__isSmartRef__":true,"id":4846},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4865":{"x":585.7142857142857,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4866":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4867":{"stops":[{"__isSmartRef__":true,"id":4868},{"__isSmartRef__":true,"id":4870},{"__isSmartRef__":true,"id":4872},{"__isSmartRef__":true,"id":4874}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4868":{"offset":0,"color":{"__isSmartRef__":true,"id":4869}},"4869":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4870":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4871}},"4871":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4872":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4873}},"4873":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4874":{"offset":1,"color":{"__isSmartRef__":true,"id":4875}},"4875":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4876":{"sourceObj":{"__isSmartRef__":true,"id":4846},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4845},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4877":{"sourceObj":{"__isSmartRef__":true,"id":4846},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4846},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4878},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4878":{"source":{"__isSmartRef__":true,"id":4846},"target":{"__isSmartRef__":true,"id":4846}},"4879":{"browser":{"__isSmartRef__":true,"id":4674},"button":{"__isSmartRef__":true,"id":4880},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"4880":{"submorphs":[{"__isSmartRef__":true,"id":4881}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4893},"id":103,"renderContextTable":{"__isSmartRef__":true,"id":4897},"eventHandler":{"__isSmartRef__":true,"id":4898},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":4899},"priorExtent":{"__isSmartRef__":true,"id":4900},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":4901},"label":{"__isSmartRef__":true,"id":4881},"command":{"__isSmartRef__":true,"id":4879},"attributeConnections":[{"__isSmartRef__":true,"id":4910},{"__isSmartRef__":true,"id":4911}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"4881":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4882},"id":104,"renderContextTable":{"__isSmartRef__":true,"id":4886},"textChunks":[{"__isSmartRef__":true,"id":4887}],"eventHandler":{"__isSmartRef__":true,"id":4889},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4890},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":4891},"priorExtent":{"__isSmartRef__":true,"id":4892},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4880},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4882":{"_Position":{"__isSmartRef__":true,"id":4883},"renderContextTable":{"__isSmartRef__":true,"id":4884},"_Extent":{"__isSmartRef__":true,"id":4885},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4883":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4884":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4885":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4886":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"4887":{"style":{"__isSmartRef__":true,"id":4888},"chunkOwner":{"__isSmartRef__":true,"id":4881},"storedString":"View as...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4888":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"4889":{"morph":{"__isSmartRef__":true,"id":4881},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4890":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"4891":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4892":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4893":{"_Position":{"__isSmartRef__":true,"id":4894},"renderContextTable":{"__isSmartRef__":true,"id":4895},"_Extent":{"__isSmartRef__":true,"id":4896},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4894":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4895":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4896":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4897":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"4898":{"morph":{"__isSmartRef__":true,"id":4880},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"4899":{"x":702.8571428571429,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4900":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4901":{"stops":[{"__isSmartRef__":true,"id":4902},{"__isSmartRef__":true,"id":4904},{"__isSmartRef__":true,"id":4906},{"__isSmartRef__":true,"id":4908}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4902":{"offset":0,"color":{"__isSmartRef__":true,"id":4903}},"4903":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4904":{"offset":0.4,"color":{"__isSmartRef__":true,"id":4905}},"4905":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4906":{"offset":0.6,"color":{"__isSmartRef__":true,"id":4907}},"4907":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4908":{"offset":1,"color":{"__isSmartRef__":true,"id":4909}},"4909":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4910":{"sourceObj":{"__isSmartRef__":true,"id":4880},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4879},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4911":{"sourceObj":{"__isSmartRef__":true,"id":4880},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4880},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":4912},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4912":{"source":{"__isSmartRef__":true,"id":4880},"target":{"__isSmartRef__":true,"id":4880}},"4913":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"4914":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"4915":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"4916":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"4917":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"4918":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"4919":{"sourceObj":{"__isSmartRef__":true,"id":4674},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":4920},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8111},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"4920":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":4921},"id":85,"renderContextTable":{"__isSmartRef__":true,"id":4926},"itemList":[{"__isSmartRef__":true,"id":4927},{"__isSmartRef__":true,"id":8062},{"__isSmartRef__":true,"id":8063},{"__isSmartRef__":true,"id":8064},{"__isSmartRef__":true,"id":8065},{"__isSmartRef__":true,"id":8066},{"__isSmartRef__":true,"id":8067},{"__isSmartRef__":true,"id":8068},{"__isSmartRef__":true,"id":8069},{"__isSmartRef__":true,"id":8070},{"__isSmartRef__":true,"id":8071},{"__isSmartRef__":true,"id":8072},{"__isSmartRef__":true,"id":8073},{"__isSmartRef__":true,"id":8074},{"__isSmartRef__":true,"id":8075},{"__isSmartRef__":true,"id":8076},{"__isSmartRef__":true,"id":8077},{"__isSmartRef__":true,"id":8078},{"__isSmartRef__":true,"id":8079},{"__isSmartRef__":true,"id":8080},{"__isSmartRef__":true,"id":8081},{"__isSmartRef__":true,"id":8082},{"__isSmartRef__":true,"id":8083},{"__isSmartRef__":true,"id":8084},{"__isSmartRef__":true,"id":8085},{"__isSmartRef__":true,"id":8086},{"__isSmartRef__":true,"id":8087},{"__isSmartRef__":true,"id":8088},{"__isSmartRef__":true,"id":8089},{"__isSmartRef__":true,"id":8090},{"__isSmartRef__":true,"id":8091},{"__isSmartRef__":true,"id":8092},{"__isSmartRef__":true,"id":8093},{"__isSmartRef__":true,"id":8094},{"__isSmartRef__":true,"id":8095},{"__isSmartRef__":true,"id":8096}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":8097},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8098},"selectedLineNo":21,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":4660},"attributeConnections":[{"__isSmartRef__":true,"id":8099},{"__isSmartRef__":true,"id":8104},{"__isSmartRef__":true,"id":8106},{"__isSmartRef__":true,"id":8108}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":8110},"prevScroll":[0,368],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"4921":{"_Position":{"__isSmartRef__":true,"id":4922},"renderContextTable":{"__isSmartRef__":true,"id":4923},"_Extent":{"__isSmartRef__":true,"id":4924},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":4925},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"4922":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4923":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"4924":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"4925":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"4926":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"4927":{"isListItem":true,"string":"tests/","value":{"__isSmartRef__":true,"id":4928}},"4928":{"target":{"__isSmartRef__":true,"id":4929},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"localName":"tests/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"4929":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/tests/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"4930":{"target":{"__isSmartRef__":true,"id":4931},"browser":{"__isSmartRef__":true,"id":4674},"parent":null,"allFiles":["lively/morphic/HTML.js","lively/morphic/EventExperiments.js","lively/morphic/Widgets.js","lively/morphic/CompatSCB.js","lively/morphic/Serialization.js","lively/morphic/Rendering.js","lively/morphic/Layout.js","lively/morphic/MorphAddons.js","lively/morphic/Examples.js","lively/morphic/ObjectMigration.js","lively/morphic/ClickOnLineHack.js","lively/morphic/ColorChooserDraft.js","lively/morphic/Shapes.js","lively/morphic/Compat.js","lively/morphic/Core.js","lively/morphic/TextCore.js","lively/morphic/Tests.js","lively/morphic/Events.js","lively/morphic/Graffle.js","lively/morphic/Halos.js","lively/morphic/Complete.js","lively/morphic/Canvas.js","lively/morphic/Connectors.js","lively/morphic/CompatLayer.js","lively/morphic/Styles.js","lively/morphic/Paragraphs.js","lively/morphic/SVG.js","lively/morphic/ScriptingSupport.js","lively/morphic/WidgetsAddOns.js","lively/morphic/PathShapes.js","lively/morphic/AdditionalMorphs.js","lively/morphic/Experiments.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":4929},{"__isSmartRef__":true,"id":4932}],"parentNamespacePath":{"__isSmartRef__":true,"id":4933},"_childNodes":[{"__isSmartRef__":true,"id":4928},{"__isSmartRef__":true,"id":4934},{"__isSmartRef__":true,"id":4935},{"__isSmartRef__":true,"id":4936},{"__isSmartRef__":true,"id":5054},{"__isSmartRef__":true,"id":5114},{"__isSmartRef__":true,"id":5127},{"__isSmartRef__":true,"id":5183},{"__isSmartRef__":true,"id":5193},{"__isSmartRef__":true,"id":5221},{"__isSmartRef__":true,"id":5224},{"__isSmartRef__":true,"id":5228},{"__isSmartRef__":true,"id":5306},{"__isSmartRef__":true,"id":5523},{"__isSmartRef__":true,"id":5576},{"__isSmartRef__":true,"id":5829},{"__isSmartRef__":true,"id":5843},{"__isSmartRef__":true,"id":5849},{"__isSmartRef__":true,"id":5853},{"__isSmartRef__":true,"id":6040},{"__isSmartRef__":true,"id":6198},{"__isSmartRef__":true,"id":6262},{"__isSmartRef__":true,"id":6405},{"__isSmartRef__":true,"id":6415},{"__isSmartRef__":true,"id":6423},{"__isSmartRef__":true,"id":6615},{"__isSmartRef__":true,"id":6718},{"__isSmartRef__":true,"id":6774},{"__isSmartRef__":true,"id":6857},{"__isSmartRef__":true,"id":6946},{"__isSmartRef__":true,"id":7196},{"__isSmartRef__":true,"id":7286},{"__isSmartRef__":true,"id":7289},{"__isSmartRef__":true,"id":7615},{"__isSmartRef__":true,"id":8051},{"__isSmartRef__":true,"id":8060}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"4931":{"__LivelyClassName__":"AnotherSourceDatabase","__SourceModuleName__":"Global.lively.ide.SourceDatabase"},"4932":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/video/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"4933":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"4934":{"target":{"__isSmartRef__":true,"id":4932},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"localName":"video/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"4935":{"target":{"__isSmartRef__":true,"id":4933},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"4936":{"target":{"__isSmartRef__":true,"id":4937},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/AdditionalMorphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"4937":{"name":"lively.morphic.AdditionalMorphs","type":"moduleDef","startIndex":0,"stopIndex":15833,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4938},{"__isSmartRef__":true,"id":4939},{"__isSmartRef__":true,"id":4969},{"__isSmartRef__":true,"id":5009},{"__isSmartRef__":true,"id":5016},{"__isSmartRef__":true,"id":5025},{"__isSmartRef__":true,"id":5026},{"__isSmartRef__":true,"id":5038},{"__isSmartRef__":true,"id":5053}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4938":{"name":null,"type":"comment","startIndex":94,"stopIndex":94,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4939":{"name":"lively.morphic.Path","type":"klassDef","startIndex":95,"stopIndex":6050,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4940},{"__isSmartRef__":true,"id":4942},{"__isSmartRef__":true,"id":4943},{"__isSmartRef__":true,"id":4945},{"__isSmartRef__":true,"id":4947},{"__isSmartRef__":true,"id":4949},{"__isSmartRef__":true,"id":4951},{"__isSmartRef__":true,"id":4952},{"__isSmartRef__":true,"id":4954},{"__isSmartRef__":true,"id":4955},{"__isSmartRef__":true,"id":4956},{"__isSmartRef__":true,"id":4958},{"__isSmartRef__":true,"id":4959},{"__isSmartRef__":true,"id":4960},{"__isSmartRef__":true,"id":4961},{"__isSmartRef__":true,"id":4962},{"__isSmartRef__":true,"id":4964},{"__isSmartRef__":true,"id":4966},{"__isSmartRef__":true,"id":4967}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":4941},{"__isSmartRef__":true,"id":4944},{"__isSmartRef__":true,"id":4946},{"__isSmartRef__":true,"id":4948},{"__isSmartRef__":true,"id":4950},{"__isSmartRef__":true,"id":4953},{"__isSmartRef__":true,"id":4957},{"__isSmartRef__":true,"id":4963},{"__isSmartRef__":true,"id":4965},{"__isSmartRef__":true,"id":4968}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4940":{"name":"isPath","type":"propertyDef","startIndex":164,"stopIndex":180,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4941},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4941":{"name":"properties","type":"categoryDef","startIndex":148,"stopIndex":252,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4940},{"__isSmartRef__":true,"id":4942}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4942":{"name":"style","type":"propertyDef","startIndex":182,"stopIndex":249,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4941},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4943":{"name":"initialize","type":"propertyDef","startIndex":272,"stopIndex":407,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4944},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4944":{"name":"initializing","type":"categoryDef","startIndex":254,"stopIndex":410,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4943}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4945":{"name":"vertices","type":"propertyDef","startIndex":427,"stopIndex":484,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4946},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4946":{"name":"accessing","type":"categoryDef","startIndex":412,"stopIndex":487,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4945}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4947":{"name":"pathBetweenRects","type":"propertyDef","startIndex":532,"stopIndex":2616,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4948},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4948":{"name":"vertex and control point computations","type":"categoryDef","startIndex":489,"stopIndex":2619,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4947}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4949":{"name":"addArrowHeadStart","type":"propertyDef","startIndex":2641,"stopIndex":2811,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4950},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4950":{"name":"arrow behavior","type":"categoryDef","startIndex":2621,"stopIndex":2983,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4949},{"__isSmartRef__":true,"id":4951}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4951":{"name":"addArrowHeadEnd","type":"propertyDef","startIndex":2813,"stopIndex":2980,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4950},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4952":{"name":"getControlPoint","type":"propertyDef","startIndex":3005,"stopIndex":3079,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4953},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4953":{"name":"control points","type":"categoryDef","startIndex":2985,"stopIndex":3662,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4952},{"__isSmartRef__":true,"id":4954},{"__isSmartRef__":true,"id":4955}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4954":{"name":"getControlPoints","type":"propertyDef","startIndex":3081,"stopIndex":3499,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4953},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4955":{"name":"insertControlPointBetween","type":"propertyDef","startIndex":3501,"stopIndex":3659,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4953},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4956":{"name":"getHalos","type":"propertyDef","startIndex":3675,"stopIndex":3924,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4957},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4957":{"name":"halos","type":"categoryDef","startIndex":3664,"stopIndex":4507,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4956},{"__isSmartRef__":true,"id":4958},{"__isSmartRef__":true,"id":4959},{"__isSmartRef__":true,"id":4960},{"__isSmartRef__":true,"id":4961}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4958":{"name":"getHaloClasses","type":"propertyDef","startIndex":3926,"stopIndex":4092,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4957},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4959":{"name":"getControlPointHalos","type":"propertyDef","startIndex":4095,"stopIndex":4183,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4957},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4960":{"name":"getInsertPointHalo","type":"propertyDef","startIndex":4185,"stopIndex":4312,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4957},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4961":{"name":"getInsertPointHalos","type":"propertyDef","startIndex":4314,"stopIndex":4504,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4957},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4962":{"name":"onMouseDown","type":"propertyDef","startIndex":4529,"stopIndex":5002,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4963},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4963":{"name":"event handling","type":"categoryDef","startIndex":4509,"stopIndex":5005,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4962}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4964":{"name":"convertToCurve","type":"propertyDef","startIndex":5023,"stopIndex":5675,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4965},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4965":{"name":"conversion","type":"categoryDef","startIndex":5007,"stopIndex":5807,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4964},{"__isSmartRef__":true,"id":4966}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4966":{"name":"convertToLine","type":"propertyDef","startIndex":5677,"stopIndex":5803,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4965},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4967":{"name":"morphMenuItems","type":"propertyDef","startIndex":5819,"stopIndex":6045,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4968},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":4939},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4968":{"name":"menu","type":"categoryDef","startIndex":5809,"stopIndex":6047,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4967}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4969":{"name":"lively.morphic.ControlPoint","type":"klassDef","startIndex":6051,"stopIndex":11071,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4970},{"__isSmartRef__":true,"id":4972},{"__isSmartRef__":true,"id":4973},{"__isSmartRef__":true,"id":4975},{"__isSmartRef__":true,"id":4976},{"__isSmartRef__":true,"id":4977},{"__isSmartRef__":true,"id":4979},{"__isSmartRef__":true,"id":4980},{"__isSmartRef__":true,"id":4981},{"__isSmartRef__":true,"id":4983},{"__isSmartRef__":true,"id":4984},{"__isSmartRef__":true,"id":4985},{"__isSmartRef__":true,"id":4986},{"__isSmartRef__":true,"id":4987},{"__isSmartRef__":true,"id":4988},{"__isSmartRef__":true,"id":4989},{"__isSmartRef__":true,"id":4991},{"__isSmartRef__":true,"id":4992},{"__isSmartRef__":true,"id":4994},{"__isSmartRef__":true,"id":4995},{"__isSmartRef__":true,"id":4996},{"__isSmartRef__":true,"id":4997},{"__isSmartRef__":true,"id":4998},{"__isSmartRef__":true,"id":4999},{"__isSmartRef__":true,"id":5001},{"__isSmartRef__":true,"id":5003},{"__isSmartRef__":true,"id":5004},{"__isSmartRef__":true,"id":5005},{"__isSmartRef__":true,"id":5007},{"__isSmartRef__":true,"id":5008}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":4971},{"__isSmartRef__":true,"id":4974},{"__isSmartRef__":true,"id":4978},{"__isSmartRef__":true,"id":4982},{"__isSmartRef__":true,"id":4990},{"__isSmartRef__":true,"id":4993},{"__isSmartRef__":true,"id":5000},{"__isSmartRef__":true,"id":5002},{"__isSmartRef__":true,"id":5006}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4970":{"name":"initialize","type":"propertyDef","startIndex":6116,"stopIndex":6223,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4971},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4971":{"name":"initializing","type":"categoryDef","startIndex":6098,"stopIndex":6318,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4970},{"__isSmartRef__":true,"id":4972}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4972":{"name":"create","type":"propertyDef","startIndex":6225,"stopIndex":6314,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4971},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4973":{"name":"signalChange","type":"propertyDef","startIndex":6334,"stopIndex":6540,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4974},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4974":{"name":"updating","type":"categoryDef","startIndex":6320,"stopIndex":6729,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4973},{"__isSmartRef__":true,"id":4975},{"__isSmartRef__":true,"id":4976}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4975":{"name":"reactToChange","type":"propertyDef","startIndex":6542,"stopIndex":6607,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4974},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4976":{"name":"elementChanged","type":"propertyDef","startIndex":6609,"stopIndex":6725,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4974},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4977":{"name":"isFirst","type":"propertyDef","startIndex":6744,"stopIndex":6795,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4978},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4978":{"name":"testing","type":"categoryDef","startIndex":6731,"stopIndex":7027,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4977},{"__isSmartRef__":true,"id":4979},{"__isSmartRef__":true,"id":4980}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4979":{"name":"isLast","type":"propertyDef","startIndex":6797,"stopIndex":6879,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4978},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4980":{"name":"isCurve","type":"propertyDef","startIndex":6881,"stopIndex":7023,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4978},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4981":{"name":"getMorph","type":"propertyDef","startIndex":7044,"stopIndex":7090,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4982},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4982":{"name":"accessing","type":"categoryDef","startIndex":7029,"stopIndex":7819,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4981},{"__isSmartRef__":true,"id":4983},{"__isSmartRef__":true,"id":4984},{"__isSmartRef__":true,"id":4985},{"__isSmartRef__":true,"id":4986},{"__isSmartRef__":true,"id":4987},{"__isSmartRef__":true,"id":4988}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4983":{"name":"getPos","type":"propertyDef","startIndex":7092,"stopIndex":7239,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4982},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4984":{"name":"getGlobalPos","type":"propertyDef","startIndex":7241,"stopIndex":7367,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4982},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4985":{"name":"next","type":"propertyDef","startIndex":7369,"stopIndex":7446,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4982},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4986":{"name":"prev","type":"propertyDef","startIndex":7448,"stopIndex":7525,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4982},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4987":{"name":"getElement","type":"propertyDef","startIndex":7527,"stopIndex":7611,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4982},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4988":{"name":"setElement","type":"propertyDef","startIndex":7613,"stopIndex":7814,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4982},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4989":{"name":"withNextControlPointsDo","type":"propertyDef","startIndex":7838,"stopIndex":8031,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4990},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4990":{"name":"enumerating","type":"categoryDef","startIndex":7821,"stopIndex":8203,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4989},{"__isSmartRef__":true,"id":4991}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4991":{"name":"controlPointsFromTo","type":"propertyDef","startIndex":8033,"stopIndex":8199,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4990},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4992":{"name":"moveBy","type":"propertyDef","startIndex":8223,"stopIndex":8387,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4993},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4993":{"name":"manipulation","type":"categoryDef","startIndex":8205,"stopIndex":9438,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4992},{"__isSmartRef__":true,"id":4994},{"__isSmartRef__":true,"id":4995},{"__isSmartRef__":true,"id":4996},{"__isSmartRef__":true,"id":4997},{"__isSmartRef__":true,"id":4998}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4994":{"name":"setPos","type":"propertyDef","startIndex":8389,"stopIndex":8464,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4993},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4995":{"name":"setGlobalPos","type":"propertyDef","startIndex":8466,"stopIndex":8548,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4993},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4996":{"name":"insertAfter","type":"propertyDef","startIndex":8552,"stopIndex":8673,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4993},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4997":{"name":"insertAt","type":"propertyDef","startIndex":8675,"stopIndex":9330,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4993},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4998":{"name":"mergeWithNext","type":"propertyDef","startIndex":9333,"stopIndex":9433,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":4993},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"4999":{"name":"remove","type":"propertyDef","startIndex":9454,"stopIndex":9829,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5000},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5000":{"name":"removing","type":"categoryDef","startIndex":9440,"stopIndex":9833,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":4999}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5001":{"name":"asHalo","type":"propertyDef","startIndex":9851,"stopIndex":9936,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5002},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5002":{"name":"conversion","type":"categoryDef","startIndex":9835,"stopIndex":10376,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5001},{"__isSmartRef__":true,"id":5003},{"__isSmartRef__":true,"id":5004}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5003":{"name":"toCurve","type":"propertyDef","startIndex":9938,"stopIndex":10227,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5002},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5004":{"name":"toLine","type":"propertyDef","startIndex":10229,"stopIndex":10371,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5002},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5005":{"name":"addMarker","type":"propertyDef","startIndex":10391,"stopIndex":10586,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5006},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5006":{"name":"markers","type":"categoryDef","startIndex":10378,"stopIndex":11068,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5005},{"__isSmartRef__":true,"id":5007},{"__isSmartRef__":true,"id":5008}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5007":{"name":"detachMarker","type":"propertyDef","startIndex":10588,"stopIndex":10689,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5006},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5008":{"name":"alignMarker","type":"propertyDef","startIndex":10692,"stopIndex":11066,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5006},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":4969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5009":{"name":"lively.morphic.PathControlPointHalo","type":"klassDef","startIndex":11072,"stopIndex":11483,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5010},{"__isSmartRef__":true,"id":5012},{"__isSmartRef__":true,"id":5013},{"__isSmartRef__":true,"id":5015}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5011},{"__isSmartRef__":true,"id":5014}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5010":{"name":"style","type":"propertyDef","startIndex":11154,"stopIndex":11218,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5011},"className":"lively.morphic.PathControlPointHalo","_owner":{"__isSmartRef__":true,"id":5009},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5011":{"name":"settings","type":"categoryDef","startIndex":11140,"stopIndex":11251,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5010},{"__isSmartRef__":true,"id":5012}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5012":{"name":"defaultExtent","type":"propertyDef","startIndex":11220,"stopIndex":11248,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5011},"className":"lively.morphic.PathControlPointHalo","_owner":{"__isSmartRef__":true,"id":5009},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5013":{"name":"initialize","type":"propertyDef","startIndex":11271,"stopIndex":11408,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5014},"className":"lively.morphic.PathControlPointHalo","_owner":{"__isSmartRef__":true,"id":5009},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5014":{"name":"initializing","type":"categoryDef","startIndex":11253,"stopIndex":11457,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5013},{"__isSmartRef__":true,"id":5015}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5015":{"name":"createLabel","type":"propertyDef","startIndex":11410,"stopIndex":11454,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5014},"className":"lively.morphic.PathControlPointHalo","_owner":{"__isSmartRef__":true,"id":5009},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5016":{"name":"lively.morphic.PathVertexControlPointHalo","type":"klassDef","startIndex":11484,"stopIndex":13228,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5017},{"__isSmartRef__":true,"id":5019},{"__isSmartRef__":true,"id":5021},{"__isSmartRef__":true,"id":5022},{"__isSmartRef__":true,"id":5023},{"__isSmartRef__":true,"id":5024}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.PathControlPointHalo","categories":[{"__isSmartRef__":true,"id":5018},{"__isSmartRef__":true,"id":5020}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5017":{"name":"isVertexControlHalo","type":"propertyDef","startIndex":11589,"stopIndex":11618,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5018},"className":"lively.morphic.PathVertexControlPointHalo","_owner":{"__isSmartRef__":true,"id":5016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5018":{"name":"properies","type":"categoryDef","startIndex":11574,"stopIndex":11621,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5017}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5019":{"name":"computePositionAtTarget","type":"propertyDef","startIndex":11642,"stopIndex":11774,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5020},"className":"lively.morphic.PathVertexControlPointHalo","_owner":{"__isSmartRef__":true,"id":5016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5020":{"name":"halo behavior","type":"categoryDef","startIndex":11623,"stopIndex":13225,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5019},{"__isSmartRef__":true,"id":5021},{"__isSmartRef__":true,"id":5022},{"__isSmartRef__":true,"id":5023},{"__isSmartRef__":true,"id":5024}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5021":{"name":"dragAction","type":"propertyDef","startIndex":11776,"stopIndex":12246,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5020},"className":"lively.morphic.PathVertexControlPointHalo","_owner":{"__isSmartRef__":true,"id":5016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5022":{"name":"dragEndAction","type":"propertyDef","startIndex":12248,"stopIndex":12666,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5020},"className":"lively.morphic.PathVertexControlPointHalo","_owner":{"__isSmartRef__":true,"id":5016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5023":{"name":"findIntersectingControlPoint","type":"propertyDef","startIndex":12669,"stopIndex":13023,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5020},"className":"lively.morphic.PathVertexControlPointHalo","_owner":{"__isSmartRef__":true,"id":5016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5024":{"name":"highlightIfOverOther","type":"propertyDef","startIndex":13025,"stopIndex":13221,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5020},"className":"lively.morphic.PathVertexControlPointHalo","_owner":{"__isSmartRef__":true,"id":5016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5025":{"name":null,"type":"comment","startIndex":13229,"stopIndex":13229,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5026":{"name":"lively.morphic.PathInsertPointHalo","type":"klassDef","startIndex":13230,"stopIndex":14263,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5027},{"__isSmartRef__":true,"id":5029},{"__isSmartRef__":true,"id":5031},{"__isSmartRef__":true,"id":5032},{"__isSmartRef__":true,"id":5033},{"__isSmartRef__":true,"id":5034},{"__isSmartRef__":true,"id":5036},{"__isSmartRef__":true,"id":5037}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.PathControlPointHalo","categories":[{"__isSmartRef__":true,"id":5028},{"__isSmartRef__":true,"id":5030},{"__isSmartRef__":true,"id":5035}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5027":{"name":"style","type":"propertyDef","startIndex":13327,"stopIndex":13355,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5028},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5028":{"name":"settings","type":"categoryDef","startIndex":13313,"stopIndex":13358,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5027}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5029":{"name":"getStartPos","type":"propertyDef","startIndex":13374,"stopIndex":13439,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5030},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5030":{"name":"acessing","type":"categoryDef","startIndex":13360,"stopIndex":13762,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5029},{"__isSmartRef__":true,"id":5031},{"__isSmartRef__":true,"id":5032},{"__isSmartRef__":true,"id":5033}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5031":{"name":"getEndPos","type":"propertyDef","startIndex":13441,"stopIndex":13511,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5030},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5032":{"name":"getLocalPos","type":"propertyDef","startIndex":13513,"stopIndex":13670,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5030},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5033":{"name":"getGlobalPos","type":"propertyDef","startIndex":13672,"stopIndex":13759,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5030},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5034":{"name":"computePositionAtTarget","type":"propertyDef","startIndex":13783,"stopIndex":13902,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5035},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5035":{"name":"halo behavior","type":"categoryDef","startIndex":13764,"stopIndex":14260,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5034},{"__isSmartRef__":true,"id":5036},{"__isSmartRef__":true,"id":5037}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5036":{"name":"dragStartAction","type":"propertyDef","startIndex":13904,"stopIndex":14105,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5035},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5037":{"name":"dragAction","type":"propertyDef","startIndex":14107,"stopIndex":14258,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5035},"className":"lively.morphic.PathInsertPointHalo","_owner":{"__isSmartRef__":true,"id":5026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5038":{"name":"lively.morphic.PathOriginHackLayer","type":"copDef","startIndex":14264,"stopIndex":15813,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5039},{"__isSmartRef__":true,"id":5049},{"__isSmartRef__":true,"id":5052}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5039":{"name":"lively.morphic.Path","type":"copSubElement","startIndex":14313,"stopIndex":15674,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5040},{"__isSmartRef__":true,"id":5042},{"__isSmartRef__":true,"id":5043},{"__isSmartRef__":true,"id":5044},{"__isSmartRef__":true,"id":5045},{"__isSmartRef__":true,"id":5046},{"__isSmartRef__":true,"id":5047},{"__isSmartRef__":true,"id":5048}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5038},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5040":{"name":"getHalos","type":"propertyDef","startIndex":14349,"stopIndex":14574,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5041":{"name":"default category","type":"categoryDef","startIndex":83,"stopIndex":1409,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5040},{"__isSmartRef__":true,"id":5042},{"__isSmartRef__":true,"id":5043},{"__isSmartRef__":true,"id":5044},{"__isSmartRef__":true,"id":5045},{"__isSmartRef__":true,"id":5046},{"__isSmartRef__":true,"id":5047},{"__isSmartRef__":true,"id":5048}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5042":{"name":"setOrigin","type":"propertyDef","startIndex":14576,"stopIndex":14653,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5043":{"name":"getOrigin","type":"propertyDef","startIndex":14655,"stopIndex":14735,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5044":{"name":"getPosition","type":"propertyDef","startIndex":14737,"stopIndex":14818,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5045":{"name":"setPosition","type":"propertyDef","startIndex":14820,"stopIndex":14906,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5046":{"name":"setRotationHTML","type":"propertyDef","startIndex":14908,"stopIndex":15084,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5047":{"name":"setScaleHTML","type":"propertyDef","startIndex":15086,"stopIndex":15266,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5048":{"name":"onrestore","type":"propertyDef","startIndex":15268,"stopIndex":15671,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5041},"_owner":{"__isSmartRef__":true,"id":5039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5049":{"name":"lively.morphic.ControlPoint","type":"copSubElement","startIndex":15675,"stopIndex":15800,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[{"__isSmartRef__":true,"id":5050}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5038},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5050":{"name":"getPos","type":"propertyDef","startIndex":15720,"stopIndex":15797,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5051},"_owner":{"__isSmartRef__":true,"id":5049},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5051":{"name":"default category","type":"categoryDef","startIndex":1454,"stopIndex":1535,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5050}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5052":{"name":"beGlobal()","type":"copSubElement","startIndex":15801,"stopIndex":15811,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":5038},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5053":{"name":null,"type":"comment","startIndex":15814,"stopIndex":15814,"fileName":"lively/morphic/AdditionalMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5054":{"target":{"__isSmartRef__":true,"id":5055},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Canvas.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5055":{"name":"lively.morphic.Canvas","type":"moduleDef","startIndex":0,"stopIndex":10711,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5056},{"__isSmartRef__":true,"id":5057},{"__isSmartRef__":true,"id":5070},{"__isSmartRef__":true,"id":5085},{"__isSmartRef__":true,"id":5090},{"__isSmartRef__":true,"id":5096},{"__isSmartRef__":true,"id":5097},{"__isSmartRef__":true,"id":5105},{"__isSmartRef__":true,"id":5106},{"__isSmartRef__":true,"id":5109},{"__isSmartRef__":true,"id":5110},{"__isSmartRef__":true,"id":5113}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5056":{"name":null,"type":"comment","startIndex":88,"stopIndex":88,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5057":{"name":"lively.morphic.Canvas.RenderContext","type":"klassDef","startIndex":89,"stopIndex":3165,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5058},{"__isSmartRef__":true,"id":5060},{"__isSmartRef__":true,"id":5062},{"__isSmartRef__":true,"id":5064},{"__isSmartRef__":true,"id":5065},{"__isSmartRef__":true,"id":5067},{"__isSmartRef__":true,"id":5068}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Rendering.RenderContext","categories":[{"__isSmartRef__":true,"id":5059},{"__isSmartRef__":true,"id":5061},{"__isSmartRef__":true,"id":5063},{"__isSmartRef__":true,"id":5066},{"__isSmartRef__":true,"id":5069}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5058":{"name":"renderContextTableName","type":"propertyDef","startIndex":190,"stopIndex":239,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5059},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5059":{"name":"settings","type":"categoryDef","startIndex":176,"stopIndex":242,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5058}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5060":{"name":"newForChild","type":"propertyDef","startIndex":258,"stopIndex":628,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5061},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5061":{"name":"creation","type":"categoryDef","startIndex":244,"stopIndex":631,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5060}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5062":{"name":"getCanvas","type":"propertyDef","startIndex":648,"stopIndex":696,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5063},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5063":{"name":"accessing","type":"categoryDef","startIndex":633,"stopIndex":1289,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5062},{"__isSmartRef__":true,"id":5064}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5064":{"name":"getGraphicContext","type":"propertyDef","startIndex":698,"stopIndex":1286,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5063},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5065":{"name":"drawMorph","type":"propertyDef","startIndex":1304,"stopIndex":2111,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5066},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5066":{"name":"drawing","type":"categoryDef","startIndex":1291,"stopIndex":3087,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5065},{"__isSmartRef__":true,"id":5067}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5067":{"name":"canvasFillFor","type":"propertyDef","startIndex":2113,"stopIndex":3084,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5066},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5068":{"name":"shapeRemoved","type":"propertyDef","startIndex":3102,"stopIndex":3160,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5069},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5069":{"name":"removal","type":"categoryDef","startIndex":3089,"stopIndex":3162,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5068}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5070":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":3166,"stopIndex":5518,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5071},{"__isSmartRef__":true,"id":5073},{"__isSmartRef__":true,"id":5075},{"__isSmartRef__":true,"id":5077},{"__isSmartRef__":true,"id":5078},{"__isSmartRef__":true,"id":5079},{"__isSmartRef__":true,"id":5080},{"__isSmartRef__":true,"id":5082},{"__isSmartRef__":true,"id":5083}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5072},{"__isSmartRef__":true,"id":5074},{"__isSmartRef__":true,"id":5076},{"__isSmartRef__":true,"id":5081},{"__isSmartRef__":true,"id":5084}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5071":{"name":"canvasDispatchTable","type":"propertyDef","startIndex":3227,"stopIndex":3398,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5072},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5072":{"name":"canvas render settings","type":"categoryDef","startIndex":3199,"stopIndex":3401,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5071}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5073":{"name":"attributeChangedCANVAS","type":"propertyDef","startIndex":3417,"stopIndex":3619,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5074},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5074":{"name":"updating","type":"categoryDef","startIndex":3403,"stopIndex":3622,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5073}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5075":{"name":"renderWithCANVAS","type":"propertyDef","startIndex":3639,"stopIndex":3767,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5076},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5076":{"name":"rendering","type":"categoryDef","startIndex":3624,"stopIndex":4413,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5075},{"__isSmartRef__":true,"id":5077},{"__isSmartRef__":true,"id":5078},{"__isSmartRef__":true,"id":5079}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5077":{"name":"initCANVAS","type":"propertyDef","startIndex":3769,"stopIndex":3887,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5076},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5078":{"name":"appendCANVAS","type":"propertyDef","startIndex":3889,"stopIndex":4339,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5076},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5079":{"name":"replaceRenderContextCANVAS","type":"propertyDef","startIndex":4342,"stopIndex":4408,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5076},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5080":{"name":"drawOnCANVAS","type":"propertyDef","startIndex":4428,"stopIndex":5222,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5081},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5081":{"name":"drawing","type":"categoryDef","startIndex":4415,"stopIndex":5389,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5080},{"__isSmartRef__":true,"id":5082}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5082":{"name":"drawSubmorphsOnCANVAS","type":"propertyDef","startIndex":5224,"stopIndex":5386,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5081},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5083":{"name":"removeCANVAS","type":"propertyDef","startIndex":5405,"stopIndex":5513,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5084},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5070},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5084":{"name":"removing","type":"categoryDef","startIndex":5391,"stopIndex":5515,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5083}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5085":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":5519,"stopIndex":5966,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5086},{"__isSmartRef__":true,"id":5088}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5087},{"__isSmartRef__":true,"id":5089}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5086":{"name":"drawOnCANVAS","type":"propertyDef","startIndex":5565,"stopIndex":5833,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5087},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5087":{"name":"drawing","type":"categoryDef","startIndex":5552,"stopIndex":5836,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5086}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5088":{"name":"removeCANVAS","type":"propertyDef","startIndex":5852,"stopIndex":5961,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5089},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5089":{"name":"removing","type":"categoryDef","startIndex":5838,"stopIndex":5963,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5088}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5090":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":5967,"stopIndex":7988,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5091},{"__isSmartRef__":true,"id":5093},{"__isSmartRef__":true,"id":5095}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5092},{"__isSmartRef__":true,"id":5094}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5091":{"name":"canvasDispatchTable","type":"propertyDef","startIndex":6027,"stopIndex":6105,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5092},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5092":{"name":"canvas render settings","type":"categoryDef","startIndex":5999,"stopIndex":6108,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5091}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5093":{"name":"drawTextOnCANVAS","type":"propertyDef","startIndex":6123,"stopIndex":7868,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5094},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5094":{"name":"drawing","type":"categoryDef","startIndex":6110,"stopIndex":7985,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5093},{"__isSmartRef__":true,"id":5095}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5095":{"name":"drawSubmorphsOnCANVAS","type":"propertyDef","startIndex":7870,"stopIndex":7983,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5094},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5096":{"name":null,"type":"comment","startIndex":7989,"stopIndex":7989,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5097":{"name":"lively.morphic.Shapes.Shape","type":"klassExtensionDef","startIndex":7990,"stopIndex":9462,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5098},{"__isSmartRef__":true,"id":5100},{"__isSmartRef__":true,"id":5102},{"__isSmartRef__":true,"id":5104}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5099},{"__isSmartRef__":true,"id":5101},{"__isSmartRef__":true,"id":5103}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5098":{"name":"canvasDispatchTable","type":"propertyDef","startIndex":8058,"stopIndex":8229,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5099},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":5097},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5099":{"name":"canvas render settings","type":"categoryDef","startIndex":8030,"stopIndex":8232,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5098}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5100":{"name":"attributeChangedCANVAS","type":"propertyDef","startIndex":8248,"stopIndex":8407,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5101},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":5097},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5101":{"name":"updating","type":"categoryDef","startIndex":8234,"stopIndex":8410,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5100}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5102":{"name":"initCANVAS","type":"propertyDef","startIndex":8427,"stopIndex":8456,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5103},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":5097},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5103":{"name":"rendering","type":"categoryDef","startIndex":8412,"stopIndex":9459,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5102},{"__isSmartRef__":true,"id":5104}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5104":{"name":"renderCANVAS","type":"propertyDef","startIndex":8458,"stopIndex":9457,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5103},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":5097},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5105":{"name":null,"type":"comment","startIndex":9463,"stopIndex":9463,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5106":{"name":"lively.morphic.Shapes.Rectangle","type":"klassExtensionDef","startIndex":9464,"stopIndex":9899,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5107}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5108}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5107":{"name":"setPath","type":"propertyDef","startIndex":9523,"stopIndex":9894,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5108},"className":"lively.morphic.Shapes.Rectangle","_owner":{"__isSmartRef__":true,"id":5106},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5108":{"name":"rendering","type":"categoryDef","startIndex":9508,"stopIndex":9896,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5107}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5109":{"name":null,"type":"comment","startIndex":9900,"stopIndex":9900,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5110":{"name":"lively.morphic.Shapes.Ellipse","type":"klassExtensionDef","startIndex":9901,"stopIndex":10690,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5111}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5112}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5111":{"name":"setPath","type":"propertyDef","startIndex":9958,"stopIndex":10685,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5112},"className":"lively.morphic.Shapes.Ellipse","_owner":{"__isSmartRef__":true,"id":5110},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5112":{"name":"rendering","type":"categoryDef","startIndex":9943,"stopIndex":10687,"fileName":"lively/morphic/Canvas.js","_subElements":[{"__isSmartRef__":true,"id":5111}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5113":{"name":null,"type":"comment","startIndex":10691,"stopIndex":10692,"fileName":"lively/morphic/Canvas.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5114":{"target":{"__isSmartRef__":true,"id":5115},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/ClickOnLineHack.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5115":{"name":"lively.morphic.ClickOnLineHack","type":"moduleDef","startIndex":0,"stopIndex":1579,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[{"__isSmartRef__":true,"id":5116},{"__isSmartRef__":true,"id":5117},{"__isSmartRef__":true,"id":5126}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5116":{"name":null,"type":"comment","startIndex":108,"stopIndex":208,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5117":{"name":"ClickOnLineLayer","type":"copDef","startIndex":209,"stopIndex":1558,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[{"__isSmartRef__":true,"id":5118},{"__isSmartRef__":true,"id":5125}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5118":{"name":"lively.morphic.Morph","type":"copSubElement","startIndex":240,"stopIndex":1545,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[{"__isSmartRef__":true,"id":5119},{"__isSmartRef__":true,"id":5121},{"__isSmartRef__":true,"id":5122},{"__isSmartRef__":true,"id":5123},{"__isSmartRef__":true,"id":5124}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5119":{"name":"extendedInnerBounds","type":"propertyDef","startIndex":277,"stopIndex":397,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5120},"_owner":{"__isSmartRef__":true,"id":5118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5120":{"name":"default category","type":"categoryDef","startIndex":66,"stopIndex":1335,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5119},{"__isSmartRef__":true,"id":5121},{"__isSmartRef__":true,"id":5122},{"__isSmartRef__":true,"id":5123},{"__isSmartRef__":true,"id":5124}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5121":{"name":"globalPointIsInExtendedBorder","type":"propertyDef","startIndex":400,"stopIndex":819,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5120},"_owner":{"__isSmartRef__":true,"id":5118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5122":{"name":"tryToFindBarelyClickedOnMorphAndInvokeEventHandler","type":"propertyDef","startIndex":822,"stopIndex":1163,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5120},"_owner":{"__isSmartRef__":true,"id":5118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5123":{"name":"onMouseDown","type":"propertyDef","startIndex":1165,"stopIndex":1359,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5120},"_owner":{"__isSmartRef__":true,"id":5118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5124":{"name":"onMouseUp","type":"propertyDef","startIndex":1361,"stopIndex":1542,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5120},"_owner":{"__isSmartRef__":true,"id":5118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5125":{"name":"beGlobal()","type":"copSubElement","startIndex":1546,"stopIndex":1556,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":5117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5126":{"name":null,"type":"comment","startIndex":1559,"stopIndex":1560,"fileName":"lively/morphic/ClickOnLineHack.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5127":{"target":{"__isSmartRef__":true,"id":5128},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/ColorChooserDraft.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5128":{"name":"lively.morphic.ColorChooserDraft","type":"moduleDef","startIndex":0,"stopIndex":7606,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5129},{"__isSmartRef__":true,"id":5130},{"__isSmartRef__":true,"id":5138},{"__isSmartRef__":true,"id":5147},{"__isSmartRef__":true,"id":5154},{"__isSmartRef__":true,"id":5163},{"__isSmartRef__":true,"id":5164}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5129":{"name":null,"type":"comment","startIndex":144,"stopIndex":144,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5130":{"name":"lively.morphic.ColorChooser","type":"klassDef","startIndex":145,"stopIndex":653,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5131},{"__isSmartRef__":true,"id":5133},{"__isSmartRef__":true,"id":5135},{"__isSmartRef__":true,"id":5136}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":5132},{"__isSmartRef__":true,"id":5134},{"__isSmartRef__":true,"id":5137}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5131":{"name":"defaultBounds","type":"propertyDef","startIndex":218,"stopIndex":265,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5132},"className":"lively.morphic.ColorChooser","_owner":{"__isSmartRef__":true,"id":5130},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5132":{"name":"settings","type":"categoryDef","startIndex":204,"stopIndex":268,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5131}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5133":{"name":"initialize","type":"propertyDef","startIndex":288,"stopIndex":444,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5134},"className":"lively.morphic.ColorChooser","_owner":{"__isSmartRef__":true,"id":5130},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5134":{"name":"initializing","type":"categoryDef","startIndex":270,"stopIndex":537,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5133},{"__isSmartRef__":true,"id":5135}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5135":{"name":"buildColorMap","type":"propertyDef","startIndex":446,"stopIndex":534,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5134},"className":"lively.morphic.ColorChooser","_owner":{"__isSmartRef__":true,"id":5130},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5136":{"name":"colorForPos","type":"propertyDef","startIndex":558,"stopIndex":648,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5137},"className":"lively.morphic.ColorChooser","_owner":{"__isSmartRef__":true,"id":5130},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5137":{"name":"color mapping","type":"categoryDef","startIndex":539,"stopIndex":650,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5136}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5138":{"name":"lively.morphic.RGBColorChooser","type":"klassDef","startIndex":654,"stopIndex":2833,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5139},{"__isSmartRef__":true,"id":5141},{"__isSmartRef__":true,"id":5143},{"__isSmartRef__":true,"id":5145},{"__isSmartRef__":true,"id":5146}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.ColorChooser","categories":[{"__isSmartRef__":true,"id":5140},{"__isSmartRef__":true,"id":5142},{"__isSmartRef__":true,"id":5144}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5139":{"name":"colorNames","type":"propertyDef","startIndex":739,"stopIndex":760,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5140},"className":"lively.morphic.RGBColorChooser","_owner":{"__isSmartRef__":true,"id":5138},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5140":{"name":"settings","type":"categoryDef","startIndex":725,"stopIndex":763,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5139}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5141":{"name":"buildColorMap","type":"propertyDef","startIndex":783,"stopIndex":1808,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5142},"className":"lively.morphic.RGBColorChooser","_owner":{"__isSmartRef__":true,"id":5138},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5142":{"name":"initializing","type":"categoryDef","startIndex":765,"stopIndex":1811,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5141}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5143":{"name":"colorForPos","type":"propertyDef","startIndex":1832,"stopIndex":2091,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5144},"className":"lively.morphic.RGBColorChooser","_owner":{"__isSmartRef__":true,"id":5138},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5144":{"name":"color mapping","type":"categoryDef","startIndex":1813,"stopIndex":2830,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5143},{"__isSmartRef__":true,"id":5145},{"__isSmartRef__":true,"id":5146}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5145":{"name":"colorWheel","type":"propertyDef","startIndex":2094,"stopIndex":2537,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5144},"className":"lively.morphic.RGBColorChooser","_owner":{"__isSmartRef__":true,"id":5138},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5146":{"name":"colorMap","type":"propertyDef","startIndex":2540,"stopIndex":2828,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5144},"className":"lively.morphic.RGBColorChooser","_owner":{"__isSmartRef__":true,"id":5138},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5147":{"name":"lively.morphic.CrayonColorChooser","type":"klassDef","startIndex":2834,"stopIndex":3993,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5148},{"__isSmartRef__":true,"id":5150},{"__isSmartRef__":true,"id":5152}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.ColorChooser","categories":[{"__isSmartRef__":true,"id":5149},{"__isSmartRef__":true,"id":5151},{"__isSmartRef__":true,"id":5153}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5148":{"name":"colorNames","type":"propertyDef","startIndex":2922,"stopIndex":2947,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5149},"className":"lively.morphic.CrayonColorChooser","_owner":{"__isSmartRef__":true,"id":5147},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5149":{"name":"settings","type":"categoryDef","startIndex":2908,"stopIndex":2950,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5148}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5150":{"name":"buildColorMap","type":"propertyDef","startIndex":2970,"stopIndex":3671,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5151},"className":"lively.morphic.CrayonColorChooser","_owner":{"__isSmartRef__":true,"id":5147},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5151":{"name":"initializing","type":"categoryDef","startIndex":2952,"stopIndex":3674,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5150}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5152":{"name":"colorForPos","type":"propertyDef","startIndex":3695,"stopIndex":3988,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5153},"className":"lively.morphic.CrayonColorChooser","_owner":{"__isSmartRef__":true,"id":5147},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5153":{"name":"color mapping","type":"categoryDef","startIndex":3676,"stopIndex":3990,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5152}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5154":{"name":"lively.morphic.ColorChooserSwitcher","type":"klassDef","startIndex":3994,"stopIndex":4613,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5155},{"__isSmartRef__":true,"id":5157},{"__isSmartRef__":true,"id":5159},{"__isSmartRef__":true,"id":5161}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Text","categories":[{"__isSmartRef__":true,"id":5156},{"__isSmartRef__":true,"id":5158},{"__isSmartRef__":true,"id":5160},{"__isSmartRef__":true,"id":5162}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5155":{"name":"documentation","type":"propertyDef","startIndex":4081,"stopIndex":4154,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5156},"className":"lively.morphic.ColorChooserSwitcher","_owner":{"__isSmartRef__":true,"id":5154},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5156":{"name":"documentation","type":"categoryDef","startIndex":4062,"stopIndex":4157,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5155}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5157":{"name":"style","type":"propertyDef","startIndex":4173,"stopIndex":4242,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5158},"className":"lively.morphic.ColorChooserSwitcher","_owner":{"__isSmartRef__":true,"id":5154},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5158":{"name":"settings","type":"categoryDef","startIndex":4159,"stopIndex":4245,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5157}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5159":{"name":"initialize","type":"propertyDef","startIndex":4265,"stopIndex":4493,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5160},"className":"lively.morphic.ColorChooserSwitcher","_owner":{"__isSmartRef__":true,"id":5154},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5160":{"name":"initializing","type":"categoryDef","startIndex":4247,"stopIndex":4496,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5159}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5161":{"name":"onMouseMove","type":"propertyDef","startIndex":4516,"stopIndex":4608,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5162},"className":"lively.morphic.ColorChooserSwitcher","_owner":{"__isSmartRef__":true,"id":5154},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5162":{"name":"mouse events","type":"categoryDef","startIndex":4498,"stopIndex":4610,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5161}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5163":{"name":null,"type":"comment","startIndex":4614,"stopIndex":4614,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5164":{"name":"lively.morphic.ColorField","type":"klassDef","startIndex":4615,"stopIndex":7584,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5165},{"__isSmartRef__":true,"id":5167},{"__isSmartRef__":true,"id":5168},{"__isSmartRef__":true,"id":5170},{"__isSmartRef__":true,"id":5172},{"__isSmartRef__":true,"id":5174},{"__isSmartRef__":true,"id":5175},{"__isSmartRef__":true,"id":5176},{"__isSmartRef__":true,"id":5177},{"__isSmartRef__":true,"id":5179},{"__isSmartRef__":true,"id":5180},{"__isSmartRef__":true,"id":5181},{"__isSmartRef__":true,"id":5182}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":5166},{"__isSmartRef__":true,"id":5169},{"__isSmartRef__":true,"id":5171},{"__isSmartRef__":true,"id":5173},{"__isSmartRef__":true,"id":5178}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5165":{"name":"doNotSerialize","type":"propertyDef","startIndex":4758,"stopIndex":4820,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5166},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5166":{"name":"settings","type":"categoryDef","startIndex":4744,"stopIndex":4919,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5165},{"__isSmartRef__":true,"id":5167}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5167":{"name":"style","type":"propertyDef","startIndex":4822,"stopIndex":4916,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5166},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5168":{"name":"initialize","type":"propertyDef","startIndex":4939,"stopIndex":5164,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5169},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5169":{"name":"initializing","type":"categoryDef","startIndex":4921,"stopIndex":5167,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5168}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5170":{"name":"showColorChooserAndSwitchers","type":"propertyDef","startIndex":5189,"stopIndex":5734,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5171},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5171":{"name":"color choosers","type":"categoryDef","startIndex":5169,"stopIndex":5738,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5170}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5172":{"name":"getColorSwitchers","type":"propertyDef","startIndex":5755,"stopIndex":6164,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5173},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5173":{"name":"accessing","type":"categoryDef","startIndex":5740,"stopIndex":6676,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5172},{"__isSmartRef__":true,"id":5174},{"__isSmartRef__":true,"id":5175},{"__isSmartRef__":true,"id":5176}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5174":{"name":"getCurrentColorChooser","type":"propertyDef","startIndex":6166,"stopIndex":6259,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5173},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5175":{"name":"getCurrentColorSwitcher","type":"propertyDef","startIndex":6261,"stopIndex":6481,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5173},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5176":{"name":"setCurrentColorSwitcher","type":"propertyDef","startIndex":6483,"stopIndex":6672,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5173},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5177":{"name":"onMouseDown","type":"propertyDef","startIndex":6696,"stopIndex":6943,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5178},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5178":{"name":"mouse events","type":"categoryDef","startIndex":6678,"stopIndex":7581,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[{"__isSmartRef__":true,"id":5177},{"__isSmartRef__":true,"id":5179},{"__isSmartRef__":true,"id":5180},{"__isSmartRef__":true,"id":5181},{"__isSmartRef__":true,"id":5182}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5179":{"name":"onMouseUp","type":"propertyDef","startIndex":6946,"stopIndex":7083,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5178},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5180":{"name":"onDrag","type":"propertyDef","startIndex":7086,"stopIndex":7313,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5178},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5181":{"name":"onDragEnd","type":"propertyDef","startIndex":7316,"stopIndex":7407,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5178},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5182":{"name":"removHelperMorphs","type":"propertyDef","startIndex":7410,"stopIndex":7579,"fileName":"lively/morphic/ColorChooserDraft.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5178},"className":"lively.morphic.ColorField","_owner":{"__isSmartRef__":true,"id":5164},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5183":{"target":{"__isSmartRef__":true,"id":5184},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Compat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5184":{"name":"lively.morphic.Compat","type":"moduleDef","startIndex":0,"stopIndex":689,"fileName":"lively/morphic/Compat.js","_subElements":[{"__isSmartRef__":true,"id":5185},{"__isSmartRef__":true,"id":5186},{"__isSmartRef__":true,"id":5190},{"__isSmartRef__":true,"id":5191},{"__isSmartRef__":true,"id":5192}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5185":{"name":null,"type":"comment","startIndex":90,"stopIndex":90,"fileName":"lively/morphic/Compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5186":{"name":"Global","type":"klassExtensionDef","startIndex":91,"stopIndex":241,"fileName":"lively/morphic/Compat.js","_subElements":[{"__isSmartRef__":true,"id":5187},{"__isSmartRef__":true,"id":5189}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5188}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5187":{"name":"alert","type":"propertyDef","startIndex":115,"stopIndex":173,"fileName":"lively/morphic/Compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5188},"className":"Global","_owner":{"__isSmartRef__":true,"id":5186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5188":{"name":"default category","type":"categoryDef","startIndex":113,"stopIndex":238,"fileName":"lively/morphic/Compat.js","_subElements":[{"__isSmartRef__":true,"id":5187},{"__isSmartRef__":true,"id":5189}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5189":{"name":"alertOK","type":"propertyDef","startIndex":175,"stopIndex":236,"fileName":"lively/morphic/Compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5188},"className":"Global","_owner":{"__isSmartRef__":true,"id":5186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5190":{"name":null,"type":"comment","startIndex":242,"stopIndex":242,"fileName":"lively/morphic/Compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5191":{"name":null,"type":"unknown","startIndex":243,"stopIndex":276,"fileName":"lively/morphic/Compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5192":{"name":null,"type":"comment","startIndex":277,"stopIndex":670,"fileName":"lively/morphic/Compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5193":{"target":{"__isSmartRef__":true,"id":5194},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/CompatLayer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5194":{"name":"lively.morphic.CompatLayer","type":"moduleDef","startIndex":0,"stopIndex":1639,"fileName":"lively/morphic/CompatLayer.js","_subElements":[{"__isSmartRef__":true,"id":5195},{"__isSmartRef__":true,"id":5196},{"__isSmartRef__":true,"id":5199},{"__isSmartRef__":true,"id":5220}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5195":{"name":null,"type":"comment","startIndex":102,"stopIndex":102,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5196":{"name":"lively.morphic.Compat.Text","type":"klassDef","startIndex":103,"stopIndex":242,"fileName":"lively/morphic/CompatLayer.js","_subElements":[{"__isSmartRef__":true,"id":5197}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":5198}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5197":{"name":"initialize","type":"propertyDef","startIndex":167,"stopIndex":237,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5198},"className":"lively.morphic.Compat.Text","_owner":{"__isSmartRef__":true,"id":5196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5198":{"name":"initializing","type":"categoryDef","startIndex":149,"stopIndex":239,"fileName":"lively/morphic/CompatLayer.js","_subElements":[{"__isSmartRef__":true,"id":5197}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5199":{"name":"NewMorphicCompatLayer","type":"copDef","startIndex":243,"stopIndex":1619,"fileName":"lively/morphic/CompatLayer.js","_subElements":[{"__isSmartRef__":true,"id":5200},{"__isSmartRef__":true,"id":5216}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5200":{"name":"Global","type":"copSubElement","startIndex":279,"stopIndex":1429,"fileName":"lively/morphic/CompatLayer.js","_subElements":[{"__isSmartRef__":true,"id":5201},{"__isSmartRef__":true,"id":5203},{"__isSmartRef__":true,"id":5204},{"__isSmartRef__":true,"id":5205},{"__isSmartRef__":true,"id":5206},{"__isSmartRef__":true,"id":5207},{"__isSmartRef__":true,"id":5208},{"__isSmartRef__":true,"id":5209},{"__isSmartRef__":true,"id":5210},{"__isSmartRef__":true,"id":5211},{"__isSmartRef__":true,"id":5212},{"__isSmartRef__":true,"id":5213},{"__isSmartRef__":true,"id":5214},{"__isSmartRef__":true,"id":5215}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineObject","_owner":{"__isSmartRef__":true,"id":5199},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5201":{"name":"Morph","type":"propertyDef","startIndex":303,"stopIndex":350,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5202":{"name":"default category","type":"categoryDef","startIndex":58,"stopIndex":1185,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5201},{"__isSmartRef__":true,"id":5203},{"__isSmartRef__":true,"id":5204},{"__isSmartRef__":true,"id":5205},{"__isSmartRef__":true,"id":5206},{"__isSmartRef__":true,"id":5207},{"__isSmartRef__":true,"id":5208},{"__isSmartRef__":true,"id":5209},{"__isSmartRef__":true,"id":5210},{"__isSmartRef__":true,"id":5211},{"__isSmartRef__":true,"id":5212},{"__isSmartRef__":true,"id":5213},{"__isSmartRef__":true,"id":5214},{"__isSmartRef__":true,"id":5215}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5203":{"name":"BoxMorph","type":"propertyDef","startIndex":352,"stopIndex":400,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5204":{"name":"TextMorph","type":"propertyDef","startIndex":402,"stopIndex":452,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5205":{"name":"WorldMorph","type":"propertyDef","startIndex":454,"stopIndex":506,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5206":{"name":"ButtonMorph","type":"propertyDef","startIndex":508,"stopIndex":562,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5207":{"name":"PanelMorph","type":"propertyDef","startIndex":564,"stopIndex":616,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5208":{"name":"HorizontalDivider","type":"propertyDef","startIndex":618,"stopIndex":689,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5209":{"name":"SliderMorph","type":"propertyDef","startIndex":691,"stopIndex":745,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5210":{"name":"MenuMorph","type":"propertyDef","startIndex":747,"stopIndex":797,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5211":{"name":"ImageMorph","type":"propertyDef","startIndex":799,"stopIndex":851,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5212":{"name":"ContainerMorph","type":"propertyDef","startIndex":853,"stopIndex":909,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5213":{"name":"Widget","type":"propertyDef","startIndex":912,"stopIndex":966,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5214":{"name":"newTextPane","type":"propertyDef","startIndex":969,"stopIndex":1239,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5215":{"name":"newDragnDropListPane","type":"propertyDef","startIndex":1241,"stopIndex":1426,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5202},"_owner":{"__isSmartRef__":true,"id":5200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5216":{"name":"lively","type":"copSubElement","startIndex":1430,"stopIndex":1617,"fileName":"lively/morphic/CompatLayer.js","_subElements":[{"__isSmartRef__":true,"id":5217},{"__isSmartRef__":true,"id":5219}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineObject","_owner":{"__isSmartRef__":true,"id":5199},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5217":{"name":"scene","type":"propertyDef","startIndex":1455,"stopIndex":1526,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5218},"_owner":{"__isSmartRef__":true,"id":5216},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5218":{"name":"default category","type":"categoryDef","startIndex":1210,"stopIndex":1373,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5217},{"__isSmartRef__":true,"id":5219}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5219":{"name":"Text","type":"propertyDef","startIndex":1528,"stopIndex":1614,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5218},"_owner":{"__isSmartRef__":true,"id":5216},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5220":{"name":null,"type":"comment","startIndex":1620,"stopIndex":1620,"fileName":"lively/morphic/CompatLayer.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5221":{"target":{"__isSmartRef__":true,"id":5222},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/CompatSCB.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5222":{"name":"lively.morphic.CompatSCB","type":"moduleDef","startIndex":0,"stopIndex":109,"fileName":"lively/morphic/CompatSCB.js","_subElements":[{"__isSmartRef__":true,"id":5223}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5223":{"name":null,"type":"comment","startIndex":65,"stopIndex":90,"fileName":"lively/morphic/CompatSCB.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5224":{"target":{"__isSmartRef__":true,"id":5225},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Complete.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5225":{"name":"lively.morphic.Complete","type":"moduleDef","startIndex":0,"stopIndex":482,"fileName":"lively/morphic/Complete.js","_subElements":[{"__isSmartRef__":true,"id":5226},{"__isSmartRef__":true,"id":5227}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5226":{"name":null,"type":"comment","startIndex":330,"stopIndex":413,"fileName":"lively/morphic/Complete.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5227":{"name":null,"type":"unknown","startIndex":414,"stopIndex":463,"fileName":"lively/morphic/Complete.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5228":{"target":{"__isSmartRef__":true,"id":5229},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Connectors.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5229":{"name":"lively.morphic.Connectors","type":"moduleDef","startIndex":0,"stopIndex":15305,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5230},{"__isSmartRef__":true,"id":5231},{"__isSmartRef__":true,"id":5243},{"__isSmartRef__":true,"id":5255},{"__isSmartRef__":true,"id":5256},{"__isSmartRef__":true,"id":5259},{"__isSmartRef__":true,"id":5267},{"__isSmartRef__":true,"id":5268},{"__isSmartRef__":true,"id":5280},{"__isSmartRef__":true,"id":5283},{"__isSmartRef__":true,"id":5284},{"__isSmartRef__":true,"id":5285},{"__isSmartRef__":true,"id":5290},{"__isSmartRef__":true,"id":5293},{"__isSmartRef__":true,"id":5297}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5230":{"name":null,"type":"comment","startIndex":135,"stopIndex":210,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5231":{"name":"lively.morphic.MagnetHalo","type":"klassDef","startIndex":211,"stopIndex":1603,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5232},{"__isSmartRef__":true,"id":5234},{"__isSmartRef__":true,"id":5235},{"__isSmartRef__":true,"id":5236},{"__isSmartRef__":true,"id":5238},{"__isSmartRef__":true,"id":5240},{"__isSmartRef__":true,"id":5241},{"__isSmartRef__":true,"id":5242}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":5233},{"__isSmartRef__":true,"id":5237},{"__isSmartRef__":true,"id":5239}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5232":{"name":"style","type":"propertyDef","startIndex":282,"stopIndex":351,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5233},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5233":{"name":"settings","type":"categoryDef","startIndex":268,"stopIndex":408,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5232},{"__isSmartRef__":true,"id":5234},{"__isSmartRef__":true,"id":5235}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5234":{"name":"defaultExtent","type":"propertyDef","startIndex":353,"stopIndex":381,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5233},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5235":{"name":"isMagnetHalo","type":"propertyDef","startIndex":383,"stopIndex":405,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5233},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5236":{"name":"initialize","type":"propertyDef","startIndex":428,"stopIndex":520,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5237},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5237":{"name":"initializing","type":"categoryDef","startIndex":410,"stopIndex":523,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5236}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5238":{"name":"getControlPoints","type":"propertyDef","startIndex":545,"stopIndex":777,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5239},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5239":{"name":"connection","type":"categoryDef","startIndex":525,"stopIndex":1600,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5238},{"__isSmartRef__":true,"id":5240},{"__isSmartRef__":true,"id":5241},{"__isSmartRef__":true,"id":5242}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5240":{"name":"onDrag","type":"propertyDef","startIndex":780,"stopIndex":988,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5239},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5241":{"name":"onDragStart","type":"propertyDef","startIndex":990,"stopIndex":1454,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5239},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5242":{"name":"onDragEnd","type":"propertyDef","startIndex":1456,"stopIndex":1595,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5239},"className":"lively.morphic.MagnetHalo","_owner":{"__isSmartRef__":true,"id":5231},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5243":{"name":"lively.morphic.Magnet","type":"klassDef","startIndex":1604,"stopIndex":3027,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5244},{"__isSmartRef__":true,"id":5246},{"__isSmartRef__":true,"id":5247},{"__isSmartRef__":true,"id":5248},{"__isSmartRef__":true,"id":5249},{"__isSmartRef__":true,"id":5250},{"__isSmartRef__":true,"id":5251},{"__isSmartRef__":true,"id":5252},{"__isSmartRef__":true,"id":5253},{"__isSmartRef__":true,"id":5254}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":5245}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5244":{"name":"isMagnet","type":"propertyDef","startIndex":1667,"stopIndex":1685,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5245":{"name":"default category","type":"categoryDef","startIndex":1645,"stopIndex":3024,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5244},{"__isSmartRef__":true,"id":5246},{"__isSmartRef__":true,"id":5247},{"__isSmartRef__":true,"id":5248},{"__isSmartRef__":true,"id":5249},{"__isSmartRef__":true,"id":5250},{"__isSmartRef__":true,"id":5251},{"__isSmartRef__":true,"id":5252},{"__isSmartRef__":true,"id":5253},{"__isSmartRef__":true,"id":5254}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5246":{"name":"initialize","type":"propertyDef","startIndex":1688,"stopIndex":1835,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5247":{"name":"setMorph","type":"propertyDef","startIndex":1837,"stopIndex":1901,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5248":{"name":"addConnectedControlPoint","type":"propertyDef","startIndex":1905,"stopIndex":2289,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5249":{"name":"removeConnectedControlPoint","type":"propertyDef","startIndex":2291,"stopIndex":2559,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5250":{"name":"getConnectedControlPoints","type":"propertyDef","startIndex":2567,"stopIndex":2659,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5251":{"name":"getPosition","type":"propertyDef","startIndex":2661,"stopIndex":2725,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5252":{"name":"setPosition","type":"propertyDef","startIndex":2727,"stopIndex":2792,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5253":{"name":"getGlobalPosition","type":"propertyDef","startIndex":2794,"stopIndex":2956,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5254":{"name":"remove","type":"propertyDef","startIndex":2958,"stopIndex":3018,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5245},"className":"lively.morphic.Magnet","_owner":{"__isSmartRef__":true,"id":5243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5255":{"name":null,"type":"comment","startIndex":3028,"stopIndex":3028,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5256":{"name":"ConnectorLayer","type":"copDef","startIndex":3029,"stopIndex":4797,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5257},{"__isSmartRef__":true,"id":5258}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5257":{"name":"lively.morphic.Morph","type":"copSubElement","startIndex":3058,"stopIndex":3426,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5256},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5258":{"name":"lively.morphic.PathVertexControlPointHalo","type":"copSubElement","startIndex":3427,"stopIndex":4795,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5256},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5259":{"name":"lively.morphic.VisualBindingsLayer","type":"copDef","startIndex":4798,"stopIndex":6011,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5260},{"__isSmartRef__":true,"id":5263},{"__isSmartRef__":true,"id":5266}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5260":{"name":"lively.morphic.World","type":"copSubElement","startIndex":4847,"stopIndex":5432,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5261}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5259},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5261":{"name":"morphMenuItems","type":"propertyDef","startIndex":4884,"stopIndex":5429,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5262},"_owner":{"__isSmartRef__":true,"id":5260},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5262":{"name":"default category","type":"categoryDef","startIndex":84,"stopIndex":633,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5261}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5263":{"name":"lively.morphic.Morph","type":"copSubElement","startIndex":5433,"stopIndex":5997,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5264}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5259},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5264":{"name":"morphMenuItems","type":"propertyDef","startIndex":5471,"stopIndex":5994,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5265},"_owner":{"__isSmartRef__":true,"id":5263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5265":{"name":"default category","type":"categoryDef","startIndex":671,"stopIndex":1198,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5264}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5266":{"name":"beGlobal()","type":"copSubElement","startIndex":5998,"stopIndex":6009,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":5259},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5267":{"name":null,"type":"comment","startIndex":6012,"stopIndex":6012,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5268":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":6013,"stopIndex":9082,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5269},{"__isSmartRef__":true,"id":5271},{"__isSmartRef__":true,"id":5272},{"__isSmartRef__":true,"id":5273},{"__isSmartRef__":true,"id":5274},{"__isSmartRef__":true,"id":5275},{"__isSmartRef__":true,"id":5276},{"__isSmartRef__":true,"id":5277},{"__isSmartRef__":true,"id":5278},{"__isSmartRef__":true,"id":5279}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5270}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5269":{"name":"morphsContainingPointInExtendedBounds","type":"propertyDef","startIndex":6069,"stopIndex":6738,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5270":{"name":"visual connectors","type":"categoryDef","startIndex":6046,"stopIndex":9079,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5269},{"__isSmartRef__":true,"id":5271},{"__isSmartRef__":true,"id":5272},{"__isSmartRef__":true,"id":5273},{"__isSmartRef__":true,"id":5274},{"__isSmartRef__":true,"id":5275},{"__isSmartRef__":true,"id":5276},{"__isSmartRef__":true,"id":5277},{"__isSmartRef__":true,"id":5278},{"__isSmartRef__":true,"id":5279}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5271":{"name":"getMagnets","type":"propertyDef","startIndex":6740,"stopIndex":6899,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5272":{"name":"showMagnets","type":"propertyDef","startIndex":6901,"stopIndex":6989,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5273":{"name":"hideMagnets","type":"propertyDef","startIndex":6991,"stopIndex":7080,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5274":{"name":"addDefaultMagnets","type":"propertyDef","startIndex":7082,"stopIndex":7619,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5275":{"name":"toggleMagnets","type":"propertyDef","startIndex":7621,"stopIndex":7851,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5276":{"name":"removeUnusedMagnets","type":"propertyDef","startIndex":7854,"stopIndex":8036,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5277":{"name":"createConnectorTo","type":"propertyDef","startIndex":8038,"stopIndex":8837,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5278":{"name":"getMagnetForPos","type":"propertyDef","startIndex":8839,"stopIndex":8924,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5279":{"name":"getVisualBindingsBuilderFor","type":"propertyDef","startIndex":8926,"stopIndex":9074,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5270},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5268},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5280":{"name":"lively.morphic.Path","type":"klassExtensionDef","startIndex":9083,"stopIndex":9331,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5281}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5282}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5281":{"name":"disconnectFromMagnets","type":"propertyDef","startIndex":9138,"stopIndex":9326,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5282},"className":"lively.morphic.Path","_owner":{"__isSmartRef__":true,"id":5280},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5282":{"name":"visual connectors","type":"categoryDef","startIndex":9115,"stopIndex":9328,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5281}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5283":{"name":null,"type":"unknown","startIndex":9332,"stopIndex":9358,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5284":{"name":null,"type":"comment","startIndex":9359,"stopIndex":9359,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5285":{"name":"lively.morphic.ControlPoint","type":"klassExtensionDef","startIndex":9360,"stopIndex":10085,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5286},{"__isSmartRef__":true,"id":5288},{"__isSmartRef__":true,"id":5289}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5287}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5286":{"name":"alignToMagnet","type":"propertyDef","startIndex":9401,"stopIndex":9675,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5287},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":5285},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5287":{"name":"default category","type":"categoryDef","startIndex":9399,"stopIndex":10082,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5286},{"__isSmartRef__":true,"id":5288},{"__isSmartRef__":true,"id":5289}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5288":{"name":"setConnectedMagnet","type":"propertyDef","startIndex":9680,"stopIndex":9994,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5287},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":5285},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5289":{"name":"getConnectedMagnet","type":"propertyDef","startIndex":9999,"stopIndex":10077,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5287},"className":"lively.morphic.ControlPoint","_owner":{"__isSmartRef__":true,"id":5285},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5290":{"name":"lively.bindings","type":"klassExtensionDef","startIndex":10086,"stopIndex":12721,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5291}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5292}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5291":{"name":"visualConnect","type":"propertyDef","startIndex":10119,"stopIndex":12716,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5292},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":5290},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5292":{"name":"default category","type":"categoryDef","startIndex":10117,"stopIndex":12718,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5291}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5293":{"name":"AttributeConnection","type":"klassExtensionDef","startIndex":12722,"stopIndex":13083,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5294},{"__isSmartRef__":true,"id":5296}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5295}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5294":{"name":"getVisualConnector","type":"propertyDef","startIndex":12777,"stopIndex":12843,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5295},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":5293},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5295":{"name":"visual connection","type":"categoryDef","startIndex":12754,"stopIndex":13080,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5294},{"__isSmartRef__":true,"id":5296}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5296":{"name":"visualDisconnect","type":"propertyDef","startIndex":12845,"stopIndex":13077,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5295},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":5293},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5297":{"name":"lively.morph.ConnectionBuilder","type":"klassDef","startIndex":13084,"stopIndex":15286,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5298},{"__isSmartRef__":true,"id":5300},{"__isSmartRef__":true,"id":5301},{"__isSmartRef__":true,"id":5303},{"__isSmartRef__":true,"id":5304}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":5299},{"__isSmartRef__":true,"id":5302},{"__isSmartRef__":true,"id":5305}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5298":{"name":"style","type":"propertyDef","startIndex":13164,"stopIndex":13207,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5299},"className":"lively.morph.ConnectionBuilder","_owner":{"__isSmartRef__":true,"id":5297},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5299":{"name":"initializing","type":"categoryDef","startIndex":13146,"stopIndex":13745,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5298},{"__isSmartRef__":true,"id":5300}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5300":{"name":"initialize","type":"propertyDef","startIndex":13209,"stopIndex":13742,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5299},"className":"lively.morph.ConnectionBuilder","_owner":{"__isSmartRef__":true,"id":5297},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5301":{"name":"dropOn","type":"propertyDef","startIndex":13761,"stopIndex":13955,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5302},"className":"lively.morph.ConnectionBuilder","_owner":{"__isSmartRef__":true,"id":5297},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5302":{"name":"dropping","type":"categoryDef","startIndex":13747,"stopIndex":14006,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5301},{"__isSmartRef__":true,"id":5303}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5303":{"name":"getGrabShadow","type":"propertyDef","startIndex":13957,"stopIndex":14002,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5302},"className":"lively.morph.ConnectionBuilder","_owner":{"__isSmartRef__":true,"id":5297},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5304":{"name":"openConnectToMenu","type":"propertyDef","startIndex":14019,"stopIndex":15282,"fileName":"lively/morphic/Connectors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5305},"className":"lively.morph.ConnectionBuilder","_owner":{"__isSmartRef__":true,"id":5297},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5305":{"name":"menus","type":"categoryDef","startIndex":14008,"stopIndex":15283,"fileName":"lively/morphic/Connectors.js","_subElements":[{"__isSmartRef__":true,"id":5304}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5306":{"target":{"__isSmartRef__":true,"id":5307},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Core.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5307":{"name":"lively.morphic.Core","type":"moduleDef","startIndex":0,"stopIndex":33726,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5308},{"__isSmartRef__":true,"id":5309},{"__isSmartRef__":true,"id":5310},{"__isSmartRef__":true,"id":5311},{"__isSmartRef__":true,"id":5345},{"__isSmartRef__":true,"id":5346},{"__isSmartRef__":true,"id":5447},{"__isSmartRef__":true,"id":5448},{"__isSmartRef__":true,"id":5468},{"__isSmartRef__":true,"id":5469},{"__isSmartRef__":true,"id":5473},{"__isSmartRef__":true,"id":5474},{"__isSmartRef__":true,"id":5477},{"__isSmartRef__":true,"id":5478},{"__isSmartRef__":true,"id":5481},{"__isSmartRef__":true,"id":5482},{"__isSmartRef__":true,"id":5487},{"__isSmartRef__":true,"id":5488},{"__isSmartRef__":true,"id":5499},{"__isSmartRef__":true,"id":5508},{"__isSmartRef__":true,"id":5517},{"__isSmartRef__":true,"id":5518},{"__isSmartRef__":true,"id":5522}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5308":{"name":null,"type":"comment","startIndex":100,"stopIndex":100,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5309":{"name":null,"type":"unknown","startIndex":101,"stopIndex":289,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5310":{"name":null,"type":"comment","startIndex":290,"stopIndex":290,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5311":{"name":"lively.morphic.Similitude","type":"klassDef","startIndex":291,"stopIndex":8999,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5312},{"__isSmartRef__":true,"id":5314},{"__isSmartRef__":true,"id":5316},{"__isSmartRef__":true,"id":5318},{"__isSmartRef__":true,"id":5319},{"__isSmartRef__":true,"id":5320},{"__isSmartRef__":true,"id":5322},{"__isSmartRef__":true,"id":5323},{"__isSmartRef__":true,"id":5324},{"__isSmartRef__":true,"id":5325},{"__isSmartRef__":true,"id":5327},{"__isSmartRef__":true,"id":5329},{"__isSmartRef__":true,"id":5330},{"__isSmartRef__":true,"id":5331},{"__isSmartRef__":true,"id":5332},{"__isSmartRef__":true,"id":5334},{"__isSmartRef__":true,"id":5336},{"__isSmartRef__":true,"id":5337},{"__isSmartRef__":true,"id":5338},{"__isSmartRef__":true,"id":5339},{"__isSmartRef__":true,"id":5341},{"__isSmartRef__":true,"id":5342},{"__isSmartRef__":true,"id":5343}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":5313},{"__isSmartRef__":true,"id":5315},{"__isSmartRef__":true,"id":5317},{"__isSmartRef__":true,"id":5321},{"__isSmartRef__":true,"id":5326},{"__isSmartRef__":true,"id":5328},{"__isSmartRef__":true,"id":5333},{"__isSmartRef__":true,"id":5335},{"__isSmartRef__":true,"id":5340},{"__isSmartRef__":true,"id":5344}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5312":{"name":"documentation","type":"propertyDef","startIndex":355,"stopIndex":439,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5313},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5313":{"name":"documentation","type":"categoryDef","startIndex":336,"stopIndex":442,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5312}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5314":{"name":"eps","type":"propertyDef","startIndex":458,"stopIndex":473,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5315},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5315":{"name":"settings","type":"categoryDef","startIndex":444,"stopIndex":489,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5314}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5316":{"name":"initialize","type":"propertyDef","startIndex":509,"stopIndex":1648,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5317},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5317":{"name":"initializing","type":"categoryDef","startIndex":491,"stopIndex":2026,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5316},{"__isSmartRef__":true,"id":5318},{"__isSmartRef__":true,"id":5319}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5318":{"name":"copy","type":"propertyDef","startIndex":1651,"stopIndex":1731,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5317},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5319":{"name":"fromMatrix","type":"propertyDef","startIndex":1734,"stopIndex":2022,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5317},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5320":{"name":"getRotation","type":"propertyDef","startIndex":2043,"stopIndex":2339,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5321},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5321":{"name":"accessing","type":"categoryDef","startIndex":2028,"stopIndex":3192,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5320},{"__isSmartRef__":true,"id":5322},{"__isSmartRef__":true,"id":5323},{"__isSmartRef__":true,"id":5324}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5322":{"name":"getScale","type":"propertyDef","startIndex":2342,"stopIndex":2643,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5321},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5323":{"name":"getScalePoint","type":"propertyDef","startIndex":2646,"stopIndex":3112,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5321},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5324":{"name":"getTranslation","type":"propertyDef","startIndex":3115,"stopIndex":3188,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5321},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5325":{"name":"isTranslation","type":"propertyDef","startIndex":3207,"stopIndex":3398,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5326},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5326":{"name":"testing","type":"categoryDef","startIndex":3194,"stopIndex":3401,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5325}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5327":{"name":"toSVGAttributeValue","type":"propertyDef","startIndex":3419,"stopIndex":3848,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5328},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5328":{"name":"converting","type":"categoryDef","startIndex":3403,"stopIndex":5380,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5327},{"__isSmartRef__":true,"id":5329},{"__isSmartRef__":true,"id":5330},{"__isSmartRef__":true,"id":5331}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5329":{"name":"toCSSValue","type":"propertyDef","startIndex":3850,"stopIndex":4964,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5328},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5330":{"name":"toString","type":"propertyDef","startIndex":4967,"stopIndex":5033,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5328},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5331":{"name":"toMatrix","type":"propertyDef","startIndex":5035,"stopIndex":5376,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5328},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5332":{"name":"applyTo","type":"propertyDef","startIndex":5399,"stopIndex":6387,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5333},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5333":{"name":"application","type":"categoryDef","startIndex":5382,"stopIndex":6390,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5332}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5334":{"name":"transformPoint","type":"propertyDef","startIndex":6411,"stopIndex":6500,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5335},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5335":{"name":"transforming","type":"categoryDef","startIndex":6392,"stopIndex":7529,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5334},{"__isSmartRef__":true,"id":5336},{"__isSmartRef__":true,"id":5337},{"__isSmartRef__":true,"id":5338}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5336":{"name":"transformDirection","type":"propertyDef","startIndex":6503,"stopIndex":6605,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5335},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5337":{"name":"matrixTransformForMinMax","type":"propertyDef","startIndex":6608,"stopIndex":6936,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5335},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5338":{"name":"transformRectToRect","type":"propertyDef","startIndex":6939,"stopIndex":7525,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5335},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5339":{"name":"preConcatenate","type":"propertyDef","startIndex":7554,"stopIndex":7961,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5340},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5340":{"name":"matrix operations","type":"categoryDef","startIndex":7531,"stopIndex":8518,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5339},{"__isSmartRef__":true,"id":5341},{"__isSmartRef__":true,"id":5342}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5341":{"name":"inverse","type":"propertyDef","startIndex":7963,"stopIndex":8364,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5340},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5342":{"name":"createInverse","type":"propertyDef","startIndex":8368,"stopIndex":8514,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5340},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5343":{"name":"ensureNumber","type":"propertyDef","startIndex":8532,"stopIndex":8994,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5344},"className":"lively.morphic.Similitude","_owner":{"__isSmartRef__":true,"id":5311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5344":{"name":"helper","type":"categoryDef","startIndex":8520,"stopIndex":8996,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5343}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5345":{"name":null,"type":"comment","startIndex":9000,"stopIndex":9000,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5346":{"name":"lively.morphic.Morph","type":"klassDef","startIndex":9001,"stopIndex":27461,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5347},{"__isSmartRef__":true,"id":5349},{"__isSmartRef__":true,"id":5350},{"__isSmartRef__":true,"id":5352},{"__isSmartRef__":true,"id":5353},{"__isSmartRef__":true,"id":5354},{"__isSmartRef__":true,"id":5355},{"__isSmartRef__":true,"id":5356},{"__isSmartRef__":true,"id":5357},{"__isSmartRef__":true,"id":5359},{"__isSmartRef__":true,"id":5361},{"__isSmartRef__":true,"id":5362},{"__isSmartRef__":true,"id":5363},{"__isSmartRef__":true,"id":5364},{"__isSmartRef__":true,"id":5365},{"__isSmartRef__":true,"id":5366},{"__isSmartRef__":true,"id":5367},{"__isSmartRef__":true,"id":5368},{"__isSmartRef__":true,"id":5369},{"__isSmartRef__":true,"id":5370},{"__isSmartRef__":true,"id":5371},{"__isSmartRef__":true,"id":5372},{"__isSmartRef__":true,"id":5373},{"__isSmartRef__":true,"id":5374},{"__isSmartRef__":true,"id":5375},{"__isSmartRef__":true,"id":5376},{"__isSmartRef__":true,"id":5377},{"__isSmartRef__":true,"id":5378},{"__isSmartRef__":true,"id":5380},{"__isSmartRef__":true,"id":5381},{"__isSmartRef__":true,"id":5382},{"__isSmartRef__":true,"id":5383},{"__isSmartRef__":true,"id":5384},{"__isSmartRef__":true,"id":5385},{"__isSmartRef__":true,"id":5386},{"__isSmartRef__":true,"id":5387},{"__isSmartRef__":true,"id":5388},{"__isSmartRef__":true,"id":5389},{"__isSmartRef__":true,"id":5390},{"__isSmartRef__":true,"id":5391},{"__isSmartRef__":true,"id":5392},{"__isSmartRef__":true,"id":5393},{"__isSmartRef__":true,"id":5394},{"__isSmartRef__":true,"id":5395},{"__isSmartRef__":true,"id":5396},{"__isSmartRef__":true,"id":5397},{"__isSmartRef__":true,"id":5398},{"__isSmartRef__":true,"id":5399},{"__isSmartRef__":true,"id":5400},{"__isSmartRef__":true,"id":5402},{"__isSmartRef__":true,"id":5403},{"__isSmartRef__":true,"id":5404},{"__isSmartRef__":true,"id":5405},{"__isSmartRef__":true,"id":5406},{"__isSmartRef__":true,"id":5407},{"__isSmartRef__":true,"id":5408},{"__isSmartRef__":true,"id":5409},{"__isSmartRef__":true,"id":5411},{"__isSmartRef__":true,"id":5412},{"__isSmartRef__":true,"id":5414},{"__isSmartRef__":true,"id":5415},{"__isSmartRef__":true,"id":5417},{"__isSmartRef__":true,"id":5418},{"__isSmartRef__":true,"id":5419},{"__isSmartRef__":true,"id":5420},{"__isSmartRef__":true,"id":5421},{"__isSmartRef__":true,"id":5422},{"__isSmartRef__":true,"id":5423},{"__isSmartRef__":true,"id":5424},{"__isSmartRef__":true,"id":5425},{"__isSmartRef__":true,"id":5426},{"__isSmartRef__":true,"id":5427},{"__isSmartRef__":true,"id":5429},{"__isSmartRef__":true,"id":5431},{"__isSmartRef__":true,"id":5432},{"__isSmartRef__":true,"id":5433},{"__isSmartRef__":true,"id":5434},{"__isSmartRef__":true,"id":5435},{"__isSmartRef__":true,"id":5436},{"__isSmartRef__":true,"id":5437},{"__isSmartRef__":true,"id":5438},{"__isSmartRef__":true,"id":5439},{"__isSmartRef__":true,"id":5440},{"__isSmartRef__":true,"id":5441},{"__isSmartRef__":true,"id":5442},{"__isSmartRef__":true,"id":5444},{"__isSmartRef__":true,"id":5445}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":5348},{"__isSmartRef__":true,"id":5351},{"__isSmartRef__":true,"id":5358},{"__isSmartRef__":true,"id":5360},{"__isSmartRef__":true,"id":5379},{"__isSmartRef__":true,"id":5401},{"__isSmartRef__":true,"id":5410},{"__isSmartRef__":true,"id":5413},{"__isSmartRef__":true,"id":5416},{"__isSmartRef__":true,"id":5428},{"__isSmartRef__":true,"id":5430},{"__isSmartRef__":true,"id":5443},{"__isSmartRef__":true,"id":5446}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5347":{"name":"style","type":"propertyDef","startIndex":9057,"stopIndex":9109,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5348},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5348":{"name":"properties","type":"categoryDef","startIndex":9041,"stopIndex":9131,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5347},{"__isSmartRef__":true,"id":5349}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5349":{"name":"isMorph","type":"propertyDef","startIndex":9111,"stopIndex":9128,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5348},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5350":{"name":"isMorph","type":"propertyDef","startIndex":9151,"stopIndex":9168,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5351},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5351":{"name":"initializing","type":"categoryDef","startIndex":9133,"stopIndex":9819,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5350},{"__isSmartRef__":true,"id":5352},{"__isSmartRef__":true,"id":5353},{"__isSmartRef__":true,"id":5354},{"__isSmartRef__":true,"id":5355},{"__isSmartRef__":true,"id":5356}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5352":{"name":"idCounter","type":"propertyDef","startIndex":9170,"stopIndex":9186,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5351},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5353":{"name":"initialize","type":"propertyDef","startIndex":9188,"stopIndex":9479,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5351},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5354":{"name":"setNewId","type":"propertyDef","startIndex":9481,"stopIndex":9589,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5351},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5355":{"name":"defaultShape","type":"propertyDef","startIndex":9592,"stopIndex":9726,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5351},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5356":{"name":"defaultRenderContext","type":"propertyDef","startIndex":9728,"stopIndex":9815,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5351},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5357":{"name":"makeStyleSpec","type":"propertyDef","startIndex":9846,"stopIndex":9928,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5358},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5358":{"name":"accessing -- shapes","type":"categoryDef","startIndex":9821,"stopIndex":9931,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5357}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5359":{"name":"setPosition","type":"propertyDef","startIndex":9968,"stopIndex":10049,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5360":{"name":"accessing -- morph properties","type":"categoryDef","startIndex":9933,"stopIndex":12757,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5359},{"__isSmartRef__":true,"id":5361},{"__isSmartRef__":true,"id":5362},{"__isSmartRef__":true,"id":5363},{"__isSmartRef__":true,"id":5364},{"__isSmartRef__":true,"id":5365},{"__isSmartRef__":true,"id":5366},{"__isSmartRef__":true,"id":5367},{"__isSmartRef__":true,"id":5368},{"__isSmartRef__":true,"id":5369},{"__isSmartRef__":true,"id":5370},{"__isSmartRef__":true,"id":5371},{"__isSmartRef__":true,"id":5372},{"__isSmartRef__":true,"id":5373},{"__isSmartRef__":true,"id":5374},{"__isSmartRef__":true,"id":5375},{"__isSmartRef__":true,"id":5376},{"__isSmartRef__":true,"id":5377}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5361":{"name":"getPosition","type":"propertyDef","startIndex":10051,"stopIndex":10131,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5362":{"name":"setRotation","type":"propertyDef","startIndex":10133,"stopIndex":10214,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5363":{"name":"getRotation","type":"propertyDef","startIndex":10216,"stopIndex":10290,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5364":{"name":"setScale","type":"propertyDef","startIndex":10292,"stopIndex":10367,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5365":{"name":"getScale","type":"propertyDef","startIndex":10369,"stopIndex":10437,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5366":{"name":"setBounds","type":"propertyDef","startIndex":10439,"stopIndex":10586,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5367":{"name":"getBounds","type":"propertyDef","startIndex":10588,"stopIndex":10947,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5368":{"name":"innerBounds","type":"propertyDef","startIndex":10949,"stopIndex":11010,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5369":{"name":"setVisible","type":"propertyDef","startIndex":11012,"stopIndex":11090,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5370":{"name":"isVisible","type":"propertyDef","startIndex":11092,"stopIndex":11214,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5371":{"name":"setOrigin","type":"propertyDef","startIndex":11216,"stopIndex":11972,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5372":{"name":"getOrigin","type":"propertyDef","startIndex":11974,"stopIndex":12048,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5373":{"name":"setClipMode","type":"propertyDef","startIndex":12051,"stopIndex":12155,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5374":{"name":"getClipMode","type":"propertyDef","startIndex":12157,"stopIndex":12239,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5375":{"name":"beClip","type":"propertyDef","startIndex":12241,"stopIndex":12358,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5376":{"name":"setHandStyle","type":"propertyDef","startIndex":12360,"stopIndex":12673,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5377":{"name":"getHandStyle","type":"propertyDef","startIndex":12675,"stopIndex":12752,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5360},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5378":{"name":"setExtent","type":"propertyDef","startIndex":12794,"stopIndex":13282,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5379":{"name":"accessing -- shape properties","type":"categoryDef","startIndex":12759,"stopIndex":15044,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5378},{"__isSmartRef__":true,"id":5380},{"__isSmartRef__":true,"id":5381},{"__isSmartRef__":true,"id":5382},{"__isSmartRef__":true,"id":5383},{"__isSmartRef__":true,"id":5384},{"__isSmartRef__":true,"id":5385},{"__isSmartRef__":true,"id":5386},{"__isSmartRef__":true,"id":5387},{"__isSmartRef__":true,"id":5388},{"__isSmartRef__":true,"id":5389},{"__isSmartRef__":true,"id":5390},{"__isSmartRef__":true,"id":5391},{"__isSmartRef__":true,"id":5392},{"__isSmartRef__":true,"id":5393},{"__isSmartRef__":true,"id":5394},{"__isSmartRef__":true,"id":5395},{"__isSmartRef__":true,"id":5396},{"__isSmartRef__":true,"id":5397},{"__isSmartRef__":true,"id":5398},{"__isSmartRef__":true,"id":5399}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5380":{"name":"getExtent","type":"propertyDef","startIndex":13284,"stopIndex":13343,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5381":{"name":"setFill","type":"propertyDef","startIndex":13345,"stopIndex":13410,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5382":{"name":"getFill","type":"propertyDef","startIndex":13412,"stopIndex":13467,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5383":{"name":"setBorderColor","type":"propertyDef","startIndex":13469,"stopIndex":13548,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5384":{"name":"getBorderColor","type":"propertyDef","startIndex":13550,"stopIndex":13619,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5385":{"name":"setBorderWidth","type":"propertyDef","startIndex":13621,"stopIndex":13700,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5386":{"name":"getBorderWidth","type":"propertyDef","startIndex":13702,"stopIndex":13771,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5387":{"name":"setStrokeWidth","type":"propertyDef","startIndex":13773,"stopIndex":14074,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5388":{"name":"getStrokeWidth","type":"propertyDef","startIndex":14076,"stopIndex":14226,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5389":{"name":"setStrokeOpacity","type":"propertyDef","startIndex":14228,"stopIndex":14311,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5390":{"name":"getStrokeOpacity","type":"propertyDef","startIndex":14313,"stopIndex":14386,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5391":{"name":"setBorderRadius","type":"propertyDef","startIndex":14388,"stopIndex":14469,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5392":{"name":"getBorderRadius","type":"propertyDef","startIndex":14471,"stopIndex":14542,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5393":{"name":"setBorderStyle","type":"propertyDef","startIndex":14544,"stopIndex":14623,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5394":{"name":"getBorderStyle","type":"propertyDef","startIndex":14625,"stopIndex":14694,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5395":{"name":"setFillOpacity","type":"propertyDef","startIndex":14698,"stopIndex":14777,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5396":{"name":"getFillOpacity","type":"propertyDef","startIndex":14780,"stopIndex":14849,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5397":{"name":"getOpacity","type":"propertyDef","startIndex":14852,"stopIndex":14913,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5398":{"name":"setOpacity","type":"propertyDef","startIndex":14915,"stopIndex":14978,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5399":{"name":"setVertices","type":"propertyDef","startIndex":14982,"stopIndex":15040,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5379},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5400":{"name":"world","type":"propertyDef","startIndex":15085,"stopIndex":15169,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5401":{"name":"accessing -- morphic relationship","type":"categoryDef","startIndex":15046,"stopIndex":17852,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5400},{"__isSmartRef__":true,"id":5402},{"__isSmartRef__":true,"id":5403},{"__isSmartRef__":true,"id":5404},{"__isSmartRef__":true,"id":5405},{"__isSmartRef__":true,"id":5406},{"__isSmartRef__":true,"id":5407},{"__isSmartRef__":true,"id":5408}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5402":{"name":"hand","type":"propertyDef","startIndex":15171,"stopIndex":15276,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5403":{"name":"addMorph","type":"propertyDef","startIndex":15279,"stopIndex":16339,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5404":{"name":"withAllSubmorphsDo","type":"propertyDef","startIndex":16341,"stopIndex":16617,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5405":{"name":"submorphBounds","type":"propertyDef","startIndex":16619,"stopIndex":16962,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5406":{"name":"morphsContainingPoint","type":"propertyDef","startIndex":16964,"stopIndex":17423,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5407":{"name":"morphBeneath","type":"propertyDef","startIndex":17425,"stopIndex":17728,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5408":{"name":"topMorph","type":"propertyDef","startIndex":17731,"stopIndex":17847,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5401},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5409":{"name":"getShape","type":"propertyDef","startIndex":17879,"stopIndex":17925,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5410},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5410":{"name":"accessing -- shapes","type":"categoryDef","startIndex":17854,"stopIndex":18095,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5409},{"__isSmartRef__":true,"id":5411}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5411":{"name":"setShape","type":"propertyDef","startIndex":17927,"stopIndex":18092,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5410},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5412":{"name":"remove","type":"propertyDef","startIndex":18116,"stopIndex":18276,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5413},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5413":{"name":"morph removal","type":"categoryDef","startIndex":18097,"stopIndex":18525,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5412},{"__isSmartRef__":true,"id":5414}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5414":{"name":"removeMorph","type":"propertyDef","startIndex":18278,"stopIndex":18522,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5413},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5415":{"name":"localize","type":"propertyDef","startIndex":18547,"stopIndex":18768,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5416":{"name":"transformation","type":"categoryDef","startIndex":18527,"stopIndex":20705,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5415},{"__isSmartRef__":true,"id":5417},{"__isSmartRef__":true,"id":5418},{"__isSmartRef__":true,"id":5419},{"__isSmartRef__":true,"id":5420},{"__isSmartRef__":true,"id":5421},{"__isSmartRef__":true,"id":5422},{"__isSmartRef__":true,"id":5423},{"__isSmartRef__":true,"id":5424},{"__isSmartRef__":true,"id":5425},{"__isSmartRef__":true,"id":5426}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5417":{"name":"transformToMorph","type":"propertyDef","startIndex":18770,"stopIndex":19190,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5418":{"name":"transformForNewOwner","type":"propertyDef","startIndex":19192,"stopIndex":19323,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5419":{"name":"getGlobalTransform","type":"propertyDef","startIndex":19326,"stopIndex":19657,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5420":{"name":"worldPoint","type":"propertyDef","startIndex":19659,"stopIndex":19769,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5421":{"name":"getTransform","type":"propertyDef","startIndex":19772,"stopIndex":19949,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5422":{"name":"setTransform","type":"propertyDef","startIndex":19951,"stopIndex":20141,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5423":{"name":"fullContainsWorldPoint","type":"propertyDef","startIndex":20144,"stopIndex":20309,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5424":{"name":"fullContainsPoint","type":"propertyDef","startIndex":20311,"stopIndex":20433,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5425":{"name":"innerBoundsContainsWorldPoint","type":"propertyDef","startIndex":20435,"stopIndex":20608,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5426":{"name":"innerBoundsContainsPoint","type":"propertyDef","startIndex":20610,"stopIndex":20700,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5416},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5427":{"name":"addScript","type":"propertyDef","startIndex":20735,"stopIndex":20890,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5428},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5428":{"name":"prototypical scripting","type":"categoryDef","startIndex":20707,"stopIndex":20894,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5427}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5429":{"name":"startStepping","type":"propertyDef","startIndex":20911,"stopIndex":21218,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5430":{"name":"scripting","type":"categoryDef","startIndex":20896,"stopIndex":23296,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5429},{"__isSmartRef__":true,"id":5431},{"__isSmartRef__":true,"id":5432},{"__isSmartRef__":true,"id":5433},{"__isSmartRef__":true,"id":5434},{"__isSmartRef__":true,"id":5435},{"__isSmartRef__":true,"id":5436},{"__isSmartRef__":true,"id":5437},{"__isSmartRef__":true,"id":5438},{"__isSmartRef__":true,"id":5439},{"__isSmartRef__":true,"id":5440},{"__isSmartRef__":true,"id":5441}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5431":{"name":"stopStepping","type":"propertyDef","startIndex":21220,"stopIndex":21319,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5432":{"name":"stopSteppingScriptNamed","type":"propertyDef","startIndex":21321,"stopIndex":21516,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5433":{"name":"stopScripts","type":"propertyDef","startIndex":21518,"stopIndex":21648,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5434":{"name":"suspendStepping","type":"propertyDef","startIndex":21653,"stopIndex":21719,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5435":{"name":"suspendSteppingAll","type":"propertyDef","startIndex":21722,"stopIndex":21836,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5436":{"name":"resumeStepping","type":"propertyDef","startIndex":21838,"stopIndex":21915,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5437":{"name":"resumeSteppingAll","type":"propertyDef","startIndex":21918,"stopIndex":22038,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5438":{"name":"removeEqualScripts","type":"propertyDef","startIndex":22040,"stopIndex":22205,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5439":{"name":"animatedInterpolateTo","type":"propertyDef","startIndex":22208,"stopIndex":22701,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5440":{"name":"animatedFollowPath","type":"propertyDef","startIndex":22703,"stopIndex":22946,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5441":{"name":"animatedPathStep","type":"propertyDef","startIndex":22948,"stopIndex":23293,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5430},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5442":{"name":"getStyle","type":"propertyDef","startIndex":23311,"stopIndex":23495,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5443},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5443":{"name":"styling","type":"categoryDef","startIndex":23298,"stopIndex":27278,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5442},{"__isSmartRef__":true,"id":5444}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5444":{"name":"applyStyle","type":"propertyDef","startIndex":23497,"stopIndex":27274,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5443},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5445":{"name":"toString","type":"propertyDef","startIndex":27295,"stopIndex":27456,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5446},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5346},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5446":{"name":"debugging","type":"categoryDef","startIndex":27280,"stopIndex":27458,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5445}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5447":{"name":null,"type":"comment","startIndex":27462,"stopIndex":27462,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5448":{"name":"lively.morphic.World","type":"klassDef","startIndex":27463,"stopIndex":29944,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5449},{"__isSmartRef__":true,"id":5451},{"__isSmartRef__":true,"id":5452},{"__isSmartRef__":true,"id":5454},{"__isSmartRef__":true,"id":5455},{"__isSmartRef__":true,"id":5457},{"__isSmartRef__":true,"id":5458},{"__isSmartRef__":true,"id":5459},{"__isSmartRef__":true,"id":5460},{"__isSmartRef__":true,"id":5462},{"__isSmartRef__":true,"id":5463},{"__isSmartRef__":true,"id":5465},{"__isSmartRef__":true,"id":5467}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":5450},{"__isSmartRef__":true,"id":5453},{"__isSmartRef__":true,"id":5456},{"__isSmartRef__":true,"id":5461},{"__isSmartRef__":true,"id":5464},{"__isSmartRef__":true,"id":5466}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5449":{"name":"style","type":"propertyDef","startIndex":27533,"stopIndex":27650,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5450},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5450":{"name":"properties","type":"categoryDef","startIndex":27517,"stopIndex":27672,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5449},{"__isSmartRef__":true,"id":5451}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5451":{"name":"isWorld","type":"propertyDef","startIndex":27652,"stopIndex":27669,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5450},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5452":{"name":"addMorph","type":"propertyDef","startIndex":27752,"stopIndex":27965,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5453},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5453":{"name":"accessing -- morphic relationship","type":"categoryDef","startIndex":27713,"stopIndex":28051,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5452},{"__isSmartRef__":true,"id":5454}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5454":{"name":"topMorph","type":"propertyDef","startIndex":27967,"stopIndex":28047,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5453},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5455":{"name":"world","type":"propertyDef","startIndex":28068,"stopIndex":28105,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5456},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5456":{"name":"accessing","type":"categoryDef","startIndex":28053,"stopIndex":28905,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5455},{"__isSmartRef__":true,"id":5457},{"__isSmartRef__":true,"id":5458},{"__isSmartRef__":true,"id":5459}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5457":{"name":"firstHand","type":"propertyDef","startIndex":28107,"stopIndex":28171,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5456},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5458":{"name":"windowBounds","type":"propertyDef","startIndex":28173,"stopIndex":28669,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5456},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5459":{"name":"visibleBounds","type":"propertyDef","startIndex":28672,"stopIndex":28902,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5456},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5460":{"name":"displayOnCanvas","type":"propertyDef","startIndex":28922,"stopIndex":29073,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5461},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5461":{"name":"rendering","type":"categoryDef","startIndex":28907,"stopIndex":29559,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5460},{"__isSmartRef__":true,"id":5462}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5462":{"name":"hideHostMouseCursor","type":"propertyDef","startIndex":29075,"stopIndex":29556,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5461},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5463":{"name":"addHandMorph","type":"propertyDef","startIndex":29577,"stopIndex":29797,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5464},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5464":{"name":"hand morph","type":"categoryDef","startIndex":29561,"stopIndex":29800,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5463}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5465":{"name":"setChangeSet","type":"propertyDef","startIndex":29815,"stopIndex":29883,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5466},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5466":{"name":"changes","type":"categoryDef","startIndex":29802,"stopIndex":29941,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5465},{"__isSmartRef__":true,"id":5467}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5467":{"name":"getChangeSet","type":"propertyDef","startIndex":29885,"stopIndex":29939,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5466},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5448},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5468":{"name":null,"type":"comment","startIndex":29945,"stopIndex":29945,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5469":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":29946,"stopIndex":30396,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5470},{"__isSmartRef__":true,"id":5472}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5471}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5470":{"name":"current","type":"propertyDef","startIndex":29984,"stopIndex":30036,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5471},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5469},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5471":{"name":"default category","type":"categoryDef","startIndex":29982,"stopIndex":30393,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5470},{"__isSmartRef__":true,"id":5472}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5472":{"name":"createOn","type":"propertyDef","startIndex":30038,"stopIndex":30391,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5471},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5469},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5473":{"name":null,"type":"comment","startIndex":30397,"stopIndex":30397,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5474":{"name":"lively.morphic.Box","type":"klassDef","startIndex":30398,"stopIndex":30676,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5475}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":5476}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5475":{"name":"initialize","type":"propertyDef","startIndex":30468,"stopIndex":30671,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5476},"className":"lively.morphic.Box","_owner":{"__isSmartRef__":true,"id":5474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5476":{"name":"initializing","type":"categoryDef","startIndex":30450,"stopIndex":30673,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5475}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5477":{"name":null,"type":"comment","startIndex":30677,"stopIndex":30677,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5478":{"name":"lively.morphic.List","type":"klassDef","startIndex":30678,"stopIndex":30766,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5479}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":5480}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5479":{"name":"isList","type":"propertyDef","startIndex":30745,"stopIndex":30761,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5480},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":5478},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5480":{"name":"properties","type":"categoryDef","startIndex":30729,"stopIndex":30763,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5479}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5481":{"name":"lively.morphic.DropDownList","type":"klassDef","startIndex":30767,"stopIndex":30857,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.List","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5482":{"name":"lively.morphic.Clip","type":"klassDef","startIndex":30858,"stopIndex":31326,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5483},{"__isSmartRef__":true,"id":5485}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":5484},{"__isSmartRef__":true,"id":5486}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5483":{"name":"initialize","type":"propertyDef","startIndex":30927,"stopIndex":31059,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5484},"className":"lively.morphic.Clip","_owner":{"__isSmartRef__":true,"id":5482},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5484":{"name":"initializing","type":"categoryDef","startIndex":30909,"stopIndex":31062,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5483}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5485":{"name":"setExtent","type":"propertyDef","startIndex":31079,"stopIndex":31321,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5486},"className":"lively.morphic.Clip","_owner":{"__isSmartRef__":true,"id":5482},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5486":{"name":"accessing","type":"categoryDef","startIndex":31064,"stopIndex":31323,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5485}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5487":{"name":null,"type":"comment","startIndex":31327,"stopIndex":31327,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5488":{"name":"lively.morphic.Script","type":"klassDef","startIndex":31328,"stopIndex":32308,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5489},{"__isSmartRef__":true,"id":5491},{"__isSmartRef__":true,"id":5493},{"__isSmartRef__":true,"id":5494},{"__isSmartRef__":true,"id":5496},{"__isSmartRef__":true,"id":5497},{"__isSmartRef__":true,"id":5498}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":5490},{"__isSmartRef__":true,"id":5492},{"__isSmartRef__":true,"id":5495}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5489":{"name":"isScript","type":"propertyDef","startIndex":31385,"stopIndex":31403,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5490},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5488},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5490":{"name":"properties","type":"categoryDef","startIndex":31369,"stopIndex":31406,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5489}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5491":{"name":"execute","type":"propertyDef","startIndex":31421,"stopIndex":31491,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5492},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5488},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5492":{"name":"ticking","type":"categoryDef","startIndex":31408,"stopIndex":31758,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5491},{"__isSmartRef__":true,"id":5493}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5493":{"name":"tick","type":"propertyDef","startIndex":31493,"stopIndex":31755,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5492},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5488},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5494":{"name":"startTicking","type":"propertyDef","startIndex":31787,"stopIndex":31958,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5495},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5488},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5495":{"name":"starting and stopping","type":"categoryDef","startIndex":31760,"stopIndex":32305,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5494},{"__isSmartRef__":true,"id":5496},{"__isSmartRef__":true,"id":5497},{"__isSmartRef__":true,"id":5498}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5496":{"name":"stop","type":"propertyDef","startIndex":31960,"stopIndex":32067,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5495},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5488},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5497":{"name":"resume","type":"propertyDef","startIndex":32069,"stopIndex":32217,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5495},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5488},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5498":{"name":"suspend","type":"propertyDef","startIndex":32219,"stopIndex":32302,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5495},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5488},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5499":{"name":"lively.morphic.FunctionScript","type":"klassDef","startIndex":32309,"stopIndex":32775,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5500},{"__isSmartRef__":true,"id":5502},{"__isSmartRef__":true,"id":5504},{"__isSmartRef__":true,"id":5506}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Script","categories":[{"__isSmartRef__":true,"id":5501},{"__isSmartRef__":true,"id":5503},{"__isSmartRef__":true,"id":5505},{"__isSmartRef__":true,"id":5507}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5500":{"name":"initialize","type":"propertyDef","startIndex":32391,"stopIndex":32467,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5501},"className":"lively.morphic.FunctionScript","_owner":{"__isSmartRef__":true,"id":5499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5501":{"name":"initializing","type":"categoryDef","startIndex":32373,"stopIndex":32470,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5500}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5502":{"name":"execute","type":"propertyDef","startIndex":32485,"stopIndex":32528,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5503},"className":"lively.morphic.FunctionScript","_owner":{"__isSmartRef__":true,"id":5499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5503":{"name":"ticking","type":"categoryDef","startIndex":32472,"stopIndex":32531,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5502}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5504":{"name":"equals","type":"propertyDef","startIndex":32546,"stopIndex":32634,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5505},"className":"lively.morphic.FunctionScript","_owner":{"__isSmartRef__":true,"id":5499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5505":{"name":"testing","type":"categoryDef","startIndex":32533,"stopIndex":32637,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5504}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5506":{"name":"toString","type":"propertyDef","startIndex":32654,"stopIndex":32770,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5507},"className":"lively.morphic.FunctionScript","_owner":{"__isSmartRef__":true,"id":5499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5507":{"name":"debugging","type":"categoryDef","startIndex":32639,"stopIndex":32772,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5506}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5508":{"name":"lively.morphic.TargetScript","type":"klassDef","startIndex":32776,"stopIndex":33430,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5509},{"__isSmartRef__":true,"id":5511},{"__isSmartRef__":true,"id":5513},{"__isSmartRef__":true,"id":5515}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Script","categories":[{"__isSmartRef__":true,"id":5510},{"__isSmartRef__":true,"id":5512},{"__isSmartRef__":true,"id":5514},{"__isSmartRef__":true,"id":5516}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5509":{"name":"initialize","type":"propertyDef","startIndex":32856,"stopIndex":33008,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5510},"className":"lively.morphic.TargetScript","_owner":{"__isSmartRef__":true,"id":5508},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5510":{"name":"initializing","type":"categoryDef","startIndex":32838,"stopIndex":33011,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5509}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5511":{"name":"execute","type":"propertyDef","startIndex":33026,"stopIndex":33123,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5512},"className":"lively.morphic.TargetScript","_owner":{"__isSmartRef__":true,"id":5508},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5512":{"name":"ticking","type":"categoryDef","startIndex":33013,"stopIndex":33126,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5511}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5513":{"name":"equals","type":"propertyDef","startIndex":33141,"stopIndex":33260,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5514},"className":"lively.morphic.TargetScript","_owner":{"__isSmartRef__":true,"id":5508},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5514":{"name":"testing","type":"categoryDef","startIndex":33128,"stopIndex":33263,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5513}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5515":{"name":"toString","type":"propertyDef","startIndex":33280,"stopIndex":33425,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5516},"className":"lively.morphic.TargetScript","_owner":{"__isSmartRef__":true,"id":5508},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5516":{"name":"debugging","type":"categoryDef","startIndex":33265,"stopIndex":33427,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5515}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5517":{"name":null,"type":"comment","startIndex":33431,"stopIndex":33431,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5518":{"name":"lively.morphic.Script","type":"klassExtensionDef","startIndex":33432,"stopIndex":33706,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5519},{"__isSmartRef__":true,"id":5521}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5520}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5519":{"name":"forFunction","type":"propertyDef","startIndex":33471,"stopIndex":33566,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5520},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5518},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5520":{"name":"default category","type":"categoryDef","startIndex":33469,"stopIndex":33703,"fileName":"lively/morphic/Core.js","_subElements":[{"__isSmartRef__":true,"id":5519},{"__isSmartRef__":true,"id":5521}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5521":{"name":"forTarget","type":"propertyDef","startIndex":33568,"stopIndex":33701,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5520},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":5518},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5522":{"name":null,"type":"comment","startIndex":33707,"stopIndex":33707,"fileName":"lively/morphic/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5523":{"target":{"__isSmartRef__":true,"id":5524},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/EventExperiments.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5524":{"name":"lively.morphic.EventExperiments","type":"moduleDef","startIndex":0,"stopIndex":9468,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5525},{"__isSmartRef__":true,"id":5526},{"__isSmartRef__":true,"id":5527},{"__isSmartRef__":true,"id":5528},{"__isSmartRef__":true,"id":5536},{"__isSmartRef__":true,"id":5539},{"__isSmartRef__":true,"id":5540},{"__isSmartRef__":true,"id":5549},{"__isSmartRef__":true,"id":5550},{"__isSmartRef__":true,"id":5557},{"__isSmartRef__":true,"id":5563},{"__isSmartRef__":true,"id":5564},{"__isSmartRef__":true,"id":5568},{"__isSmartRef__":true,"id":5572},{"__isSmartRef__":true,"id":5575}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5525":{"name":null,"type":"comment","startIndex":108,"stopIndex":169,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5526":{"name":null,"type":"unknown","startIndex":170,"stopIndex":206,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5527":{"name":null,"type":"comment","startIndex":207,"stopIndex":207,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5528":{"name":"EventLogLayer","type":"copDef","startIndex":208,"stopIndex":1289,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5529},{"__isSmartRef__":true,"id":5535}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5529":{"name":"lively.morphic.Morph","type":"copSubElement","startIndex":236,"stopIndex":1272,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5530},{"__isSmartRef__":true,"id":5532},{"__isSmartRef__":true,"id":5533},{"__isSmartRef__":true,"id":5534}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5528},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5530":{"name":"logEvent","type":"propertyDef","startIndex":273,"stopIndex":415,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5531},"_owner":{"__isSmartRef__":true,"id":5529},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5531":{"name":"default category","type":"categoryDef","startIndex":63,"stopIndex":1063,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5530},{"__isSmartRef__":true,"id":5532},{"__isSmartRef__":true,"id":5533},{"__isSmartRef__":true,"id":5534}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5532":{"name":"onMouseDown","type":"propertyDef","startIndex":417,"stopIndex":701,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5531},"_owner":{"__isSmartRef__":true,"id":5529},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5533":{"name":"onMouseUp","type":"propertyDef","startIndex":703,"stopIndex":983,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5531},"_owner":{"__isSmartRef__":true,"id":5529},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5534":{"name":"onMouseMove","type":"propertyDef","startIndex":985,"stopIndex":1269,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5531},"_owner":{"__isSmartRef__":true,"id":5529},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5535":{"name":"beNotGlobal()","type":"copSubElement","startIndex":1273,"stopIndex":1286,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":5528},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5536":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":1290,"stopIndex":1425,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5537}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5538}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5537":{"name":"eventDepth","type":"propertyDef","startIndex":1328,"stopIndex":1421,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5538},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5536},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5538":{"name":"default category","type":"categoryDef","startIndex":1326,"stopIndex":1422,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5537}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5539":{"name":null,"type":"comment","startIndex":1426,"stopIndex":1426,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5540":{"name":"EventExperimentLayer","type":"copDef","startIndex":1427,"stopIndex":3322,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5541},{"__isSmartRef__":true,"id":5545},{"__isSmartRef__":true,"id":5548}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5541":{"name":"lively.morphic.Morph","type":"copSubElement","startIndex":1462,"stopIndex":3165,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5542},{"__isSmartRef__":true,"id":5544}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5540},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5542":{"name":"onMouseDown","type":"propertyDef","startIndex":1500,"stopIndex":1987,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5543},"_owner":{"__isSmartRef__":true,"id":5541},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5543":{"name":"default category","type":"categoryDef","startIndex":70,"stopIndex":1737,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5542},{"__isSmartRef__":true,"id":5544}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5544":{"name":"onMouseUp","type":"propertyDef","startIndex":1989,"stopIndex":3162,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5543},"_owner":{"__isSmartRef__":true,"id":5541},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5545":{"name":"lively.morphic.Halo","type":"copSubElement","startIndex":3166,"stopIndex":3306,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5546}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":5540},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5546":{"name":"onMouseDown","type":"propertyDef","startIndex":3203,"stopIndex":3303,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5547},"_owner":{"__isSmartRef__":true,"id":5545},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5547":{"name":"default category","type":"categoryDef","startIndex":1774,"stopIndex":1878,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5546}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5548":{"name":"beNotGlobal()","type":"copSubElement","startIndex":3307,"stopIndex":3320,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":5540},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5549":{"name":null,"type":"comment","startIndex":3323,"stopIndex":3324,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5550":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":3325,"stopIndex":5006,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5551},{"__isSmartRef__":true,"id":5553},{"__isSmartRef__":true,"id":5554},{"__isSmartRef__":true,"id":5555},{"__isSmartRef__":true,"id":5556}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5552}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5551":{"name":"onMouseDown","type":"propertyDef","startIndex":3378,"stopIndex":3741,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5552},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5552":{"name":"event handling","type":"categoryDef","startIndex":3358,"stopIndex":5003,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5551},{"__isSmartRef__":true,"id":5553},{"__isSmartRef__":true,"id":5554},{"__isSmartRef__":true,"id":5555},{"__isSmartRef__":true,"id":5556}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5553":{"name":"onMouseUp","type":"propertyDef","startIndex":3743,"stopIndex":4562,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5552},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5554":{"name":"onMouseWheel","type":"propertyDef","startIndex":4564,"stopIndex":4599,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5552},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5555":{"name":"onTouchStart","type":"propertyDef","startIndex":4601,"stopIndex":4746,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5552},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5556":{"name":"onTouchEnd","type":"propertyDef","startIndex":4748,"stopIndex":4999,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5552},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5557":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":5007,"stopIndex":7995,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5558},{"__isSmartRef__":true,"id":5560},{"__isSmartRef__":true,"id":5561},{"__isSmartRef__":true,"id":5562}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5559}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5558":{"name":"onMouseDown","type":"propertyDef","startIndex":5060,"stopIndex":5182,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5559},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5557},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5559":{"name":"event handling","type":"categoryDef","startIndex":5040,"stopIndex":7992,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5558},{"__isSmartRef__":true,"id":5560},{"__isSmartRef__":true,"id":5561},{"__isSmartRef__":true,"id":5562}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5560":{"name":"onMouseUp","type":"propertyDef","startIndex":5184,"stopIndex":5779,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5559},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5557},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5561":{"name":"onMouseMove","type":"propertyDef","startIndex":5781,"stopIndex":7538,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5559},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5557},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5562":{"name":"dispatchDrop","type":"propertyDef","startIndex":7540,"stopIndex":7990,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5559},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5557},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5563":{"name":null,"type":"comment","startIndex":7996,"stopIndex":7996,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5564":{"name":"lively.morphic.Halo","type":"klassExtensionDef","startIndex":7997,"stopIndex":8298,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5565},{"__isSmartRef__":true,"id":5567}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5566}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5565":{"name":"onMouseDown","type":"propertyDef","startIndex":8049,"stopIndex":8123,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5566},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5564},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5566":{"name":"event handling","type":"categoryDef","startIndex":8029,"stopIndex":8295,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5565},{"__isSmartRef__":true,"id":5567}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5567":{"name":"onMouseUp","type":"propertyDef","startIndex":8125,"stopIndex":8293,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5566},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5564},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5568":{"name":"lively.morphic.Window","type":"klassExtensionDef","startIndex":8299,"stopIndex":9357,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5569},{"__isSmartRef__":true,"id":5571}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5570}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5569":{"name":"onMouseDown","type":"propertyDef","startIndex":8353,"stopIndex":9141,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5570},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":5568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5570":{"name":"event handling","type":"categoryDef","startIndex":8333,"stopIndex":9354,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5569},{"__isSmartRef__":true,"id":5571}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5571":{"name":"onMouseUp","type":"propertyDef","startIndex":9143,"stopIndex":9352,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5570},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":5568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5572":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":9358,"stopIndex":9446,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5573}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5574}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5573":{"name":"accessibleInInactiveWindow","type":"propertyDef","startIndex":9404,"stopIndex":9441,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5574},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5574":{"name":"settings","type":"categoryDef","startIndex":9390,"stopIndex":9443,"fileName":"lively/morphic/EventExperiments.js","_subElements":[{"__isSmartRef__":true,"id":5573}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5575":{"name":null,"type":"comment","startIndex":9447,"stopIndex":9448,"fileName":"lively/morphic/EventExperiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5576":{"target":{"__isSmartRef__":true,"id":5577},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Events.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5577":{"name":"lively.morphic.Events","type":"moduleDef","startIndex":0,"stopIndex":51540,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5578},{"__isSmartRef__":true,"id":5579},{"__isSmartRef__":true,"id":5585},{"__isSmartRef__":true,"id":5608},{"__isSmartRef__":true,"id":5611},{"__isSmartRef__":true,"id":5616},{"__isSmartRef__":true,"id":5637},{"__isSmartRef__":true,"id":5638},{"__isSmartRef__":true,"id":5657},{"__isSmartRef__":true,"id":5658},{"__isSmartRef__":true,"id":5659},{"__isSmartRef__":true,"id":5660},{"__isSmartRef__":true,"id":5708},{"__isSmartRef__":true,"id":5709},{"__isSmartRef__":true,"id":5722},{"__isSmartRef__":true,"id":5730},{"__isSmartRef__":true,"id":5731},{"__isSmartRef__":true,"id":5739},{"__isSmartRef__":true,"id":5740},{"__isSmartRef__":true,"id":5743},{"__isSmartRef__":true,"id":5744},{"__isSmartRef__":true,"id":5774},{"__isSmartRef__":true,"id":5797},{"__isSmartRef__":true,"id":5798},{"__isSmartRef__":true,"id":5801},{"__isSmartRef__":true,"id":5804},{"__isSmartRef__":true,"id":5807},{"__isSmartRef__":true,"id":5808},{"__isSmartRef__":true,"id":5826},{"__isSmartRef__":true,"id":5827},{"__isSmartRef__":true,"id":5828}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5578":{"name":null,"type":"comment","startIndex":197,"stopIndex":197,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5579":{"name":"lively.morphic.EventSimulator","type":"objectDef","startIndex":198,"stopIndex":2032,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5580},{"__isSmartRef__":true,"id":5582},{"__isSmartRef__":true,"id":5583},{"__isSmartRef__":true,"id":5584}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5580":{"name":"createKeyboardEvent","type":"propertyDef","startIndex":232,"stopIndex":564,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5581},"_owner":{"__isSmartRef__":true,"id":5579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5581":{"name":"default category","type":"categoryDef","startIndex":32,"stopIndex":1834,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5580},{"__isSmartRef__":true,"id":5582},{"__isSmartRef__":true,"id":5583},{"__isSmartRef__":true,"id":5584}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5582":{"name":"doKeyboardEvent","type":"propertyDef","startIndex":566,"stopIndex":896,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5581},"_owner":{"__isSmartRef__":true,"id":5579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5583":{"name":"createMouseEvent","type":"propertyDef","startIndex":898,"stopIndex":1505,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5581},"_owner":{"__isSmartRef__":true,"id":5579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5584":{"name":"doMouseEvent","type":"propertyDef","startIndex":1507,"stopIndex":2028,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5581},"_owner":{"__isSmartRef__":true,"id":5579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5585":{"name":"lively.morphic.EventHandler","type":"klassDef","startIndex":2033,"stopIndex":8733,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5586},{"__isSmartRef__":true,"id":5588},{"__isSmartRef__":true,"id":5590},{"__isSmartRef__":true,"id":5591},{"__isSmartRef__":true,"id":5593},{"__isSmartRef__":true,"id":5594},{"__isSmartRef__":true,"id":5595},{"__isSmartRef__":true,"id":5596},{"__isSmartRef__":true,"id":5598},{"__isSmartRef__":true,"id":5599},{"__isSmartRef__":true,"id":5600},{"__isSmartRef__":true,"id":5602},{"__isSmartRef__":true,"id":5604},{"__isSmartRef__":true,"id":5605},{"__isSmartRef__":true,"id":5606}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":5587},{"__isSmartRef__":true,"id":5589},{"__isSmartRef__":true,"id":5592},{"__isSmartRef__":true,"id":5597},{"__isSmartRef__":true,"id":5601},{"__isSmartRef__":true,"id":5603},{"__isSmartRef__":true,"id":5607}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5586":{"name":"initialize","type":"propertyDef","startIndex":2098,"stopIndex":2199,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5587},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5587":{"name":"initializing","type":"categoryDef","startIndex":2080,"stopIndex":2201,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5586}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5588":{"name":"eventSpecsDo","type":"propertyDef","startIndex":2218,"stopIndex":2417,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5589},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5589":{"name":"accessing","type":"categoryDef","startIndex":2203,"stopIndex":2559,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5588},{"__isSmartRef__":true,"id":5590}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5590":{"name":"hand","type":"propertyDef","startIndex":2419,"stopIndex":2557,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5589},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5591":{"name":"register","type":"propertyDef","startIndex":2578,"stopIndex":2675,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5592},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5592":{"name":"registering","type":"categoryDef","startIndex":2561,"stopIndex":4213,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5591},{"__isSmartRef__":true,"id":5593},{"__isSmartRef__":true,"id":5594},{"__isSmartRef__":true,"id":5595}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5593":{"name":"enable","type":"propertyDef","startIndex":2677,"stopIndex":2854,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5592},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5594":{"name":"registerHTMLAndSVG","type":"propertyDef","startIndex":2856,"stopIndex":3439,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5592},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5595":{"name":"registerCANVAS","type":"propertyDef","startIndex":3441,"stopIndex":4211,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5592},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5596":{"name":"disable","type":"propertyDef","startIndex":4234,"stopIndex":4296,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5597},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5597":{"name":"unregistering","type":"categoryDef","startIndex":4215,"stopIndex":4815,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5596},{"__isSmartRef__":true,"id":5598},{"__isSmartRef__":true,"id":5599}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5598":{"name":"unregisterFromDispatchTable","type":"propertyDef","startIndex":4298,"stopIndex":4585,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5597},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5599":{"name":"unregisterHTMLAndSVGAndCANVAS","type":"propertyDef","startIndex":4587,"stopIndex":4813,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5597},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5600":{"name":"update","type":"propertyDef","startIndex":4831,"stopIndex":4908,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5601},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5601":{"name":"updating","type":"categoryDef","startIndex":4817,"stopIndex":4910,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5600}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5602":{"name":"handleEvent","type":"propertyDef","startIndex":4931,"stopIndex":5724,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5603},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5603":{"name":"handle events","type":"categoryDef","startIndex":4912,"stopIndex":8604,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5602},{"__isSmartRef__":true,"id":5604},{"__isSmartRef__":true,"id":5605}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5604":{"name":"patchEvent","type":"propertyDef","startIndex":5726,"stopIndex":8043,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5603},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5605":{"name":"handleEventCANVAS","type":"propertyDef","startIndex":8046,"stopIndex":8602,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5603},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5606":{"name":"toString","type":"propertyDef","startIndex":8621,"stopIndex":8729,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5607},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5607":{"name":"debugging","type":"categoryDef","startIndex":8606,"stopIndex":8730,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5606}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5608":{"name":"lively.morphic.EventHandler","type":"klassExtensionDef","startIndex":8734,"stopIndex":8824,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5609}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5610}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5609":{"name":"prepareEventSystem","type":"propertyDef","startIndex":8779,"stopIndex":8820,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5610},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":5608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5610":{"name":"default category","type":"categoryDef","startIndex":8777,"stopIndex":8821,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5609}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5611":{"name":"lively.morphic.RelayEventHandler","type":"klassDef","startIndex":8825,"stopIndex":10145,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5612},{"__isSmartRef__":true,"id":5614}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.EventHandler","categories":[{"__isSmartRef__":true,"id":5613},{"__isSmartRef__":true,"id":5615}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5612":{"name":"initialize","type":"propertyDef","startIndex":8916,"stopIndex":9050,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5613},"className":"lively.morphic.RelayEventHandler","_owner":{"__isSmartRef__":true,"id":5611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5613":{"name":"initializing","type":"categoryDef","startIndex":8898,"stopIndex":9054,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5612}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5614":{"name":"handleEvent","type":"propertyDef","startIndex":9075,"stopIndex":10140,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5615},"className":"lively.morphic.RelayEventHandler","_owner":{"__isSmartRef__":true,"id":5611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5615":{"name":"handle events","type":"categoryDef","startIndex":9056,"stopIndex":10142,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5614}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5616":{"name":"Event","type":"klassExtensionDef","startIndex":10146,"stopIndex":10651,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5617},{"__isSmartRef__":true,"id":5619},{"__isSmartRef__":true,"id":5620},{"__isSmartRef__":true,"id":5621},{"__isSmartRef__":true,"id":5622},{"__isSmartRef__":true,"id":5623},{"__isSmartRef__":true,"id":5624},{"__isSmartRef__":true,"id":5625},{"__isSmartRef__":true,"id":5626},{"__isSmartRef__":true,"id":5627},{"__isSmartRef__":true,"id":5628},{"__isSmartRef__":true,"id":5629},{"__isSmartRef__":true,"id":5630},{"__isSmartRef__":true,"id":5631},{"__isSmartRef__":true,"id":5632},{"__isSmartRef__":true,"id":5633},{"__isSmartRef__":true,"id":5634},{"__isSmartRef__":true,"id":5635},{"__isSmartRef__":true,"id":5636}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5618}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5617":{"name":"KEY_BACKSPACE","type":"propertyDef","startIndex":10169,"stopIndex":10222,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5618":{"name":"default category","type":"categoryDef","startIndex":10167,"stopIndex":10648,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5617},{"__isSmartRef__":true,"id":5619},{"__isSmartRef__":true,"id":5620},{"__isSmartRef__":true,"id":5621},{"__isSmartRef__":true,"id":5622},{"__isSmartRef__":true,"id":5623},{"__isSmartRef__":true,"id":5624},{"__isSmartRef__":true,"id":5625},{"__isSmartRef__":true,"id":5626},{"__isSmartRef__":true,"id":5627},{"__isSmartRef__":true,"id":5628},{"__isSmartRef__":true,"id":5629},{"__isSmartRef__":true,"id":5630},{"__isSmartRef__":true,"id":5631},{"__isSmartRef__":true,"id":5632},{"__isSmartRef__":true,"id":5633},{"__isSmartRef__":true,"id":5634},{"__isSmartRef__":true,"id":5635},{"__isSmartRef__":true,"id":5636}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5619":{"name":"KEY_TAB","type":"propertyDef","startIndex":10224,"stopIndex":10244,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5620":{"name":"KEY_RETURN","type":"propertyDef","startIndex":10246,"stopIndex":10266,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5621":{"name":"KEY_ESC","type":"propertyDef","startIndex":10268,"stopIndex":10288,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5622":{"name":"KEY_LEFT","type":"propertyDef","startIndex":10290,"stopIndex":10310,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5623":{"name":"KEY_UP","type":"propertyDef","startIndex":10312,"stopIndex":10332,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5624":{"name":"KEY_RIGHT","type":"propertyDef","startIndex":10334,"stopIndex":10354,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5625":{"name":"KEY_DOWN","type":"propertyDef","startIndex":10356,"stopIndex":10376,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5626":{"name":"KEY_DELETE","type":"propertyDef","startIndex":10378,"stopIndex":10398,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5627":{"name":"KEY_HOME","type":"propertyDef","startIndex":10400,"stopIndex":10420,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5628":{"name":"KEY_END","type":"propertyDef","startIndex":10422,"stopIndex":10442,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5629":{"name":"KEY_PAGEUP","type":"propertyDef","startIndex":10444,"stopIndex":10464,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5630":{"name":"KEY_PAGEDOWN","type":"propertyDef","startIndex":10466,"stopIndex":10486,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5631":{"name":"KEY_INSERT","type":"propertyDef","startIndex":10488,"stopIndex":10508,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5632":{"name":"KEY_SPACEBAR","type":"propertyDef","startIndex":10511,"stopIndex":10559,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5633":{"name":"KEY_SHIFT","type":"propertyDef","startIndex":10561,"stopIndex":10581,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5634":{"name":"KEY_CTRL","type":"propertyDef","startIndex":10583,"stopIndex":10603,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5635":{"name":"KEY_ALT","type":"propertyDef","startIndex":10605,"stopIndex":10625,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5636":{"name":"KEY_CMD","type":"propertyDef","startIndex":10627,"stopIndex":10647,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5618},"className":"Event","_owner":{"__isSmartRef__":true,"id":5616},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5637":{"name":null,"type":"comment","startIndex":10652,"stopIndex":10652,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5638":{"name":"ScrollableTrait","type":"traitDef","startIndex":10653,"stopIndex":14959,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5639},{"__isSmartRef__":true,"id":5641},{"__isSmartRef__":true,"id":5642},{"__isSmartRef__":true,"id":5644},{"__isSmartRef__":true,"id":5645},{"__isSmartRef__":true,"id":5646},{"__isSmartRef__":true,"id":5647},{"__isSmartRef__":true,"id":5648},{"__isSmartRef__":true,"id":5649},{"__isSmartRef__":true,"id":5650},{"__isSmartRef__":true,"id":5651},{"__isSmartRef__":true,"id":5653},{"__isSmartRef__":true,"id":5654},{"__isSmartRef__":true,"id":5655},{"__isSmartRef__":true,"id":5656}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5639":{"name":"getScrollableNode","type":"propertyDef","startIndex":10693,"stopIndex":10810,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5640},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5640":{"name":"accessing","type":"categoryDef","startIndex":25,"stopIndex":254,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5639},{"__isSmartRef__":true,"id":5641}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5641":{"name":"world","type":"propertyDef","startIndex":10812,"stopIndex":10905,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5640},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5642":{"name":"getScroll","type":"propertyDef","startIndex":10924,"stopIndex":11199,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5643":{"name":"scrolling","type":"categoryDef","startIndex":256,"stopIndex":2738,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5642},{"__isSmartRef__":true,"id":5644},{"__isSmartRef__":true,"id":5645},{"__isSmartRef__":true,"id":5646},{"__isSmartRef__":true,"id":5647},{"__isSmartRef__":true,"id":5648},{"__isSmartRef__":true,"id":5649},{"__isSmartRef__":true,"id":5650}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5644":{"name":"getAccumulatedScroll","type":"propertyDef","startIndex":11201,"stopIndex":11508,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5645":{"name":"getScrollExtent","type":"propertyDef","startIndex":11510,"stopIndex":11650,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5646":{"name":"getScrollBounds","type":"propertyDef","startIndex":11652,"stopIndex":11820,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5647":{"name":"getGlobalScrollBounds","type":"propertyDef","startIndex":11822,"stopIndex":12007,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5648":{"name":"setScroll","type":"propertyDef","startIndex":12011,"stopIndex":12221,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5649":{"name":"setAccumulatedScroll","type":"propertyDef","startIndex":12223,"stopIndex":12586,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5650":{"name":"scrollRectIntoView","type":"propertyDef","startIndex":12589,"stopIndex":13389,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5643},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5651":{"name":"onMouseWheel","type":"propertyDef","startIndex":13420,"stopIndex":13590,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5652},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5652":{"name":"scroll event handling","type":"categoryDef","startIndex":2740,"stopIndex":4273,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":5651},{"__isSmartRef__":true,"id":5653},{"__isSmartRef__":true,"id":5654},{"__isSmartRef__":true,"id":5655}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5653":{"name":"stopScrollWhenBordersAreReached","type":"propertyDef","startIndex":13592,"stopIndex":14525,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5652},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5654":{"name":"getMaxScrollExtent","type":"propertyDef","startIndex":14527,"stopIndex":14810,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5652},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5655":{"name":"scrollToBottom","type":"propertyDef","startIndex":14812,"stopIndex":14924,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5652},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5656":{"name":" -> lively.morphic.Morph","type":"traitSubElement","startIndex":14929,"stopIndex":14958,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":5638},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5657":{"name":null,"type":"unknown","startIndex":14960,"stopIndex":15019,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5658":{"name":null,"type":"unknown","startIndex":15020,"stopIndex":15080,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5659":{"name":null,"type":"comment","startIndex":15081,"stopIndex":15081,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5660":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":15082,"stopIndex":25922,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5661},{"__isSmartRef__":true,"id":5663},{"__isSmartRef__":true,"id":5664},{"__isSmartRef__":true,"id":5665},{"__isSmartRef__":true,"id":5666},{"__isSmartRef__":true,"id":5667},{"__isSmartRef__":true,"id":5668},{"__isSmartRef__":true,"id":5669},{"__isSmartRef__":true,"id":5670},{"__isSmartRef__":true,"id":5671},{"__isSmartRef__":true,"id":5672},{"__isSmartRef__":true,"id":5673},{"__isSmartRef__":true,"id":5674},{"__isSmartRef__":true,"id":5675},{"__isSmartRef__":true,"id":5676},{"__isSmartRef__":true,"id":5677},{"__isSmartRef__":true,"id":5679},{"__isSmartRef__":true,"id":5680},{"__isSmartRef__":true,"id":5681},{"__isSmartRef__":true,"id":5682},{"__isSmartRef__":true,"id":5683},{"__isSmartRef__":true,"id":5684},{"__isSmartRef__":true,"id":5685},{"__isSmartRef__":true,"id":5686},{"__isSmartRef__":true,"id":5687},{"__isSmartRef__":true,"id":5688},{"__isSmartRef__":true,"id":5689},{"__isSmartRef__":true,"id":5690},{"__isSmartRef__":true,"id":5691},{"__isSmartRef__":true,"id":5692},{"__isSmartRef__":true,"id":5694},{"__isSmartRef__":true,"id":5695},{"__isSmartRef__":true,"id":5696},{"__isSmartRef__":true,"id":5697},{"__isSmartRef__":true,"id":5698},{"__isSmartRef__":true,"id":5699},{"__isSmartRef__":true,"id":5700},{"__isSmartRef__":true,"id":5701},{"__isSmartRef__":true,"id":5702},{"__isSmartRef__":true,"id":5703},{"__isSmartRef__":true,"id":5704},{"__isSmartRef__":true,"id":5706}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5662},{"__isSmartRef__":true,"id":5678},{"__isSmartRef__":true,"id":5693},{"__isSmartRef__":true,"id":5705},{"__isSmartRef__":true,"id":5707}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5661":{"name":"addEventHandler","type":"propertyDef","startIndex":15136,"stopIndex":15397,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5662":{"name":"event managment","type":"categoryDef","startIndex":15115,"stopIndex":18290,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5661},{"__isSmartRef__":true,"id":5663},{"__isSmartRef__":true,"id":5664},{"__isSmartRef__":true,"id":5665},{"__isSmartRef__":true,"id":5666},{"__isSmartRef__":true,"id":5667},{"__isSmartRef__":true,"id":5668},{"__isSmartRef__":true,"id":5669},{"__isSmartRef__":true,"id":5670},{"__isSmartRef__":true,"id":5671},{"__isSmartRef__":true,"id":5672},{"__isSmartRef__":true,"id":5673},{"__isSmartRef__":true,"id":5674},{"__isSmartRef__":true,"id":5675},{"__isSmartRef__":true,"id":5676}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5663":{"name":"removeEventHandlers","type":"propertyDef","startIndex":15399,"stopIndex":15491,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5664":{"name":"removeEventHandler","type":"propertyDef","startIndex":15493,"stopIndex":15646,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5665":{"name":"registerForEvent","type":"propertyDef","startIndex":15649,"stopIndex":16423,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5666":{"name":"enableEventHandler","type":"propertyDef","startIndex":16425,"stopIndex":16552,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5667":{"name":"enableEventHandlerRecursively","type":"propertyDef","startIndex":16554,"stopIndex":16687,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5668":{"name":"disableEventHandler","type":"propertyDef","startIndex":16689,"stopIndex":16792,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5669":{"name":"disableEventHandlerRecursively","type":"propertyDef","startIndex":16794,"stopIndex":16929,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5670":{"name":"ignoreEvents","type":"propertyDef","startIndex":16931,"stopIndex":17117,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5671":{"name":"enableEvents","type":"propertyDef","startIndex":17119,"stopIndex":17267,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5672":{"name":"setPointerEvents","type":"propertyDef","startIndex":17269,"stopIndex":17360,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5673":{"name":"getPointerEvents","type":"propertyDef","startIndex":17362,"stopIndex":17441,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5674":{"name":"areEventsIgnored","type":"propertyDef","startIndex":17444,"stopIndex":17509,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5675":{"name":"relayMouseEventsToMorphBeneath","type":"propertyDef","startIndex":17511,"stopIndex":18011,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5676":{"name":"registerForEvents","type":"propertyDef","startIndex":18013,"stopIndex":18288,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5662},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5677":{"name":"registerForKeyboardEvents","type":"propertyDef","startIndex":18312,"stopIndex":18371,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5678":{"name":"event handling","type":"categoryDef","startIndex":18292,"stopIndex":23399,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5677},{"__isSmartRef__":true,"id":5679},{"__isSmartRef__":true,"id":5680},{"__isSmartRef__":true,"id":5681},{"__isSmartRef__":true,"id":5682},{"__isSmartRef__":true,"id":5683},{"__isSmartRef__":true,"id":5684},{"__isSmartRef__":true,"id":5685},{"__isSmartRef__":true,"id":5686},{"__isSmartRef__":true,"id":5687},{"__isSmartRef__":true,"id":5688},{"__isSmartRef__":true,"id":5689},{"__isSmartRef__":true,"id":5690},{"__isSmartRef__":true,"id":5691}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5679":{"name":"registerForMouseEvents","type":"propertyDef","startIndex":18373,"stopIndex":19924,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5680":{"name":"registerForOtherEvents","type":"propertyDef","startIndex":19926,"stopIndex":20177,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5681":{"name":"registerForTouchEvents","type":"propertyDef","startIndex":20179,"stopIndex":20520,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5682":{"name":"triggerEvent","type":"propertyDef","startIndex":20524,"stopIndex":20627,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5683":{"name":"onMouseDown","type":"propertyDef","startIndex":20630,"stopIndex":21249,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5684":{"name":"onMouseUp","type":"propertyDef","startIndex":21251,"stopIndex":22303,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5685":{"name":"onMouseWheel","type":"propertyDef","startIndex":22311,"stopIndex":22376,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5686":{"name":"onContextMenu","type":"propertyDef","startIndex":22380,"stopIndex":22559,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5687":{"name":"dragTriggerDistance","type":"propertyDef","startIndex":22562,"stopIndex":22588,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5688":{"name":"onDragStart","type":"propertyDef","startIndex":22589,"stopIndex":22691,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5689":{"name":"onDragEnd","type":"propertyDef","startIndex":22693,"stopIndex":22816,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5690":{"name":"onDrag","type":"propertyDef","startIndex":22818,"stopIndex":23265,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5691":{"name":"onContextMenu","type":"propertyDef","startIndex":23267,"stopIndex":23397,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5678},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5692":{"name":"enableGrabbing","type":"propertyDef","startIndex":23428,"stopIndex":23503,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5693":{"name":"grabbing and dropping","type":"categoryDef","startIndex":23401,"stopIndex":25662,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5692},{"__isSmartRef__":true,"id":5694},{"__isSmartRef__":true,"id":5695},{"__isSmartRef__":true,"id":5696},{"__isSmartRef__":true,"id":5697},{"__isSmartRef__":true,"id":5698},{"__isSmartRef__":true,"id":5699},{"__isSmartRef__":true,"id":5700},{"__isSmartRef__":true,"id":5701},{"__isSmartRef__":true,"id":5702},{"__isSmartRef__":true,"id":5703}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5694":{"name":"disableGrabbing","type":"propertyDef","startIndex":23505,"stopIndex":23569,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5695":{"name":"enableDropping","type":"propertyDef","startIndex":23572,"stopIndex":23647,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5696":{"name":"disableDropping","type":"propertyDef","startIndex":23649,"stopIndex":23713,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5697":{"name":"enableDragging","type":"propertyDef","startIndex":23715,"stopIndex":23777,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5698":{"name":"disableDragging","type":"propertyDef","startIndex":23779,"stopIndex":23843,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5699":{"name":"dropOnMe","type":"propertyDef","startIndex":23848,"stopIndex":24246,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5700":{"name":"dropOn","type":"propertyDef","startIndex":24248,"stopIndex":24355,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5701":{"name":"manualDropOnMe","type":"propertyDef","startIndex":24358,"stopIndex":24790,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5702":{"name":"grabMe","type":"propertyDef","startIndex":24792,"stopIndex":24895,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5703":{"name":"getGrabShadow","type":"propertyDef","startIndex":24897,"stopIndex":25658,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5693},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5704":{"name":"getScrollableNode","type":"propertyDef","startIndex":25679,"stopIndex":25798,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5705},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5705":{"name":"scrolling","type":"categoryDef","startIndex":25664,"stopIndex":25800,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5704}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5706":{"name":"openInHand","type":"propertyDef","startIndex":25815,"stopIndex":25917,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5707},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5707":{"name":"opening","type":"categoryDef","startIndex":25802,"stopIndex":25919,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5706}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5708":{"name":null,"type":"comment","startIndex":25923,"stopIndex":25923,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5709":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":25924,"stopIndex":28451,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5710},{"__isSmartRef__":true,"id":5712},{"__isSmartRef__":true,"id":5713},{"__isSmartRef__":true,"id":5714},{"__isSmartRef__":true,"id":5715},{"__isSmartRef__":true,"id":5716},{"__isSmartRef__":true,"id":5718},{"__isSmartRef__":true,"id":5719},{"__isSmartRef__":true,"id":5720},{"__isSmartRef__":true,"id":5721}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5711},{"__isSmartRef__":true,"id":5717}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5710":{"name":"ignoreEvents","type":"propertyDef","startIndex":25977,"stopIndex":26093,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5711},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5711":{"name":"event managment","type":"categoryDef","startIndex":25956,"stopIndex":27314,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5710},{"__isSmartRef__":true,"id":5712},{"__isSmartRef__":true,"id":5713},{"__isSmartRef__":true,"id":5714},{"__isSmartRef__":true,"id":5715}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5712":{"name":"enableEvents","type":"propertyDef","startIndex":26095,"stopIndex":26211,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5711},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5713":{"name":"registerForEvents","type":"propertyDef","startIndex":26213,"stopIndex":26356,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5711},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5714":{"name":"registerForKeyboardEvents","type":"propertyDef","startIndex":26358,"stopIndex":26798,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5711},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5715":{"name":"registerForFocusAndBlurEvents","type":"propertyDef","startIndex":26800,"stopIndex":27312,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5711},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5716":{"name":"onSelectStart","type":"propertyDef","startIndex":27336,"stopIndex":27701,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5717},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5717":{"name":"event handling","type":"categoryDef","startIndex":27316,"stopIndex":28448,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5716},{"__isSmartRef__":true,"id":5718},{"__isSmartRef__":true,"id":5719},{"__isSmartRef__":true,"id":5720},{"__isSmartRef__":true,"id":5721}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5718":{"name":"onSelectionChange","type":"propertyDef","startIndex":27703,"stopIndex":27739,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5717},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5719":{"name":"onBlur","type":"propertyDef","startIndex":27742,"stopIndex":27833,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5717},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5720":{"name":"onFocus","type":"propertyDef","startIndex":27835,"stopIndex":28229,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5717},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5721":{"name":"onMouseWheel","type":"propertyDef","startIndex":28231,"stopIndex":28446,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5717},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":5709},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5722":{"name":"lively.morphic.List","type":"klassExtensionDef","startIndex":28452,"stopIndex":30241,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5723},{"__isSmartRef__":true,"id":5725},{"__isSmartRef__":true,"id":5726},{"__isSmartRef__":true,"id":5727},{"__isSmartRef__":true,"id":5728}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5724},{"__isSmartRef__":true,"id":5729}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5723":{"name":"onMouseDown","type":"propertyDef","startIndex":28502,"stopIndex":29665,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5724},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":5722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5724":{"name":"mouse events","type":"categoryDef","startIndex":28484,"stopIndex":30146,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5723},{"__isSmartRef__":true,"id":5725},{"__isSmartRef__":true,"id":5726},{"__isSmartRef__":true,"id":5727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5725":{"name":"onMouseOver","type":"propertyDef","startIndex":29667,"stopIndex":29906,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5724},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":5722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5726":{"name":"onMouseMove","type":"propertyDef","startIndex":29908,"stopIndex":29967,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5724},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":5722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5727":{"name":"selectItemFromEvt","type":"propertyDef","startIndex":29974,"stopIndex":30143,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5724},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":5722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5728":{"name":"getScrollableNode","type":"propertyDef","startIndex":30163,"stopIndex":30237,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5729},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":5722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5729":{"name":"scrolling","type":"categoryDef","startIndex":30148,"stopIndex":30238,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5728}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5730":{"name":null,"type":"comment","startIndex":30242,"stopIndex":30242,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5731":{"name":"lively.morphic.DropDownList","type":"klassExtensionDef","startIndex":30243,"stopIndex":31447,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5732},{"__isSmartRef__":true,"id":5734},{"__isSmartRef__":true,"id":5736},{"__isSmartRef__":true,"id":5737},{"__isSmartRef__":true,"id":5738}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5733},{"__isSmartRef__":true,"id":5735}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5732":{"name":"isDropDownList","type":"propertyDef","startIndex":30299,"stopIndex":30325,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5733},"className":"lively.morphic.DropDownList","_owner":{"__isSmartRef__":true,"id":5731},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5733":{"name":"properties","type":"categoryDef","startIndex":30283,"stopIndex":30358,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5732}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5734":{"name":"onMouseDown","type":"propertyDef","startIndex":30378,"stopIndex":30550,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5735},"className":"lively.morphic.DropDownList","_owner":{"__isSmartRef__":true,"id":5731},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5735":{"name":"mouse events","type":"categoryDef","startIndex":30360,"stopIndex":31444,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5734},{"__isSmartRef__":true,"id":5736},{"__isSmartRef__":true,"id":5737},{"__isSmartRef__":true,"id":5738}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5736":{"name":"onChange","type":"propertyDef","startIndex":30554,"stopIndex":30793,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5735},"className":"lively.morphic.DropDownList","_owner":{"__isSmartRef__":true,"id":5731},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5737":{"name":"onBlur","type":"propertyDef","startIndex":30795,"stopIndex":31245,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5735},"className":"lively.morphic.DropDownList","_owner":{"__isSmartRef__":true,"id":5731},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5738":{"name":"registerForOtherEvents","type":"propertyDef","startIndex":31250,"stopIndex":31440,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5735},"className":"lively.morphic.DropDownList","_owner":{"__isSmartRef__":true,"id":5731},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5739":{"name":null,"type":"comment","startIndex":31448,"stopIndex":31448,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5740":{"name":"lively.morphic.Clip","type":"klassExtensionDef","startIndex":31449,"stopIndex":31619,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5741}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5742}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5741":{"name":"getScrollableNode","type":"propertyDef","startIndex":31496,"stopIndex":31615,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5742},"className":"lively.morphic.Clip","_owner":{"__isSmartRef__":true,"id":5740},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5742":{"name":"scrolling","type":"categoryDef","startIndex":31481,"stopIndex":31616,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5741}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5743":{"name":null,"type":"comment","startIndex":31620,"stopIndex":31620,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5744":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":31621,"stopIndex":40522,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5745},{"__isSmartRef__":true,"id":5747},{"__isSmartRef__":true,"id":5748},{"__isSmartRef__":true,"id":5750},{"__isSmartRef__":true,"id":5751},{"__isSmartRef__":true,"id":5752},{"__isSmartRef__":true,"id":5753},{"__isSmartRef__":true,"id":5754},{"__isSmartRef__":true,"id":5755},{"__isSmartRef__":true,"id":5756},{"__isSmartRef__":true,"id":5757},{"__isSmartRef__":true,"id":5759},{"__isSmartRef__":true,"id":5760},{"__isSmartRef__":true,"id":5761},{"__isSmartRef__":true,"id":5762},{"__isSmartRef__":true,"id":5763},{"__isSmartRef__":true,"id":5764},{"__isSmartRef__":true,"id":5766},{"__isSmartRef__":true,"id":5767},{"__isSmartRef__":true,"id":5768},{"__isSmartRef__":true,"id":5770},{"__isSmartRef__":true,"id":5772},{"__isSmartRef__":true,"id":5773}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5746},{"__isSmartRef__":true,"id":5749},{"__isSmartRef__":true,"id":5758},{"__isSmartRef__":true,"id":5765},{"__isSmartRef__":true,"id":5769},{"__isSmartRef__":true,"id":5771}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5745":{"name":"registerForEvents","type":"propertyDef","startIndex":31676,"stopIndex":31813,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5746},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5746":{"name":"event management","type":"categoryDef","startIndex":31654,"stopIndex":32788,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5745},{"__isSmartRef__":true,"id":5747}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5747":{"name":"registerForGlobalEvents","type":"propertyDef","startIndex":31816,"stopIndex":32785,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5746},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5748":{"name":"onKeyDown","type":"propertyDef","startIndex":32819,"stopIndex":33405,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5749":{"name":"keyboard event handling","type":"categoryDef","startIndex":32790,"stopIndex":36132,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5748},{"__isSmartRef__":true,"id":5750},{"__isSmartRef__":true,"id":5751},{"__isSmartRef__":true,"id":5752},{"__isSmartRef__":true,"id":5753},{"__isSmartRef__":true,"id":5754},{"__isSmartRef__":true,"id":5755},{"__isSmartRef__":true,"id":5756}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5750":{"name":"onKeyPress","type":"propertyDef","startIndex":33407,"stopIndex":33485,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5751":{"name":"processCommandKeys","type":"propertyDef","startIndex":33487,"stopIndex":34824,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5752":{"name":"onBackspacePressed","type":"propertyDef","startIndex":34827,"stopIndex":34988,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5753":{"name":"onRightPressed","type":"propertyDef","startIndex":34990,"stopIndex":35274,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5754":{"name":"onLeftPressed","type":"propertyDef","startIndex":35276,"stopIndex":35560,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5755":{"name":"onUpPressed","type":"propertyDef","startIndex":35562,"stopIndex":35844,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5756":{"name":"onDownPressed","type":"propertyDef","startIndex":35846,"stopIndex":36129,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5749},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5757":{"name":"onMouseMove","type":"propertyDef","startIndex":36160,"stopIndex":36704,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5758},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5758":{"name":"mouse event handling","type":"categoryDef","startIndex":36134,"stopIndex":38946,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5757},{"__isSmartRef__":true,"id":5759},{"__isSmartRef__":true,"id":5760},{"__isSmartRef__":true,"id":5761},{"__isSmartRef__":true,"id":5762},{"__isSmartRef__":true,"id":5763}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5759":{"name":"onMouseWheel","type":"propertyDef","startIndex":36706,"stopIndex":38181,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5758},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5760":{"name":"onSelectStart","type":"propertyDef","startIndex":38184,"stopIndex":38487,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5758},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5761":{"name":"onHTML5DragEnter","type":"propertyDef","startIndex":38489,"stopIndex":38573,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5758},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5762":{"name":"onHTML5DragOver","type":"propertyDef","startIndex":38575,"stopIndex":38658,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5758},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5763":{"name":"onHTML5Drop","type":"propertyDef","startIndex":38660,"stopIndex":38944,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5758},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5764":{"name":"openSystemBrowser","type":"propertyDef","startIndex":38965,"stopIndex":39358,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5765},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5765":{"name":"convenience","type":"categoryDef","startIndex":38948,"stopIndex":39829,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5764},{"__isSmartRef__":true,"id":5766},{"__isSmartRef__":true,"id":5767}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5766":{"name":"openWorkspace","type":"propertyDef","startIndex":39360,"stopIndex":39601,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5765},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5767":{"name":"openPartsBin","type":"propertyDef","startIndex":39603,"stopIndex":39826,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5765},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5768":{"name":"getScrollableNode","type":"propertyDef","startIndex":39847,"stopIndex":39945,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5769},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5769":{"name":"scrolling","type":"categoryDef","startIndex":39831,"stopIndex":39949,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5768}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5770":{"name":"onWindowResize","type":"propertyDef","startIndex":39971,"stopIndex":40012,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5771},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5771":{"name":"window related","type":"categoryDef","startIndex":39951,"stopIndex":40519,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5770},{"__isSmartRef__":true,"id":5772},{"__isSmartRef__":true,"id":5773}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5772":{"name":"onWindowScroll","type":"propertyDef","startIndex":40014,"stopIndex":40091,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5771},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5773":{"name":"onScroll","type":"propertyDef","startIndex":40093,"stopIndex":40516,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5771},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5774":{"name":"lively.FileUploader","type":"klassDef","startIndex":40523,"stopIndex":48704,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5775},{"__isSmartRef__":true,"id":5777},{"__isSmartRef__":true,"id":5778},{"__isSmartRef__":true,"id":5780},{"__isSmartRef__":true,"id":5781},{"__isSmartRef__":true,"id":5782},{"__isSmartRef__":true,"id":5783},{"__isSmartRef__":true,"id":5784},{"__isSmartRef__":true,"id":5786},{"__isSmartRef__":true,"id":5788},{"__isSmartRef__":true,"id":5789},{"__isSmartRef__":true,"id":5790},{"__isSmartRef__":true,"id":5792},{"__isSmartRef__":true,"id":5793},{"__isSmartRef__":true,"id":5794},{"__isSmartRef__":true,"id":5796}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":5776},{"__isSmartRef__":true,"id":5779},{"__isSmartRef__":true,"id":5785},{"__isSmartRef__":true,"id":5787},{"__isSmartRef__":true,"id":5791},{"__isSmartRef__":true,"id":5795}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5775":{"name":"getFileReader","type":"propertyDef","startIndex":40579,"stopIndex":41186,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5776},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5776":{"name":"file reader","type":"categoryDef","startIndex":40562,"stopIndex":41819,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5775},{"__isSmartRef__":true,"id":5777}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5777":{"name":"uploadBinary","type":"propertyDef","startIndex":41189,"stopIndex":41817,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5776},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5778":{"name":"onError","type":"propertyDef","startIndex":41845,"stopIndex":41943,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5779},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5779":{"name":"file reader events","type":"categoryDef","startIndex":41821,"stopIndex":42477,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5778},{"__isSmartRef__":true,"id":5780},{"__isSmartRef__":true,"id":5781},{"__isSmartRef__":true,"id":5782},{"__isSmartRef__":true,"id":5783}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5780":{"name":"onLoadStart","type":"propertyDef","startIndex":41945,"stopIndex":42032,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5779},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5781":{"name":"onLoadEnd","type":"propertyDef","startIndex":42034,"stopIndex":42120,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5779},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5782":{"name":"onProgress","type":"propertyDef","startIndex":42122,"stopIndex":42351,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5779},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5783":{"name":"onLoad","type":"propertyDef","startIndex":42353,"stopIndex":42475,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5779},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5784":{"name":"onLoadImage","type":"propertyDef","startIndex":42498,"stopIndex":42690,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5785},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5785":{"name":"image loading","type":"categoryDef","startIndex":42479,"stopIndex":42692,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5784}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5786":{"name":"onLoadVideo","type":"propertyDef","startIndex":42713,"stopIndex":42903,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5787},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5787":{"name":"video loading","type":"categoryDef","startIndex":42694,"stopIndex":44963,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5786},{"__isSmartRef__":true,"id":5788},{"__isSmartRef__":true,"id":5789}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5788":{"name":"openVideo","type":"propertyDef","startIndex":42906,"stopIndex":44577,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5787},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5789":{"name":"uploadAndOpenVideoTo","type":"propertyDef","startIndex":44580,"stopIndex":44961,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5787},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5790":{"name":"onLoadPDF","type":"propertyDef","startIndex":44982,"stopIndex":45168,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5791},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5791":{"name":"pdf loading","type":"categoryDef","startIndex":44965,"stopIndex":46935,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5790},{"__isSmartRef__":true,"id":5792},{"__isSmartRef__":true,"id":5793}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5792":{"name":"uploadAndOpenPDFTo","type":"propertyDef","startIndex":45170,"stopIndex":45548,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5791},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5793":{"name":"openPDF","type":"propertyDef","startIndex":45550,"stopIndex":46933,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5791},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5794":{"name":"handleDroppedFiles","type":"propertyDef","startIndex":46956,"stopIndex":47896,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5795},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5795":{"name":"drop handling","type":"categoryDef","startIndex":46937,"stopIndex":48701,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5794},{"__isSmartRef__":true,"id":5796}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5796":{"name":"loadAndOpenDroppedFiles","type":"propertyDef","startIndex":47901,"stopIndex":48700,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5795},"className":"lively.FileUploader","_owner":{"__isSmartRef__":true,"id":5774},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5797":{"name":null,"type":"comment","startIndex":48705,"stopIndex":48705,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5798":{"name":"lively.morphic.HTML.RenderContext","type":"klassExtensionDef","startIndex":48706,"stopIndex":48885,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5799}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5800}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5799":{"name":"registerHandlerForEvent","type":"propertyDef","startIndex":48782,"stopIndex":48881,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5800},"className":"lively.morphic.HTML.RenderContext","_owner":{"__isSmartRef__":true,"id":5798},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5800":{"name":"event handler management","type":"categoryDef","startIndex":48752,"stopIndex":48882,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5799}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5801":{"name":"lively.morphic.SVG.RenderContext","type":"klassExtensionDef","startIndex":48886,"stopIndex":49064,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5802}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5803}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5802":{"name":"registerHandlerForEvent","type":"propertyDef","startIndex":48961,"stopIndex":49060,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5803},"className":"lively.morphic.SVG.RenderContext","_owner":{"__isSmartRef__":true,"id":5801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5803":{"name":"event handler management","type":"categoryDef","startIndex":48931,"stopIndex":49061,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5802}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5804":{"name":"lively.morphic.Canvas.RenderContext","type":"klassExtensionDef","startIndex":49065,"stopIndex":49242,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5805}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5806}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5805":{"name":"registerHandlerForEvent","type":"propertyDef","startIndex":49143,"stopIndex":49238,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5806},"className":"lively.morphic.Canvas.RenderContext","_owner":{"__isSmartRef__":true,"id":5804},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5806":{"name":"event handler management","type":"categoryDef","startIndex":49113,"stopIndex":49239,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5805}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5807":{"name":null,"type":"comment","startIndex":49243,"stopIndex":49243,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5808":{"name":"lively.morphic.HandMorph","type":"klassDef","startIndex":49244,"stopIndex":51423,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5809},{"__isSmartRef__":true,"id":5811},{"__isSmartRef__":true,"id":5813},{"__isSmartRef__":true,"id":5815},{"__isSmartRef__":true,"id":5816},{"__isSmartRef__":true,"id":5817},{"__isSmartRef__":true,"id":5819},{"__isSmartRef__":true,"id":5820},{"__isSmartRef__":true,"id":5821},{"__isSmartRef__":true,"id":5822},{"__isSmartRef__":true,"id":5824}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":5810},{"__isSmartRef__":true,"id":5812},{"__isSmartRef__":true,"id":5814},{"__isSmartRef__":true,"id":5818},{"__isSmartRef__":true,"id":5823},{"__isSmartRef__":true,"id":5825}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5809":{"name":"style","type":"propertyDef","startIndex":49316,"stopIndex":49370,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5810},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5810":{"name":"settings","type":"categoryDef","startIndex":49302,"stopIndex":49372,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5809}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5811":{"name":"addToWorld","type":"propertyDef","startIndex":49392,"stopIndex":49544,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5812},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5812":{"name":"initializing","type":"categoryDef","startIndex":49374,"stopIndex":49546,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5811}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5813":{"name":"world","type":"propertyDef","startIndex":49587,"stopIndex":49631,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5814},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5814":{"name":"accessing -- morphic relationship","type":"categoryDef","startIndex":49548,"stopIndex":49757,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5813},{"__isSmartRef__":true,"id":5815},{"__isSmartRef__":true,"id":5816}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5815":{"name":"hand","type":"propertyDef","startIndex":49633,"stopIndex":49669,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5814},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5816":{"name":"morphsContainingPoint","type":"propertyDef","startIndex":49671,"stopIndex":49754,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5814},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5817":{"name":"grabMorph","type":"propertyDef","startIndex":49779,"stopIndex":49867,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5818},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5818":{"name":"event handling","type":"categoryDef","startIndex":49759,"stopIndex":50937,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5817},{"__isSmartRef__":true,"id":5819},{"__isSmartRef__":true,"id":5820},{"__isSmartRef__":true,"id":5821}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5819":{"name":"grabMorphs","type":"propertyDef","startIndex":49869,"stopIndex":50220,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5818},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5820":{"name":"addMorphWithShadow","type":"propertyDef","startIndex":50227,"stopIndex":50491,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5818},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5821":{"name":"dropContentsOn","type":"propertyDef","startIndex":50498,"stopIndex":50935,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5818},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5822":{"name":"removeOpenMenu","type":"propertyDef","startIndex":50949,"stopIndex":51151,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5823},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5823":{"name":"menu","type":"categoryDef","startIndex":50939,"stopIndex":51153,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5822}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5824":{"name":"move","type":"propertyDef","startIndex":51167,"stopIndex":51418,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5825},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":5808},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5825":{"name":"moving","type":"categoryDef","startIndex":51155,"stopIndex":51420,"fileName":"lively/morphic/Events.js","_subElements":[{"__isSmartRef__":true,"id":5824}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5826":{"name":null,"type":"comment","startIndex":51424,"stopIndex":51443,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5827":{"name":null,"type":"unknown","startIndex":51444,"stopIndex":51520,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5828":{"name":null,"type":"comment","startIndex":51521,"stopIndex":51521,"fileName":"lively/morphic/Events.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5829":{"target":{"__isSmartRef__":true,"id":5830},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Examples.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5830":{"name":"lively.morphic.Examples","type":"moduleDef","startIndex":0,"stopIndex":4638,"fileName":"lively/morphic/Examples.js","_subElements":[{"__isSmartRef__":true,"id":5831},{"__isSmartRef__":true,"id":5832},{"__isSmartRef__":true,"id":5842}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5831":{"name":null,"type":"comment","startIndex":118,"stopIndex":118,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5832":{"name":"lively.morphic.Examples","type":"klassExtensionDef","startIndex":119,"stopIndex":4618,"fileName":"lively/morphic/Examples.js","_subElements":[{"__isSmartRef__":true,"id":5833},{"__isSmartRef__":true,"id":5835},{"__isSmartRef__":true,"id":5836},{"__isSmartRef__":true,"id":5837},{"__isSmartRef__":true,"id":5838},{"__isSmartRef__":true,"id":5839},{"__isSmartRef__":true,"id":5840},{"__isSmartRef__":true,"id":5841}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5834}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5833":{"name":"populateDemoWorld","type":"propertyDef","startIndex":160,"stopIndex":3057,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5834":{"name":"default category","type":"categoryDef","startIndex":158,"stopIndex":4615,"fileName":"lively/morphic/Examples.js","_subElements":[{"__isSmartRef__":true,"id":5833},{"__isSmartRef__":true,"id":5835},{"__isSmartRef__":true,"id":5836},{"__isSmartRef__":true,"id":5837},{"__isSmartRef__":true,"id":5838},{"__isSmartRef__":true,"id":5839},{"__isSmartRef__":true,"id":5840},{"__isSmartRef__":true,"id":5841}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5835":{"name":"createWorld","type":"propertyDef","startIndex":3059,"stopIndex":3232,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5836":{"name":"addRect","type":"propertyDef","startIndex":3234,"stopIndex":3479,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5837":{"name":"addEllipse","type":"propertyDef","startIndex":3481,"stopIndex":3757,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5838":{"name":"addButton","type":"propertyDef","startIndex":3759,"stopIndex":3977,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5839":{"name":"addText","type":"propertyDef","startIndex":3979,"stopIndex":4238,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5840":{"name":"addFrameRateMorph","type":"propertyDef","startIndex":4241,"stopIndex":4437,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5841":{"name":"letMorphStepAndBounce","type":"propertyDef","startIndex":4439,"stopIndex":4613,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":5834},"className":"lively.morphic.Examples","_owner":{"__isSmartRef__":true,"id":5832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5842":{"name":null,"type":"comment","startIndex":4619,"stopIndex":4619,"fileName":"lively/morphic/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5843":{"target":{"__isSmartRef__":true,"id":5844},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Experiments.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5844":{"name":"lively.morphic.Experiments","type":"moduleDef","startIndex":0,"stopIndex":625,"fileName":"lively/morphic/Experiments.js","_subElements":[{"__isSmartRef__":true,"id":5845},{"__isSmartRef__":true,"id":5846}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5845":{"name":null,"type":"comment","startIndex":67,"stopIndex":67,"fileName":"lively/morphic/Experiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5846":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":68,"stopIndex":606,"fileName":"lively/morphic/Experiments.js","_subElements":[{"__isSmartRef__":true,"id":5847}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5848}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5847":{"name":"protoCopy","type":"propertyDef","startIndex":117,"stopIndex":601,"fileName":"lively/morphic/Experiments.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5848},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5846},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5848":{"name":"proto copy","type":"categoryDef","startIndex":101,"stopIndex":603,"fileName":"lively/morphic/Experiments.js","_subElements":[{"__isSmartRef__":true,"id":5847}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5849":{"target":{"__isSmartRef__":true,"id":5850},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Graffle.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5850":{"name":"lively/morphic/Graffle.js","type":"completeFileDef","startIndex":0,"stopIndex":781,"fileName":"lively/morphic/Graffle.js","_subElements":[{"__isSmartRef__":true,"id":5851},{"__isSmartRef__":true,"id":5852}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5851":{"name":null,"type":"unknown","startIndex":0,"stopIndex":139,"fileName":"lively/morphic/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5852":{"name":null,"type":"unknown","startIndex":140,"stopIndex":781,"fileName":"lively/morphic/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5853":{"target":{"__isSmartRef__":true,"id":5854},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Halos.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"5854":{"name":"lively.morphic.Halos","type":"moduleDef","startIndex":0,"stopIndex":20128,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5855},{"__isSmartRef__":true,"id":5856},{"__isSmartRef__":true,"id":5866},{"__isSmartRef__":true,"id":5872},{"__isSmartRef__":true,"id":5873},{"__isSmartRef__":true,"id":5907},{"__isSmartRef__":true,"id":5915},{"__isSmartRef__":true,"id":5923},{"__isSmartRef__":true,"id":5933},{"__isSmartRef__":true,"id":5944},{"__isSmartRef__":true,"id":5955},{"__isSmartRef__":true,"id":5964},{"__isSmartRef__":true,"id":5972},{"__isSmartRef__":true,"id":5980},{"__isSmartRef__":true,"id":5994},{"__isSmartRef__":true,"id":6002},{"__isSmartRef__":true,"id":6010},{"__isSmartRef__":true,"id":6011},{"__isSmartRef__":true,"id":6019},{"__isSmartRef__":true,"id":6020},{"__isSmartRef__":true,"id":6028},{"__isSmartRef__":true,"id":6029},{"__isSmartRef__":true,"id":6039}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5855":{"name":null,"type":"comment","startIndex":84,"stopIndex":84,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5856":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":85,"stopIndex":2047,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5857},{"__isSmartRef__":true,"id":5859},{"__isSmartRef__":true,"id":5860},{"__isSmartRef__":true,"id":5861},{"__isSmartRef__":true,"id":5862},{"__isSmartRef__":true,"id":5863},{"__isSmartRef__":true,"id":5864},{"__isSmartRef__":true,"id":5865}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5858}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5857":{"name":"enableHalos","type":"propertyDef","startIndex":129,"stopIndex":185,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5858":{"name":"halos","type":"categoryDef","startIndex":118,"stopIndex":2044,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5857},{"__isSmartRef__":true,"id":5859},{"__isSmartRef__":true,"id":5860},{"__isSmartRef__":true,"id":5861},{"__isSmartRef__":true,"id":5862},{"__isSmartRef__":true,"id":5863},{"__isSmartRef__":true,"id":5864},{"__isSmartRef__":true,"id":5865}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5859":{"name":"disableHalos","type":"propertyDef","startIndex":187,"stopIndex":245,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5860":{"name":"showHalos","type":"propertyDef","startIndex":247,"stopIndex":501,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5861":{"name":"getHaloClasses","type":"propertyDef","startIndex":503,"stopIndex":1023,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5862":{"name":"getHalos","type":"propertyDef","startIndex":1025,"stopIndex":1131,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5863":{"name":"removeHalos","type":"propertyDef","startIndex":1134,"stopIndex":1448,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5864":{"name":"toggleHalos","type":"propertyDef","startIndex":1450,"stopIndex":1841,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5865":{"name":"showHalosForMorphBeneath","type":"propertyDef","startIndex":1844,"stopIndex":2040,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5858},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":5856},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5866":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":2048,"stopIndex":2938,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5867},{"__isSmartRef__":true,"id":5869},{"__isSmartRef__":true,"id":5870},{"__isSmartRef__":true,"id":5871}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":5868}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5867":{"name":"showHalosFor","type":"propertyDef","startIndex":2092,"stopIndex":2340,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5868},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5868":{"name":"halos","type":"categoryDef","startIndex":2081,"stopIndex":2935,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5867},{"__isSmartRef__":true,"id":5869},{"__isSmartRef__":true,"id":5870},{"__isSmartRef__":true,"id":5871}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5869":{"name":"removeHalosFor","type":"propertyDef","startIndex":2342,"stopIndex":2664,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5868},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5870":{"name":"removeHalosOfCurrentHaloTarget","type":"propertyDef","startIndex":2666,"stopIndex":2799,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5868},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5871":{"name":"getHaloClasses","type":"propertyDef","startIndex":2802,"stopIndex":2933,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5868},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":5866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5872":{"name":null,"type":"comment","startIndex":2939,"stopIndex":2939,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5873":{"name":"lively.morphic.Halo","type":"klassDef","startIndex":2940,"stopIndex":8196,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5874},{"__isSmartRef__":true,"id":5876},{"__isSmartRef__":true,"id":5877},{"__isSmartRef__":true,"id":5878},{"__isSmartRef__":true,"id":5879},{"__isSmartRef__":true,"id":5880},{"__isSmartRef__":true,"id":5881},{"__isSmartRef__":true,"id":5882},{"__isSmartRef__":true,"id":5883},{"__isSmartRef__":true,"id":5884},{"__isSmartRef__":true,"id":5885},{"__isSmartRef__":true,"id":5887},{"__isSmartRef__":true,"id":5888},{"__isSmartRef__":true,"id":5889},{"__isSmartRef__":true,"id":5891},{"__isSmartRef__":true,"id":5892},{"__isSmartRef__":true,"id":5894},{"__isSmartRef__":true,"id":5895},{"__isSmartRef__":true,"id":5896},{"__isSmartRef__":true,"id":5898},{"__isSmartRef__":true,"id":5899},{"__isSmartRef__":true,"id":5900},{"__isSmartRef__":true,"id":5901},{"__isSmartRef__":true,"id":5903},{"__isSmartRef__":true,"id":5904},{"__isSmartRef__":true,"id":5905},{"__isSmartRef__":true,"id":5906}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":5875},{"__isSmartRef__":true,"id":5886},{"__isSmartRef__":true,"id":5890},{"__isSmartRef__":true,"id":5893},{"__isSmartRef__":true,"id":5897},{"__isSmartRef__":true,"id":5902}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5874":{"name":"style","type":"propertyDef","startIndex":3005,"stopIndex":3142,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5875":{"name":"settings","type":"categoryDef","startIndex":2991,"stopIndex":3358,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5874},{"__isSmartRef__":true,"id":5876},{"__isSmartRef__":true,"id":5877},{"__isSmartRef__":true,"id":5878},{"__isSmartRef__":true,"id":5879},{"__isSmartRef__":true,"id":5880},{"__isSmartRef__":true,"id":5881},{"__isSmartRef__":true,"id":5882},{"__isSmartRef__":true,"id":5883},{"__isSmartRef__":true,"id":5884}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5876":{"name":"dragTriggerDistance","type":"propertyDef","startIndex":3144,"stopIndex":3170,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5877":{"name":"defaultExtent","type":"propertyDef","startIndex":3172,"stopIndex":3200,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5878":{"name":"labelText","type":"propertyDef","startIndex":3202,"stopIndex":3219,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5879":{"name":"maxHorizontalLabels","type":"propertyDef","startIndex":3221,"stopIndex":3247,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5880":{"name":"maxVerticalLabels","type":"propertyDef","startIndex":3249,"stopIndex":3273,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5881":{"name":"horizontalPos","type":"propertyDef","startIndex":3275,"stopIndex":3295,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5882":{"name":"verticalPos","type":"propertyDef","startIndex":3297,"stopIndex":3315,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5883":{"name":"isEpiMorph","type":"propertyDef","startIndex":3317,"stopIndex":3337,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5884":{"name":"isHalo","type":"propertyDef","startIndex":3339,"stopIndex":3355,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5875},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5885":{"name":"initialize","type":"propertyDef","startIndex":3378,"stopIndex":3555,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5886},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5886":{"name":"initializing","type":"categoryDef","startIndex":3360,"stopIndex":4613,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5885},{"__isSmartRef__":true,"id":5887},{"__isSmartRef__":true,"id":5888}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5887":{"name":"createLabel","type":"propertyDef","startIndex":3557,"stopIndex":3824,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5886},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5888":{"name":"ensureInfoLabel","type":"propertyDef","startIndex":3827,"stopIndex":4611,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5886},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5889":{"name":"getLabelText","type":"propertyDef","startIndex":4630,"stopIndex":4684,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5890},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5890":{"name":"accessing","type":"categoryDef","startIndex":4615,"stopIndex":4803,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5889},{"__isSmartRef__":true,"id":5891}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5891":{"name":"setInfo","type":"propertyDef","startIndex":4686,"stopIndex":4799,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5890},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5892":{"name":"alignAtTarget","type":"propertyDef","startIndex":4817,"stopIndex":4912,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5893},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5893":{"name":"layout","type":"categoryDef","startIndex":4805,"stopIndex":6923,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5892},{"__isSmartRef__":true,"id":5894},{"__isSmartRef__":true,"id":5895}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5894":{"name":"computePositionAtTarget","type":"propertyDef","startIndex":4914,"stopIndex":6300,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5893},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5895":{"name":"tranformMoveDeltaDependingOnHaloPosition","type":"propertyDef","startIndex":6302,"stopIndex":6918,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5893},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5896":{"name":"clickAction","type":"propertyDef","startIndex":6943,"stopIndex":6976,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5897},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5897":{"name":"halo actions","type":"categoryDef","startIndex":6925,"stopIndex":7104,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5896},{"__isSmartRef__":true,"id":5898},{"__isSmartRef__":true,"id":5899},{"__isSmartRef__":true,"id":5900}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5898":{"name":"dragAction","type":"propertyDef","startIndex":6978,"stopIndex":7021,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5897},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5899":{"name":"dragEndAction","type":"propertyDef","startIndex":7023,"stopIndex":7058,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5897},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5900":{"name":"dragStartAction","type":"propertyDef","startIndex":7060,"stopIndex":7097,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5897},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5901":{"name":"onMouseUp","type":"propertyDef","startIndex":7125,"stopIndex":7296,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5902},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5902":{"name":"mouse events","type":"categoryDef","startIndex":7106,"stopIndex":8193,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5901},{"__isSmartRef__":true,"id":5903},{"__isSmartRef__":true,"id":5904},{"__isSmartRef__":true,"id":5905},{"__isSmartRef__":true,"id":5906}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5903":{"name":"onMouseDown","type":"propertyDef","startIndex":7298,"stopIndex":7608,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5902},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5904":{"name":"onDragStart","type":"propertyDef","startIndex":7612,"stopIndex":7783,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5902},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5905":{"name":"onDragEnd","type":"propertyDef","startIndex":7785,"stopIndex":7984,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5902},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5906":{"name":"onDrag","type":"propertyDef","startIndex":7987,"stopIndex":8191,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5902},"className":"lively.morphic.Halo","_owner":{"__isSmartRef__":true,"id":5873},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5907":{"name":"lively.morphic.ResizeHalo","type":"klassDef","startIndex":8197,"stopIndex":9165,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5908},{"__isSmartRef__":true,"id":5910},{"__isSmartRef__":true,"id":5911},{"__isSmartRef__":true,"id":5912},{"__isSmartRef__":true,"id":5913}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5909},{"__isSmartRef__":true,"id":5914}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5908":{"name":"style","type":"propertyDef","startIndex":8269,"stopIndex":8299,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5909},"className":"lively.morphic.ResizeHalo","_owner":{"__isSmartRef__":true,"id":5907},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5909":{"name":"settings","type":"categoryDef","startIndex":8255,"stopIndex":8364,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5908},{"__isSmartRef__":true,"id":5910},{"__isSmartRef__":true,"id":5911},{"__isSmartRef__":true,"id":5912}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5910":{"name":"labelText","type":"propertyDef","startIndex":8301,"stopIndex":8319,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5909},"className":"lively.morphic.ResizeHalo","_owner":{"__isSmartRef__":true,"id":5907},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5911":{"name":"horizontalPos","type":"propertyDef","startIndex":8321,"stopIndex":8341,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5909},"className":"lively.morphic.ResizeHalo","_owner":{"__isSmartRef__":true,"id":5907},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5912":{"name":"verticalPos","type":"propertyDef","startIndex":8343,"stopIndex":8361,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5909},"className":"lively.morphic.ResizeHalo","_owner":{"__isSmartRef__":true,"id":5907},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5913":{"name":"dragAction","type":"propertyDef","startIndex":8384,"stopIndex":9160,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5914},"className":"lively.morphic.ResizeHalo","_owner":{"__isSmartRef__":true,"id":5907},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5914":{"name":"halo actions","type":"categoryDef","startIndex":8366,"stopIndex":9162,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5913}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5915":{"name":"lively.morphic.RescaleHalo","type":"klassDef","startIndex":9166,"stopIndex":9880,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5916},{"__isSmartRef__":true,"id":5918},{"__isSmartRef__":true,"id":5919},{"__isSmartRef__":true,"id":5920},{"__isSmartRef__":true,"id":5921}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5917},{"__isSmartRef__":true,"id":5922}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5916":{"name":"style","type":"propertyDef","startIndex":9239,"stopIndex":9269,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5917},"className":"lively.morphic.RescaleHalo","_owner":{"__isSmartRef__":true,"id":5915},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5917":{"name":"settings","type":"categoryDef","startIndex":9225,"stopIndex":9334,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5916},{"__isSmartRef__":true,"id":5918},{"__isSmartRef__":true,"id":5919},{"__isSmartRef__":true,"id":5920}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5918":{"name":"labelText","type":"propertyDef","startIndex":9271,"stopIndex":9289,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5917},"className":"lively.morphic.RescaleHalo","_owner":{"__isSmartRef__":true,"id":5915},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5919":{"name":"horizontalPos","type":"propertyDef","startIndex":9291,"stopIndex":9311,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5917},"className":"lively.morphic.RescaleHalo","_owner":{"__isSmartRef__":true,"id":5915},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5920":{"name":"verticalPos","type":"propertyDef","startIndex":9313,"stopIndex":9331,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5917},"className":"lively.morphic.RescaleHalo","_owner":{"__isSmartRef__":true,"id":5915},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5921":{"name":"dragAction","type":"propertyDef","startIndex":9354,"stopIndex":9875,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5922},"className":"lively.morphic.RescaleHalo","_owner":{"__isSmartRef__":true,"id":5915},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5922":{"name":"halo actions","type":"categoryDef","startIndex":9336,"stopIndex":9877,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5921}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5923":{"name":"lively.morphic.DragHalo","type":"klassDef","startIndex":9881,"stopIndex":11494,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5924},{"__isSmartRef__":true,"id":5926},{"__isSmartRef__":true,"id":5927},{"__isSmartRef__":true,"id":5928},{"__isSmartRef__":true,"id":5929},{"__isSmartRef__":true,"id":5931},{"__isSmartRef__":true,"id":5932}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5925},{"__isSmartRef__":true,"id":5930}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5924":{"name":"style","type":"propertyDef","startIndex":9951,"stopIndex":9982,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5925},"className":"lively.morphic.DragHalo","_owner":{"__isSmartRef__":true,"id":5923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5925":{"name":"settings","type":"categoryDef","startIndex":9937,"stopIndex":10047,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5924},{"__isSmartRef__":true,"id":5926},{"__isSmartRef__":true,"id":5927},{"__isSmartRef__":true,"id":5928}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5926":{"name":"labelText","type":"propertyDef","startIndex":9984,"stopIndex":10002,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5925},"className":"lively.morphic.DragHalo","_owner":{"__isSmartRef__":true,"id":5923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5927":{"name":"horizontalPos","type":"propertyDef","startIndex":10004,"stopIndex":10024,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5925},"className":"lively.morphic.DragHalo","_owner":{"__isSmartRef__":true,"id":5923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5928":{"name":"verticalPos","type":"propertyDef","startIndex":10026,"stopIndex":10044,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5925},"className":"lively.morphic.DragHalo","_owner":{"__isSmartRef__":true,"id":5923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5929":{"name":"dragAction","type":"propertyDef","startIndex":10067,"stopIndex":11165,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5930},"className":"lively.morphic.DragHalo","_owner":{"__isSmartRef__":true,"id":5923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5930":{"name":"halo actions","type":"categoryDef","startIndex":10049,"stopIndex":11491,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5929},{"__isSmartRef__":true,"id":5931},{"__isSmartRef__":true,"id":5932}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5931":{"name":"dragEndAction","type":"propertyDef","startIndex":11167,"stopIndex":11286,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5930},"className":"lively.morphic.DragHalo","_owner":{"__isSmartRef__":true,"id":5923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5932":{"name":"dragStartAction","type":"propertyDef","startIndex":11288,"stopIndex":11487,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5930},"className":"lively.morphic.DragHalo","_owner":{"__isSmartRef__":true,"id":5923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5933":{"name":"lively.morphic.GrabHalo","type":"klassDef","startIndex":11495,"stopIndex":12220,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5934},{"__isSmartRef__":true,"id":5936},{"__isSmartRef__":true,"id":5937},{"__isSmartRef__":true,"id":5938},{"__isSmartRef__":true,"id":5939},{"__isSmartRef__":true,"id":5941},{"__isSmartRef__":true,"id":5942},{"__isSmartRef__":true,"id":5943}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5935},{"__isSmartRef__":true,"id":5940}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5934":{"name":"style","type":"propertyDef","startIndex":11565,"stopIndex":11616,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5935},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5935":{"name":"settings","type":"categoryDef","startIndex":11551,"stopIndex":11681,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5934},{"__isSmartRef__":true,"id":5936},{"__isSmartRef__":true,"id":5937},{"__isSmartRef__":true,"id":5938}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5936":{"name":"labelText","type":"propertyDef","startIndex":11618,"stopIndex":11636,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5935},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5937":{"name":"horizontalPos","type":"propertyDef","startIndex":11638,"stopIndex":11658,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5935},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5938":{"name":"verticalPos","type":"propertyDef","startIndex":11660,"stopIndex":11678,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5935},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5939":{"name":"clickAction","type":"propertyDef","startIndex":11701,"stopIndex":11809,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5940},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5940":{"name":"halo actions","type":"categoryDef","startIndex":11683,"stopIndex":12217,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5939},{"__isSmartRef__":true,"id":5941},{"__isSmartRef__":true,"id":5942},{"__isSmartRef__":true,"id":5943}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5941":{"name":"dragAction","type":"propertyDef","startIndex":11811,"stopIndex":11963,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5940},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5942":{"name":"dragEndAction","type":"propertyDef","startIndex":11965,"stopIndex":12080,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5940},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5943":{"name":"dragStartAction","type":"propertyDef","startIndex":12082,"stopIndex":12213,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5940},"className":"lively.morphic.GrabHalo","_owner":{"__isSmartRef__":true,"id":5933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5944":{"name":"lively.morphic.CopyHalo","type":"klassDef","startIndex":12221,"stopIndex":13466,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5945},{"__isSmartRef__":true,"id":5947},{"__isSmartRef__":true,"id":5948},{"__isSmartRef__":true,"id":5949},{"__isSmartRef__":true,"id":5950},{"__isSmartRef__":true,"id":5952},{"__isSmartRef__":true,"id":5953},{"__isSmartRef__":true,"id":5954}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5946},{"__isSmartRef__":true,"id":5951}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5945":{"name":"style","type":"propertyDef","startIndex":12291,"stopIndex":12331,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5946},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5946":{"name":"settings","type":"categoryDef","startIndex":12277,"stopIndex":12396,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5945},{"__isSmartRef__":true,"id":5947},{"__isSmartRef__":true,"id":5948},{"__isSmartRef__":true,"id":5949}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5947":{"name":"labelText","type":"propertyDef","startIndex":12333,"stopIndex":12351,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5946},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5948":{"name":"horizontalPos","type":"propertyDef","startIndex":12353,"stopIndex":12373,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5946},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5949":{"name":"verticalPos","type":"propertyDef","startIndex":12375,"stopIndex":12393,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5946},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5950":{"name":"clickAction","type":"propertyDef","startIndex":12416,"stopIndex":12488,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5951},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5951":{"name":"halo actions","type":"categoryDef","startIndex":12398,"stopIndex":13463,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5950},{"__isSmartRef__":true,"id":5952},{"__isSmartRef__":true,"id":5953},{"__isSmartRef__":true,"id":5954}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5952":{"name":"dragAction","type":"propertyDef","startIndex":12490,"stopIndex":12668,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5951},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5953":{"name":"dragStartAction","type":"propertyDef","startIndex":12670,"stopIndex":13288,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5951},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5954":{"name":"dragEndAction","type":"propertyDef","startIndex":13290,"stopIndex":13460,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5951},"className":"lively.morphic.CopyHalo","_owner":{"__isSmartRef__":true,"id":5944},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5955":{"name":"lively.morphic.RotateHalo","type":"klassDef","startIndex":13467,"stopIndex":15065,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5956},{"__isSmartRef__":true,"id":5958},{"__isSmartRef__":true,"id":5959},{"__isSmartRef__":true,"id":5960},{"__isSmartRef__":true,"id":5961},{"__isSmartRef__":true,"id":5963}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5957},{"__isSmartRef__":true,"id":5962}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5956":{"name":"style","type":"propertyDef","startIndex":13539,"stopIndex":13568,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5957},"className":"lively.morphic.RotateHalo","_owner":{"__isSmartRef__":true,"id":5955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5957":{"name":"settings","type":"categoryDef","startIndex":13525,"stopIndex":13633,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5956},{"__isSmartRef__":true,"id":5958},{"__isSmartRef__":true,"id":5959},{"__isSmartRef__":true,"id":5960}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5958":{"name":"labelText","type":"propertyDef","startIndex":13570,"stopIndex":13588,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5957},"className":"lively.morphic.RotateHalo","_owner":{"__isSmartRef__":true,"id":5955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5959":{"name":"horizontalPos","type":"propertyDef","startIndex":13590,"stopIndex":13610,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5957},"className":"lively.morphic.RotateHalo","_owner":{"__isSmartRef__":true,"id":5955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5960":{"name":"verticalPos","type":"propertyDef","startIndex":13612,"stopIndex":13630,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5957},"className":"lively.morphic.RotateHalo","_owner":{"__isSmartRef__":true,"id":5955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5961":{"name":"dragAction","type":"propertyDef","startIndex":13653,"stopIndex":14898,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5962},"className":"lively.morphic.RotateHalo","_owner":{"__isSmartRef__":true,"id":5955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5962":{"name":"halo actions","type":"categoryDef","startIndex":13635,"stopIndex":15062,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5961},{"__isSmartRef__":true,"id":5963}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5963":{"name":"onMouseDown","type":"propertyDef","startIndex":14901,"stopIndex":15058,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5962},"className":"lively.morphic.RotateHalo","_owner":{"__isSmartRef__":true,"id":5955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5964":{"name":"lively.morphic.CloseHalo","type":"klassDef","startIndex":15066,"stopIndex":15368,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5965},{"__isSmartRef__":true,"id":5967},{"__isSmartRef__":true,"id":5968},{"__isSmartRef__":true,"id":5969},{"__isSmartRef__":true,"id":5970}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5966},{"__isSmartRef__":true,"id":5971}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5965":{"name":"style","type":"propertyDef","startIndex":15137,"stopIndex":15165,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5966},"className":"lively.morphic.CloseHalo","_owner":{"__isSmartRef__":true,"id":5964},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5966":{"name":"settings","type":"categoryDef","startIndex":15123,"stopIndex":15230,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5965},{"__isSmartRef__":true,"id":5967},{"__isSmartRef__":true,"id":5968},{"__isSmartRef__":true,"id":5969}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5967":{"name":"labelText","type":"propertyDef","startIndex":15167,"stopIndex":15185,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5966},"className":"lively.morphic.CloseHalo","_owner":{"__isSmartRef__":true,"id":5964},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5968":{"name":"horizontalPos","type":"propertyDef","startIndex":15187,"stopIndex":15207,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5966},"className":"lively.morphic.CloseHalo","_owner":{"__isSmartRef__":true,"id":5964},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5969":{"name":"verticalPos","type":"propertyDef","startIndex":15209,"stopIndex":15227,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5966},"className":"lively.morphic.CloseHalo","_owner":{"__isSmartRef__":true,"id":5964},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5970":{"name":"clickAction","type":"propertyDef","startIndex":15250,"stopIndex":15363,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5971},"className":"lively.morphic.CloseHalo","_owner":{"__isSmartRef__":true,"id":5964},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5971":{"name":"halo actions","type":"categoryDef","startIndex":15232,"stopIndex":15365,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5970}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5972":{"name":"lively.morphic.MenuHalo","type":"klassDef","startIndex":15369,"stopIndex":15682,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5973},{"__isSmartRef__":true,"id":5975},{"__isSmartRef__":true,"id":5976},{"__isSmartRef__":true,"id":5977},{"__isSmartRef__":true,"id":5978}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5974},{"__isSmartRef__":true,"id":5979}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5973":{"name":"style","type":"propertyDef","startIndex":15439,"stopIndex":15469,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5974},"className":"lively.morphic.MenuHalo","_owner":{"__isSmartRef__":true,"id":5972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5974":{"name":"settings","type":"categoryDef","startIndex":15425,"stopIndex":15534,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5973},{"__isSmartRef__":true,"id":5975},{"__isSmartRef__":true,"id":5976},{"__isSmartRef__":true,"id":5977}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5975":{"name":"labelText","type":"propertyDef","startIndex":15471,"stopIndex":15489,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5974},"className":"lively.morphic.MenuHalo","_owner":{"__isSmartRef__":true,"id":5972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5976":{"name":"horizontalPos","type":"propertyDef","startIndex":15491,"stopIndex":15511,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5974},"className":"lively.morphic.MenuHalo","_owner":{"__isSmartRef__":true,"id":5972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5977":{"name":"verticalPos","type":"propertyDef","startIndex":15513,"stopIndex":15531,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5974},"className":"lively.morphic.MenuHalo","_owner":{"__isSmartRef__":true,"id":5972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5978":{"name":"clickAction","type":"propertyDef","startIndex":15554,"stopIndex":15677,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5979},"className":"lively.morphic.MenuHalo","_owner":{"__isSmartRef__":true,"id":5972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5979":{"name":"halo actions","type":"categoryDef","startIndex":15536,"stopIndex":15679,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5978}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5980":{"name":"lively.morphic.RenameHalo","type":"klassDef","startIndex":15683,"stopIndex":17640,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5981},{"__isSmartRef__":true,"id":5983},{"__isSmartRef__":true,"id":5984},{"__isSmartRef__":true,"id":5985},{"__isSmartRef__":true,"id":5986},{"__isSmartRef__":true,"id":5988},{"__isSmartRef__":true,"id":5990},{"__isSmartRef__":true,"id":5991},{"__isSmartRef__":true,"id":5992},{"__isSmartRef__":true,"id":5993}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5982},{"__isSmartRef__":true,"id":5987},{"__isSmartRef__":true,"id":5989}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5981":{"name":"style","type":"propertyDef","startIndex":15755,"stopIndex":15805,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5982},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5982":{"name":"settings","type":"categoryDef","startIndex":15741,"stopIndex":15870,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5981},{"__isSmartRef__":true,"id":5983},{"__isSmartRef__":true,"id":5984},{"__isSmartRef__":true,"id":5985}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5983":{"name":"labelText","type":"propertyDef","startIndex":15807,"stopIndex":15825,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5982},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5984":{"name":"horizontalPos","type":"propertyDef","startIndex":15827,"stopIndex":15847,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5982},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5985":{"name":"verticalPos","type":"propertyDef","startIndex":15849,"stopIndex":15867,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5982},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5986":{"name":"getLabelText","type":"propertyDef","startIndex":15887,"stopIndex":15984,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5987},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5987":{"name":"accessing","type":"categoryDef","startIndex":15872,"stopIndex":15987,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5986}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5988":{"name":"clickAction","type":"propertyDef","startIndex":16007,"stopIndex":16408,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5989},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5989":{"name":"halo actions","type":"categoryDef","startIndex":15989,"stopIndex":17637,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5988},{"__isSmartRef__":true,"id":5990},{"__isSmartRef__":true,"id":5991},{"__isSmartRef__":true,"id":5992},{"__isSmartRef__":true,"id":5993}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5990":{"name":"globalizeTargetPos","type":"propertyDef","startIndex":16410,"stopIndex":16617,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5989},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5991":{"name":"computePositionAtTarget","type":"propertyDef","startIndex":16619,"stopIndex":16884,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5989},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5992":{"name":"targetBottomRight","type":"propertyDef","startIndex":16886,"stopIndex":17013,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5989},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5993":{"name":"alignAtTarget","type":"propertyDef","startIndex":17015,"stopIndex":17633,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5989},"className":"lively.morphic.RenameHalo","_owner":{"__isSmartRef__":true,"id":5980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5994":{"name":"lively.morphic.SetImageURLHalo","type":"klassDef","startIndex":17641,"stopIndex":18180,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5995},{"__isSmartRef__":true,"id":5997},{"__isSmartRef__":true,"id":5998},{"__isSmartRef__":true,"id":5999},{"__isSmartRef__":true,"id":6000}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":5996},{"__isSmartRef__":true,"id":6001}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5995":{"name":"style","type":"propertyDef","startIndex":17718,"stopIndex":17757,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5996},"className":"lively.morphic.SetImageURLHalo","_owner":{"__isSmartRef__":true,"id":5994},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5996":{"name":"settings","type":"categoryDef","startIndex":17704,"stopIndex":17822,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":5995},{"__isSmartRef__":true,"id":5997},{"__isSmartRef__":true,"id":5998},{"__isSmartRef__":true,"id":5999}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5997":{"name":"labelText","type":"propertyDef","startIndex":17759,"stopIndex":17777,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5996},"className":"lively.morphic.SetImageURLHalo","_owner":{"__isSmartRef__":true,"id":5994},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5998":{"name":"horizontalPos","type":"propertyDef","startIndex":17779,"stopIndex":17799,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5996},"className":"lively.morphic.SetImageURLHalo","_owner":{"__isSmartRef__":true,"id":5994},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"5999":{"name":"verticalPos","type":"propertyDef","startIndex":17801,"stopIndex":17819,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":5996},"className":"lively.morphic.SetImageURLHalo","_owner":{"__isSmartRef__":true,"id":5994},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6000":{"name":"clickAction","type":"propertyDef","startIndex":17842,"stopIndex":18175,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6001},"className":"lively.morphic.SetImageURLHalo","_owner":{"__isSmartRef__":true,"id":5994},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6001":{"name":"halo actions","type":"categoryDef","startIndex":17824,"stopIndex":18177,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6000}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6002":{"name":"lively.morphic.StyleHalo","type":"klassDef","startIndex":18181,"stopIndex":18518,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6003},{"__isSmartRef__":true,"id":6005},{"__isSmartRef__":true,"id":6006},{"__isSmartRef__":true,"id":6007},{"__isSmartRef__":true,"id":6008}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":6004},{"__isSmartRef__":true,"id":6009}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6003":{"name":"style","type":"propertyDef","startIndex":18252,"stopIndex":18293,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6004},"className":"lively.morphic.StyleHalo","_owner":{"__isSmartRef__":true,"id":6002},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6004":{"name":"settings","type":"categoryDef","startIndex":18238,"stopIndex":18358,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6003},{"__isSmartRef__":true,"id":6005},{"__isSmartRef__":true,"id":6006},{"__isSmartRef__":true,"id":6007}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6005":{"name":"labelText","type":"propertyDef","startIndex":18295,"stopIndex":18313,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6004},"className":"lively.morphic.StyleHalo","_owner":{"__isSmartRef__":true,"id":6002},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6006":{"name":"horizontalPos","type":"propertyDef","startIndex":18315,"stopIndex":18335,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6004},"className":"lively.morphic.StyleHalo","_owner":{"__isSmartRef__":true,"id":6002},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6007":{"name":"verticalPos","type":"propertyDef","startIndex":18337,"stopIndex":18355,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6004},"className":"lively.morphic.StyleHalo","_owner":{"__isSmartRef__":true,"id":6002},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6008":{"name":"clickAction","type":"propertyDef","startIndex":18378,"stopIndex":18513,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6009},"className":"lively.morphic.StyleHalo","_owner":{"__isSmartRef__":true,"id":6002},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6009":{"name":"halo actions","type":"categoryDef","startIndex":18360,"stopIndex":18515,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6008}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6010":{"name":null,"type":"comment","startIndex":18519,"stopIndex":18519,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6011":{"name":"lively.morphic.ScriptEditorHalo","type":"klassDef","startIndex":18520,"stopIndex":18864,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6012},{"__isSmartRef__":true,"id":6014},{"__isSmartRef__":true,"id":6015},{"__isSmartRef__":true,"id":6016},{"__isSmartRef__":true,"id":6017}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":6013},{"__isSmartRef__":true,"id":6018}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6012":{"name":"style","type":"propertyDef","startIndex":18598,"stopIndex":18638,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6013},"className":"lively.morphic.ScriptEditorHalo","_owner":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6013":{"name":"settings","type":"categoryDef","startIndex":18584,"stopIndex":18703,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6012},{"__isSmartRef__":true,"id":6014},{"__isSmartRef__":true,"id":6015},{"__isSmartRef__":true,"id":6016}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6014":{"name":"labelText","type":"propertyDef","startIndex":18640,"stopIndex":18658,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6013},"className":"lively.morphic.ScriptEditorHalo","_owner":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6015":{"name":"horizontalPos","type":"propertyDef","startIndex":18660,"stopIndex":18680,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6013},"className":"lively.morphic.ScriptEditorHalo","_owner":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6016":{"name":"verticalPos","type":"propertyDef","startIndex":18682,"stopIndex":18700,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6013},"className":"lively.morphic.ScriptEditorHalo","_owner":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6017":{"name":"clickAction","type":"propertyDef","startIndex":18723,"stopIndex":18859,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6018},"className":"lively.morphic.ScriptEditorHalo","_owner":{"__isSmartRef__":true,"id":6011},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6018":{"name":"halo actions","type":"categoryDef","startIndex":18705,"stopIndex":18861,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6017}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6019":{"name":null,"type":"comment","startIndex":18865,"stopIndex":18865,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6020":{"name":"lively.morphic.InspectHalo","type":"klassDef","startIndex":18866,"stopIndex":19202,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6021},{"__isSmartRef__":true,"id":6023},{"__isSmartRef__":true,"id":6024},{"__isSmartRef__":true,"id":6025},{"__isSmartRef__":true,"id":6026}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":6022},{"__isSmartRef__":true,"id":6027}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6021":{"name":"style","type":"propertyDef","startIndex":18939,"stopIndex":18979,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6022},"className":"lively.morphic.InspectHalo","_owner":{"__isSmartRef__":true,"id":6020},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6022":{"name":"settings","type":"categoryDef","startIndex":18925,"stopIndex":19044,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6021},{"__isSmartRef__":true,"id":6023},{"__isSmartRef__":true,"id":6024},{"__isSmartRef__":true,"id":6025}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6023":{"name":"labelText","type":"propertyDef","startIndex":18981,"stopIndex":18999,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6022},"className":"lively.morphic.InspectHalo","_owner":{"__isSmartRef__":true,"id":6020},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6024":{"name":"horizontalPos","type":"propertyDef","startIndex":19001,"stopIndex":19021,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6022},"className":"lively.morphic.InspectHalo","_owner":{"__isSmartRef__":true,"id":6020},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6025":{"name":"verticalPos","type":"propertyDef","startIndex":19023,"stopIndex":19041,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6022},"className":"lively.morphic.InspectHalo","_owner":{"__isSmartRef__":true,"id":6020},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6026":{"name":"clickAction","type":"propertyDef","startIndex":19064,"stopIndex":19197,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6027},"className":"lively.morphic.InspectHalo","_owner":{"__isSmartRef__":true,"id":6020},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6027":{"name":"halo actions","type":"categoryDef","startIndex":19046,"stopIndex":19199,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6026}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6028":{"name":null,"type":"comment","startIndex":19203,"stopIndex":19204,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6029":{"name":"lively.morphic.OriginHalo","type":"klassDef","startIndex":19205,"stopIndex":20107,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6030},{"__isSmartRef__":true,"id":6032},{"__isSmartRef__":true,"id":6033},{"__isSmartRef__":true,"id":6034},{"__isSmartRef__":true,"id":6036},{"__isSmartRef__":true,"id":6037}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Halo","categories":[{"__isSmartRef__":true,"id":6031},{"__isSmartRef__":true,"id":6035},{"__isSmartRef__":true,"id":6038}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6030":{"name":"style","type":"propertyDef","startIndex":19277,"stopIndex":19305,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6031},"className":"lively.morphic.OriginHalo","_owner":{"__isSmartRef__":true,"id":6029},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6031":{"name":"settings","type":"categoryDef","startIndex":19263,"stopIndex":19357,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6030},{"__isSmartRef__":true,"id":6032},{"__isSmartRef__":true,"id":6033}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6032":{"name":"labelText","type":"propertyDef","startIndex":19307,"stopIndex":19324,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6031},"className":"lively.morphic.OriginHalo","_owner":{"__isSmartRef__":true,"id":6029},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6033":{"name":"defaultExtent","type":"propertyDef","startIndex":19326,"stopIndex":19354,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6031},"className":"lively.morphic.OriginHalo","_owner":{"__isSmartRef__":true,"id":6029},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6034":{"name":"clickAction","type":"propertyDef","startIndex":19377,"stopIndex":19410,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6035},"className":"lively.morphic.OriginHalo","_owner":{"__isSmartRef__":true,"id":6029},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6035":{"name":"halo actions","type":"categoryDef","startIndex":19359,"stopIndex":19797,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6034},{"__isSmartRef__":true,"id":6036}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6036":{"name":"dragAction","type":"propertyDef","startIndex":19412,"stopIndex":19793,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6035},"className":"lively.morphic.OriginHalo","_owner":{"__isSmartRef__":true,"id":6029},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6037":{"name":"computePositionAtTarget","type":"propertyDef","startIndex":19816,"stopIndex":20102,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6038},"className":"lively.morphic.OriginHalo","_owner":{"__isSmartRef__":true,"id":6029},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6038":{"name":"positioning","type":"categoryDef","startIndex":19799,"stopIndex":20104,"fileName":"lively/morphic/Halos.js","_subElements":[{"__isSmartRef__":true,"id":6037}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6039":{"name":null,"type":"comment","startIndex":20108,"stopIndex":20108,"fileName":"lively/morphic/Halos.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6040":{"target":{"__isSmartRef__":true,"id":6041},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/HTML.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6041":{"name":"lively.morphic.HTML","type":"moduleDef","startIndex":0,"stopIndex":26130,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6042},{"__isSmartRef__":true,"id":6043},{"__isSmartRef__":true,"id":6046},{"__isSmartRef__":true,"id":6047},{"__isSmartRef__":true,"id":6050},{"__isSmartRef__":true,"id":6051},{"__isSmartRef__":true,"id":6074},{"__isSmartRef__":true,"id":6102},{"__isSmartRef__":true,"id":6131},{"__isSmartRef__":true,"id":6148},{"__isSmartRef__":true,"id":6149},{"__isSmartRef__":true,"id":6154},{"__isSmartRef__":true,"id":6155},{"__isSmartRef__":true,"id":6161},{"__isSmartRef__":true,"id":6170},{"__isSmartRef__":true,"id":6171},{"__isSmartRef__":true,"id":6178},{"__isSmartRef__":true,"id":6197}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6042":{"name":null,"type":"comment","startIndex":115,"stopIndex":115,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6043":{"name":"Color","type":"klassExtensionDef","startIndex":116,"stopIndex":194,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6044}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6045}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6044":{"name":"toCSSString","type":"propertyDef","startIndex":144,"stopIndex":189,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6045},"className":"Color","_owner":{"__isSmartRef__":true,"id":6043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6045":{"name":"HTML","type":"categoryDef","startIndex":134,"stopIndex":191,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6044}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6046":{"name":null,"type":"comment","startIndex":195,"stopIndex":195,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6047":{"name":"lively.morphic.HTML.RenderContext","type":"klassDef","startIndex":196,"stopIndex":369,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6048}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Rendering.RenderContext","categories":[{"__isSmartRef__":true,"id":6049}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6048":{"name":"renderContextTableName","type":"propertyDef","startIndex":295,"stopIndex":342,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6049},"className":"lively.morphic.HTML.RenderContext","_owner":{"__isSmartRef__":true,"id":6047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6049":{"name":"settings","type":"categoryDef","startIndex":281,"stopIndex":345,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6048}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6050":{"name":null,"type":"comment","startIndex":370,"stopIndex":370,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6051":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":371,"stopIndex":4798,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6052},{"__isSmartRef__":true,"id":6054},{"__isSmartRef__":true,"id":6056},{"__isSmartRef__":true,"id":6057},{"__isSmartRef__":true,"id":6058},{"__isSmartRef__":true,"id":6059},{"__isSmartRef__":true,"id":6060},{"__isSmartRef__":true,"id":6061},{"__isSmartRef__":true,"id":6062},{"__isSmartRef__":true,"id":6063},{"__isSmartRef__":true,"id":6065},{"__isSmartRef__":true,"id":6066},{"__isSmartRef__":true,"id":6067},{"__isSmartRef__":true,"id":6068},{"__isSmartRef__":true,"id":6069},{"__isSmartRef__":true,"id":6071},{"__isSmartRef__":true,"id":6073}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6053},{"__isSmartRef__":true,"id":6055},{"__isSmartRef__":true,"id":6064},{"__isSmartRef__":true,"id":6070},{"__isSmartRef__":true,"id":6072}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6052":{"name":"htmlDispatchTable","type":"propertyDef","startIndex":430,"stopIndex":1002,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6053},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6053":{"name":"HTML render settings","type":"categoryDef","startIndex":404,"stopIndex":1005,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6052}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6054":{"name":"setPositionHTML","type":"propertyDef","startIndex":1021,"stopIndex":1161,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6055":{"name":"udpating","type":"categoryDef","startIndex":1007,"stopIndex":2323,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6054},{"__isSmartRef__":true,"id":6056},{"__isSmartRef__":true,"id":6057},{"__isSmartRef__":true,"id":6058},{"__isSmartRef__":true,"id":6059},{"__isSmartRef__":true,"id":6060},{"__isSmartRef__":true,"id":6061},{"__isSmartRef__":true,"id":6062}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6056":{"name":"setRotationHTML","type":"propertyDef","startIndex":1163,"stopIndex":1330,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6057":{"name":"setExtentHTML","type":"propertyDef","startIndex":1332,"stopIndex":1468,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6058":{"name":"setScaleHTML","type":"propertyDef","startIndex":1471,"stopIndex":1642,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6059":{"name":"setVisibleHTML","type":"propertyDef","startIndex":1644,"stopIndex":1797,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6060":{"name":"setOriginHTML","type":"propertyDef","startIndex":1799,"stopIndex":1979,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6061":{"name":"setClipModeHTML","type":"propertyDef","startIndex":1981,"stopIndex":2096,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6062":{"name":"setHandStyleHTML","type":"propertyDef","startIndex":2098,"stopIndex":2319,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6055},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6063":{"name":"renderWithHTML","type":"propertyDef","startIndex":2340,"stopIndex":2464,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6064},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6064":{"name":"rendering","type":"categoryDef","startIndex":2325,"stopIndex":4385,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6063},{"__isSmartRef__":true,"id":6065},{"__isSmartRef__":true,"id":6066},{"__isSmartRef__":true,"id":6067},{"__isSmartRef__":true,"id":6068}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6065":{"name":"initHTML","type":"propertyDef","startIndex":2466,"stopIndex":3106,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6064},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6066":{"name":"appendHTML","type":"propertyDef","startIndex":3108,"stopIndex":3833,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6064},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6067":{"name":"insertMorphNodeInHTML","type":"propertyDef","startIndex":3835,"stopIndex":4269,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6064},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6068":{"name":"replaceRenderContextHTML","type":"propertyDef","startIndex":4273,"stopIndex":4380,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6064},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6069":{"name":"removeHTML","type":"propertyDef","startIndex":4401,"stopIndex":4529,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6070},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6070":{"name":"removing","type":"categoryDef","startIndex":4387,"stopIndex":4532,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6069}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6071":{"name":"triggerEventHTML","type":"propertyDef","startIndex":4546,"stopIndex":4666,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6072":{"name":"events","type":"categoryDef","startIndex":4534,"stopIndex":4795,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6071},{"__isSmartRef__":true,"id":6073}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6073":{"name":"setPointerEventsHTML","type":"propertyDef","startIndex":4668,"stopIndex":4792,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6072},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6051},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6074":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":4799,"stopIndex":10079,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6075},{"__isSmartRef__":true,"id":6077},{"__isSmartRef__":true,"id":6079},{"__isSmartRef__":true,"id":6080},{"__isSmartRef__":true,"id":6081},{"__isSmartRef__":true,"id":6082},{"__isSmartRef__":true,"id":6083},{"__isSmartRef__":true,"id":6085},{"__isSmartRef__":true,"id":6086},{"__isSmartRef__":true,"id":6087},{"__isSmartRef__":true,"id":6088},{"__isSmartRef__":true,"id":6089},{"__isSmartRef__":true,"id":6090},{"__isSmartRef__":true,"id":6091},{"__isSmartRef__":true,"id":6092},{"__isSmartRef__":true,"id":6093},{"__isSmartRef__":true,"id":6094},{"__isSmartRef__":true,"id":6095},{"__isSmartRef__":true,"id":6096},{"__isSmartRef__":true,"id":6097},{"__isSmartRef__":true,"id":6099},{"__isSmartRef__":true,"id":6100}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6076},{"__isSmartRef__":true,"id":6078},{"__isSmartRef__":true,"id":6084},{"__isSmartRef__":true,"id":6098},{"__isSmartRef__":true,"id":6101}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6075":{"name":"htmlDispatchTable","type":"propertyDef","startIndex":4857,"stopIndex":5601,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6076},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6076":{"name":"HTML render settings","type":"categoryDef","startIndex":4831,"stopIndex":5604,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6075}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6077":{"name":"initHTML","type":"propertyDef","startIndex":5621,"stopIndex":6467,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6078},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6078":{"name":"rendering","type":"categoryDef","startIndex":5606,"stopIndex":7390,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6077},{"__isSmartRef__":true,"id":6079},{"__isSmartRef__":true,"id":6080},{"__isSmartRef__":true,"id":6081},{"__isSmartRef__":true,"id":6082}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6079":{"name":"appendHTML","type":"propertyDef","startIndex":6469,"stopIndex":6619,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6078},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6080":{"name":"appendTextHTML","type":"propertyDef","startIndex":6621,"stopIndex":7164,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6078},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6081":{"name":"updateTextHTML","type":"propertyDef","startIndex":7166,"stopIndex":7266,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6078},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6082":{"name":"setClipModeHTML","type":"propertyDef","startIndex":7268,"stopIndex":7382,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6078},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6083":{"name":"getTextExtentHTML","type":"propertyDef","startIndex":7407,"stopIndex":7575,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6084":{"name":"accessing","type":"categoryDef","startIndex":7392,"stopIndex":9615,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6083},{"__isSmartRef__":true,"id":6085},{"__isSmartRef__":true,"id":6086},{"__isSmartRef__":true,"id":6087},{"__isSmartRef__":true,"id":6088},{"__isSmartRef__":true,"id":6089},{"__isSmartRef__":true,"id":6090},{"__isSmartRef__":true,"id":6091},{"__isSmartRef__":true,"id":6092},{"__isSmartRef__":true,"id":6093},{"__isSmartRef__":true,"id":6094},{"__isSmartRef__":true,"id":6095},{"__isSmartRef__":true,"id":6096}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6085":{"name":"setMaxTextWidthHTML","type":"propertyDef","startIndex":7577,"stopIndex":7850,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6086":{"name":"setMaxTextHeightHTML","type":"propertyDef","startIndex":7852,"stopIndex":8128,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6087":{"name":"getTextStringHTML","type":"propertyDef","startIndex":8130,"stopIndex":8222,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6088":{"name":"setFontSizeHTML","type":"propertyDef","startIndex":8224,"stopIndex":8326,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6089":{"name":"setFontFamilyHTML","type":"propertyDef","startIndex":8328,"stopIndex":8435,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6090":{"name":"setTextColorHTML","type":"propertyDef","startIndex":8437,"stopIndex":8597,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6091":{"name":"setPaddingHTML","type":"propertyDef","startIndex":8599,"stopIndex":8966,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6092":{"name":"setAlignHTML","type":"propertyDef","startIndex":8968,"stopIndex":9098,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6093":{"name":"setVerticalAlignHTML","type":"propertyDef","startIndex":9100,"stopIndex":9244,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6094":{"name":"setDisplayHTML","type":"propertyDef","startIndex":9246,"stopIndex":9366,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6095":{"name":"setWhiteSpaceHandlingHTML","type":"propertyDef","startIndex":9372,"stopIndex":9500,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6096":{"name":"getWhiteSpaceHandlingHTML","type":"propertyDef","startIndex":9502,"stopIndex":9612,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6084},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6097":{"name":"ignoreTextEventsHTML","type":"propertyDef","startIndex":9639,"stopIndex":9732,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6098},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6098":{"name":"event management","type":"categoryDef","startIndex":9617,"stopIndex":9829,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6097},{"__isSmartRef__":true,"id":6099}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6099":{"name":"enableTextEventsHTML","type":"propertyDef","startIndex":9734,"stopIndex":9826,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6098},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6100":{"name":"createTextNodeHTML","type":"propertyDef","startIndex":9850,"stopIndex":10074,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6101},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6101":{"name":"node creation","type":"categoryDef","startIndex":9831,"stopIndex":10076,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6100}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6102":{"name":"lively.morphic.List","type":"klassExtensionDef","startIndex":10080,"stopIndex":15599,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6103},{"__isSmartRef__":true,"id":6105},{"__isSmartRef__":true,"id":6107},{"__isSmartRef__":true,"id":6108},{"__isSmartRef__":true,"id":6109},{"__isSmartRef__":true,"id":6110},{"__isSmartRef__":true,"id":6111},{"__isSmartRef__":true,"id":6113},{"__isSmartRef__":true,"id":6114},{"__isSmartRef__":true,"id":6115},{"__isSmartRef__":true,"id":6116},{"__isSmartRef__":true,"id":6117},{"__isSmartRef__":true,"id":6119},{"__isSmartRef__":true,"id":6121},{"__isSmartRef__":true,"id":6122},{"__isSmartRef__":true,"id":6123},{"__isSmartRef__":true,"id":6124},{"__isSmartRef__":true,"id":6125},{"__isSmartRef__":true,"id":6127},{"__isSmartRef__":true,"id":6128},{"__isSmartRef__":true,"id":6130}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6104},{"__isSmartRef__":true,"id":6106},{"__isSmartRef__":true,"id":6112},{"__isSmartRef__":true,"id":6118},{"__isSmartRef__":true,"id":6120},{"__isSmartRef__":true,"id":6126},{"__isSmartRef__":true,"id":6129}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6103":{"name":"htmlDispatchTable","type":"propertyDef","startIndex":10138,"stopIndex":10782,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6104},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6104":{"name":"HTML render settings","type":"categoryDef","startIndex":10112,"stopIndex":10785,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6103}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6105":{"name":"initHTML","type":"propertyDef","startIndex":10802,"stopIndex":11365,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6106},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6106":{"name":"rendering","type":"categoryDef","startIndex":10787,"stopIndex":11841,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6105},{"__isSmartRef__":true,"id":6107},{"__isSmartRef__":true,"id":6108},{"__isSmartRef__":true,"id":6109},{"__isSmartRef__":true,"id":6110}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6107":{"name":"appendHTML","type":"propertyDef","startIndex":11367,"stopIndex":11497,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6106},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6108":{"name":"appendListHTML","type":"propertyDef","startIndex":11499,"stopIndex":11623,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6106},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6109":{"name":"setClipModeHTML","type":"propertyDef","startIndex":11625,"stopIndex":11739,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6106},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6110":{"name":"setSizeHTML","type":"propertyDef","startIndex":11741,"stopIndex":11837,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6106},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6111":{"name":"removeListContentHTML","type":"propertyDef","startIndex":11862,"stopIndex":12097,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6112},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6112":{"name":"list specific","type":"categoryDef","startIndex":11843,"stopIndex":13598,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6111},{"__isSmartRef__":true,"id":6113},{"__isSmartRef__":true,"id":6114},{"__isSmartRef__":true,"id":6115},{"__isSmartRef__":true,"id":6116}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6113":{"name":"updateListContentHTML","type":"propertyDef","startIndex":12099,"stopIndex":12736,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6112},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6114":{"name":"resizeListHTML","type":"propertyDef","startIndex":12738,"stopIndex":13320,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6112},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6115":{"name":"getItemIndexFromEventHTML","type":"propertyDef","startIndex":13322,"stopIndex":13480,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6112},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6116":{"name":"deselectNodesHTML","type":"propertyDef","startIndex":13482,"stopIndex":13593,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6112},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6117":{"name":"renderAsDropDownListHTML","type":"propertyDef","startIndex":13628,"stopIndex":13727,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6118},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6118":{"name":"drop down support HTML","type":"categoryDef","startIndex":13600,"stopIndex":13730,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6117}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6119":{"name":"enableMultipleSelectionsHTML","type":"propertyDef","startIndex":13769,"stopIndex":13880,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6120},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6120":{"name":"multiple selection support HTML","type":"categoryDef","startIndex":13732,"stopIndex":14908,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6119},{"__isSmartRef__":true,"id":6121},{"__isSmartRef__":true,"id":6122},{"__isSmartRef__":true,"id":6123},{"__isSmartRef__":true,"id":6124}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6121":{"name":"getSelectedIndexesHTML","type":"propertyDef","startIndex":13882,"stopIndex":14137,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6120},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6122":{"name":"deselectAtHTML","type":"propertyDef","startIndex":14139,"stopIndex":14358,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6120},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6123":{"name":"selectAllAtHTML","type":"propertyDef","startIndex":14360,"stopIndex":14830,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6120},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6124":{"name":"clearSelectionsHTML","type":"propertyDef","startIndex":14832,"stopIndex":14902,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6120},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6125":{"name":"createListNodeHTML","type":"propertyDef","startIndex":14929,"stopIndex":15167,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6126},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6126":{"name":"node creation","type":"categoryDef","startIndex":14910,"stopIndex":15340,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6125},{"__isSmartRef__":true,"id":6127}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6127":{"name":"getListExtentHTML","type":"propertyDef","startIndex":15169,"stopIndex":15336,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6126},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6128":{"name":"setFontSizeHTML","type":"propertyDef","startIndex":15355,"stopIndex":15477,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6129},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6129":{"name":"styling","type":"categoryDef","startIndex":15342,"stopIndex":15596,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6128},{"__isSmartRef__":true,"id":6130}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6130":{"name":"setFontFamilyHTML","type":"propertyDef","startIndex":15479,"stopIndex":15594,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6129},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6102},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6131":{"name":"lively.morphic.Shapes.Shape","type":"klassExtensionDef","startIndex":15600,"stopIndex":18922,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6132},{"__isSmartRef__":true,"id":6134},{"__isSmartRef__":true,"id":6136},{"__isSmartRef__":true,"id":6137},{"__isSmartRef__":true,"id":6139},{"__isSmartRef__":true,"id":6140},{"__isSmartRef__":true,"id":6141},{"__isSmartRef__":true,"id":6142},{"__isSmartRef__":true,"id":6143},{"__isSmartRef__":true,"id":6144},{"__isSmartRef__":true,"id":6145},{"__isSmartRef__":true,"id":6146},{"__isSmartRef__":true,"id":6147}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6133},{"__isSmartRef__":true,"id":6135},{"__isSmartRef__":true,"id":6138}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6132":{"name":"htmlDispatchTable","type":"propertyDef","startIndex":15666,"stopIndex":16139,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6133},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6133":{"name":"HTML render settings","type":"categoryDef","startIndex":15640,"stopIndex":16142,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6132}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6134":{"name":"initHTML","type":"propertyDef","startIndex":16162,"stopIndex":16747,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6135},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6135":{"name":"initializing","type":"categoryDef","startIndex":16144,"stopIndex":17007,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6134},{"__isSmartRef__":true,"id":6136}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6136":{"name":"renderHTML","type":"propertyDef","startIndex":16749,"stopIndex":17004,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6135},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6137":{"name":"setPositionHTML","type":"propertyDef","startIndex":17023,"stopIndex":17163,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6138":{"name":"updating","type":"categoryDef","startIndex":17009,"stopIndex":18919,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6137},{"__isSmartRef__":true,"id":6139},{"__isSmartRef__":true,"id":6140},{"__isSmartRef__":true,"id":6141},{"__isSmartRef__":true,"id":6142},{"__isSmartRef__":true,"id":6143},{"__isSmartRef__":true,"id":6144},{"__isSmartRef__":true,"id":6145},{"__isSmartRef__":true,"id":6146},{"__isSmartRef__":true,"id":6147}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6139":{"name":"setExtentHTML","type":"propertyDef","startIndex":17165,"stopIndex":17503,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6140":{"name":"setFillHTML","type":"propertyDef","startIndex":17505,"stopIndex":17655,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6141":{"name":"setBorderColorHTML","type":"propertyDef","startIndex":17657,"stopIndex":17801,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6142":{"name":"setBorderStyleHTML","type":"propertyDef","startIndex":17803,"stopIndex":17923,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6143":{"name":"setBorderWidthHTML","type":"propertyDef","startIndex":17926,"stopIndex":18187,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6144":{"name":"setBorderRadiusHTML","type":"propertyDef","startIndex":18189,"stopIndex":18295,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6145":{"name":"setStrokeOpacityHTML","type":"propertyDef","startIndex":18298,"stopIndex":18448,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6146":{"name":"setBorderHTML","type":"propertyDef","startIndex":18451,"stopIndex":18821,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6147":{"name":"setOpacityHTML","type":"propertyDef","startIndex":18823,"stopIndex":18916,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6138},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6131},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6148":{"name":null,"type":"comment","startIndex":18923,"stopIndex":18923,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6149":{"name":"lively.morphic.Shapes.Rectangle","type":"klassExtensionDef","startIndex":18924,"stopIndex":19534,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6150},{"__isSmartRef__":true,"id":6152}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6151},{"__isSmartRef__":true,"id":6153}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6150":{"name":"initHTML","type":"propertyDef","startIndex":18983,"stopIndex":19195,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6151},"className":"lively.morphic.Shapes.Rectangle","_owner":{"__isSmartRef__":true,"id":6149},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6151":{"name":"rendering","type":"categoryDef","startIndex":18968,"stopIndex":19198,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6150}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6152":{"name":"setBorderRadiusHTML","type":"propertyDef","startIndex":19214,"stopIndex":19529,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6153},"className":"lively.morphic.Shapes.Rectangle","_owner":{"__isSmartRef__":true,"id":6149},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6153":{"name":"updating","type":"categoryDef","startIndex":19200,"stopIndex":19531,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6152}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6154":{"name":null,"type":"comment","startIndex":19535,"stopIndex":19535,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6155":{"name":"lively.morphic.Shapes.Ellipse","type":"klassExtensionDef","startIndex":19536,"stopIndex":20164,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6156},{"__isSmartRef__":true,"id":6158},{"__isSmartRef__":true,"id":6160}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6157},{"__isSmartRef__":true,"id":6159}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6156":{"name":"initHTML","type":"propertyDef","startIndex":19593,"stopIndex":19811,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6157},"className":"lively.morphic.Shapes.Ellipse","_owner":{"__isSmartRef__":true,"id":6155},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6157":{"name":"rendering","type":"categoryDef","startIndex":19578,"stopIndex":19814,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6156}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6158":{"name":"setExtentHTML","type":"propertyDef","startIndex":19830,"stopIndex":20017,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6159},"className":"lively.morphic.Shapes.Ellipse","_owner":{"__isSmartRef__":true,"id":6155},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6159":{"name":"updating","type":"categoryDef","startIndex":19816,"stopIndex":20161,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6158},{"__isSmartRef__":true,"id":6160}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6160":{"name":"setBorderRadiusHTML","type":"propertyDef","startIndex":20019,"stopIndex":20158,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6159},"className":"lively.morphic.Shapes.Ellipse","_owner":{"__isSmartRef__":true,"id":6155},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6161":{"name":"lively.morphic.Shapes.Image","type":"klassExtensionDef","startIndex":20165,"stopIndex":21019,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6162},{"__isSmartRef__":true,"id":6164},{"__isSmartRef__":true,"id":6166},{"__isSmartRef__":true,"id":6168}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6163},{"__isSmartRef__":true,"id":6165},{"__isSmartRef__":true,"id":6167},{"__isSmartRef__":true,"id":6169}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6162":{"name":"htmlDispatchTable","type":"propertyDef","startIndex":20231,"stopIndex":20349,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6163},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6161},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6163":{"name":"HTML render settings","type":"categoryDef","startIndex":20205,"stopIndex":20352,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6162}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6164":{"name":"initHTML","type":"propertyDef","startIndex":20369,"stopIndex":20629,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6165},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6161},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6165":{"name":"rendering","type":"categoryDef","startIndex":20354,"stopIndex":20632,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6164}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6166":{"name":"setImageURLHTML","type":"propertyDef","startIndex":20648,"stopIndex":20873,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6167},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6161},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6167":{"name":"updating","type":"categoryDef","startIndex":20634,"stopIndex":20876,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6166}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6168":{"name":"getNativeExtentHTML","type":"propertyDef","startIndex":20893,"stopIndex":21014,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6169},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6161},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6169":{"name":"accessing","type":"categoryDef","startIndex":20878,"stopIndex":21016,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6168}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6170":{"name":null,"type":"comment","startIndex":21020,"stopIndex":21020,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6171":{"name":"lively.morphic.Shapes.External","type":"klassExtensionDef","startIndex":21021,"stopIndex":21817,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6172},{"__isSmartRef__":true,"id":6174},{"__isSmartRef__":true,"id":6176}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6173},{"__isSmartRef__":true,"id":6175},{"__isSmartRef__":true,"id":6177}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6172":{"name":"htmlDispatchTable","type":"propertyDef","startIndex":21090,"stopIndex":21156,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6173},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6173":{"name":"HTML render settings","type":"categoryDef","startIndex":21064,"stopIndex":21159,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6172}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6174":{"name":"initHTML","type":"propertyDef","startIndex":21176,"stopIndex":21662,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6175},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6175":{"name":"rendering","type":"categoryDef","startIndex":21161,"stopIndex":21665,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6174}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6176":{"name":"getExtentHTML","type":"propertyDef","startIndex":21682,"stopIndex":21812,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6177},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6177":{"name":"accessing","type":"categoryDef","startIndex":21667,"stopIndex":21814,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6176}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6178":{"name":"lively.morphic.Shapes.Path","type":"klassExtensionDef","startIndex":21818,"stopIndex":26110,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6179},{"__isSmartRef__":true,"id":6181},{"__isSmartRef__":true,"id":6183},{"__isSmartRef__":true,"id":6185},{"__isSmartRef__":true,"id":6186},{"__isSmartRef__":true,"id":6187},{"__isSmartRef__":true,"id":6188},{"__isSmartRef__":true,"id":6189},{"__isSmartRef__":true,"id":6190},{"__isSmartRef__":true,"id":6192},{"__isSmartRef__":true,"id":6193},{"__isSmartRef__":true,"id":6194},{"__isSmartRef__":true,"id":6195},{"__isSmartRef__":true,"id":6196}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6180},{"__isSmartRef__":true,"id":6182},{"__isSmartRef__":true,"id":6184},{"__isSmartRef__":true,"id":6191}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6179":{"name":"htmlDispatchTable","type":"propertyDef","startIndex":21883,"stopIndex":22151,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6180},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6180":{"name":"HTML render settings","type":"categoryDef","startIndex":21857,"stopIndex":22154,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6179}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6181":{"name":"initHTML","type":"propertyDef","startIndex":22176,"stopIndex":22525,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6182},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6182":{"name":"HTML rendering","type":"categoryDef","startIndex":22156,"stopIndex":22530,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6181}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6183":{"name":"setPathElementsHTML","type":"propertyDef","startIndex":22547,"stopIndex":22903,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6184},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6184":{"name":"accessing","type":"categoryDef","startIndex":22532,"stopIndex":24644,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6183},{"__isSmartRef__":true,"id":6185},{"__isSmartRef__":true,"id":6186},{"__isSmartRef__":true,"id":6187},{"__isSmartRef__":true,"id":6188},{"__isSmartRef__":true,"id":6189}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6185":{"name":"setPositionHTML","type":"propertyDef","startIndex":22906,"stopIndex":23908,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6184},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6186":{"name":"setExtentHTML","type":"propertyDef","startIndex":23910,"stopIndex":24092,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6184},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6187":{"name":"setBorderStyleHTML","type":"propertyDef","startIndex":24095,"stopIndex":24190,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6184},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6188":{"name":"setBorderColorHTML","type":"propertyDef","startIndex":24195,"stopIndex":24338,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6184},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6189":{"name":"setBorderWidthHTML","type":"propertyDef","startIndex":24340,"stopIndex":24639,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6184},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6190":{"name":"setElementsFromSVGData","type":"propertyDef","startIndex":24664,"stopIndex":24824,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6191},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6191":{"name":"svg specific","type":"categoryDef","startIndex":24646,"stopIndex":26107,"fileName":"lively/morphic/HTML.js","_subElements":[{"__isSmartRef__":true,"id":6190},{"__isSmartRef__":true,"id":6192},{"__isSmartRef__":true,"id":6193},{"__isSmartRef__":true,"id":6194},{"__isSmartRef__":true,"id":6195},{"__isSmartRef__":true,"id":6196}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6192":{"name":"getPathNodeHTML","type":"propertyDef","startIndex":24826,"stopIndex":24943,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6191},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6193":{"name":"getDefsNodeHTML","type":"propertyDef","startIndex":24945,"stopIndex":25242,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6191},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6194":{"name":"getPathBoundsHTML","type":"propertyDef","startIndex":25245,"stopIndex":25756,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6191},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6195":{"name":"getTotalLengthHTML","type":"propertyDef","startIndex":25759,"stopIndex":25907,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6191},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6196":{"name":"getPointAtTotalLengthHTML","type":"propertyDef","startIndex":25909,"stopIndex":26105,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6191},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6178},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6197":{"name":null,"type":"comment","startIndex":26111,"stopIndex":26111,"fileName":"lively/morphic/HTML.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6198":{"target":{"__isSmartRef__":true,"id":6199},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Layout.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6199":{"name":"lively.morphic.Layout","type":"moduleDef","startIndex":0,"stopIndex":16568,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6200},{"__isSmartRef__":true,"id":6201},{"__isSmartRef__":true,"id":6214},{"__isSmartRef__":true,"id":6234},{"__isSmartRef__":true,"id":6235},{"__isSmartRef__":true,"id":6242},{"__isSmartRef__":true,"id":6243},{"__isSmartRef__":true,"id":6248},{"__isSmartRef__":true,"id":6255},{"__isSmartRef__":true,"id":6256}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6200":{"name":null,"type":"comment","startIndex":123,"stopIndex":123,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6201":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":124,"stopIndex":4512,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6202},{"__isSmartRef__":true,"id":6204},{"__isSmartRef__":true,"id":6205},{"__isSmartRef__":true,"id":6206},{"__isSmartRef__":true,"id":6207},{"__isSmartRef__":true,"id":6208},{"__isSmartRef__":true,"id":6209},{"__isSmartRef__":true,"id":6210},{"__isSmartRef__":true,"id":6211},{"__isSmartRef__":true,"id":6212},{"__isSmartRef__":true,"id":6213}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6203}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6202":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":172,"stopIndex":1978,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6203":{"name":"layouting","type":"categoryDef","startIndex":157,"stopIndex":4509,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6202},{"__isSmartRef__":true,"id":6204},{"__isSmartRef__":true,"id":6205},{"__isSmartRef__":true,"id":6206},{"__isSmartRef__":true,"id":6207},{"__isSmartRef__":true,"id":6208},{"__isSmartRef__":true,"id":6209},{"__isSmartRef__":true,"id":6210},{"__isSmartRef__":true,"id":6211},{"__isSmartRef__":true,"id":6212},{"__isSmartRef__":true,"id":6213}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6204":{"name":"setLayouter","type":"propertyDef","startIndex":1985,"stopIndex":2177,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6205":{"name":"getLayouter","type":"propertyDef","startIndex":2185,"stopIndex":2325,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6206":{"name":"getMinWidth","type":"propertyDef","startIndex":2327,"stopIndex":2686,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6207":{"name":"getMinHeight","type":"propertyDef","startIndex":2688,"stopIndex":3051,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6208":{"name":"submorphResized","type":"propertyDef","startIndex":3053,"stopIndex":3357,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6209":{"name":"submorphDragged","type":"propertyDef","startIndex":3359,"stopIndex":3437,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6210":{"name":"applyLayout","type":"propertyDef","startIndex":3439,"stopIndex":3634,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6211":{"name":"setPositionTopLeft","type":"propertyDef","startIndex":3638,"stopIndex":4052,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6212":{"name":"getLayoutableSubmorphs","type":"propertyDef","startIndex":4054,"stopIndex":4198,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6213":{"name":"getPositionInWorld","type":"propertyDef","startIndex":4201,"stopIndex":4499,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6203},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6214":{"name":"lively.morphic.Layout.Layout","type":"klassDef","startIndex":4513,"stopIndex":7159,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6215},{"__isSmartRef__":true,"id":6217},{"__isSmartRef__":true,"id":6218},{"__isSmartRef__":true,"id":6219},{"__isSmartRef__":true,"id":6220},{"__isSmartRef__":true,"id":6221},{"__isSmartRef__":true,"id":6222},{"__isSmartRef__":true,"id":6223},{"__isSmartRef__":true,"id":6224},{"__isSmartRef__":true,"id":6225},{"__isSmartRef__":true,"id":6226},{"__isSmartRef__":true,"id":6227},{"__isSmartRef__":true,"id":6228},{"__isSmartRef__":true,"id":6229},{"__isSmartRef__":true,"id":6230},{"__isSmartRef__":true,"id":6231},{"__isSmartRef__":true,"id":6232}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6216},{"__isSmartRef__":true,"id":6233}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6215":{"name":"layout","type":"propertyDef","startIndex":4583,"stopIndex":4770,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6216":{"name":"default category","type":"categoryDef","startIndex":4561,"stopIndex":7071,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6215},{"__isSmartRef__":true,"id":6217},{"__isSmartRef__":true,"id":6218},{"__isSmartRef__":true,"id":6219},{"__isSmartRef__":true,"id":6220},{"__isSmartRef__":true,"id":6221},{"__isSmartRef__":true,"id":6222},{"__isSmartRef__":true,"id":6223},{"__isSmartRef__":true,"id":6224},{"__isSmartRef__":true,"id":6225},{"__isSmartRef__":true,"id":6226},{"__isSmartRef__":true,"id":6227},{"__isSmartRef__":true,"id":6228},{"__isSmartRef__":true,"id":6229},{"__isSmartRef__":true,"id":6230},{"__isSmartRef__":true,"id":6231}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6217":{"name":"basicLayout","type":"propertyDef","startIndex":4772,"stopIndex":4900,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6218":{"name":"getMinWidth","type":"propertyDef","startIndex":4903,"stopIndex":5034,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6219":{"name":"getBorderSize","type":"propertyDef","startIndex":5037,"stopIndex":5206,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6220":{"name":"getSpacing","type":"propertyDef","startIndex":5210,"stopIndex":5364,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6221":{"name":"handlesSubmorphResized","type":"propertyDef","startIndex":5367,"stopIndex":5435,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6222":{"name":"onSubmorphResized","type":"propertyDef","startIndex":5437,"stopIndex":5571,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6223":{"name":"getMinHeight","type":"propertyDef","startIndex":5577,"stopIndex":5710,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6224":{"name":"isJournalLayout","type":"propertyDef","startIndex":5713,"stopIndex":5774,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6225":{"name":"setBorderSize","type":"propertyDef","startIndex":5777,"stopIndex":5944,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6226":{"name":"setContainer","type":"propertyDef","startIndex":5946,"stopIndex":6235,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6227":{"name":"getContainer","type":"propertyDef","startIndex":6237,"stopIndex":6304,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6228":{"name":"initialize","type":"propertyDef","startIndex":6307,"stopIndex":6555,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6229":{"name":"orderedSubmorphs","type":"propertyDef","startIndex":6557,"stopIndex":6723,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6230":{"name":"layoutOrder","type":"propertyDef","startIndex":6725,"stopIndex":6899,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6231":{"name":"setSpacing","type":"propertyDef","startIndex":6903,"stopIndex":7064,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6216},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6232":{"name":"toString","type":"propertyDef","startIndex":7088,"stopIndex":7152,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6233},"className":"lively.morphic.Layout.Layout","_owner":{"__isSmartRef__":true,"id":6214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6233":{"name":"debugging","type":"categoryDef","startIndex":7073,"stopIndex":7156,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6232}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6234":{"name":null,"type":"comment","startIndex":7160,"stopIndex":7160,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6235":{"name":"lively.morphic.Layout.HorizontalLayout","type":"klassDef","startIndex":7161,"stopIndex":10499,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6236},{"__isSmartRef__":true,"id":6238},{"__isSmartRef__":true,"id":6239},{"__isSmartRef__":true,"id":6240},{"__isSmartRef__":true,"id":6241}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Layout.Layout","categories":[{"__isSmartRef__":true,"id":6237}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6236":{"name":"basicLayout","type":"propertyDef","startIndex":7264,"stopIndex":9631,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6237},"className":"lively.morphic.Layout.HorizontalLayout","_owner":{"__isSmartRef__":true,"id":6235},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6237":{"name":"default category","type":"categoryDef","startIndex":7241,"stopIndex":10496,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6236},{"__isSmartRef__":true,"id":6238},{"__isSmartRef__":true,"id":6239},{"__isSmartRef__":true,"id":6240},{"__isSmartRef__":true,"id":6241}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6238":{"name":"getMinWidth","type":"propertyDef","startIndex":9634,"stopIndex":10089,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6237},"className":"lively.morphic.Layout.HorizontalLayout","_owner":{"__isSmartRef__":true,"id":6235},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6239":{"name":"getMinHeight","type":"propertyDef","startIndex":10091,"stopIndex":10350,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6237},"className":"lively.morphic.Layout.HorizontalLayout","_owner":{"__isSmartRef__":true,"id":6235},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6240":{"name":"handlesSubmorphResized","type":"propertyDef","startIndex":10352,"stopIndex":10420,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6237},"className":"lively.morphic.Layout.HorizontalLayout","_owner":{"__isSmartRef__":true,"id":6235},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6241":{"name":"layoutOrder","type":"propertyDef","startIndex":10423,"stopIndex":10492,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6237},"className":"lively.morphic.Layout.HorizontalLayout","_owner":{"__isSmartRef__":true,"id":6235},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6242":{"name":null,"type":"comment","startIndex":10500,"stopIndex":10500,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6243":{"name":"lively.morphic.Layout.TightHorizontalLayout","type":"klassDef","startIndex":10501,"stopIndex":11778,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6244},{"__isSmartRef__":true,"id":6246},{"__isSmartRef__":true,"id":6247}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Layout.HorizontalLayout","categories":[{"__isSmartRef__":true,"id":6245}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6244":{"name":"handlesSubmorphResized","type":"propertyDef","startIndex":10618,"stopIndex":10671,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6245},"className":"lively.morphic.Layout.TightHorizontalLayout","_owner":{"__isSmartRef__":true,"id":6243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6245":{"name":"default category","type":"categoryDef","startIndex":10596,"stopIndex":11775,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6244},{"__isSmartRef__":true,"id":6246},{"__isSmartRef__":true,"id":6247}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6246":{"name":"onSubmorphResized","type":"propertyDef","startIndex":10673,"stopIndex":11034,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6245},"className":"lively.morphic.Layout.TightHorizontalLayout","_owner":{"__isSmartRef__":true,"id":6243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6247":{"name":"basicLayout","type":"propertyDef","startIndex":11036,"stopIndex":11771,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6245},"className":"lively.morphic.Layout.TightHorizontalLayout","_owner":{"__isSmartRef__":true,"id":6243},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6248":{"name":"lively.morphic.Layout.VerticalLayout","type":"klassDef","startIndex":11779,"stopIndex":15310,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6249},{"__isSmartRef__":true,"id":6251},{"__isSmartRef__":true,"id":6252},{"__isSmartRef__":true,"id":6253},{"__isSmartRef__":true,"id":6254}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Layout.Layout","categories":[{"__isSmartRef__":true,"id":6250}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6249":{"name":"basicLayout","type":"propertyDef","startIndex":11880,"stopIndex":14253,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6250},"className":"lively.morphic.Layout.VerticalLayout","_owner":{"__isSmartRef__":true,"id":6248},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6250":{"name":"default category","type":"categoryDef","startIndex":11857,"stopIndex":15307,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6249},{"__isSmartRef__":true,"id":6251},{"__isSmartRef__":true,"id":6252},{"__isSmartRef__":true,"id":6253},{"__isSmartRef__":true,"id":6254}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6251":{"name":"getMinHeight","type":"propertyDef","startIndex":14256,"stopIndex":14694,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6250},"className":"lively.morphic.Layout.VerticalLayout","_owner":{"__isSmartRef__":true,"id":6248},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6252":{"name":"getMinWidth","type":"propertyDef","startIndex":14696,"stopIndex":14952,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6250},"className":"lively.morphic.Layout.VerticalLayout","_owner":{"__isSmartRef__":true,"id":6248},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6253":{"name":"getEffectiveHeight","type":"propertyDef","startIndex":14955,"stopIndex":15234,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6250},"className":"lively.morphic.Layout.VerticalLayout","_owner":{"__isSmartRef__":true,"id":6248},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6254":{"name":"layoutOrder","type":"propertyDef","startIndex":15236,"stopIndex":15305,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6250},"className":"lively.morphic.Layout.VerticalLayout","_owner":{"__isSmartRef__":true,"id":6248},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6255":{"name":null,"type":"comment","startIndex":15311,"stopIndex":15311,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6256":{"name":"lively.morphic.Layout.JournalLayout","type":"klassDef","startIndex":15312,"stopIndex":16547,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6257},{"__isSmartRef__":true,"id":6259},{"__isSmartRef__":true,"id":6260},{"__isSmartRef__":true,"id":6261}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Layout.VerticalLayout","categories":[{"__isSmartRef__":true,"id":6258}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6257":{"name":"basicLayout","type":"propertyDef","startIndex":15420,"stopIndex":16100,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6258},"className":"lively.morphic.Layout.JournalLayout","_owner":{"__isSmartRef__":true,"id":6256},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6258":{"name":"default category","type":"categoryDef","startIndex":15397,"stopIndex":16544,"fileName":"lively/morphic/Layout.js","_subElements":[{"__isSmartRef__":true,"id":6257},{"__isSmartRef__":true,"id":6259},{"__isSmartRef__":true,"id":6260},{"__isSmartRef__":true,"id":6261}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6259":{"name":"isJournalLayout","type":"propertyDef","startIndex":16104,"stopIndex":16165,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6258},"className":"lively.morphic.Layout.JournalLayout","_owner":{"__isSmartRef__":true,"id":6256},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6260":{"name":"handlesSubmorphResized","type":"propertyDef","startIndex":16167,"stopIndex":16234,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6258},"className":"lively.morphic.Layout.JournalLayout","_owner":{"__isSmartRef__":true,"id":6256},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6261":{"name":"onSubmorphResized","type":"propertyDef","startIndex":16236,"stopIndex":16530,"fileName":"lively/morphic/Layout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6258},"className":"lively.morphic.Layout.JournalLayout","_owner":{"__isSmartRef__":true,"id":6256},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6262":{"target":{"__isSmartRef__":true,"id":6263},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/MorphAddons.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6263":{"name":"lively.morphic.MorphAddons","type":"moduleDef","startIndex":0,"stopIndex":21783,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6264},{"__isSmartRef__":true,"id":6265},{"__isSmartRef__":true,"id":6276},{"__isSmartRef__":true,"id":6277},{"__isSmartRef__":true,"id":6335},{"__isSmartRef__":true,"id":6336},{"__isSmartRef__":true,"id":6343},{"__isSmartRef__":true,"id":6348},{"__isSmartRef__":true,"id":6351},{"__isSmartRef__":true,"id":6352},{"__isSmartRef__":true,"id":6373},{"__isSmartRef__":true,"id":6376},{"__isSmartRef__":true,"id":6377},{"__isSmartRef__":true,"id":6382},{"__isSmartRef__":true,"id":6383},{"__isSmartRef__":true,"id":6386},{"__isSmartRef__":true,"id":6387},{"__isSmartRef__":true,"id":6393},{"__isSmartRef__":true,"id":6397},{"__isSmartRef__":true,"id":6398},{"__isSmartRef__":true,"id":6404}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6264":{"name":null,"type":"comment","startIndex":164,"stopIndex":164,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6265":{"name":"Global","type":"klassExtensionDef","startIndex":165,"stopIndex":2519,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6266},{"__isSmartRef__":true,"id":6268},{"__isSmartRef__":true,"id":6269},{"__isSmartRef__":true,"id":6270},{"__isSmartRef__":true,"id":6271},{"__isSmartRef__":true,"id":6272},{"__isSmartRef__":true,"id":6273},{"__isSmartRef__":true,"id":6274},{"__isSmartRef__":true,"id":6275}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6267}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6266":{"name":"newShowPt","type":"propertyDef","startIndex":189,"stopIndex":770,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6267":{"name":"default category","type":"categoryDef","startIndex":187,"stopIndex":2516,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6266},{"__isSmartRef__":true,"id":6268},{"__isSmartRef__":true,"id":6269},{"__isSmartRef__":true,"id":6270},{"__isSmartRef__":true,"id":6271},{"__isSmartRef__":true,"id":6272},{"__isSmartRef__":true,"id":6273},{"__isSmartRef__":true,"id":6274},{"__isSmartRef__":true,"id":6275}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6268":{"name":"newShowRect","type":"propertyDef","startIndex":772,"stopIndex":1023,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6269":{"name":"newShowMorph","type":"propertyDef","startIndex":1025,"stopIndex":1165,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6270":{"name":"newShowThenHide","type":"propertyDef","startIndex":1167,"stopIndex":1499,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6271":{"name":"alertDbg","type":"propertyDef","startIndex":1501,"stopIndex":1578,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6272":{"name":"alert","type":"propertyDef","startIndex":1580,"stopIndex":1861,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6273":{"name":"alertOK","type":"propertyDef","startIndex":1863,"stopIndex":2165,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6274":{"name":"inspect","type":"propertyDef","startIndex":2167,"stopIndex":2345,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6275":{"name":"showCallStack","type":"propertyDef","startIndex":2347,"stopIndex":2513,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6267},"className":"Global","_owner":{"__isSmartRef__":true,"id":6265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6276":{"name":null,"type":"comment","startIndex":2520,"stopIndex":2520,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6277":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":2521,"stopIndex":13424,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6278},{"__isSmartRef__":true,"id":6280},{"__isSmartRef__":true,"id":6281},{"__isSmartRef__":true,"id":6282},{"__isSmartRef__":true,"id":6283},{"__isSmartRef__":true,"id":6284},{"__isSmartRef__":true,"id":6285},{"__isSmartRef__":true,"id":6286},{"__isSmartRef__":true,"id":6288},{"__isSmartRef__":true,"id":6289},{"__isSmartRef__":true,"id":6290},{"__isSmartRef__":true,"id":6291},{"__isSmartRef__":true,"id":6292},{"__isSmartRef__":true,"id":6294},{"__isSmartRef__":true,"id":6295},{"__isSmartRef__":true,"id":6296},{"__isSmartRef__":true,"id":6298},{"__isSmartRef__":true,"id":6299},{"__isSmartRef__":true,"id":6300},{"__isSmartRef__":true,"id":6301},{"__isSmartRef__":true,"id":6302},{"__isSmartRef__":true,"id":6304},{"__isSmartRef__":true,"id":6305},{"__isSmartRef__":true,"id":6307},{"__isSmartRef__":true,"id":6309},{"__isSmartRef__":true,"id":6311},{"__isSmartRef__":true,"id":6313},{"__isSmartRef__":true,"id":6314},{"__isSmartRef__":true,"id":6315},{"__isSmartRef__":true,"id":6316},{"__isSmartRef__":true,"id":6317},{"__isSmartRef__":true,"id":6318},{"__isSmartRef__":true,"id":6319},{"__isSmartRef__":true,"id":6320},{"__isSmartRef__":true,"id":6321},{"__isSmartRef__":true,"id":6323},{"__isSmartRef__":true,"id":6324},{"__isSmartRef__":true,"id":6326},{"__isSmartRef__":true,"id":6328},{"__isSmartRef__":true,"id":6329},{"__isSmartRef__":true,"id":6331},{"__isSmartRef__":true,"id":6332},{"__isSmartRef__":true,"id":6333},{"__isSmartRef__":true,"id":6334}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6279},{"__isSmartRef__":true,"id":6287},{"__isSmartRef__":true,"id":6293},{"__isSmartRef__":true,"id":6297},{"__isSmartRef__":true,"id":6303},{"__isSmartRef__":true,"id":6306},{"__isSmartRef__":true,"id":6308},{"__isSmartRef__":true,"id":6310},{"__isSmartRef__":true,"id":6312},{"__isSmartRef__":true,"id":6322},{"__isSmartRef__":true,"id":6325},{"__isSmartRef__":true,"id":6327},{"__isSmartRef__":true,"id":6330}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6278":{"name":"moveBy","type":"propertyDef","startIndex":2568,"stopIndex":2649,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6279":{"name":"geometry","type":"categoryDef","startIndex":2554,"stopIndex":3181,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6278},{"__isSmartRef__":true,"id":6280},{"__isSmartRef__":true,"id":6281},{"__isSmartRef__":true,"id":6282},{"__isSmartRef__":true,"id":6283},{"__isSmartRef__":true,"id":6284},{"__isSmartRef__":true,"id":6285}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6280":{"name":"translateBy","type":"propertyDef","startIndex":2651,"stopIndex":2763,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6281":{"name":"align","type":"propertyDef","startIndex":2765,"stopIndex":2835,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6282":{"name":"centerAt","type":"propertyDef","startIndex":2837,"stopIndex":2913,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6283":{"name":"rotateBy","type":"propertyDef","startIndex":2915,"stopIndex":3014,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6284":{"name":"scaleBy","type":"propertyDef","startIndex":3016,"stopIndex":3087,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6285":{"name":"centerAt","type":"propertyDef","startIndex":3089,"stopIndex":3177,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6279},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6286":{"name":"addMorphBack","type":"propertyDef","startIndex":3209,"stopIndex":3381,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6287},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6287":{"name":"morphic relationship","type":"categoryDef","startIndex":3183,"stopIndex":4156,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6286},{"__isSmartRef__":true,"id":6288},{"__isSmartRef__":true,"id":6289},{"__isSmartRef__":true,"id":6290},{"__isSmartRef__":true,"id":6291}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6288":{"name":"addMorphFront","type":"propertyDef","startIndex":3383,"stopIndex":3449,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6287},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6289":{"name":"bringToFront","type":"propertyDef","startIndex":3451,"stopIndex":3530,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6287},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6290":{"name":"indentedListItemsOfMorphNames","type":"propertyDef","startIndex":3532,"stopIndex":3948,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6287},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6291":{"name":"isSubmorphOf","type":"propertyDef","startIndex":3950,"stopIndex":4150,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6287},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6292":{"name":"bounds","type":"propertyDef","startIndex":4185,"stopIndex":4237,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6293},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6293":{"name":"convenience accessing","type":"categoryDef","startIndex":4158,"stopIndex":4370,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6292},{"__isSmartRef__":true,"id":6294},{"__isSmartRef__":true,"id":6295}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6294":{"name":"innerBounds","type":"propertyDef","startIndex":4239,"stopIndex":4305,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6293},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6295":{"name":"getCenter","type":"propertyDef","startIndex":4307,"stopIndex":4368,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6293},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6296":{"name":"stepAndBounce","type":"propertyDef","startIndex":4399,"stopIndex":4536,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6297},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6297":{"name":"convenience scripting","type":"categoryDef","startIndex":4372,"stopIndex":6007,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6296},{"__isSmartRef__":true,"id":6298},{"__isSmartRef__":true,"id":6299},{"__isSmartRef__":true,"id":6300},{"__isSmartRef__":true,"id":6301}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6298":{"name":"stepByVelocities","type":"propertyDef","startIndex":4538,"stopIndex":4705,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6297},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6299":{"name":"bounceInOwnerBounds","type":"propertyDef","startIndex":4707,"stopIndex":4806,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6297},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6300":{"name":"bounceInBounds","type":"propertyDef","startIndex":4808,"stopIndex":5921,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6297},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6301":{"name":"show","type":"propertyDef","startIndex":5923,"stopIndex":6003,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6297},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6302":{"name":"openInWorld","type":"propertyDef","startIndex":6022,"stopIndex":6180,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6303},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6303":{"name":"opening","type":"categoryDef","startIndex":6009,"stopIndex":6601,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6302},{"__isSmartRef__":true,"id":6304}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6304":{"name":"openInWindow","type":"propertyDef","startIndex":6182,"stopIndex":6598,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6303},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6305":{"name":"removeAllMorphs","type":"propertyDef","startIndex":6617,"stopIndex":6704,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6306},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6306":{"name":"removing","type":"categoryDef","startIndex":6603,"stopIndex":6707,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6305}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6307":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":6721,"stopIndex":6758,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6308},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6308":{"name":"events","type":"categoryDef","startIndex":6709,"stopIndex":6761,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6307}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6309":{"name":"duplicate","type":"propertyDef","startIndex":6776,"stopIndex":6824,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6310},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6310":{"name":"copying","type":"categoryDef","startIndex":6763,"stopIndex":6827,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6309}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6311":{"name":"setPadding","type":"propertyDef","startIndex":6863,"stopIndex":6957,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6312":{"name":"styling","type":"categoryDef","startIndex":6849,"stopIndex":9624,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6311},{"__isSmartRef__":true,"id":6313},{"__isSmartRef__":true,"id":6314},{"__isSmartRef__":true,"id":6315},{"__isSmartRef__":true,"id":6316},{"__isSmartRef__":true,"id":6317},{"__isSmartRef__":true,"id":6318},{"__isSmartRef__":true,"id":6319},{"__isSmartRef__":true,"id":6320}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6313":{"name":"getStyleClass","type":"propertyDef","startIndex":6960,"stopIndex":7022,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6314":{"name":"setStyleClass","type":"propertyDef","startIndex":7025,"stopIndex":7411,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6315":{"name":"makeStyleSpec","type":"propertyDef","startIndex":7414,"stopIndex":8155,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6316":{"name":"applyStyleNamed","type":"propertyDef","startIndex":8158,"stopIndex":8356,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6317":{"name":"styleNamed","type":"propertyDef","startIndex":8359,"stopIndex":8849,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6318":{"name":"linkToStyles","type":"propertyDef","startIndex":8852,"stopIndex":9118,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6319":{"name":"applyLinkedStyles","type":"propertyDef","startIndex":9121,"stopIndex":9427,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6320":{"name":"getGridPoint","type":"propertyDef","startIndex":9434,"stopIndex":9622,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6312},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6321":{"name":"layoutChanged","type":"propertyDef","startIndex":9647,"stopIndex":9679,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6322},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6322":{"name":"update & change","type":"categoryDef","startIndex":9626,"stopIndex":9712,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6321},{"__isSmartRef__":true,"id":6323}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6323":{"name":"changed","type":"propertyDef","startIndex":9683,"stopIndex":9709,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6322},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6324":{"name":"plugTo","type":"propertyDef","startIndex":9735,"stopIndex":10720,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6325},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6325":{"name":"lively bindings","type":"categoryDef","startIndex":9714,"stopIndex":10723,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6324}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6326":{"name":"dissolve","type":"propertyDef","startIndex":10741,"stopIndex":11209,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6327},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6327":{"name":"animations","type":"categoryDef","startIndex":10725,"stopIndex":11761,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6326},{"__isSmartRef__":true,"id":6328}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6328":{"name":"appear","type":"propertyDef","startIndex":11211,"stopIndex":11758,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6327},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6329":{"name":"enterFullScreen","type":"propertyDef","startIndex":11779,"stopIndex":12721,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6330},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6330":{"name":"fullscreen","type":"categoryDef","startIndex":11763,"stopIndex":13421,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6329},{"__isSmartRef__":true,"id":6331},{"__isSmartRef__":true,"id":6332},{"__isSmartRef__":true,"id":6333},{"__isSmartRef__":true,"id":6334}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6331":{"name":"leaveFullScreen","type":"propertyDef","startIndex":12724,"stopIndex":13170,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6330},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6332":{"name":"isInFullScreen","type":"propertyDef","startIndex":13172,"stopIndex":13234,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6330},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6333":{"name":"clipWorld","type":"propertyDef","startIndex":13237,"stopIndex":13325,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6330},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6334":{"name":"unclipWorld","type":"propertyDef","startIndex":13328,"stopIndex":13419,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6330},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6335":{"name":null,"type":"comment","startIndex":13425,"stopIndex":13426,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6336":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":13427,"stopIndex":16278,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6337},{"__isSmartRef__":true,"id":6339},{"__isSmartRef__":true,"id":6340},{"__isSmartRef__":true,"id":6341},{"__isSmartRef__":true,"id":6342}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6338}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6337":{"name":"makeRectangle","type":"propertyDef","startIndex":13465,"stopIndex":14314,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6338},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6336},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6338":{"name":"default category","type":"categoryDef","startIndex":13463,"stopIndex":16275,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6337},{"__isSmartRef__":true,"id":6339},{"__isSmartRef__":true,"id":6340},{"__isSmartRef__":true,"id":6341},{"__isSmartRef__":true,"id":6342}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6339":{"name":"makeCircle","type":"propertyDef","startIndex":14316,"stopIndex":14796,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6338},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6336},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6340":{"name":"makeLine","type":"propertyDef","startIndex":14798,"stopIndex":15956,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6338},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6336},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6341":{"name":"makePolygon","type":"propertyDef","startIndex":15958,"stopIndex":16207,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6338},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6336},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6342":{"name":"newMethod","type":"propertyDef","startIndex":16209,"stopIndex":16272,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6338},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6336},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6343":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":16279,"stopIndex":16438,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6344},{"__isSmartRef__":true,"id":6346}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6345},{"__isSmartRef__":true,"id":6347}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6344":{"name":"fitWidth","type":"propertyDef","startIndex":16333,"stopIndex":16360,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6345},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6345":{"name":"shape appearance","type":"categoryDef","startIndex":16311,"stopIndex":16363,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6344}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6346":{"name":"requestKeyboardFocus","type":"propertyDef","startIndex":16376,"stopIndex":16433,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6347},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6347":{"name":"focus","type":"categoryDef","startIndex":16365,"stopIndex":16435,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6346}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6348":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":16439,"stopIndex":16669,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6349}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6350}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6349":{"name":"makeLabel","type":"propertyDef","startIndex":16476,"stopIndex":16664,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6350},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6348},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6350":{"name":"default category","type":"categoryDef","startIndex":16474,"stopIndex":16666,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6349}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6351":{"name":null,"type":"comment","startIndex":16670,"stopIndex":16670,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6352":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":16671,"stopIndex":19869,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6353},{"__isSmartRef__":true,"id":6356},{"__isSmartRef__":true,"id":6358},{"__isSmartRef__":true,"id":6359},{"__isSmartRef__":true,"id":6360},{"__isSmartRef__":true,"id":6361},{"__isSmartRef__":true,"id":6362}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6364},{"__isSmartRef__":true,"id":6366},{"__isSmartRef__":true,"id":6371}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6353":{"name":"logError","type":"propertyDef","startIndex":16719,"stopIndex":16963,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6354},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6354":{"name":"debugging","type":"categoryDef","startIndex":16704,"stopIndex":16966,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6353}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6355":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":16671,"stopIndex":19809,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6353},{"__isSmartRef__":true,"id":6356},{"__isSmartRef__":true,"id":6358},{"__isSmartRef__":true,"id":6359},{"__isSmartRef__":true,"id":6360},{"__isSmartRef__":true,"id":6361},{"__isSmartRef__":true,"id":6362}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6354},{"__isSmartRef__":true,"id":6357},{"__isSmartRef__":true,"id":6363}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6356":{"name":"setStatusMessage","type":"propertyDef","startIndex":16981,"stopIndex":18090,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6357},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6357":{"name":"logging","type":"categoryDef","startIndex":16968,"stopIndex":19374,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6356},{"__isSmartRef__":true,"id":6358},{"__isSmartRef__":true,"id":6359},{"__isSmartRef__":true,"id":6360},{"__isSmartRef__":true,"id":6361}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6358":{"name":"alert","type":"propertyDef","startIndex":18092,"stopIndex":18211,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6357},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6359":{"name":"alertOK","type":"propertyDef","startIndex":18213,"stopIndex":18376,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6357},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6360":{"name":"addStatusMessageMorph","type":"propertyDef","startIndex":18378,"stopIndex":19302,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6357},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6361":{"name":"addStatusProgress","type":"propertyDef","startIndex":19304,"stopIndex":19427,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6357},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6362":{"name":"getUserName","type":"propertyDef","startIndex":19446,"stopIndex":19864,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6363},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6363":{"name":"auth","type":"categoryDef","startIndex":19376,"stopIndex":19806,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6362}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6364":{"name":"debugging","type":"categoryDef","startIndex":16704,"stopIndex":16966,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6365}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6365":{"name":"logError","type":"propertyDef","startIndex":16719,"stopIndex":16963,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6364},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6352},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6366":{"name":"logging","type":"categoryDef","startIndex":16968,"stopIndex":19707,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6367},{"__isSmartRef__":true,"id":6368},{"__isSmartRef__":true,"id":6369},{"__isSmartRef__":true,"id":6370}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6367":{"name":"setStatusMessage","type":"propertyDef","startIndex":16981,"stopIndex":19172,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6366},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6352},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6368":{"name":"alert","type":"propertyDef","startIndex":19174,"stopIndex":19293,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6366},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6352},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6369":{"name":"alertOK","type":"propertyDef","startIndex":19295,"stopIndex":19458,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6366},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6352},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6370":{"name":"addProgressBar","type":"propertyDef","startIndex":19460,"stopIndex":19703,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6366},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6352},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6371":{"name":"auth","type":"categoryDef","startIndex":19709,"stopIndex":20139,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6372}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6372":{"name":"getUserName","type":"propertyDef","startIndex":19719,"stopIndex":20137,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6371},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6352},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6373":{"name":"lively.morphic.HandMorph","type":"klassExtensionDef","startIndex":19870,"stopIndex":19958,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6374}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6375}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6374":{"name":"setKeyboardFocus","type":"propertyDef","startIndex":19918,"stopIndex":19953,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6375},"className":"lively.morphic.HandMorph","_owner":{"__isSmartRef__":true,"id":6373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6375":{"name":"focus","type":"categoryDef","startIndex":20180,"stopIndex":20228,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6374}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6376":{"name":null,"type":"comment","startIndex":19959,"stopIndex":19999,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6377":{"name":"lively.morphic.Panel","type":"klassDef","startIndex":20000,"stopIndex":20223,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6378},{"__isSmartRef__":true,"id":6380}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":6379},{"__isSmartRef__":true,"id":6381}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6378":{"name":"style","type":"propertyDef","startIndex":20066,"stopIndex":20103,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6379},"className":"lively.morphic.Panel","_owner":{"__isSmartRef__":true,"id":6377},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6379":{"name":"settings","type":"categoryDef","startIndex":20325,"stopIndex":20379,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6378}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6380":{"name":"initialize","type":"propertyDef","startIndex":20126,"stopIndex":20218,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6381},"className":"lively.morphic.Panel","_owner":{"__isSmartRef__":true,"id":6377},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6381":{"name":"initializing","type":"categoryDef","startIndex":20381,"stopIndex":20493,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6380}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6382":{"name":null,"type":"comment","startIndex":20224,"stopIndex":20224,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6383":{"name":"lively.morphic.Panel","type":"klassExtensionDef","startIndex":20225,"stopIndex":21165,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6384}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6385}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6384":{"name":"makePanedPanel","type":"propertyDef","startIndex":20263,"stopIndex":21161,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6385},"className":"lively.morphic.Panel","_owner":{"__isSmartRef__":true,"id":6383},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6385":{"name":"default category","type":"categoryDef","startIndex":20534,"stopIndex":21435,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6384}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6386":{"name":null,"type":"comment","startIndex":21166,"stopIndex":21166,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6387":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":21167,"stopIndex":21412,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6388},{"__isSmartRef__":true,"id":6390},{"__isSmartRef__":true,"id":6391},{"__isSmartRef__":true,"id":6392}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6389}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6388":{"name":"innerMorph","type":"propertyDef","startIndex":21225,"stopIndex":21267,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6389},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6389":{"name":"deprecated interface","type":"categoryDef","startIndex":21472,"stopIndex":21682,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6388},{"__isSmartRef__":true,"id":6390},{"__isSmartRef__":true,"id":6391},{"__isSmartRef__":true,"id":6392}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6390":{"name":"showChangeClue","type":"propertyDef","startIndex":21269,"stopIndex":21302,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6389},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6391":{"name":"getVerticalScrollPosition","type":"propertyDef","startIndex":21304,"stopIndex":21361,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6389},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6392":{"name":"setVerticalScrollPosition","type":"propertyDef","startIndex":21363,"stopIndex":21407,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6389},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6393":{"name":"lively.morphic.Button","type":"klassExtensionDef","startIndex":21413,"stopIndex":21550,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6394},{"__isSmartRef__":true,"id":6396}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6395}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6394":{"name":"setIsActive","type":"propertyDef","startIndex":21466,"stopIndex":21500,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6395},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":6393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6395":{"name":"old interface","type":"categoryDef","startIndex":21720,"stopIndex":21820,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6394},{"__isSmartRef__":true,"id":6396}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6396":{"name":"getIsActive","type":"propertyDef","startIndex":21502,"stopIndex":21545,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6395},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":6393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6397":{"name":null,"type":"comment","startIndex":21551,"stopIndex":21551,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6398":{"name":"lively.morphic.List","type":"klassExtensionDef","startIndex":21552,"stopIndex":21761,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6399},{"__isSmartRef__":true,"id":6401},{"__isSmartRef__":true,"id":6402}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6400},{"__isSmartRef__":true,"id":6403}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6399":{"name":"innerMorph","type":"propertyDef","startIndex":21610,"stopIndex":21652,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6400},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6398},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6400":{"name":"deprecated interface","type":"categoryDef","startIndex":21857,"stopIndex":21975,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6399},{"__isSmartRef__":true,"id":6401}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6401":{"name":"addMenuButton","type":"propertyDef","startIndex":21654,"stopIndex":21699,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6400},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6398},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6402":{"name":"clearFilter","type":"propertyDef","startIndex":21726,"stopIndex":21756,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6403},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":6398},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6403":{"name":"filter interface","type":"categoryDef","startIndex":21977,"stopIndex":22031,"fileName":"lively/morphic/MorphAddons.js","_subElements":[{"__isSmartRef__":true,"id":6402}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6404":{"name":null,"type":"comment","startIndex":21762,"stopIndex":21763,"fileName":"lively/morphic/MorphAddons.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6405":{"target":{"__isSmartRef__":true,"id":6406},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/ObjectMigration.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6406":{"name":"lively.morphic.ObjectMigration","type":"moduleDef","startIndex":0,"stopIndex":3020,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[{"__isSmartRef__":true,"id":6407},{"__isSmartRef__":true,"id":6408},{"__isSmartRef__":true,"id":6409},{"__isSmartRef__":true,"id":6410},{"__isSmartRef__":true,"id":6411},{"__isSmartRef__":true,"id":6412},{"__isSmartRef__":true,"id":6413},{"__isSmartRef__":true,"id":6414}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6407":{"name":null,"type":"comment","startIndex":115,"stopIndex":617,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6408":{"name":null,"type":"unknown","startIndex":618,"stopIndex":840,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6409":{"name":null,"type":"unknown","startIndex":841,"stopIndex":1185,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6410":{"name":null,"type":"comment","startIndex":1186,"stopIndex":1473,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6411":{"name":null,"type":"unknown","startIndex":1474,"stopIndex":1875,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6412":{"name":null,"type":"comment","startIndex":1876,"stopIndex":1876,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6413":{"name":null,"type":"unknown","startIndex":1877,"stopIndex":3000,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6414":{"name":null,"type":"comment","startIndex":3001,"stopIndex":3001,"fileName":"lively/morphic/ObjectMigration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6415":{"target":{"__isSmartRef__":true,"id":6416},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Paragraphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6416":{"name":"lively.morphic.Paragraphs","type":"moduleDef","startIndex":0,"stopIndex":570,"fileName":"lively/morphic/Paragraphs.js","_subElements":[{"__isSmartRef__":true,"id":6417},{"__isSmartRef__":true,"id":6418}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6417":{"name":null,"type":"comment","startIndex":108,"stopIndex":205,"fileName":"lively/morphic/Paragraphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6418":{"name":"lively.morphic.Journal","type":"klassDef","startIndex":206,"stopIndex":551,"fileName":"lively/morphic/Paragraphs.js","_subElements":[{"__isSmartRef__":true,"id":6419},{"__isSmartRef__":true,"id":6421},{"__isSmartRef__":true,"id":6422}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":6420}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6419":{"name":"defaultExtent","type":"propertyDef","startIndex":262,"stopIndex":292,"fileName":"lively/morphic/Paragraphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6420},"className":"lively.morphic.Journal","_owner":{"__isSmartRef__":true,"id":6418},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6420":{"name":"default category","type":"categoryDef","startIndex":260,"stopIndex":548,"fileName":"lively/morphic/Paragraphs.js","_subElements":[{"__isSmartRef__":true,"id":6419},{"__isSmartRef__":true,"id":6421},{"__isSmartRef__":true,"id":6422}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6421":{"name":"style","type":"propertyDef","startIndex":295,"stopIndex":365,"fileName":"lively/morphic/Paragraphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6420},"className":"lively.morphic.Journal","_owner":{"__isSmartRef__":true,"id":6418},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6422":{"name":"initialize","type":"propertyDef","startIndex":369,"stopIndex":547,"fileName":"lively/morphic/Paragraphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6420},"className":"lively.morphic.Journal","_owner":{"__isSmartRef__":true,"id":6418},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6423":{"target":{"__isSmartRef__":true,"id":6424},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/PathShapes.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6424":{"name":"lively.morphic.PathShapes","type":"moduleDef","startIndex":0,"stopIndex":23277,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6425},{"__isSmartRef__":true,"id":6426},{"__isSmartRef__":true,"id":6444},{"__isSmartRef__":true,"id":6461},{"__isSmartRef__":true,"id":6462},{"__isSmartRef__":true,"id":6471},{"__isSmartRef__":true,"id":6472},{"__isSmartRef__":true,"id":6475},{"__isSmartRef__":true,"id":6476},{"__isSmartRef__":true,"id":6483},{"__isSmartRef__":true,"id":6484},{"__isSmartRef__":true,"id":6490},{"__isSmartRef__":true,"id":6491},{"__isSmartRef__":true,"id":6498},{"__isSmartRef__":true,"id":6499},{"__isSmartRef__":true,"id":6504},{"__isSmartRef__":true,"id":6505},{"__isSmartRef__":true,"id":6512},{"__isSmartRef__":true,"id":6513},{"__isSmartRef__":true,"id":6518},{"__isSmartRef__":true,"id":6519},{"__isSmartRef__":true,"id":6526},{"__isSmartRef__":true,"id":6527},{"__isSmartRef__":true,"id":6532},{"__isSmartRef__":true,"id":6533},{"__isSmartRef__":true,"id":6540},{"__isSmartRef__":true,"id":6541},{"__isSmartRef__":true,"id":6546},{"__isSmartRef__":true,"id":6547},{"__isSmartRef__":true,"id":6554},{"__isSmartRef__":true,"id":6555},{"__isSmartRef__":true,"id":6560},{"__isSmartRef__":true,"id":6567},{"__isSmartRef__":true,"id":6568},{"__isSmartRef__":true,"id":6573},{"__isSmartRef__":true,"id":6574},{"__isSmartRef__":true,"id":6581},{"__isSmartRef__":true,"id":6582},{"__isSmartRef__":true,"id":6587},{"__isSmartRef__":true,"id":6588},{"__isSmartRef__":true,"id":6595},{"__isSmartRef__":true,"id":6596},{"__isSmartRef__":true,"id":6601},{"__isSmartRef__":true,"id":6602},{"__isSmartRef__":true,"id":6608},{"__isSmartRef__":true,"id":6609},{"__isSmartRef__":true,"id":6614}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6425":{"name":null,"type":"comment","startIndex":89,"stopIndex":205,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6426":{"name":"lively.morphic.Shapes.Path","type":"klassDef","startIndex":206,"stopIndex":2986,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6427},{"__isSmartRef__":true,"id":6429},{"__isSmartRef__":true,"id":6431},{"__isSmartRef__":true,"id":6433},{"__isSmartRef__":true,"id":6434},{"__isSmartRef__":true,"id":6435},{"__isSmartRef__":true,"id":6436},{"__isSmartRef__":true,"id":6437},{"__isSmartRef__":true,"id":6438},{"__isSmartRef__":true,"id":6439},{"__isSmartRef__":true,"id":6440},{"__isSmartRef__":true,"id":6441},{"__isSmartRef__":true,"id":6442}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.Shape","categories":[{"__isSmartRef__":true,"id":6428},{"__isSmartRef__":true,"id":6430},{"__isSmartRef__":true,"id":6432},{"__isSmartRef__":true,"id":6443}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6427":{"name":"documentation","type":"propertyDef","startIndex":292,"stopIndex":354,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6428},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6428":{"name":"documentation","type":"categoryDef","startIndex":273,"stopIndex":357,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6427}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6429":{"name":"initialize","type":"propertyDef","startIndex":376,"stopIndex":513,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6430},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6430":{"name":"initalizing","type":"categoryDef","startIndex":359,"stopIndex":516,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6429}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6431":{"name":"setPathElements","type":"propertyDef","startIndex":533,"stopIndex":659,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6432":{"name":"accessing","type":"categoryDef","startIndex":518,"stopIndex":2757,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6431},{"__isSmartRef__":true,"id":6433},{"__isSmartRef__":true,"id":6434},{"__isSmartRef__":true,"id":6435},{"__isSmartRef__":true,"id":6436},{"__isSmartRef__":true,"id":6437},{"__isSmartRef__":true,"id":6438},{"__isSmartRef__":true,"id":6439},{"__isSmartRef__":true,"id":6440},{"__isSmartRef__":true,"id":6441}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6433":{"name":"getPathElements","type":"propertyDef","startIndex":661,"stopIndex":742,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6434":{"name":"setVertices","type":"propertyDef","startIndex":744,"stopIndex":1612,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6435":{"name":"vertices","type":"propertyDef","startIndex":1614,"stopIndex":2100,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6436":{"name":"getBounds","type":"propertyDef","startIndex":2102,"stopIndex":2195,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6437":{"name":"getExtent","type":"propertyDef","startIndex":2197,"stopIndex":2271,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6438":{"name":"getTotalLength","type":"propertyDef","startIndex":2273,"stopIndex":2359,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6439":{"name":"getPointAtTotalLength","type":"propertyDef","startIndex":2361,"stopIndex":2483,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6440":{"name":"getPointAtLength","type":"propertyDef","startIndex":2486,"stopIndex":2623,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6441":{"name":"getBorderWidth","type":"propertyDef","startIndex":2625,"stopIndex":2751,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6432},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6442":{"name":"createSVGDataFromElements","type":"propertyDef","startIndex":2774,"stopIndex":2981,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6443},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6426},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6443":{"name":"rendering","type":"categoryDef","startIndex":2759,"stopIndex":2983,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6442}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6444":{"name":"lively.morphic.Shapes.Path","type":"klassExtensionDef","startIndex":2987,"stopIndex":10414,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6445},{"__isSmartRef__":true,"id":6447},{"__isSmartRef__":true,"id":6448},{"__isSmartRef__":true,"id":6449},{"__isSmartRef__":true,"id":6451},{"__isSmartRef__":true,"id":6452},{"__isSmartRef__":true,"id":6453},{"__isSmartRef__":true,"id":6454},{"__isSmartRef__":true,"id":6455},{"__isSmartRef__":true,"id":6457},{"__isSmartRef__":true,"id":6459}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6446},{"__isSmartRef__":true,"id":6450},{"__isSmartRef__":true,"id":6456},{"__isSmartRef__":true,"id":6458},{"__isSmartRef__":true,"id":6460}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6445":{"name":"hasElbowProtrusions","type":"propertyDef","startIndex":3040,"stopIndex":3069,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6446},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6446":{"name":"settings","type":"categoryDef","startIndex":3026,"stopIndex":3135,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6445},{"__isSmartRef__":true,"id":6447},{"__isSmartRef__":true,"id":6448}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6447":{"name":"showInsertionPoints","type":"propertyDef","startIndex":3071,"stopIndex":3101,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6446},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6448":{"name":"controlPointProximity","type":"propertyDef","startIndex":3103,"stopIndex":3132,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6446},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6449":{"name":"setVerticesAndControls","type":"propertyDef","startIndex":3152,"stopIndex":3778,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6450},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6450":{"name":"accessing","type":"categoryDef","startIndex":3137,"stopIndex":7029,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6449},{"__isSmartRef__":true,"id":6451},{"__isSmartRef__":true,"id":6452},{"__isSmartRef__":true,"id":6453},{"__isSmartRef__":true,"id":6454}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6451":{"name":"controlPoints","type":"propertyDef","startIndex":3784,"stopIndex":4218,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6450},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6452":{"name":"partNameNear","type":"propertyDef","startIndex":4220,"stopIndex":4488,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6450},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6453":{"name":"allPartNames","type":"propertyDef","startIndex":4490,"stopIndex":6014,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6450},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6454":{"name":"partPosition","type":"propertyDef","startIndex":6017,"stopIndex":7025,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6450},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6455":{"name":"containsPoint","type":"propertyDef","startIndex":7044,"stopIndex":7116,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6456},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6456":{"name":"testing","type":"categoryDef","startIndex":7031,"stopIndex":7119,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6455}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6457":{"name":"normalize","type":"propertyDef","startIndex":7138,"stopIndex":7871,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6458},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6458":{"name":"normalizing","type":"categoryDef","startIndex":7121,"stopIndex":7874,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6457}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6459":{"name":"reshape","type":"propertyDef","startIndex":7890,"stopIndex":10409,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6460},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":6444},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6460":{"name":"updating","type":"categoryDef","startIndex":7876,"stopIndex":10411,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6459}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6461":{"name":null,"type":"comment","startIndex":10415,"stopIndex":10415,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6462":{"name":"lively.morphic.Shapes.PathElement","type":"klassDef","startIndex":10416,"stopIndex":11089,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6463},{"__isSmartRef__":true,"id":6465},{"__isSmartRef__":true,"id":6466},{"__isSmartRef__":true,"id":6467},{"__isSmartRef__":true,"id":6468},{"__isSmartRef__":true,"id":6469},{"__isSmartRef__":true,"id":6470}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6464}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6463":{"name":"isPathElement","type":"propertyDef","startIndex":10471,"stopIndex":10494,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6464},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6464":{"name":"default category","type":"categoryDef","startIndex":10469,"stopIndex":11086,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6463},{"__isSmartRef__":true,"id":6465},{"__isSmartRef__":true,"id":6466},{"__isSmartRef__":true,"id":6467},{"__isSmartRef__":true,"id":6468},{"__isSmartRef__":true,"id":6469},{"__isSmartRef__":true,"id":6470}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6465":{"name":"initialize","type":"propertyDef","startIndex":10496,"stopIndex":10578,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6464},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6466":{"name":"realCharCode","type":"propertyDef","startIndex":10580,"stopIndex":10708,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6464},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6467":{"name":"attributeFormat","type":"propertyDef","startIndex":10710,"stopIndex":10800,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6464},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6468":{"name":"translate","type":"propertyDef","startIndex":10802,"stopIndex":10928,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6464},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6469":{"name":"translatePt","type":"propertyDef","startIndex":10930,"stopIndex":10999,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6464},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6470":{"name":"toString","type":"propertyDef","startIndex":11001,"stopIndex":11084,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6464},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6471":{"name":null,"type":"comment","startIndex":11090,"stopIndex":11090,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6472":{"name":"lively.morphic.Shapes.PathElement","type":"klassExtensionDef","startIndex":11091,"stopIndex":13036,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6473}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6474}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6473":{"name":"parse","type":"propertyDef","startIndex":11142,"stopIndex":13027,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6474},"className":"lively.morphic.Shapes.PathElement","_owner":{"__isSmartRef__":true,"id":6472},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6474":{"name":"default category","type":"categoryDef","startIndex":11140,"stopIndex":13033,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6473}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6475":{"name":null,"type":"comment","startIndex":13037,"stopIndex":13037,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6476":{"name":"lively.morphic.Shapes.MoveTo","type":"klassDef","startIndex":13038,"stopIndex":13590,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6477},{"__isSmartRef__":true,"id":6479},{"__isSmartRef__":true,"id":6480},{"__isSmartRef__":true,"id":6481},{"__isSmartRef__":true,"id":6482}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6478}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6477":{"name":"charCode","type":"propertyDef","startIndex":13115,"stopIndex":13132,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6478},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6478":{"name":"default category","type":"categoryDef","startIndex":13113,"stopIndex":13587,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6477},{"__isSmartRef__":true,"id":6479},{"__isSmartRef__":true,"id":6480},{"__isSmartRef__":true,"id":6481},{"__isSmartRef__":true,"id":6482}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6479":{"name":"initialize","type":"propertyDef","startIndex":13135,"stopIndex":13261,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6478},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6480":{"name":"controlPoints","type":"propertyDef","startIndex":13265,"stopIndex":13339,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6478},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6481":{"name":"attributeFormat","type":"propertyDef","startIndex":13346,"stopIndex":13445,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6478},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6482":{"name":"translate","type":"propertyDef","startIndex":13452,"stopIndex":13585,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6478},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6483":{"name":null,"type":"comment","startIndex":13591,"stopIndex":13591,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6484":{"name":"lively.morphic.Shapes.MoveTo","type":"klassExtensionDef","startIndex":13592,"stopIndex":14029,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6485},{"__isSmartRef__":true,"id":6487},{"__isSmartRef__":true,"id":6488},{"__isSmartRef__":true,"id":6489}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6486}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6485":{"name":"fromLiteral","type":"propertyDef","startIndex":13638,"stopIndex":13785,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6486},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6484},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6486":{"name":"default category","type":"categoryDef","startIndex":13636,"stopIndex":14026,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6485},{"__isSmartRef__":true,"id":6487},{"__isSmartRef__":true,"id":6488},{"__isSmartRef__":true,"id":6489}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6487":{"name":"parse","type":"propertyDef","startIndex":13787,"stopIndex":13918,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6486},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6484},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6488":{"name":"dataLength","type":"propertyDef","startIndex":13920,"stopIndex":13937,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6486},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6484},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6489":{"name":"create","type":"propertyDef","startIndex":13939,"stopIndex":14024,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6486},"className":"lively.morphic.Shapes.MoveTo","_owner":{"__isSmartRef__":true,"id":6484},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6490":{"name":null,"type":"comment","startIndex":14030,"stopIndex":14031,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6491":{"name":"lively.morphic.Shapes.LineTo","type":"klassDef","startIndex":14032,"stopIndex":14582,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6492},{"__isSmartRef__":true,"id":6494},{"__isSmartRef__":true,"id":6495},{"__isSmartRef__":true,"id":6496},{"__isSmartRef__":true,"id":6497}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6493}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6492":{"name":"charCode","type":"propertyDef","startIndex":14109,"stopIndex":14126,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6493},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6491},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6493":{"name":"default category","type":"categoryDef","startIndex":14107,"stopIndex":14579,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6492},{"__isSmartRef__":true,"id":6494},{"__isSmartRef__":true,"id":6495},{"__isSmartRef__":true,"id":6496},{"__isSmartRef__":true,"id":6497}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6494":{"name":"initialize","type":"propertyDef","startIndex":14128,"stopIndex":14254,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6493},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6491},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6495":{"name":"controlPoints","type":"propertyDef","startIndex":14257,"stopIndex":14331,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6493},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6491},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6496":{"name":"attributeFormat","type":"propertyDef","startIndex":14338,"stopIndex":14437,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6493},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6491},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6497":{"name":"translate","type":"propertyDef","startIndex":14444,"stopIndex":14577,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6493},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6491},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6498":{"name":null,"type":"comment","startIndex":14583,"stopIndex":14583,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6499":{"name":"lively.morphic.Shapes.LineTo","type":"klassExtensionDef","startIndex":14584,"stopIndex":14888,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6500},{"__isSmartRef__":true,"id":6502},{"__isSmartRef__":true,"id":6503}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6501}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6500":{"name":"fromLiteral","type":"propertyDef","startIndex":14630,"stopIndex":14777,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6501},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6501":{"name":"default category","type":"categoryDef","startIndex":14628,"stopIndex":14885,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6500},{"__isSmartRef__":true,"id":6502},{"__isSmartRef__":true,"id":6503}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6502":{"name":"dataLength","type":"propertyDef","startIndex":14779,"stopIndex":14796,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6501},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6503":{"name":"create","type":"propertyDef","startIndex":14798,"stopIndex":14883,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6501},"className":"lively.morphic.Shapes.LineTo","_owner":{"__isSmartRef__":true,"id":6499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6504":{"name":null,"type":"comment","startIndex":14889,"stopIndex":14890,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6505":{"name":"lively.morphic.Shapes.HorizontalTo","type":"klassDef","startIndex":14891,"stopIndex":15365,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6506},{"__isSmartRef__":true,"id":6508},{"__isSmartRef__":true,"id":6509},{"__isSmartRef__":true,"id":6510},{"__isSmartRef__":true,"id":6511}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6507}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6506":{"name":"charCode","type":"propertyDef","startIndex":14974,"stopIndex":14991,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6507},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6507":{"name":"default category","type":"categoryDef","startIndex":14972,"stopIndex":15362,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6506},{"__isSmartRef__":true,"id":6508},{"__isSmartRef__":true,"id":6509},{"__isSmartRef__":true,"id":6510},{"__isSmartRef__":true,"id":6511}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6508":{"name":"initialize","type":"propertyDef","startIndex":14993,"stopIndex":15096,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6507},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6509":{"name":"controlPoints","type":"propertyDef","startIndex":15099,"stopIndex":15155,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6507},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6510":{"name":"attributeFormat","type":"propertyDef","startIndex":15162,"stopIndex":15246,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6507},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6511":{"name":"translate","type":"propertyDef","startIndex":15248,"stopIndex":15360,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6507},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6512":{"name":null,"type":"comment","startIndex":15366,"stopIndex":15366,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6513":{"name":"lively.morphic.Shapes.HorizontalTo","type":"klassExtensionDef","startIndex":15367,"stopIndex":15669,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6514},{"__isSmartRef__":true,"id":6516},{"__isSmartRef__":true,"id":6517}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6515}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6514":{"name":"fromLiteral","type":"propertyDef","startIndex":15419,"stopIndex":15554,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6515},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6513},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6515":{"name":"default category","type":"categoryDef","startIndex":15417,"stopIndex":15666,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6514},{"__isSmartRef__":true,"id":6516},{"__isSmartRef__":true,"id":6517}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6516":{"name":"dataLength","type":"propertyDef","startIndex":15556,"stopIndex":15573,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6515},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6513},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6517":{"name":"create","type":"propertyDef","startIndex":15575,"stopIndex":15664,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6515},"className":"lively.morphic.Shapes.HorizontalTo","_owner":{"__isSmartRef__":true,"id":6513},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6518":{"name":null,"type":"comment","startIndex":15670,"stopIndex":15671,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6519":{"name":"lively.morphic.Shapes.VerticalTo","type":"klassDef","startIndex":15672,"stopIndex":16149,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6520},{"__isSmartRef__":true,"id":6522},{"__isSmartRef__":true,"id":6523},{"__isSmartRef__":true,"id":6524},{"__isSmartRef__":true,"id":6525}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6521}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6520":{"name":"charCode","type":"propertyDef","startIndex":15753,"stopIndex":15770,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6521},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6521":{"name":"default category","type":"categoryDef","startIndex":15751,"stopIndex":16146,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6520},{"__isSmartRef__":true,"id":6522},{"__isSmartRef__":true,"id":6523},{"__isSmartRef__":true,"id":6524},{"__isSmartRef__":true,"id":6525}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6522":{"name":"initialize","type":"propertyDef","startIndex":15772,"stopIndex":15875,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6521},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6523":{"name":"controlPoints","type":"propertyDef","startIndex":15878,"stopIndex":15934,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6521},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6524":{"name":"attributeFormat","type":"propertyDef","startIndex":15941,"stopIndex":16025,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6521},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6525":{"name":"translate","type":"propertyDef","startIndex":16032,"stopIndex":16144,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6521},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6526":{"name":null,"type":"comment","startIndex":16150,"stopIndex":16150,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6527":{"name":"lively.morphic.Shapes.VerticalTo","type":"klassExtensionDef","startIndex":16151,"stopIndex":16449,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6528},{"__isSmartRef__":true,"id":6530},{"__isSmartRef__":true,"id":6531}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6529}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6528":{"name":"fromLiteral","type":"propertyDef","startIndex":16201,"stopIndex":16334,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6529},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6529":{"name":"default category","type":"categoryDef","startIndex":16199,"stopIndex":16446,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6528},{"__isSmartRef__":true,"id":6530},{"__isSmartRef__":true,"id":6531}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6530":{"name":"dataLength","type":"propertyDef","startIndex":16336,"stopIndex":16353,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6529},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6531":{"name":"create","type":"propertyDef","startIndex":16355,"stopIndex":16444,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6529},"className":"lively.morphic.Shapes.VerticalTo","_owner":{"__isSmartRef__":true,"id":6527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6532":{"name":null,"type":"comment","startIndex":16450,"stopIndex":16451,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6533":{"name":"lively.morphic.Shapes.CurveTo","type":"klassDef","startIndex":16452,"stopIndex":17043,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6534},{"__isSmartRef__":true,"id":6536},{"__isSmartRef__":true,"id":6537},{"__isSmartRef__":true,"id":6538},{"__isSmartRef__":true,"id":6539}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6535}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6534":{"name":"charCode","type":"propertyDef","startIndex":16531,"stopIndex":16548,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6535},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6535":{"name":"default category","type":"categoryDef","startIndex":16528,"stopIndex":17040,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6534},{"__isSmartRef__":true,"id":6536},{"__isSmartRef__":true,"id":6537},{"__isSmartRef__":true,"id":6538},{"__isSmartRef__":true,"id":6539}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6536":{"name":"initialize","type":"propertyDef","startIndex":16589,"stopIndex":16715,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6535},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6537":{"name":"controlPoints","type":"propertyDef","startIndex":16718,"stopIndex":16792,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6535},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6538":{"name":"attributeFormat","type":"propertyDef","startIndex":16799,"stopIndex":16898,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6535},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6539":{"name":"translate","type":"propertyDef","startIndex":16905,"stopIndex":17038,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6535},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6540":{"name":null,"type":"comment","startIndex":17044,"stopIndex":17044,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6541":{"name":"lively.morphic.Shapes.CurveTo","type":"klassExtensionDef","startIndex":17045,"stopIndex":17363,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6542},{"__isSmartRef__":true,"id":6544},{"__isSmartRef__":true,"id":6545}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6543}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6542":{"name":"fromLiteral","type":"propertyDef","startIndex":17092,"stopIndex":17240,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6543},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6541},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6543":{"name":"default category","type":"categoryDef","startIndex":17090,"stopIndex":17360,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6542},{"__isSmartRef__":true,"id":6544},{"__isSmartRef__":true,"id":6545}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6544":{"name":"dataLength","type":"propertyDef","startIndex":17242,"stopIndex":17259,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6543},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6541},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6545":{"name":"create","type":"propertyDef","startIndex":17261,"stopIndex":17358,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6543},"className":"lively.morphic.Shapes.CurveTo","_owner":{"__isSmartRef__":true,"id":6541},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6546":{"name":null,"type":"comment","startIndex":17364,"stopIndex":17364,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6547":{"name":"lively.morphic.Shapes.QuadCurveTo","type":"klassDef","startIndex":17365,"stopIndex":18136,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6548},{"__isSmartRef__":true,"id":6550},{"__isSmartRef__":true,"id":6551},{"__isSmartRef__":true,"id":6552},{"__isSmartRef__":true,"id":6553}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6549}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6548":{"name":"charCode","type":"propertyDef","startIndex":17448,"stopIndex":17465,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6549},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6549":{"name":"default category","type":"categoryDef","startIndex":17445,"stopIndex":18133,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6548},{"__isSmartRef__":true,"id":6550},{"__isSmartRef__":true,"id":6551},{"__isSmartRef__":true,"id":6552},{"__isSmartRef__":true,"id":6553}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6550":{"name":"initialize","type":"propertyDef","startIndex":17468,"stopIndex":17682,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6549},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6551":{"name":"controlPoints","type":"propertyDef","startIndex":17685,"stopIndex":17793,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6549},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6552":{"name":"attributeFormat","type":"propertyDef","startIndex":17796,"stopIndex":17939,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6549},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6553":{"name":"translate","type":"propertyDef","startIndex":17942,"stopIndex":18131,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6549},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6554":{"name":null,"type":"comment","startIndex":18137,"stopIndex":18137,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6555":{"name":"lively.morphic.Shapes.QuadCurveTo","type":"klassExtensionDef","startIndex":18138,"stopIndex":18546,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6556},{"__isSmartRef__":true,"id":6558},{"__isSmartRef__":true,"id":6559}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6557}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6556":{"name":"fromLiteral","type":"propertyDef","startIndex":18189,"stopIndex":18404,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6557},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6555},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6557":{"name":"default category","type":"categoryDef","startIndex":18187,"stopIndex":18540,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6556},{"__isSmartRef__":true,"id":6558},{"__isSmartRef__":true,"id":6559}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6558":{"name":"dataLength","type":"propertyDef","startIndex":18406,"stopIndex":18423,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6557},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6555},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6559":{"name":"create","type":"propertyDef","startIndex":18425,"stopIndex":18538,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6557},"className":"lively.morphic.Shapes.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":6555},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6560":{"name":"lively.morphic.Shapes.BezierCurve2CtlTo","type":"klassDef","startIndex":18547,"stopIndex":19609,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6561},{"__isSmartRef__":true,"id":6563},{"__isSmartRef__":true,"id":6564},{"__isSmartRef__":true,"id":6565},{"__isSmartRef__":true,"id":6566}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6562}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6561":{"name":"charCode","type":"propertyDef","startIndex":18636,"stopIndex":18653,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6562},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6560},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6562":{"name":"default category","type":"categoryDef","startIndex":18633,"stopIndex":19606,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6561},{"__isSmartRef__":true,"id":6563},{"__isSmartRef__":true,"id":6564},{"__isSmartRef__":true,"id":6565},{"__isSmartRef__":true,"id":6566}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6563":{"name":"initialize","type":"propertyDef","startIndex":18656,"stopIndex":18966,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6562},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6560},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6564":{"name":"controlPoints","type":"propertyDef","startIndex":18969,"stopIndex":19152,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6562},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6560},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6565":{"name":"attributeFormat","type":"propertyDef","startIndex":19155,"stopIndex":19346,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6562},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6560},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6566":{"name":"translate","type":"propertyDef","startIndex":19353,"stopIndex":19603,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6562},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6560},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6567":{"name":null,"type":"comment","startIndex":19610,"stopIndex":19610,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6568":{"name":"lively.morphic.Shapes.BezierCurve2CtlTo","type":"klassExtensionDef","startIndex":19611,"stopIndex":20110,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6569},{"__isSmartRef__":true,"id":6571},{"__isSmartRef__":true,"id":6572}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6570}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6569":{"name":"fromLiteral","type":"propertyDef","startIndex":19668,"stopIndex":19955,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6570},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6570":{"name":"default category","type":"categoryDef","startIndex":19666,"stopIndex":20107,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6569},{"__isSmartRef__":true,"id":6571},{"__isSmartRef__":true,"id":6572}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6571":{"name":"dataLength","type":"propertyDef","startIndex":19957,"stopIndex":19974,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6570},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6572":{"name":"create","type":"propertyDef","startIndex":19976,"stopIndex":20105,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6570},"className":"lively.morphic.Shapes.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":6568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6573":{"name":null,"type":"comment","startIndex":20111,"stopIndex":20112,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6574":{"name":"lively.morphic.Shapes.BezierCurve1CtlTo","type":"klassDef","startIndex":20113,"stopIndex":20916,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6575},{"__isSmartRef__":true,"id":6577},{"__isSmartRef__":true,"id":6578},{"__isSmartRef__":true,"id":6579},{"__isSmartRef__":true,"id":6580}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6576}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6575":{"name":"charCode","type":"propertyDef","startIndex":20202,"stopIndex":20219,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6576},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6574},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6576":{"name":"default category","type":"categoryDef","startIndex":20199,"stopIndex":20913,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6575},{"__isSmartRef__":true,"id":6577},{"__isSmartRef__":true,"id":6578},{"__isSmartRef__":true,"id":6579},{"__isSmartRef__":true,"id":6580}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6577":{"name":"initialize","type":"propertyDef","startIndex":20222,"stopIndex":20451,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6576},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6574},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6578":{"name":"controlPoints","type":"propertyDef","startIndex":20454,"stopIndex":20564,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6576},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6574},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6579":{"name":"attributeFormat","type":"propertyDef","startIndex":20567,"stopIndex":20712,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6576},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6574},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6580":{"name":"translate","type":"propertyDef","startIndex":20719,"stopIndex":20910,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6576},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6574},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6581":{"name":null,"type":"comment","startIndex":20917,"stopIndex":20917,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6582":{"name":"lively.morphic.Shapes.BezierCurve1CtlTo","type":"klassExtensionDef","startIndex":20918,"stopIndex":21337,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6583},{"__isSmartRef__":true,"id":6585},{"__isSmartRef__":true,"id":6586}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6584}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6583":{"name":"fromLiteral","type":"propertyDef","startIndex":20975,"stopIndex":21198,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6584},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6584":{"name":"default category","type":"categoryDef","startIndex":20973,"stopIndex":21334,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6583},{"__isSmartRef__":true,"id":6585},{"__isSmartRef__":true,"id":6586}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6585":{"name":"dataLength","type":"propertyDef","startIndex":21200,"stopIndex":21217,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6584},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6586":{"name":"create","type":"propertyDef","startIndex":21219,"stopIndex":21332,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6584},"className":"lively.morphic.Shapes.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":6582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6587":{"name":null,"type":"comment","startIndex":21338,"stopIndex":21339,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6588":{"name":"lively.morphic.Shapes.ArcTo","type":"klassDef","startIndex":21340,"stopIndex":22204,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6589},{"__isSmartRef__":true,"id":6591},{"__isSmartRef__":true,"id":6592},{"__isSmartRef__":true,"id":6593},{"__isSmartRef__":true,"id":6594}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6590}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6589":{"name":"charCode","type":"propertyDef","startIndex":21417,"stopIndex":21434,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6590},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6588},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6590":{"name":"default category","type":"categoryDef","startIndex":21414,"stopIndex":22201,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6589},{"__isSmartRef__":true,"id":6591},{"__isSmartRef__":true,"id":6592},{"__isSmartRef__":true,"id":6593},{"__isSmartRef__":true,"id":6594}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6591":{"name":"initialize","type":"propertyDef","startIndex":21437,"stopIndex":21756,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6590},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6588},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6592":{"name":"controlPoints","type":"propertyDef","startIndex":21759,"stopIndex":21855,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6590},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6588},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6593":{"name":"attributeFormat","type":"propertyDef","startIndex":21858,"stopIndex":22058,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6590},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6588},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6594":{"name":"translate","type":"propertyDef","startIndex":22065,"stopIndex":22198,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6590},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6588},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6595":{"name":null,"type":"comment","startIndex":22205,"stopIndex":22205,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6596":{"name":"lively.morphic.Shapes.ArcTo","type":"klassExtensionDef","startIndex":22206,"stopIndex":22679,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6597},{"__isSmartRef__":true,"id":6599},{"__isSmartRef__":true,"id":6600}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6598}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6597":{"name":"fromLiteral","type":"propertyDef","startIndex":22251,"stopIndex":22516,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6598},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6596},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6598":{"name":"default category","type":"categoryDef","startIndex":22249,"stopIndex":22676,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6597},{"__isSmartRef__":true,"id":6599},{"__isSmartRef__":true,"id":6600}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6599":{"name":"dataLength","type":"propertyDef","startIndex":22518,"stopIndex":22535,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6598},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6596},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6600":{"name":"create","type":"propertyDef","startIndex":22537,"stopIndex":22674,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6598},"className":"lively.morphic.Shapes.ArcTo","_owner":{"__isSmartRef__":true,"id":6596},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6601":{"name":null,"type":"comment","startIndex":22680,"stopIndex":22681,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6602":{"name":"lively.morphic.Shapes.ClosePath","type":"klassDef","startIndex":22682,"stopIndex":22971,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6603},{"__isSmartRef__":true,"id":6605},{"__isSmartRef__":true,"id":6606},{"__isSmartRef__":true,"id":6607}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.PathElement","categories":[{"__isSmartRef__":true,"id":6604}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6603":{"name":"charCode","type":"propertyDef","startIndex":22763,"stopIndex":22780,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6604},"className":"lively.morphic.Shapes.ClosePath","_owner":{"__isSmartRef__":true,"id":6602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6604":{"name":"default category","type":"categoryDef","startIndex":22760,"stopIndex":22968,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6603},{"__isSmartRef__":true,"id":6605},{"__isSmartRef__":true,"id":6606},{"__isSmartRef__":true,"id":6607}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6605":{"name":"controlPoints","type":"propertyDef","startIndex":22783,"stopIndex":22839,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6604},"className":"lively.morphic.Shapes.ClosePath","_owner":{"__isSmartRef__":true,"id":6602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6606":{"name":"attributeFormat","type":"propertyDef","startIndex":22846,"stopIndex":22921,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6604},"className":"lively.morphic.Shapes.ClosePath","_owner":{"__isSmartRef__":true,"id":6602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6607":{"name":"translate","type":"propertyDef","startIndex":22928,"stopIndex":22966,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6604},"className":"lively.morphic.Shapes.ClosePath","_owner":{"__isSmartRef__":true,"id":6602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6608":{"name":null,"type":"comment","startIndex":22972,"stopIndex":22972,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6609":{"name":"lively.morphic.Shapes.ClosePath","type":"klassExtensionDef","startIndex":22973,"stopIndex":23257,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6610},{"__isSmartRef__":true,"id":6612},{"__isSmartRef__":true,"id":6613}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6611}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6610":{"name":"fromLiteral","type":"propertyDef","startIndex":23022,"stopIndex":23150,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6611},"className":"lively.morphic.Shapes.ClosePath","_owner":{"__isSmartRef__":true,"id":6609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6611":{"name":"default category","type":"categoryDef","startIndex":23020,"stopIndex":23254,"fileName":"lively/morphic/PathShapes.js","_subElements":[{"__isSmartRef__":true,"id":6610},{"__isSmartRef__":true,"id":6612},{"__isSmartRef__":true,"id":6613}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6612":{"name":"dataLength","type":"propertyDef","startIndex":23152,"stopIndex":23169,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6611},"className":"lively.morphic.Shapes.ClosePath","_owner":{"__isSmartRef__":true,"id":6609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6613":{"name":"create","type":"propertyDef","startIndex":23171,"stopIndex":23252,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6611},"className":"lively.morphic.Shapes.ClosePath","_owner":{"__isSmartRef__":true,"id":6609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6614":{"name":null,"type":"comment","startIndex":23258,"stopIndex":23258,"fileName":"lively/morphic/PathShapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6615":{"target":{"__isSmartRef__":true,"id":6616},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Rendering.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6616":{"name":"lively.morphic.Rendering","type":"moduleDef","startIndex":0,"stopIndex":14093,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6617},{"__isSmartRef__":true,"id":6618},{"__isSmartRef__":true,"id":6635},{"__isSmartRef__":true,"id":6636},{"__isSmartRef__":true,"id":6675},{"__isSmartRef__":true,"id":6676},{"__isSmartRef__":true,"id":6704},{"__isSmartRef__":true,"id":6705},{"__isSmartRef__":true,"id":6712},{"__isSmartRef__":true,"id":6713},{"__isSmartRef__":true,"id":6717}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6617":{"name":null,"type":"comment","startIndex":138,"stopIndex":138,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6618":{"name":"lively.morphic.Renderable","type":"traitDef","startIndex":139,"stopIndex":2025,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6619},{"__isSmartRef__":true,"id":6621},{"__isSmartRef__":true,"id":6622},{"__isSmartRef__":true,"id":6623},{"__isSmartRef__":true,"id":6624},{"__isSmartRef__":true,"id":6625},{"__isSmartRef__":true,"id":6627},{"__isSmartRef__":true,"id":6631}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6619":{"name":"renderAttributeSetter","type":"propertyDef","startIndex":189,"stopIndex":355,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6620},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6620":{"name":"accessing","type":"categoryDef","startIndex":35,"stopIndex":838,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":6619},{"__isSmartRef__":true,"id":6621},{"__isSmartRef__":true,"id":6622},{"__isSmartRef__":true,"id":6623},{"__isSmartRef__":true,"id":6624}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6621":{"name":"renderAttributeGetter","type":"propertyDef","startIndex":357,"stopIndex":434,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6620},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6622":{"name":"renderContext","type":"propertyDef","startIndex":436,"stopIndex":595,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6620},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6623":{"name":"setRenderContext","type":"propertyDef","startIndex":597,"stopIndex":850,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6620},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6624":{"name":"defaultRenderContext","type":"propertyDef","startIndex":852,"stopIndex":974,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6620},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6625":{"name":"renderContextDispatch","type":"propertyDef","startIndex":1007,"stopIndex":1603,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6626},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6626":{"name":"renderContext dispatch","type":"categoryDef","startIndex":840,"stopIndex":1466,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":6625}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6627":{"name":" -> lively.morphic.Morph","type":"traitSubElement","startIndex":1608,"stopIndex":1813,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6628},{"__isSmartRef__":true,"id":6630}],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6628":{"name":"override","type":"propertyDef","startIndex":1641,"stopIndex":1717,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6629},"_owner":{"__isSmartRef__":true,"id":6627},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6629":{"name":"default category","type":"categoryDef","startIndex":1500,"stopIndex":1673,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":6628},{"__isSmartRef__":true,"id":6630}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6630":{"name":"alias","type":"propertyDef","startIndex":1719,"stopIndex":1810,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6629},"_owner":{"__isSmartRef__":true,"id":6627},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6631":{"name":" -> lively.morphic.Shapes.Shape","type":"traitSubElement","startIndex":1814,"stopIndex":2023,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6632},{"__isSmartRef__":true,"id":6634}],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":6618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6632":{"name":"override","type":"propertyDef","startIndex":1855,"stopIndex":1931,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6633},"_owner":{"__isSmartRef__":true,"id":6631},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6633":{"name":"default category","type":"categoryDef","startIndex":1714,"stopIndex":1883,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":6632},{"__isSmartRef__":true,"id":6634}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6634":{"name":"alias","type":"propertyDef","startIndex":1933,"stopIndex":2020,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6633},"_owner":{"__isSmartRef__":true,"id":6631},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6635":{"name":null,"type":"comment","startIndex":2026,"stopIndex":2026,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6636":{"name":"lively.morphic.Rendering.DOMInterface","type":"klassDef","startIndex":2027,"stopIndex":9910,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6637},{"__isSmartRef__":true,"id":6639},{"__isSmartRef__":true,"id":6640},{"__isSmartRef__":true,"id":6642},{"__isSmartRef__":true,"id":6643},{"__isSmartRef__":true,"id":6644},{"__isSmartRef__":true,"id":6645},{"__isSmartRef__":true,"id":6646},{"__isSmartRef__":true,"id":6647},{"__isSmartRef__":true,"id":6648},{"__isSmartRef__":true,"id":6649},{"__isSmartRef__":true,"id":6651},{"__isSmartRef__":true,"id":6652},{"__isSmartRef__":true,"id":6653},{"__isSmartRef__":true,"id":6655},{"__isSmartRef__":true,"id":6656},{"__isSmartRef__":true,"id":6658},{"__isSmartRef__":true,"id":6659},{"__isSmartRef__":true,"id":6661},{"__isSmartRef__":true,"id":6662},{"__isSmartRef__":true,"id":6663},{"__isSmartRef__":true,"id":6664},{"__isSmartRef__":true,"id":6665},{"__isSmartRef__":true,"id":6666},{"__isSmartRef__":true,"id":6667},{"__isSmartRef__":true,"id":6668},{"__isSmartRef__":true,"id":6669},{"__isSmartRef__":true,"id":6670},{"__isSmartRef__":true,"id":6671},{"__isSmartRef__":true,"id":6672},{"__isSmartRef__":true,"id":6673},{"__isSmartRef__":true,"id":6674}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6638},{"__isSmartRef__":true,"id":6641},{"__isSmartRef__":true,"id":6650},{"__isSmartRef__":true,"id":6654},{"__isSmartRef__":true,"id":6657},{"__isSmartRef__":true,"id":6660}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6637":{"name":"canvasId","type":"propertyDef","startIndex":2098,"stopIndex":2139,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6638},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6638":{"name":"settings","type":"categoryDef","startIndex":2084,"stopIndex":2211,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6637},{"__isSmartRef__":true,"id":6639}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6639":{"name":"html5CssPrefix","type":"propertyDef","startIndex":2141,"stopIndex":2208,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6638},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6640":{"name":"canvasRawNode","type":"propertyDef","startIndex":2232,"stopIndex":2498,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6641":{"name":"node creation","type":"categoryDef","startIndex":2213,"stopIndex":3301,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6640},{"__isSmartRef__":true,"id":6642},{"__isSmartRef__":true,"id":6643},{"__isSmartRef__":true,"id":6644},{"__isSmartRef__":true,"id":6645},{"__isSmartRef__":true,"id":6646},{"__isSmartRef__":true,"id":6647},{"__isSmartRef__":true,"id":6648}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6642":{"name":"svgNode","type":"propertyDef","startIndex":2500,"stopIndex":2626,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6643":{"name":"svgRect","type":"propertyDef","startIndex":2628,"stopIndex":2689,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6644":{"name":"svgEllipse","type":"propertyDef","startIndex":2691,"stopIndex":2759,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6645":{"name":"svgGroup","type":"propertyDef","startIndex":2761,"stopIndex":2820,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6646":{"name":"htmlRect","type":"propertyDef","startIndex":2822,"stopIndex":2879,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6647":{"name":"htmlCanvas","type":"propertyDef","startIndex":2881,"stopIndex":3094,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6648":{"name":"htmlImg","type":"propertyDef","startIndex":3096,"stopIndex":3297,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6641},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6649":{"name":"isCanvasElement","type":"propertyDef","startIndex":3316,"stopIndex":3468,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6650},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6650":{"name":"testing","type":"categoryDef","startIndex":3303,"stopIndex":3641,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6649},{"__isSmartRef__":true,"id":6651},{"__isSmartRef__":true,"id":6652}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6651":{"name":"isSVG","type":"propertyDef","startIndex":3470,"stopIndex":3553,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6650},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6652":{"name":"isHTML","type":"propertyDef","startIndex":3555,"stopIndex":3638,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6650},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6653":{"name":"append","type":"propertyDef","startIndex":3671,"stopIndex":4065,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6654},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6654":{"name":"appending and removing","type":"categoryDef","startIndex":3643,"stopIndex":4185,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6653},{"__isSmartRef__":true,"id":6655}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6655":{"name":"remove","type":"propertyDef","startIndex":4067,"stopIndex":4182,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6654},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6656":{"name":"getPosition","type":"propertyDef","startIndex":4209,"stopIndex":4584,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6657},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6657":{"name":"accessing -- DOM","type":"categoryDef","startIndex":4187,"stopIndex":5012,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6656},{"__isSmartRef__":true,"id":6658}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6658":{"name":"getExtent","type":"propertyDef","startIndex":4586,"stopIndex":5009,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6657},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6659":{"name":"setAttr","type":"propertyDef","startIndex":5032,"stopIndex":5143,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6660":{"name":"manipulating","type":"categoryDef","startIndex":5014,"stopIndex":9907,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6659},{"__isSmartRef__":true,"id":6661},{"__isSmartRef__":true,"id":6662},{"__isSmartRef__":true,"id":6663},{"__isSmartRef__":true,"id":6664},{"__isSmartRef__":true,"id":6665},{"__isSmartRef__":true,"id":6666},{"__isSmartRef__":true,"id":6667},{"__isSmartRef__":true,"id":6668},{"__isSmartRef__":true,"id":6669},{"__isSmartRef__":true,"id":6670},{"__isSmartRef__":true,"id":6671},{"__isSmartRef__":true,"id":6672},{"__isSmartRef__":true,"id":6673},{"__isSmartRef__":true,"id":6674}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6661":{"name":"setFill","type":"propertyDef","startIndex":5145,"stopIndex":5753,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6662":{"name":"setSVGFillOrStrokePaint","type":"propertyDef","startIndex":5755,"stopIndex":6725,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6663":{"name":"setHTMLGradient","type":"propertyDef","startIndex":6727,"stopIndex":6881,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6664":{"name":"setPosition","type":"propertyDef","startIndex":6885,"stopIndex":7388,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6665":{"name":"setSVGViewbox","type":"propertyDef","startIndex":7390,"stopIndex":7601,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6666":{"name":"setHTMLTransform","type":"propertyDef","startIndex":7604,"stopIndex":7976,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6667":{"name":"setSVGTransform","type":"propertyDef","startIndex":7978,"stopIndex":8152,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6668":{"name":"setExtent","type":"propertyDef","startIndex":8160,"stopIndex":8526,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6669":{"name":"setWidth","type":"propertyDef","startIndex":8528,"stopIndex":8784,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6670":{"name":"setHeight","type":"propertyDef","startIndex":8786,"stopIndex":9045,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6671":{"name":"setMaxWidth","type":"propertyDef","startIndex":9049,"stopIndex":9301,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6672":{"name":"setMaxHeight","type":"propertyDef","startIndex":9303,"stopIndex":9558,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6673":{"name":"setHTMLBorderRadiusPoint","type":"propertyDef","startIndex":9562,"stopIndex":9687,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6674":{"name":"setHTMLBorderRadius","type":"propertyDef","startIndex":9689,"stopIndex":9903,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6660},"className":"lively.morphic.Rendering.DOMInterface","_owner":{"__isSmartRef__":true,"id":6636},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6675":{"name":null,"type":"comment","startIndex":9911,"stopIndex":9911,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6676":{"name":"lively.morphic.Rendering.RenderContext","type":"klassDef","startIndex":9912,"stopIndex":12291,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6677},{"__isSmartRef__":true,"id":6679},{"__isSmartRef__":true,"id":6680},{"__isSmartRef__":true,"id":6681},{"__isSmartRef__":true,"id":6683},{"__isSmartRef__":true,"id":6684},{"__isSmartRef__":true,"id":6686},{"__isSmartRef__":true,"id":6687},{"__isSmartRef__":true,"id":6688},{"__isSmartRef__":true,"id":6690},{"__isSmartRef__":true,"id":6691},{"__isSmartRef__":true,"id":6692},{"__isSmartRef__":true,"id":6694},{"__isSmartRef__":true,"id":6695},{"__isSmartRef__":true,"id":6697},{"__isSmartRef__":true,"id":6698},{"__isSmartRef__":true,"id":6699},{"__isSmartRef__":true,"id":6701},{"__isSmartRef__":true,"id":6702}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6678},{"__isSmartRef__":true,"id":6682},{"__isSmartRef__":true,"id":6685},{"__isSmartRef__":true,"id":6689},{"__isSmartRef__":true,"id":6693},{"__isSmartRef__":true,"id":6696},{"__isSmartRef__":true,"id":6700},{"__isSmartRef__":true,"id":6703}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6677":{"name":"domInterface","type":"propertyDef","startIndex":9984,"stopIndex":10045,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6678},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6678":{"name":"settings","type":"categoryDef","startIndex":9970,"stopIndex":10104,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6677},{"__isSmartRef__":true,"id":6679},{"__isSmartRef__":true,"id":6680}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6679":{"name":"shapeDispatchTable","type":"propertyDef","startIndex":10047,"stopIndex":10073,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6678},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6680":{"name":"morphDispatchTable","type":"propertyDef","startIndex":10075,"stopIndex":10101,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6678},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6681":{"name":"newInstance","type":"propertyDef","startIndex":10120,"stopIndex":10237,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6682},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6682":{"name":"creation","type":"categoryDef","startIndex":10106,"stopIndex":10415,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6681},{"__isSmartRef__":true,"id":6683}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6683":{"name":"newForChild","type":"propertyDef","startIndex":10239,"stopIndex":10410,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6682},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6684":{"name":"setParentNode","type":"propertyDef","startIndex":10432,"stopIndex":10492,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6685},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6685":{"name":"accessing","type":"categoryDef","startIndex":10417,"stopIndex":10607,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6684},{"__isSmartRef__":true,"id":6686},{"__isSmartRef__":true,"id":6687}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6686":{"name":"getMorphNode","type":"propertyDef","startIndex":10494,"stopIndex":10548,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6685},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6687":{"name":"getShapeNode","type":"propertyDef","startIndex":10550,"stopIndex":10604,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6685},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6688":{"name":"append","type":"propertyDef","startIndex":10624,"stopIndex":10713,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6689},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6689":{"name":"rendering","type":"categoryDef","startIndex":10609,"stopIndex":10918,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6688},{"__isSmartRef__":true,"id":6690},{"__isSmartRef__":true,"id":6691}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6690":{"name":"appendShape","type":"propertyDef","startIndex":10715,"stopIndex":10794,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6689},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6691":{"name":"replaceRenderContext","type":"propertyDef","startIndex":10796,"stopIndex":10915,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6689},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6692":{"name":"shapeDispatch","type":"propertyDef","startIndex":10932,"stopIndex":11322,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6693},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6693":{"name":"update","type":"categoryDef","startIndex":10920,"stopIndex":11719,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6692},{"__isSmartRef__":true,"id":6694}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6694":{"name":"morphDispatch","type":"propertyDef","startIndex":11324,"stopIndex":11716,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6693},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6695":{"name":"morphRemoved","type":"propertyDef","startIndex":11734,"stopIndex":11842,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6696},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6696":{"name":"removal","type":"categoryDef","startIndex":11721,"stopIndex":12052,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6695},{"__isSmartRef__":true,"id":6697},{"__isSmartRef__":true,"id":6698}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6697":{"name":"shapeRemoved","type":"propertyDef","startIndex":11844,"stopIndex":11952,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6696},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6698":{"name":"removeNode","type":"propertyDef","startIndex":11954,"stopIndex":12049,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6696},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6699":{"name":"isHTML","type":"propertyDef","startIndex":12067,"stopIndex":12135,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6700},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6700":{"name":"testing","type":"categoryDef","startIndex":12054,"stopIndex":12206,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6699},{"__isSmartRef__":true,"id":6701}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6701":{"name":"isSVG","type":"propertyDef","startIndex":12137,"stopIndex":12203,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6700},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6702":{"name":"toString","type":"propertyDef","startIndex":12223,"stopIndex":12286,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6703},"className":"lively.morphic.Rendering.RenderContext","_owner":{"__isSmartRef__":true,"id":6676},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6703":{"name":"debugging","type":"categoryDef","startIndex":12208,"stopIndex":12288,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6702}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6704":{"name":null,"type":"comment","startIndex":12292,"stopIndex":12292,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6705":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":12293,"stopIndex":13768,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6706},{"__isSmartRef__":true,"id":6708},{"__isSmartRef__":true,"id":6709},{"__isSmartRef__":true,"id":6710},{"__isSmartRef__":true,"id":6711}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6707}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6706":{"name":"renderUsing","type":"propertyDef","startIndex":12341,"stopIndex":12441,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6707},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6707":{"name":"rendering","type":"categoryDef","startIndex":12326,"stopIndex":13765,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6706},{"__isSmartRef__":true,"id":6708},{"__isSmartRef__":true,"id":6709},{"__isSmartRef__":true,"id":6710},{"__isSmartRef__":true,"id":6711}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6708":{"name":"renderAfterUsing","type":"propertyDef","startIndex":12443,"stopIndex":12719,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6707},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6709":{"name":"replaceRenderContextWith","type":"propertyDef","startIndex":12721,"stopIndex":13019,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6707},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6710":{"name":"replaceRenderContextCompletely","type":"propertyDef","startIndex":13021,"stopIndex":13241,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6707},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6711":{"name":"prepareForNewRenderContext","type":"propertyDef","startIndex":13243,"stopIndex":13762,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6707},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6712":{"name":null,"type":"comment","startIndex":13769,"stopIndex":13769,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6713":{"name":"lively.morphic.Shapes.Shape","type":"klassExtensionDef","startIndex":13770,"stopIndex":14073,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6714},{"__isSmartRef__":true,"id":6716}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6715}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6714":{"name":"defaultRenderContext","type":"propertyDef","startIndex":13825,"stopIndex":13877,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6715},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6713},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6715":{"name":"rendering","type":"categoryDef","startIndex":13810,"stopIndex":14070,"fileName":"lively/morphic/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":6714},{"__isSmartRef__":true,"id":6716}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6716":{"name":"renderUsing","type":"propertyDef","startIndex":13879,"stopIndex":14068,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6715},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6713},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6717":{"name":null,"type":"comment","startIndex":14074,"stopIndex":14074,"fileName":"lively/morphic/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6718":{"target":{"__isSmartRef__":true,"id":6719},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/ScriptingSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6719":{"name":"lively.morphic.ScriptingSupport","type":"moduleDef","startIndex":0,"stopIndex":10485,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6720},{"__isSmartRef__":true,"id":6721},{"__isSmartRef__":true,"id":6735},{"__isSmartRef__":true,"id":6736},{"__isSmartRef__":true,"id":6759},{"__isSmartRef__":true,"id":6760},{"__isSmartRef__":true,"id":6762},{"__isSmartRef__":true,"id":6763},{"__isSmartRef__":true,"id":6768}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6720":{"name":null,"type":"comment","startIndex":141,"stopIndex":141,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6721":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":142,"stopIndex":3363,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6722},{"__isSmartRef__":true,"id":6724},{"__isSmartRef__":true,"id":6725},{"__isSmartRef__":true,"id":6726},{"__isSmartRef__":true,"id":6727},{"__isSmartRef__":true,"id":6728},{"__isSmartRef__":true,"id":6730},{"__isSmartRef__":true,"id":6731},{"__isSmartRef__":true,"id":6732},{"__isSmartRef__":true,"id":6734}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6723},{"__isSmartRef__":true,"id":6729},{"__isSmartRef__":true,"id":6733}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6722":{"name":"setName","type":"propertyDef","startIndex":187,"stopIndex":235,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6723},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6723":{"name":"naming","type":"categoryDef","startIndex":175,"stopIndex":1476,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6722},{"__isSmartRef__":true,"id":6724},{"__isSmartRef__":true,"id":6725},{"__isSmartRef__":true,"id":6726},{"__isSmartRef__":true,"id":6727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6724":{"name":"getName","type":"propertyDef","startIndex":237,"stopIndex":281,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6723},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6725":{"name":"get","type":"propertyDef","startIndex":283,"stopIndex":450,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6723},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6726":{"name":"getMorphNamed","type":"propertyDef","startIndex":452,"stopIndex":930,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6723},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6727":{"name":"getBreadthFirstUpwards","type":"propertyDef","startIndex":932,"stopIndex":1473,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6723},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6728":{"name":"asSVGLogo","type":"propertyDef","startIndex":1494,"stopIndex":2231,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6729},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6729":{"name":"conversion","type":"categoryDef","startIndex":1478,"stopIndex":3126,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6728},{"__isSmartRef__":true,"id":6730},{"__isSmartRef__":true,"id":6731}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6730":{"name":"asHTMLLogo","type":"propertyDef","startIndex":2233,"stopIndex":2859,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6729},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6731":{"name":"asLogo","type":"propertyDef","startIndex":2862,"stopIndex":3122,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6729},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6732":{"name":"getConnectionPoints","type":"propertyDef","startIndex":3151,"stopIndex":3263,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6733},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6733":{"name":"connection points","type":"categoryDef","startIndex":3128,"stopIndex":3360,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6732},{"__isSmartRef__":true,"id":6734}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6734":{"name":"getTargetConnectionPoints","type":"propertyDef","startIndex":3265,"stopIndex":3357,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6733},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6735":{"name":null,"type":"comment","startIndex":3364,"stopIndex":3364,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6736":{"name":"lively.morphic.PartsBinItem","type":"klassDef","startIndex":3365,"stopIndex":8891,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6737},{"__isSmartRef__":true,"id":6739},{"__isSmartRef__":true,"id":6740},{"__isSmartRef__":true,"id":6742},{"__isSmartRef__":true,"id":6743},{"__isSmartRef__":true,"id":6744},{"__isSmartRef__":true,"id":6745},{"__isSmartRef__":true,"id":6747},{"__isSmartRef__":true,"id":6748},{"__isSmartRef__":true,"id":6750},{"__isSmartRef__":true,"id":6751},{"__isSmartRef__":true,"id":6752},{"__isSmartRef__":true,"id":6754},{"__isSmartRef__":true,"id":6755},{"__isSmartRef__":true,"id":6757},{"__isSmartRef__":true,"id":6758}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":6738},{"__isSmartRef__":true,"id":6741},{"__isSmartRef__":true,"id":6746},{"__isSmartRef__":true,"id":6749},{"__isSmartRef__":true,"id":6753},{"__isSmartRef__":true,"id":6756}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6737":{"name":"defaultExtent","type":"propertyDef","startIndex":3438,"stopIndex":3468,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6738},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6738":{"name":"settings","type":"categoryDef","startIndex":3424,"stopIndex":3540,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6737},{"__isSmartRef__":true,"id":6739}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6739":{"name":"style","type":"propertyDef","startIndex":3470,"stopIndex":3537,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6738},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6740":{"name":"initialize","type":"propertyDef","startIndex":3560,"stopIndex":3917,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6741},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6741":{"name":"initializing","type":"categoryDef","startIndex":3542,"stopIndex":5949,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6740},{"__isSmartRef__":true,"id":6742},{"__isSmartRef__":true,"id":6743},{"__isSmartRef__":true,"id":6744}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6742":{"name":"setupLogo","type":"propertyDef","startIndex":3920,"stopIndex":4990,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6741},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6743":{"name":"setupSVGLogo","type":"propertyDef","startIndex":4992,"stopIndex":5308,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6741},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6744":{"name":"setupHTMLLogo","type":"propertyDef","startIndex":5310,"stopIndex":5944,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6741},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6745":{"name":"showAsSelected","type":"propertyDef","startIndex":5966,"stopIndex":6172,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6746},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6746":{"name":"selection","type":"categoryDef","startIndex":5951,"stopIndex":6294,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6745},{"__isSmartRef__":true,"id":6747}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6747":{"name":"showAsNotSelected","type":"propertyDef","startIndex":6174,"stopIndex":6291,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6746},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6748":{"name":"onMouseDown","type":"propertyDef","startIndex":6330,"stopIndex":6653,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6749},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6749":{"name":"mouse events","type":"categoryDef","startIndex":6312,"stopIndex":7257,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6748},{"__isSmartRef__":true,"id":6750},{"__isSmartRef__":true,"id":6751}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6750":{"name":"onDragStart","type":"propertyDef","startIndex":6655,"stopIndex":6985,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6749},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6751":{"name":"onDragEnd","type":"propertyDef","startIndex":6987,"stopIndex":7252,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6749},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6752":{"name":"deleteOnServer","type":"propertyDef","startIndex":7490,"stopIndex":7612,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6753},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6753":{"name":"server interaction","type":"categoryDef","startIndex":7466,"stopIndex":7983,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6752},{"__isSmartRef__":true,"id":6754}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6754":{"name":"interactiveDeleteOnServer","type":"propertyDef","startIndex":7614,"stopIndex":7980,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6753},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6755":{"name":"openLoadedPartsBinItem","type":"propertyDef","startIndex":7999,"stopIndex":8281,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6756},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6756":{"name":"loading","type":"categoryDef","startIndex":7985,"stopIndex":8888,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6755},{"__isSmartRef__":true,"id":6757},{"__isSmartRef__":true,"id":6758}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6757":{"name":"openLoadedPartCentered","type":"propertyDef","startIndex":8283,"stopIndex":8481,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6756},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6758":{"name":"startLoadingPart","type":"propertyDef","startIndex":8484,"stopIndex":8884,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6756},"className":"lively.morphic.PartsBinItem","_owner":{"__isSmartRef__":true,"id":6736},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6759":{"name":null,"type":"comment","startIndex":8892,"stopIndex":8892,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6760":{"name":"lively.PartsBin.PartTrait","type":"traitDef","startIndex":8893,"stopIndex":8958,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6761}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6761":{"name":" -> lively.morphic.Morph","type":"traitSubElement","startIndex":8927,"stopIndex":8956,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":6760},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6762":{"name":null,"type":"comment","startIndex":8959,"stopIndex":8959,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6763":{"name":"Global","type":"klassExtensionDef","startIndex":8960,"stopIndex":9449,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6764},{"__isSmartRef__":true,"id":6766},{"__isSmartRef__":true,"id":6767}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6765}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6764":{"name":"$morph","type":"propertyDef","startIndex":8984,"stopIndex":9196,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6765},"className":"Global","_owner":{"__isSmartRef__":true,"id":6763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6765":{"name":"default category","type":"categoryDef","startIndex":8982,"stopIndex":9446,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6764},{"__isSmartRef__":true,"id":6766},{"__isSmartRef__":true,"id":6767}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6766":{"name":"$world","type":"propertyDef","startIndex":9198,"stopIndex":9256,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6765},"className":"Global","_owner":{"__isSmartRef__":true,"id":6763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6767":{"name":"$m","type":"propertyDef","startIndex":9263,"stopIndex":9445,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6765},"className":"Global","_owner":{"__isSmartRef__":true,"id":6763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6768":{"name":"lively.morphic.DraggableBehavior","type":"traitDef","startIndex":9450,"stopIndex":10466,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[{"__isSmartRef__":true,"id":6769},{"__isSmartRef__":true,"id":6771},{"__isSmartRef__":true,"id":6772},{"__isSmartRef__":true,"id":6773}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6769":{"name":"onDragEnd","type":"propertyDef","startIndex":9519,"stopIndex":9706,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6770},"_owner":{"__isSmartRef__":true,"id":6768},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6770":{"name":"dragging and dropping","type":"categoryDef","startIndex":42,"stopIndex":1013,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":6769},{"__isSmartRef__":true,"id":6771},{"__isSmartRef__":true,"id":6772},{"__isSmartRef__":true,"id":6773}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6771":{"name":"onDragStart","type":"propertyDef","startIndex":9709,"stopIndex":9916,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6770},"_owner":{"__isSmartRef__":true,"id":6768},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6772":{"name":"dropOn","type":"propertyDef","startIndex":9918,"stopIndex":10130,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6770},"_owner":{"__isSmartRef__":true,"id":6768},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6773":{"name":"tryToApplyTo","type":"propertyDef","startIndex":10133,"stopIndex":10459,"fileName":"lively/morphic/ScriptingSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6770},"_owner":{"__isSmartRef__":true,"id":6768},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6774":{"target":{"__isSmartRef__":true,"id":6775},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Serialization.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6775":{"name":"lively.morphic.Serialization","type":"moduleDef","startIndex":0,"stopIndex":14216,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6776},{"__isSmartRef__":true,"id":6777},{"__isSmartRef__":true,"id":6781},{"__isSmartRef__":true,"id":6790},{"__isSmartRef__":true,"id":6793},{"__isSmartRef__":true,"id":6794},{"__isSmartRef__":true,"id":6797},{"__isSmartRef__":true,"id":6801},{"__isSmartRef__":true,"id":6802},{"__isSmartRef__":true,"id":6817},{"__isSmartRef__":true,"id":6818},{"__isSmartRef__":true,"id":6824},{"__isSmartRef__":true,"id":6825},{"__isSmartRef__":true,"id":6840},{"__isSmartRef__":true,"id":6841},{"__isSmartRef__":true,"id":6848},{"__isSmartRef__":true,"id":6849},{"__isSmartRef__":true,"id":6852},{"__isSmartRef__":true,"id":6856}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6776":{"name":null,"type":"comment","startIndex":220,"stopIndex":221,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6777":{"name":"ObjectGraphLinearizer","type":"klassExtensionDef","startIndex":222,"stopIndex":1114,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6778},{"__isSmartRef__":true,"id":6780}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6779}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6778":{"name":"forNewLively","type":"propertyDef","startIndex":261,"stopIndex":794,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6779},"className":"ObjectGraphLinearizer","_owner":{"__isSmartRef__":true,"id":6777},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6779":{"name":"default category","type":"categoryDef","startIndex":259,"stopIndex":1111,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6778},{"__isSmartRef__":true,"id":6780}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6780":{"name":"forNewLivelyCopy","type":"propertyDef","startIndex":796,"stopIndex":1109,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6779},"className":"ObjectGraphLinearizer","_owner":{"__isSmartRef__":true,"id":6777},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6781":{"name":"CopyOnlySubmorphsPlugin","type":"klassDef","startIndex":1115,"stopIndex":2294,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6782},{"__isSmartRef__":true,"id":6784},{"__isSmartRef__":true,"id":6786},{"__isSmartRef__":true,"id":6788},{"__isSmartRef__":true,"id":6789}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ObjectLinearizerPlugin","categories":[{"__isSmartRef__":true,"id":6783},{"__isSmartRef__":true,"id":6785},{"__isSmartRef__":true,"id":6787}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6782":{"name":"initialize","type":"propertyDef","startIndex":1192,"stopIndex":1312,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6783},"className":"CopyOnlySubmorphsPlugin","_owner":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6783":{"name":"initializing","type":"categoryDef","startIndex":1174,"stopIndex":1315,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6782}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6784":{"name":"copyAsMorphRef","type":"propertyDef","startIndex":1330,"stopIndex":1505,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6785},"className":"CopyOnlySubmorphsPlugin","_owner":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6785":{"name":"copying","type":"categoryDef","startIndex":1317,"stopIndex":1508,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6784}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6786":{"name":"ignoreProp","type":"propertyDef","startIndex":1532,"stopIndex":1693,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6787},"className":"CopyOnlySubmorphsPlugin","_owner":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6787":{"name":"plugin interface","type":"categoryDef","startIndex":1510,"stopIndex":2291,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6786},{"__isSmartRef__":true,"id":6788},{"__isSmartRef__":true,"id":6789}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6788":{"name":"serializeObj","type":"propertyDef","startIndex":1695,"stopIndex":2128,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6787},"className":"CopyOnlySubmorphsPlugin","_owner":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6789":{"name":"deserializeObj","type":"propertyDef","startIndex":2130,"stopIndex":2289,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6787},"className":"CopyOnlySubmorphsPlugin","_owner":{"__isSmartRef__":true,"id":6781},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6790":{"name":"IgnoreEpiMorphsPlugin","type":"klassDef","startIndex":2295,"stopIndex":2457,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6791}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ObjectLinearizerPlugin","categories":[{"__isSmartRef__":true,"id":6792}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6791":{"name":"ignoreProp","type":"propertyDef","startIndex":2374,"stopIndex":2452,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6792},"className":"IgnoreEpiMorphsPlugin","_owner":{"__isSmartRef__":true,"id":6790},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6792":{"name":"plugin interface","type":"categoryDef","startIndex":2352,"stopIndex":2454,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6791}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6793":{"name":null,"type":"comment","startIndex":2458,"stopIndex":2458,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6794":{"name":"lively.morphic.Shapes.Shape","type":"klassExtensionDef","startIndex":2459,"stopIndex":2555,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6795}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6796}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6795":{"name":"doNotSerialize","type":"propertyDef","startIndex":2512,"stopIndex":2550,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6796},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6794},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6796":{"name":"copying","type":"categoryDef","startIndex":2499,"stopIndex":2552,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6795}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6797":{"name":"lively.morphic.EventHandler","type":"klassExtensionDef","startIndex":2556,"stopIndex":2724,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6798},{"__isSmartRef__":true,"id":6800}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6799}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6798":{"name":"doNotSerialize","type":"propertyDef","startIndex":2615,"stopIndex":2652,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6799},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":6797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6799":{"name":"serialization","type":"categoryDef","startIndex":2596,"stopIndex":2721,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6798},{"__isSmartRef__":true,"id":6800}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6800":{"name":"onrestore","type":"propertyDef","startIndex":2654,"stopIndex":2719,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6799},"className":"lively.morphic.EventHandler","_owner":{"__isSmartRef__":true,"id":6797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6801":{"name":null,"type":"comment","startIndex":2725,"stopIndex":2725,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6802":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":2726,"stopIndex":5711,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6803},{"__isSmartRef__":true,"id":6805},{"__isSmartRef__":true,"id":6806},{"__isSmartRef__":true,"id":6808},{"__isSmartRef__":true,"id":6809},{"__isSmartRef__":true,"id":6810},{"__isSmartRef__":true,"id":6811},{"__isSmartRef__":true,"id":6813},{"__isSmartRef__":true,"id":6814},{"__isSmartRef__":true,"id":6816}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6804},{"__isSmartRef__":true,"id":6807},{"__isSmartRef__":true,"id":6812},{"__isSmartRef__":true,"id":6815}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6803":{"name":"onrestore","type":"propertyDef","startIndex":2778,"stopIndex":4013,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6804},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6804":{"name":"serialization","type":"categoryDef","startIndex":2759,"stopIndex":4050,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6803},{"__isSmartRef__":true,"id":6805}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6805":{"name":"onstore","type":"propertyDef","startIndex":4015,"stopIndex":4046,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6804},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6806":{"name":"doNotSerialize","type":"propertyDef","startIndex":4065,"stopIndex":4112,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6807},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6807":{"name":"copying","type":"categoryDef","startIndex":4052,"stopIndex":4654,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6806},{"__isSmartRef__":true,"id":6808},{"__isSmartRef__":true,"id":6809},{"__isSmartRef__":true,"id":6810}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6808":{"name":"copy","type":"propertyDef","startIndex":4115,"stopIndex":4379,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6807},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6809":{"name":"basicCopy","type":"propertyDef","startIndex":4381,"stopIndex":4481,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6807},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6810":{"name":"restoreRenderContextAfterCopy","type":"propertyDef","startIndex":4483,"stopIndex":4651,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6807},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6811":{"name":"serializeToJSON","type":"propertyDef","startIndex":4675,"stopIndex":4856,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6812},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6812":{"name":"serialization","type":"categoryDef","startIndex":4656,"stopIndex":4966,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6811},{"__isSmartRef__":true,"id":6813}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6813":{"name":"onLoadFromPartsBin","type":"propertyDef","startIndex":4858,"stopIndex":4963,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6812},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6814":{"name":"findUniqueNameSimilarTo","type":"propertyDef","startIndex":4981,"stopIndex":5571,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6815},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6815":{"name":"nameing","type":"categoryDef","startIndex":4968,"stopIndex":5708,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6814},{"__isSmartRef__":true,"id":6816}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6816":{"name":"findAndSetUniqueName","type":"propertyDef","startIndex":5573,"stopIndex":5705,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6815},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":6802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6817":{"name":null,"type":"comment","startIndex":5712,"stopIndex":5712,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6818":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":5713,"stopIndex":6809,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6819},{"__isSmartRef__":true,"id":6821},{"__isSmartRef__":true,"id":6822},{"__isSmartRef__":true,"id":6823}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6820}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6819":{"name":"doNotSerialize","type":"propertyDef","startIndex":5764,"stopIndex":5798,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6820},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6820":{"name":"serialization","type":"categoryDef","startIndex":5745,"stopIndex":6806,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6819},{"__isSmartRef__":true,"id":6821},{"__isSmartRef__":true,"id":6822},{"__isSmartRef__":true,"id":6823}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6821":{"name":"onstore","type":"propertyDef","startIndex":5800,"stopIndex":6343,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6820},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6822":{"name":"onrestore","type":"propertyDef","startIndex":6345,"stopIndex":6432,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6820},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6823":{"name":"prepareForNewRenderContext","type":"propertyDef","startIndex":6434,"stopIndex":6803,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6820},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":6818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6824":{"name":null,"type":"comment","startIndex":6810,"stopIndex":6810,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6825":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":6811,"stopIndex":11550,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6826},{"__isSmartRef__":true,"id":6828},{"__isSmartRef__":true,"id":6829},{"__isSmartRef__":true,"id":6830},{"__isSmartRef__":true,"id":6831},{"__isSmartRef__":true,"id":6832},{"__isSmartRef__":true,"id":6833},{"__isSmartRef__":true,"id":6834},{"__isSmartRef__":true,"id":6835},{"__isSmartRef__":true,"id":6836},{"__isSmartRef__":true,"id":6837},{"__isSmartRef__":true,"id":6838},{"__isSmartRef__":true,"id":6839}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6827}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6826":{"name":"doNotSerialize","type":"propertyDef","startIndex":6863,"stopIndex":6935,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6827":{"name":"serialization","type":"categoryDef","startIndex":6844,"stopIndex":11695,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6826},{"__isSmartRef__":true,"id":6828},{"__isSmartRef__":true,"id":6829},{"__isSmartRef__":true,"id":6830},{"__isSmartRef__":true,"id":6831},{"__isSmartRef__":true,"id":6832},{"__isSmartRef__":true,"id":6833},{"__isSmartRef__":true,"id":6834},{"__isSmartRef__":true,"id":6835},{"__isSmartRef__":true,"id":6836},{"__isSmartRef__":true,"id":6837},{"__isSmartRef__":true,"id":6838},{"__isSmartRef__":true,"id":6839}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6828":{"name":"onrestore","type":"propertyDef","startIndex":6937,"stopIndex":7034,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6829":{"name":"interactiveSaveWorldAs","type":"propertyDef","startIndex":7036,"stopIndex":7629,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6830":{"name":"saveWorldAs","type":"propertyDef","startIndex":7631,"stopIndex":8726,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6831":{"name":"saveWorld","type":"propertyDef","startIndex":8729,"stopIndex":8805,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6832":{"name":"visitNewPageAfterSaveAs","type":"propertyDef","startIndex":8808,"stopIndex":9021,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6833":{"name":"checkIfPathExistsAndStoreDoc","type":"propertyDef","startIndex":9024,"stopIndex":9841,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6834":{"name":"storeDoc","type":"propertyDef","startIndex":9844,"stopIndex":10218,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6835":{"name":"askToOverwrite","type":"propertyDef","startIndex":10221,"stopIndex":10419,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6836":{"name":"handleSaveStatus","type":"propertyDef","startIndex":10421,"stopIndex":10947,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6837":{"name":"tryToGetWorldRevision","type":"propertyDef","startIndex":10950,"stopIndex":11310,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6838":{"name":"getServerRevision","type":"propertyDef","startIndex":11312,"stopIndex":11428,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6839":{"name":"getCurrentAndServerVersion","type":"propertyDef","startIndex":11430,"stopIndex":11543,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6827},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6840":{"name":null,"type":"comment","startIndex":11551,"stopIndex":11551,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6841":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":11552,"stopIndex":13867,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6842},{"__isSmartRef__":true,"id":6844},{"__isSmartRef__":true,"id":6845},{"__isSmartRef__":true,"id":6846},{"__isSmartRef__":true,"id":6847}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6843}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6842":{"name":"createFromJSONOn","type":"propertyDef","startIndex":11590,"stopIndex":11713,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6843},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6841},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6843":{"name":"default category","type":"categoryDef","startIndex":11736,"stopIndex":14012,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6842},{"__isSmartRef__":true,"id":6844},{"__isSmartRef__":true,"id":6845},{"__isSmartRef__":true,"id":6846},{"__isSmartRef__":true,"id":6847}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6844":{"name":"createFromJSOOn","type":"propertyDef","startIndex":11715,"stopIndex":11906,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6843},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6841},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6845":{"name":"fromJSO","type":"propertyDef","startIndex":11908,"stopIndex":12109,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6843},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6841},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6846":{"name":"fromDocument","type":"propertyDef","startIndex":12111,"stopIndex":12440,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6843},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6841},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6847":{"name":"loadInIFrame","type":"propertyDef","startIndex":12442,"stopIndex":13861,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6843},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":6841},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6848":{"name":null,"type":"comment","startIndex":13868,"stopIndex":13868,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6849":{"name":"lively.morphic.TextEditor","type":"klassExtensionDef","startIndex":13869,"stopIndex":14007,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6850}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6851}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6850":{"name":"onrestore","type":"propertyDef","startIndex":13926,"stopIndex":14002,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6851},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":6849},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6851":{"name":"serialization","type":"categoryDef","startIndex":14055,"stopIndex":14152,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6850}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6852":{"name":"lively.morphic.Script","type":"klassExtensionDef","startIndex":14008,"stopIndex":14196,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6853},{"__isSmartRef__":true,"id":6855}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":6854}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6853":{"name":"onstore","type":"propertyDef","startIndex":14061,"stopIndex":14091,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6854},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":6852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6854":{"name":"serialization","type":"categoryDef","startIndex":14190,"stopIndex":14341,"fileName":"lively/morphic/Serialization.js","_subElements":[{"__isSmartRef__":true,"id":6853},{"__isSmartRef__":true,"id":6855}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6855":{"name":"onrestore","type":"propertyDef","startIndex":14093,"stopIndex":14191,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6854},"className":"lively.morphic.Script","_owner":{"__isSmartRef__":true,"id":6852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6856":{"name":null,"type":"comment","startIndex":14197,"stopIndex":14197,"fileName":"lively/morphic/Serialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6857":{"target":{"__isSmartRef__":true,"id":6858},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Shapes.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6858":{"name":"lively.morphic.Shapes","type":"moduleDef","startIndex":0,"stopIndex":8100,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6859},{"__isSmartRef__":true,"id":6860},{"__isSmartRef__":true,"id":6889},{"__isSmartRef__":true,"id":6890},{"__isSmartRef__":true,"id":6891},{"__isSmartRef__":true,"id":6892},{"__isSmartRef__":true,"id":6893},{"__isSmartRef__":true,"id":6894},{"__isSmartRef__":true,"id":6901},{"__isSmartRef__":true,"id":6902},{"__isSmartRef__":true,"id":6913},{"__isSmartRef__":true,"id":6914},{"__isSmartRef__":true,"id":6923},{"__isSmartRef__":true,"id":6924},{"__isSmartRef__":true,"id":6936},{"__isSmartRef__":true,"id":6937},{"__isSmartRef__":true,"id":6945}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6859":{"name":null,"type":"comment","startIndex":62,"stopIndex":62,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6860":{"name":"lively.morphic.Shapes.Shape","type":"klassDef","startIndex":63,"stopIndex":2785,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6861},{"__isSmartRef__":true,"id":6863},{"__isSmartRef__":true,"id":6865},{"__isSmartRef__":true,"id":6866},{"__isSmartRef__":true,"id":6867},{"__isSmartRef__":true,"id":6868},{"__isSmartRef__":true,"id":6869},{"__isSmartRef__":true,"id":6870},{"__isSmartRef__":true,"id":6871},{"__isSmartRef__":true,"id":6872},{"__isSmartRef__":true,"id":6873},{"__isSmartRef__":true,"id":6874},{"__isSmartRef__":true,"id":6875},{"__isSmartRef__":true,"id":6876},{"__isSmartRef__":true,"id":6877},{"__isSmartRef__":true,"id":6878},{"__isSmartRef__":true,"id":6879},{"__isSmartRef__":true,"id":6880},{"__isSmartRef__":true,"id":6881},{"__isSmartRef__":true,"id":6882},{"__isSmartRef__":true,"id":6883},{"__isSmartRef__":true,"id":6884},{"__isSmartRef__":true,"id":6885},{"__isSmartRef__":true,"id":6886},{"__isSmartRef__":true,"id":6887},{"__isSmartRef__":true,"id":6888}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6862},{"__isSmartRef__":true,"id":6864}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6861":{"name":"initialize","type":"propertyDef","startIndex":128,"stopIndex":212,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6862},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6862":{"name":"initializing","type":"categoryDef","startIndex":110,"stopIndex":215,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6861}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6863":{"name":"setPosition","type":"propertyDef","startIndex":232,"stopIndex":317,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6864":{"name":"accessing","type":"categoryDef","startIndex":217,"stopIndex":2782,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6863},{"__isSmartRef__":true,"id":6865},{"__isSmartRef__":true,"id":6866},{"__isSmartRef__":true,"id":6867},{"__isSmartRef__":true,"id":6868},{"__isSmartRef__":true,"id":6869},{"__isSmartRef__":true,"id":6870},{"__isSmartRef__":true,"id":6871},{"__isSmartRef__":true,"id":6872},{"__isSmartRef__":true,"id":6873},{"__isSmartRef__":true,"id":6874},{"__isSmartRef__":true,"id":6875},{"__isSmartRef__":true,"id":6876},{"__isSmartRef__":true,"id":6877},{"__isSmartRef__":true,"id":6878},{"__isSmartRef__":true,"id":6879},{"__isSmartRef__":true,"id":6880},{"__isSmartRef__":true,"id":6881},{"__isSmartRef__":true,"id":6882},{"__isSmartRef__":true,"id":6883},{"__isSmartRef__":true,"id":6884},{"__isSmartRef__":true,"id":6885},{"__isSmartRef__":true,"id":6886},{"__isSmartRef__":true,"id":6887},{"__isSmartRef__":true,"id":6888}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6865":{"name":"getPosition","type":"propertyDef","startIndex":319,"stopIndex":397,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6866":{"name":"setExtent","type":"propertyDef","startIndex":399,"stopIndex":493,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6867":{"name":"getExtent","type":"propertyDef","startIndex":495,"stopIndex":568,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6868":{"name":"setBounds","type":"propertyDef","startIndex":570,"stopIndex":716,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6869":{"name":"getBounds","type":"propertyDef","startIndex":718,"stopIndex":798,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6870":{"name":"bounds","type":"propertyDef","startIndex":800,"stopIndex":850,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6871":{"name":"setFill","type":"propertyDef","startIndex":853,"stopIndex":922,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6872":{"name":"getFill","type":"propertyDef","startIndex":924,"stopIndex":991,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6873":{"name":"setFillOpacity","type":"propertyDef","startIndex":993,"stopIndex":1150,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6874":{"name":"getFillOpacity","type":"propertyDef","startIndex":1152,"stopIndex":1282,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6875":{"name":"setBorderWidth","type":"propertyDef","startIndex":1284,"stopIndex":1369,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6876":{"name":"getBorderWidth","type":"propertyDef","startIndex":1371,"stopIndex":1450,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6877":{"name":"setBorderColor","type":"propertyDef","startIndex":1452,"stopIndex":1535,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6878":{"name":"getBorderColor","type":"propertyDef","startIndex":1537,"stopIndex":1681,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6879":{"name":"setStrokeOpacity","type":"propertyDef","startIndex":1683,"stopIndex":1776,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6880":{"name":"getStrokeOpacity","type":"propertyDef","startIndex":1778,"stopIndex":1912,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6881":{"name":"setBorderRadius","type":"propertyDef","startIndex":1914,"stopIndex":1994,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6882":{"name":"getBorderRadius","type":"propertyDef","startIndex":1996,"stopIndex":2077,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6883":{"name":"setBorderStyle","type":"propertyDef","startIndex":2079,"stopIndex":2269,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6884":{"name":"getBorderStyle","type":"propertyDef","startIndex":2271,"stopIndex":2355,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6885":{"name":"setOpacity","type":"propertyDef","startIndex":2359,"stopIndex":2440,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6886":{"name":"getOpacity","type":"propertyDef","startIndex":2442,"stopIndex":2572,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6887":{"name":"vertices","type":"propertyDef","startIndex":2576,"stopIndex":2692,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6888":{"name":"setVertices","type":"propertyDef","startIndex":2694,"stopIndex":2778,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6864},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":6860},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6889":{"name":null,"type":"comment","startIndex":2786,"stopIndex":2786,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6890":{"name":"lively.morphic.Shapes.Rectangle","type":"klassDef","startIndex":2787,"stopIndex":2859,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.Shape","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6891":{"name":null,"type":"comment","startIndex":2860,"stopIndex":2860,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6892":{"name":"lively.morphic.Shapes.Ellipse","type":"klassDef","startIndex":2861,"stopIndex":2931,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.Shape","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6893":{"name":null,"type":"comment","startIndex":2932,"stopIndex":2932,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6894":{"name":"lively.morphic.Shapes.Image","type":"klassDef","startIndex":2933,"stopIndex":3447,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6895},{"__isSmartRef__":true,"id":6897},{"__isSmartRef__":true,"id":6899},{"__isSmartRef__":true,"id":6900}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.Shape","categories":[{"__isSmartRef__":true,"id":6896},{"__isSmartRef__":true,"id":6898}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6895":{"name":"initialize","type":"propertyDef","startIndex":3019,"stopIndex":3179,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6896},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6896":{"name":"initializing","type":"categoryDef","startIndex":3001,"stopIndex":3182,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6895}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6897":{"name":"setImageURL","type":"propertyDef","startIndex":3199,"stopIndex":3282,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6898},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6898":{"name":"accessing","type":"categoryDef","startIndex":3184,"stopIndex":3444,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6897},{"__isSmartRef__":true,"id":6899},{"__isSmartRef__":true,"id":6900}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6899":{"name":"getImageURL","type":"propertyDef","startIndex":3284,"stopIndex":3351,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6898},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6900":{"name":"getNativeExtent","type":"propertyDef","startIndex":3353,"stopIndex":3441,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6898},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":6894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6901":{"name":null,"type":"comment","startIndex":3448,"stopIndex":3449,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6902":{"name":"lively.morphic.Shapes.External","type":"klassDef","startIndex":3450,"stopIndex":4716,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6903},{"__isSmartRef__":true,"id":6905},{"__isSmartRef__":true,"id":6907},{"__isSmartRef__":true,"id":6909},{"__isSmartRef__":true,"id":6910},{"__isSmartRef__":true,"id":6911}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Shapes.Shape","categories":[{"__isSmartRef__":true,"id":6904},{"__isSmartRef__":true,"id":6906},{"__isSmartRef__":true,"id":6908},{"__isSmartRef__":true,"id":6912}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6903":{"name":"documentation","type":"propertyDef","startIndex":3540,"stopIndex":3605,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6904},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6902},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6904":{"name":"documentation","type":"categoryDef","startIndex":3521,"stopIndex":3608,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6903}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6905":{"name":"initialize","type":"propertyDef","startIndex":3628,"stopIndex":3737,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6906},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6902},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6906":{"name":"initializing","type":"categoryDef","startIndex":3610,"stopIndex":3740,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6905}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6907":{"name":"doNotSerialize","type":"propertyDef","startIndex":3761,"stopIndex":3794,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6908},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6902},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6908":{"name":"serialization","type":"categoryDef","startIndex":3742,"stopIndex":4618,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6907},{"__isSmartRef__":true,"id":6909},{"__isSmartRef__":true,"id":6910}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6909":{"name":"onstore","type":"propertyDef","startIndex":3796,"stopIndex":3987,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6908},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6902},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6910":{"name":"onrestore","type":"propertyDef","startIndex":3989,"stopIndex":4615,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6908},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6902},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6911":{"name":"getExtent","type":"propertyDef","startIndex":4635,"stopIndex":4711,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6912},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":6902},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6912":{"name":"accessing","type":"categoryDef","startIndex":4620,"stopIndex":4713,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6911}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6913":{"name":null,"type":"comment","startIndex":4717,"stopIndex":4717,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6914":{"name":"lively.morphic.Gradient","type":"klassDef","startIndex":4718,"stopIndex":5277,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6915},{"__isSmartRef__":true,"id":6917},{"__isSmartRef__":true,"id":6919},{"__isSmartRef__":true,"id":6921},{"__isSmartRef__":true,"id":6922}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":6916},{"__isSmartRef__":true,"id":6918},{"__isSmartRef__":true,"id":6920}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6915":{"name":"isGradient","type":"propertyDef","startIndex":4777,"stopIndex":4797,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6916},"className":"lively.morphic.Gradient","_owner":{"__isSmartRef__":true,"id":6914},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6916":{"name":"properties","type":"categoryDef","startIndex":4761,"stopIndex":4800,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6915}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6917":{"name":"initialize","type":"propertyDef","startIndex":4820,"stopIndex":4889,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6918},"className":"lively.morphic.Gradient","_owner":{"__isSmartRef__":true,"id":6914},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6918":{"name":"initializing","type":"categoryDef","startIndex":4802,"stopIndex":4892,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6917}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6919":{"name":"setStops","type":"propertyDef","startIndex":4909,"stopIndex":4980,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6920},"className":"lively.morphic.Gradient","_owner":{"__isSmartRef__":true,"id":6914},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6920":{"name":"accessing","type":"categoryDef","startIndex":4894,"stopIndex":5274,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6919},{"__isSmartRef__":true,"id":6921},{"__isSmartRef__":true,"id":6922}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6921":{"name":"getStopsLighter","type":"propertyDef","startIndex":4982,"stopIndex":5127,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6920},"className":"lively.morphic.Gradient","_owner":{"__isSmartRef__":true,"id":6914},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6922":{"name":"getStopsDarker","type":"propertyDef","startIndex":5129,"stopIndex":5272,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6920},"className":"lively.morphic.Gradient","_owner":{"__isSmartRef__":true,"id":6914},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6923":{"name":null,"type":"comment","startIndex":5278,"stopIndex":5279,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6924":{"name":"lively.morphic.LinearGradient","type":"klassDef","startIndex":5280,"stopIndex":6761,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6925},{"__isSmartRef__":true,"id":6927},{"__isSmartRef__":true,"id":6929},{"__isSmartRef__":true,"id":6931},{"__isSmartRef__":true,"id":6933},{"__isSmartRef__":true,"id":6934}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Gradient","categories":[{"__isSmartRef__":true,"id":6926},{"__isSmartRef__":true,"id":6928},{"__isSmartRef__":true,"id":6930},{"__isSmartRef__":true,"id":6932},{"__isSmartRef__":true,"id":6935}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6925":{"name":"vectors","type":"propertyDef","startIndex":5362,"stopIndex":5689,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6926},"className":"lively.morphic.LinearGradient","_owner":{"__isSmartRef__":true,"id":6924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6926":{"name":"properties","type":"categoryDef","startIndex":5346,"stopIndex":5692,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6925}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6927":{"name":"initialize","type":"propertyDef","startIndex":5712,"stopIndex":5822,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6928},"className":"lively.morphic.LinearGradient","_owner":{"__isSmartRef__":true,"id":6924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6928":{"name":"initializing","type":"categoryDef","startIndex":5694,"stopIndex":5825,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6927}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6929":{"name":"setVector","type":"propertyDef","startIndex":5842,"stopIndex":6003,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6930},"className":"lively.morphic.LinearGradient","_owner":{"__isSmartRef__":true,"id":6924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6930":{"name":"accessing","type":"categoryDef","startIndex":5827,"stopIndex":6006,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6929}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6931":{"name":"lighter","type":"propertyDef","startIndex":6025,"stopIndex":6117,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6932},"className":"lively.morphic.LinearGradient","_owner":{"__isSmartRef__":true,"id":6924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6932":{"name":"convenience","type":"categoryDef","startIndex":6008,"stopIndex":6212,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6931},{"__isSmartRef__":true,"id":6933}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6933":{"name":"darker","type":"propertyDef","startIndex":6119,"stopIndex":6209,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6932},"className":"lively.morphic.LinearGradient","_owner":{"__isSmartRef__":true,"id":6924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6934":{"name":"toCSSString","type":"propertyDef","startIndex":6233,"stopIndex":6755,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6935},"className":"lively.morphic.LinearGradient","_owner":{"__isSmartRef__":true,"id":6924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6935":{"name":"HTML rendering","type":"categoryDef","startIndex":6214,"stopIndex":6758,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6934}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6936":{"name":null,"type":"comment","startIndex":6762,"stopIndex":6763,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6937":{"name":"lively.morphic.RadialGradient","type":"klassDef","startIndex":6764,"stopIndex":8080,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6938},{"__isSmartRef__":true,"id":6940},{"__isSmartRef__":true,"id":6942},{"__isSmartRef__":true,"id":6943}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Gradient","categories":[{"__isSmartRef__":true,"id":6939},{"__isSmartRef__":true,"id":6941},{"__isSmartRef__":true,"id":6944}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6938":{"name":"initialize","type":"propertyDef","startIndex":6848,"stopIndex":6968,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6939},"className":"lively.morphic.RadialGradient","_owner":{"__isSmartRef__":true,"id":6937},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6939":{"name":"initializing","type":"categoryDef","startIndex":6830,"stopIndex":6971,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6938}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6940":{"name":"lighter","type":"propertyDef","startIndex":6990,"stopIndex":7081,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6941},"className":"lively.morphic.RadialGradient","_owner":{"__isSmartRef__":true,"id":6937},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6941":{"name":"convenience","type":"categoryDef","startIndex":6973,"stopIndex":7175,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6940},{"__isSmartRef__":true,"id":6942}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6942":{"name":"darker","type":"propertyDef","startIndex":7083,"stopIndex":7172,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6941},"className":"lively.morphic.RadialGradient","_owner":{"__isSmartRef__":true,"id":6937},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6943":{"name":"toCSSString","type":"propertyDef","startIndex":7187,"stopIndex":8075,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":6944},"className":"lively.morphic.RadialGradient","_owner":{"__isSmartRef__":true,"id":6937},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6944":{"name":"HTML","type":"categoryDef","startIndex":7177,"stopIndex":8077,"fileName":"lively/morphic/Shapes.js","_subElements":[{"__isSmartRef__":true,"id":6943}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6945":{"name":null,"type":"comment","startIndex":8081,"stopIndex":8081,"fileName":"lively/morphic/Shapes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6946":{"target":{"__isSmartRef__":true,"id":6947},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Styles.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"6947":{"name":"lively.morphic.Styles","type":"moduleDef","startIndex":0,"stopIndex":19647,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":6948},{"__isSmartRef__":true,"id":6949},{"__isSmartRef__":true,"id":7091},{"__isSmartRef__":true,"id":7092},{"__isSmartRef__":true,"id":7096},{"__isSmartRef__":true,"id":7097},{"__isSmartRef__":true,"id":7098},{"__isSmartRef__":true,"id":7105},{"__isSmartRef__":true,"id":7106},{"__isSmartRef__":true,"id":7107},{"__isSmartRef__":true,"id":7108},{"__isSmartRef__":true,"id":7113},{"__isSmartRef__":true,"id":7114},{"__isSmartRef__":true,"id":7115},{"__isSmartRef__":true,"id":7116},{"__isSmartRef__":true,"id":7117},{"__isSmartRef__":true,"id":7144},{"__isSmartRef__":true,"id":7145},{"__isSmartRef__":true,"id":7165},{"__isSmartRef__":true,"id":7166},{"__isSmartRef__":true,"id":7195}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6948":{"name":null,"type":"comment","startIndex":125,"stopIndex":125,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6949":{"name":"Color.web","type":"objectDef","startIndex":126,"stopIndex":5445,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":6950},{"__isSmartRef__":true,"id":6952},{"__isSmartRef__":true,"id":6953},{"__isSmartRef__":true,"id":6954},{"__isSmartRef__":true,"id":6955},{"__isSmartRef__":true,"id":6956},{"__isSmartRef__":true,"id":6957},{"__isSmartRef__":true,"id":6958},{"__isSmartRef__":true,"id":6959},{"__isSmartRef__":true,"id":6960},{"__isSmartRef__":true,"id":6961},{"__isSmartRef__":true,"id":6962},{"__isSmartRef__":true,"id":6963},{"__isSmartRef__":true,"id":6964},{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":6966},{"__isSmartRef__":true,"id":6967},{"__isSmartRef__":true,"id":6968},{"__isSmartRef__":true,"id":6969},{"__isSmartRef__":true,"id":6970},{"__isSmartRef__":true,"id":6971},{"__isSmartRef__":true,"id":6972},{"__isSmartRef__":true,"id":6973},{"__isSmartRef__":true,"id":6974},{"__isSmartRef__":true,"id":6975},{"__isSmartRef__":true,"id":6976},{"__isSmartRef__":true,"id":6977},{"__isSmartRef__":true,"id":6978},{"__isSmartRef__":true,"id":6979},{"__isSmartRef__":true,"id":6980},{"__isSmartRef__":true,"id":6981},{"__isSmartRef__":true,"id":6982},{"__isSmartRef__":true,"id":6983},{"__isSmartRef__":true,"id":6984},{"__isSmartRef__":true,"id":6985},{"__isSmartRef__":true,"id":6986},{"__isSmartRef__":true,"id":6987},{"__isSmartRef__":true,"id":6988},{"__isSmartRef__":true,"id":6989},{"__isSmartRef__":true,"id":6990},{"__isSmartRef__":true,"id":6991},{"__isSmartRef__":true,"id":6992},{"__isSmartRef__":true,"id":6993},{"__isSmartRef__":true,"id":6994},{"__isSmartRef__":true,"id":6995},{"__isSmartRef__":true,"id":6996},{"__isSmartRef__":true,"id":6997},{"__isSmartRef__":true,"id":6998},{"__isSmartRef__":true,"id":6999},{"__isSmartRef__":true,"id":7000},{"__isSmartRef__":true,"id":7001},{"__isSmartRef__":true,"id":7002},{"__isSmartRef__":true,"id":7003},{"__isSmartRef__":true,"id":7004},{"__isSmartRef__":true,"id":7005},{"__isSmartRef__":true,"id":7006},{"__isSmartRef__":true,"id":7007},{"__isSmartRef__":true,"id":7008},{"__isSmartRef__":true,"id":7009},{"__isSmartRef__":true,"id":7010},{"__isSmartRef__":true,"id":7011},{"__isSmartRef__":true,"id":7012},{"__isSmartRef__":true,"id":7013},{"__isSmartRef__":true,"id":7014},{"__isSmartRef__":true,"id":7015},{"__isSmartRef__":true,"id":7016},{"__isSmartRef__":true,"id":7017},{"__isSmartRef__":true,"id":7018},{"__isSmartRef__":true,"id":7019},{"__isSmartRef__":true,"id":7020},{"__isSmartRef__":true,"id":7021},{"__isSmartRef__":true,"id":7022},{"__isSmartRef__":true,"id":7023},{"__isSmartRef__":true,"id":7024},{"__isSmartRef__":true,"id":7025},{"__isSmartRef__":true,"id":7026},{"__isSmartRef__":true,"id":7027},{"__isSmartRef__":true,"id":7028},{"__isSmartRef__":true,"id":7029},{"__isSmartRef__":true,"id":7030},{"__isSmartRef__":true,"id":7031},{"__isSmartRef__":true,"id":7032},{"__isSmartRef__":true,"id":7033},{"__isSmartRef__":true,"id":7034},{"__isSmartRef__":true,"id":7035},{"__isSmartRef__":true,"id":7036},{"__isSmartRef__":true,"id":7037},{"__isSmartRef__":true,"id":7038},{"__isSmartRef__":true,"id":7039},{"__isSmartRef__":true,"id":7040},{"__isSmartRef__":true,"id":7041},{"__isSmartRef__":true,"id":7042},{"__isSmartRef__":true,"id":7043},{"__isSmartRef__":true,"id":7044},{"__isSmartRef__":true,"id":7045},{"__isSmartRef__":true,"id":7046},{"__isSmartRef__":true,"id":7047},{"__isSmartRef__":true,"id":7048},{"__isSmartRef__":true,"id":7049},{"__isSmartRef__":true,"id":7050},{"__isSmartRef__":true,"id":7051},{"__isSmartRef__":true,"id":7052},{"__isSmartRef__":true,"id":7053},{"__isSmartRef__":true,"id":7054},{"__isSmartRef__":true,"id":7055},{"__isSmartRef__":true,"id":7056},{"__isSmartRef__":true,"id":7057},{"__isSmartRef__":true,"id":7058},{"__isSmartRef__":true,"id":7059},{"__isSmartRef__":true,"id":7060},{"__isSmartRef__":true,"id":7061},{"__isSmartRef__":true,"id":7062},{"__isSmartRef__":true,"id":7063},{"__isSmartRef__":true,"id":7064},{"__isSmartRef__":true,"id":7065},{"__isSmartRef__":true,"id":7066},{"__isSmartRef__":true,"id":7067},{"__isSmartRef__":true,"id":7068},{"__isSmartRef__":true,"id":7069},{"__isSmartRef__":true,"id":7070},{"__isSmartRef__":true,"id":7071},{"__isSmartRef__":true,"id":7072},{"__isSmartRef__":true,"id":7073},{"__isSmartRef__":true,"id":7074},{"__isSmartRef__":true,"id":7075},{"__isSmartRef__":true,"id":7076},{"__isSmartRef__":true,"id":7077},{"__isSmartRef__":true,"id":7078},{"__isSmartRef__":true,"id":7079},{"__isSmartRef__":true,"id":7080},{"__isSmartRef__":true,"id":7081},{"__isSmartRef__":true,"id":7082},{"__isSmartRef__":true,"id":7083},{"__isSmartRef__":true,"id":7084},{"__isSmartRef__":true,"id":7085},{"__isSmartRef__":true,"id":7086},{"__isSmartRef__":true,"id":7087},{"__isSmartRef__":true,"id":7088},{"__isSmartRef__":true,"id":7089},{"__isSmartRef__":true,"id":7090}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6950":{"name":"maroon","type":"propertyDef","startIndex":140,"stopIndex":170,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6951":{"name":"default category","type":"categoryDef","startIndex":12,"stopIndex":5317,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":6950},{"__isSmartRef__":true,"id":6952},{"__isSmartRef__":true,"id":6953},{"__isSmartRef__":true,"id":6954},{"__isSmartRef__":true,"id":6955},{"__isSmartRef__":true,"id":6956},{"__isSmartRef__":true,"id":6957},{"__isSmartRef__":true,"id":6958},{"__isSmartRef__":true,"id":6959},{"__isSmartRef__":true,"id":6960},{"__isSmartRef__":true,"id":6961},{"__isSmartRef__":true,"id":6962},{"__isSmartRef__":true,"id":6963},{"__isSmartRef__":true,"id":6964},{"__isSmartRef__":true,"id":6965},{"__isSmartRef__":true,"id":6966},{"__isSmartRef__":true,"id":6967},{"__isSmartRef__":true,"id":6968},{"__isSmartRef__":true,"id":6969},{"__isSmartRef__":true,"id":6970},{"__isSmartRef__":true,"id":6971},{"__isSmartRef__":true,"id":6972},{"__isSmartRef__":true,"id":6973},{"__isSmartRef__":true,"id":6974},{"__isSmartRef__":true,"id":6975},{"__isSmartRef__":true,"id":6976},{"__isSmartRef__":true,"id":6977},{"__isSmartRef__":true,"id":6978},{"__isSmartRef__":true,"id":6979},{"__isSmartRef__":true,"id":6980},{"__isSmartRef__":true,"id":6981},{"__isSmartRef__":true,"id":6982},{"__isSmartRef__":true,"id":6983},{"__isSmartRef__":true,"id":6984},{"__isSmartRef__":true,"id":6985},{"__isSmartRef__":true,"id":6986},{"__isSmartRef__":true,"id":6987},{"__isSmartRef__":true,"id":6988},{"__isSmartRef__":true,"id":6989},{"__isSmartRef__":true,"id":6990},{"__isSmartRef__":true,"id":6991},{"__isSmartRef__":true,"id":6992},{"__isSmartRef__":true,"id":6993},{"__isSmartRef__":true,"id":6994},{"__isSmartRef__":true,"id":6995},{"__isSmartRef__":true,"id":6996},{"__isSmartRef__":true,"id":6997},{"__isSmartRef__":true,"id":6998},{"__isSmartRef__":true,"id":6999},{"__isSmartRef__":true,"id":7000},{"__isSmartRef__":true,"id":7001},{"__isSmartRef__":true,"id":7002},{"__isSmartRef__":true,"id":7003},{"__isSmartRef__":true,"id":7004},{"__isSmartRef__":true,"id":7005},{"__isSmartRef__":true,"id":7006},{"__isSmartRef__":true,"id":7007},{"__isSmartRef__":true,"id":7008},{"__isSmartRef__":true,"id":7009},{"__isSmartRef__":true,"id":7010},{"__isSmartRef__":true,"id":7011},{"__isSmartRef__":true,"id":7012},{"__isSmartRef__":true,"id":7013},{"__isSmartRef__":true,"id":7014},{"__isSmartRef__":true,"id":7015},{"__isSmartRef__":true,"id":7016},{"__isSmartRef__":true,"id":7017},{"__isSmartRef__":true,"id":7018},{"__isSmartRef__":true,"id":7019},{"__isSmartRef__":true,"id":7020},{"__isSmartRef__":true,"id":7021},{"__isSmartRef__":true,"id":7022},{"__isSmartRef__":true,"id":7023},{"__isSmartRef__":true,"id":7024},{"__isSmartRef__":true,"id":7025},{"__isSmartRef__":true,"id":7026},{"__isSmartRef__":true,"id":7027},{"__isSmartRef__":true,"id":7028},{"__isSmartRef__":true,"id":7029},{"__isSmartRef__":true,"id":7030},{"__isSmartRef__":true,"id":7031},{"__isSmartRef__":true,"id":7032},{"__isSmartRef__":true,"id":7033},{"__isSmartRef__":true,"id":7034},{"__isSmartRef__":true,"id":7035},{"__isSmartRef__":true,"id":7036},{"__isSmartRef__":true,"id":7037},{"__isSmartRef__":true,"id":7038},{"__isSmartRef__":true,"id":7039},{"__isSmartRef__":true,"id":7040},{"__isSmartRef__":true,"id":7041},{"__isSmartRef__":true,"id":7042},{"__isSmartRef__":true,"id":7043},{"__isSmartRef__":true,"id":7044},{"__isSmartRef__":true,"id":7045},{"__isSmartRef__":true,"id":7046},{"__isSmartRef__":true,"id":7047},{"__isSmartRef__":true,"id":7048},{"__isSmartRef__":true,"id":7049},{"__isSmartRef__":true,"id":7050},{"__isSmartRef__":true,"id":7051},{"__isSmartRef__":true,"id":7052},{"__isSmartRef__":true,"id":7053},{"__isSmartRef__":true,"id":7054},{"__isSmartRef__":true,"id":7055},{"__isSmartRef__":true,"id":7056},{"__isSmartRef__":true,"id":7057},{"__isSmartRef__":true,"id":7058},{"__isSmartRef__":true,"id":7059},{"__isSmartRef__":true,"id":7060},{"__isSmartRef__":true,"id":7061},{"__isSmartRef__":true,"id":7062},{"__isSmartRef__":true,"id":7063},{"__isSmartRef__":true,"id":7064},{"__isSmartRef__":true,"id":7065},{"__isSmartRef__":true,"id":7066},{"__isSmartRef__":true,"id":7067},{"__isSmartRef__":true,"id":7068},{"__isSmartRef__":true,"id":7069},{"__isSmartRef__":true,"id":7070},{"__isSmartRef__":true,"id":7071},{"__isSmartRef__":true,"id":7072},{"__isSmartRef__":true,"id":7073},{"__isSmartRef__":true,"id":7074},{"__isSmartRef__":true,"id":7075},{"__isSmartRef__":true,"id":7076},{"__isSmartRef__":true,"id":7077},{"__isSmartRef__":true,"id":7078},{"__isSmartRef__":true,"id":7079},{"__isSmartRef__":true,"id":7080},{"__isSmartRef__":true,"id":7081},{"__isSmartRef__":true,"id":7082},{"__isSmartRef__":true,"id":7083},{"__isSmartRef__":true,"id":7084},{"__isSmartRef__":true,"id":7085},{"__isSmartRef__":true,"id":7086},{"__isSmartRef__":true,"id":7087},{"__isSmartRef__":true,"id":7088},{"__isSmartRef__":true,"id":7089},{"__isSmartRef__":true,"id":7090}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6952":{"name":"darkred","type":"propertyDef","startIndex":172,"stopIndex":203,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6953":{"name":"firebrick","type":"propertyDef","startIndex":205,"stopIndex":240,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6954":{"name":"brown","type":"propertyDef","startIndex":242,"stopIndex":273,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6955":{"name":"crimson","type":"propertyDef","startIndex":275,"stopIndex":308,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6956":{"name":"red","type":"propertyDef","startIndex":310,"stopIndex":337,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6957":{"name":"orangered","type":"propertyDef","startIndex":339,"stopIndex":373,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6958":{"name":"indianred","type":"propertyDef","startIndex":375,"stopIndex":410,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6959":{"name":"darksalmon","type":"propertyDef","startIndex":412,"stopIndex":450,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6960":{"name":"lightsalmon","type":"propertyDef","startIndex":452,"stopIndex":491,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6961":{"name":"coral","type":"propertyDef","startIndex":493,"stopIndex":525,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6962":{"name":"tomato","type":"propertyDef","startIndex":527,"stopIndex":559,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6963":{"name":"salmon","type":"propertyDef","startIndex":561,"stopIndex":595,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6964":{"name":"lightcoral","type":"propertyDef","startIndex":597,"stopIndex":635,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6965":{"name":"palevioletred","type":"propertyDef","startIndex":637,"stopIndex":678,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6966":{"name":"mediumvioletred","type":"propertyDef","startIndex":680,"stopIndex":722,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6967":{"name":"deeppink","type":"propertyDef","startIndex":724,"stopIndex":759,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6968":{"name":"fuchsia","type":"propertyDef","startIndex":761,"stopIndex":794,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6969":{"name":"magenta","type":"propertyDef","startIndex":796,"stopIndex":829,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6970":{"name":"hotpink","type":"propertyDef","startIndex":831,"stopIndex":866,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6971":{"name":"lightpink","type":"propertyDef","startIndex":868,"stopIndex":905,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6972":{"name":"pink","type":"propertyDef","startIndex":907,"stopIndex":939,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6973":{"name":"thistle","type":"propertyDef","startIndex":941,"stopIndex":976,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6974":{"name":"plum","type":"propertyDef","startIndex":978,"stopIndex":1010,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6975":{"name":"violet","type":"propertyDef","startIndex":1012,"stopIndex":1046,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6976":{"name":"orchid","type":"propertyDef","startIndex":1048,"stopIndex":1082,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6977":{"name":"mediumorchid","type":"propertyDef","startIndex":1084,"stopIndex":1123,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6978":{"name":"darkorchid","type":"propertyDef","startIndex":1125,"stopIndex":1162,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6979":{"name":"darkviolet","type":"propertyDef","startIndex":1164,"stopIndex":1200,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6980":{"name":"purple","type":"propertyDef","startIndex":1202,"stopIndex":1234,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6981":{"name":"darkmagenta","type":"propertyDef","startIndex":1236,"stopIndex":1273,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6982":{"name":"indigo","type":"propertyDef","startIndex":1275,"stopIndex":1309,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6983":{"name":"blueviolet","type":"propertyDef","startIndex":1311,"stopIndex":1348,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6984":{"name":"mediumpurple","type":"propertyDef","startIndex":1350,"stopIndex":1390,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6985":{"name":"mediumslateblue","type":"propertyDef","startIndex":1392,"stopIndex":1435,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6986":{"name":"slateblue","type":"propertyDef","startIndex":1437,"stopIndex":1473,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6987":{"name":"darkslateblue","type":"propertyDef","startIndex":1475,"stopIndex":1514,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6988":{"name":"midnightblue","type":"propertyDef","startIndex":1516,"stopIndex":1554,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6989":{"name":"navy","type":"propertyDef","startIndex":1556,"stopIndex":1584,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6990":{"name":"darkblue","type":"propertyDef","startIndex":1586,"stopIndex":1618,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6991":{"name":"mediumblue","type":"propertyDef","startIndex":1620,"stopIndex":1654,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6992":{"name":"blue","type":"propertyDef","startIndex":1656,"stopIndex":1684,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6993":{"name":"royalblue","type":"propertyDef","startIndex":1686,"stopIndex":1722,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6994":{"name":"cornflowerblue","type":"propertyDef","startIndex":1724,"stopIndex":1766,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6995":{"name":"steelblue","type":"propertyDef","startIndex":1768,"stopIndex":1804,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6996":{"name":"dodgerblue","type":"propertyDef","startIndex":1806,"stopIndex":1843,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6997":{"name":"deepskyblue","type":"propertyDef","startIndex":1845,"stopIndex":1882,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6998":{"name":"lightskyblue","type":"propertyDef","startIndex":1884,"stopIndex":1924,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"6999":{"name":"skyblue","type":"propertyDef","startIndex":1926,"stopIndex":1961,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7000":{"name":"lightsteelblue","type":"propertyDef","startIndex":1963,"stopIndex":2005,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7001":{"name":"lightblue","type":"propertyDef","startIndex":2007,"stopIndex":2044,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7002":{"name":"powderblue","type":"propertyDef","startIndex":2046,"stopIndex":2084,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7003":{"name":"paleturquoise","type":"propertyDef","startIndex":2086,"stopIndex":2127,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7004":{"name":"mediumturquoise","type":"propertyDef","startIndex":2129,"stopIndex":2171,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7005":{"name":"lightseagreen","type":"propertyDef","startIndex":2173,"stopIndex":2213,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7006":{"name":"darkcyan","type":"propertyDef","startIndex":2215,"stopIndex":2249,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7007":{"name":"teal","type":"propertyDef","startIndex":2251,"stopIndex":2281,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7008":{"name":"cadetblue","type":"propertyDef","startIndex":2283,"stopIndex":2319,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7009":{"name":"darkturquoise","type":"propertyDef","startIndex":2321,"stopIndex":2360,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7010":{"name":"aqua","type":"propertyDef","startIndex":2362,"stopIndex":2392,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7011":{"name":"cyan","type":"propertyDef","startIndex":2394,"stopIndex":2424,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7012":{"name":"turquoise","type":"propertyDef","startIndex":2426,"stopIndex":2462,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7013":{"name":"aquamarine","type":"propertyDef","startIndex":2464,"stopIndex":2502,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7014":{"name":"mediumaquamarine","type":"propertyDef","startIndex":2504,"stopIndex":2548,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7015":{"name":"darkseagreen","type":"propertyDef","startIndex":2550,"stopIndex":2590,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7016":{"name":"mediumseagreen","type":"propertyDef","startIndex":2592,"stopIndex":2633,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7017":{"name":"seagreen","type":"propertyDef","startIndex":2635,"stopIndex":2669,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7018":{"name":"darkgreen","type":"propertyDef","startIndex":2671,"stopIndex":2704,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7019":{"name":"green","type":"propertyDef","startIndex":2706,"stopIndex":2735,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7020":{"name":"forestgreen","type":"propertyDef","startIndex":2737,"stopIndex":2774,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7021":{"name":"limegreen","type":"propertyDef","startIndex":2776,"stopIndex":2811,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7022":{"name":"springgreen","type":"propertyDef","startIndex":2813,"stopIndex":2850,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7023":{"name":"mediumspringgreen","type":"propertyDef","startIndex":2852,"stopIndex":2895,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7024":{"name":"palegreen","type":"propertyDef","startIndex":2897,"stopIndex":2934,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7025":{"name":"lightgreen","type":"propertyDef","startIndex":2936,"stopIndex":2974,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7026":{"name":"lime","type":"propertyDef","startIndex":2976,"stopIndex":3004,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7027":{"name":"chartreuse","type":"propertyDef","startIndex":3006,"stopIndex":3042,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7028":{"name":"lawngreen","type":"propertyDef","startIndex":3044,"stopIndex":3079,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7029":{"name":"greenyellow","type":"propertyDef","startIndex":3081,"stopIndex":3119,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7030":{"name":"yellowgreen","type":"propertyDef","startIndex":3121,"stopIndex":3159,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7031":{"name":"darkolivegreen","type":"propertyDef","startIndex":3161,"stopIndex":3201,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7032":{"name":"olivedrab","type":"propertyDef","startIndex":3203,"stopIndex":3239,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7033":{"name":"olive","type":"propertyDef","startIndex":3241,"stopIndex":3272,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7034":{"name":"darkkhaki","type":"propertyDef","startIndex":3274,"stopIndex":3311,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7035":{"name":"darkgoldenrod","type":"propertyDef","startIndex":3313,"stopIndex":3353,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7036":{"name":"goldenrod","type":"propertyDef","startIndex":3355,"stopIndex":3391,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7037":{"name":"gold","type":"propertyDef","startIndex":3393,"stopIndex":3423,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7038":{"name":"yellow","type":"propertyDef","startIndex":3425,"stopIndex":3457,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7039":{"name":"khaki","type":"propertyDef","startIndex":3459,"stopIndex":3492,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7040":{"name":"palegoldenrod","type":"propertyDef","startIndex":3494,"stopIndex":3535,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7041":{"name":"sandybrown","type":"propertyDef","startIndex":3537,"stopIndex":3574,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7042":{"name":"orange","type":"propertyDef","startIndex":3576,"stopIndex":3608,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7043":{"name":"darkorange","type":"propertyDef","startIndex":3610,"stopIndex":3646,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7044":{"name":"chocolate","type":"propertyDef","startIndex":3648,"stopIndex":3684,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7045":{"name":"saddlebrown","type":"propertyDef","startIndex":3686,"stopIndex":3723,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7046":{"name":"sienna","type":"propertyDef","startIndex":3725,"stopIndex":3757,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7047":{"name":"peru","type":"propertyDef","startIndex":3759,"stopIndex":3790,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7048":{"name":"burlywood","type":"propertyDef","startIndex":3792,"stopIndex":3829,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7049":{"name":"tan","type":"propertyDef","startIndex":3831,"stopIndex":3862,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7050":{"name":"wheat","type":"propertyDef","startIndex":3864,"stopIndex":3897,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7051":{"name":"navajowhite","type":"propertyDef","startIndex":3899,"stopIndex":3938,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7052":{"name":"moccasin","type":"propertyDef","startIndex":3940,"stopIndex":3976,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7053":{"name":"blanchedalmond","type":"propertyDef","startIndex":3978,"stopIndex":4020,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7054":{"name":"rosybrown","type":"propertyDef","startIndex":4022,"stopIndex":4059,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7055":{"name":"mistyrose","type":"propertyDef","startIndex":4061,"stopIndex":4098,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7056":{"name":"lavenderblush","type":"propertyDef","startIndex":4100,"stopIndex":4141,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7057":{"name":"lavender","type":"propertyDef","startIndex":4143,"stopIndex":4179,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7058":{"name":"ghostwhite","type":"propertyDef","startIndex":4181,"stopIndex":4219,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7059":{"name":"azure","type":"propertyDef","startIndex":4221,"stopIndex":4254,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7060":{"name":"lightcyan","type":"propertyDef","startIndex":4256,"stopIndex":4293,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7061":{"name":"aliceblue","type":"propertyDef","startIndex":4295,"stopIndex":4332,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7062":{"name":"mintcream","type":"propertyDef","startIndex":4334,"stopIndex":4371,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7063":{"name":"honeydew","type":"propertyDef","startIndex":4373,"stopIndex":4409,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7064":{"name":"lightgoldenrodyellow","type":"propertyDef","startIndex":4411,"stopIndex":4459,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7065":{"name":"lemonchiffon","type":"propertyDef","startIndex":4461,"stopIndex":4501,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7066":{"name":"beige","type":"propertyDef","startIndex":4503,"stopIndex":4536,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7067":{"name":"lightyellow","type":"propertyDef","startIndex":4538,"stopIndex":4577,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7068":{"name":"ivory","type":"propertyDef","startIndex":4579,"stopIndex":4612,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7069":{"name":"floralwhite","type":"propertyDef","startIndex":4614,"stopIndex":4653,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7070":{"name":"linen","type":"propertyDef","startIndex":4655,"stopIndex":4688,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7071":{"name":"oldlace","type":"propertyDef","startIndex":4690,"stopIndex":4725,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7072":{"name":"cornsilk","type":"propertyDef","startIndex":4727,"stopIndex":4763,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7073":{"name":"antiquewhite","type":"propertyDef","startIndex":4765,"stopIndex":4805,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7074":{"name":"bisque","type":"propertyDef","startIndex":4807,"stopIndex":4841,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7075":{"name":"peachpuff","type":"propertyDef","startIndex":4843,"stopIndex":4880,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7076":{"name":"papayawhip","type":"propertyDef","startIndex":4882,"stopIndex":4920,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7077":{"name":"seashell","type":"propertyDef","startIndex":4922,"stopIndex":4958,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7078":{"name":"snow","type":"propertyDef","startIndex":4960,"stopIndex":4992,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7079":{"name":"white","type":"propertyDef","startIndex":4994,"stopIndex":5027,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7080":{"name":"whitesmoke","type":"propertyDef","startIndex":5029,"stopIndex":5067,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7081":{"name":"gainsboro","type":"propertyDef","startIndex":5069,"stopIndex":5106,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7082":{"name":"lightgrey","type":"propertyDef","startIndex":5108,"stopIndex":5145,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7083":{"name":"silver","type":"propertyDef","startIndex":5147,"stopIndex":5181,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7084":{"name":"darkgray","type":"propertyDef","startIndex":5183,"stopIndex":5219,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7085":{"name":"gray","type":"propertyDef","startIndex":5221,"stopIndex":5253,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7086":{"name":"dimgray","type":"propertyDef","startIndex":5255,"stopIndex":5290,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7087":{"name":"lightslategray","type":"propertyDef","startIndex":5292,"stopIndex":5334,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7088":{"name":"slategray","type":"propertyDef","startIndex":5336,"stopIndex":5373,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7089":{"name":"darkslategray","type":"propertyDef","startIndex":5375,"stopIndex":5413,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7090":{"name":"black","type":"propertyDef","startIndex":5415,"stopIndex":5442,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":6951},"_owner":{"__isSmartRef__":true,"id":6949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7091":{"name":null,"type":"comment","startIndex":5446,"stopIndex":5446,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7092":{"name":"Color","type":"klassExtensionDef","startIndex":5447,"stopIndex":6224,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7093},{"__isSmartRef__":true,"id":7095}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7094}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7093":{"name":"webColorTableMorph","type":"propertyDef","startIndex":5475,"stopIndex":6121,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7094},"className":"Color","_owner":{"__isSmartRef__":true,"id":7092},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7094":{"name":"default category","type":"categoryDef","startIndex":5468,"stopIndex":6221,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7093},{"__isSmartRef__":true,"id":7095}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7095":{"name":"showWebColorTable","type":"propertyDef","startIndex":6132,"stopIndex":6220,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7094},"className":"Color","_owner":{"__isSmartRef__":true,"id":7092},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7096":{"name":null,"type":"comment","startIndex":6225,"stopIndex":6225,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7097":{"name":"Styles","type":"klassDef","startIndex":6226,"stopIndex":6252,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7098":{"name":"Styles","type":"klassExtensionDef","startIndex":6253,"stopIndex":8187,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7099},{"__isSmartRef__":true,"id":7101},{"__isSmartRef__":true,"id":7102},{"__isSmartRef__":true,"id":7103},{"__isSmartRef__":true,"id":7104}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7100}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7099":{"name":"titleBarButtonGradient","type":"propertyDef","startIndex":6277,"stopIndex":6593,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7100},"className":"Styles","_owner":{"__isSmartRef__":true,"id":7098},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7100":{"name":"default category","type":"categoryDef","startIndex":6275,"stopIndex":8184,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7099},{"__isSmartRef__":true,"id":7101},{"__isSmartRef__":true,"id":7102},{"__isSmartRef__":true,"id":7103},{"__isSmartRef__":true,"id":7104}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7101":{"name":"linearGradient","type":"propertyDef","startIndex":6596,"stopIndex":6943,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7100},"className":"Styles","_owner":{"__isSmartRef__":true,"id":7098},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7102":{"name":"radialGradient","type":"propertyDef","startIndex":6946,"stopIndex":7201,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7100},"className":"Styles","_owner":{"__isSmartRef__":true,"id":7098},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7103":{"name":"sliderGradient","type":"propertyDef","startIndex":7208,"stopIndex":7685,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7100},"className":"Styles","_owner":{"__isSmartRef__":true,"id":7098},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7104":{"name":"sliderBackgroundGradient","type":"propertyDef","startIndex":7688,"stopIndex":8181,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7100},"className":"Styles","_owner":{"__isSmartRef__":true,"id":7098},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7105":{"name":null,"type":"unknown","startIndex":8188,"stopIndex":8218,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7106":{"name":"Global.DisplayThemes","type":"objectDef","startIndex":8219,"stopIndex":8245,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7107":{"name":null,"type":"comment","startIndex":8246,"stopIndex":8246,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7108":{"name":"DisplayThemes","type":"klassExtensionDef","startIndex":8247,"stopIndex":8453,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7109},{"__isSmartRef__":true,"id":7111},{"__isSmartRef__":true,"id":7112}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7110}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7109":{"name":"primitive","type":"propertyDef","startIndex":8402,"stopIndex":8419,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7110},"className":"DisplayThemes","_owner":{"__isSmartRef__":true,"id":7108},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7110":{"name":"default category","type":"categoryDef","startIndex":8276,"stopIndex":8450,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7109},{"__isSmartRef__":true,"id":7111},{"__isSmartRef__":true,"id":7112}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7111":{"name":"lively","type":"propertyDef","startIndex":8421,"stopIndex":8435,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7110},"className":"DisplayThemes","_owner":{"__isSmartRef__":true,"id":7108},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7112":{"name":"hpi","type":"propertyDef","startIndex":8437,"stopIndex":8448,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7110},"className":"DisplayThemes","_owner":{"__isSmartRef__":true,"id":7108},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7113":{"name":null,"type":"comment","startIndex":8454,"stopIndex":8454,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7114":{"name":"__proto__","type":"propertyDef","startIndex":8455,"stopIndex":8512,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"DisplayThemes.lively","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7115":{"name":"__proto__","type":"propertyDef","startIndex":8513,"stopIndex":8564,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"DisplayThemes.hpi","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7116":{"name":null,"type":"comment","startIndex":8565,"stopIndex":8565,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7117":{"name":"DisplayThemes.primitive","type":"klassExtensionDef","startIndex":8566,"stopIndex":11562,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7118},{"__isSmartRef__":true,"id":7120},{"__isSmartRef__":true,"id":7121},{"__isSmartRef__":true,"id":7122},{"__isSmartRef__":true,"id":7123},{"__isSmartRef__":true,"id":7124},{"__isSmartRef__":true,"id":7125},{"__isSmartRef__":true,"id":7126},{"__isSmartRef__":true,"id":7127},{"__isSmartRef__":true,"id":7128},{"__isSmartRef__":true,"id":7129},{"__isSmartRef__":true,"id":7130},{"__isSmartRef__":true,"id":7131},{"__isSmartRef__":true,"id":7132},{"__isSmartRef__":true,"id":7133},{"__isSmartRef__":true,"id":7134},{"__isSmartRef__":true,"id":7135},{"__isSmartRef__":true,"id":7136},{"__isSmartRef__":true,"id":7137},{"__isSmartRef__":true,"id":7138},{"__isSmartRef__":true,"id":7139},{"__isSmartRef__":true,"id":7140},{"__isSmartRef__":true,"id":7141},{"__isSmartRef__":true,"id":7142},{"__isSmartRef__":true,"id":7143}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7119}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7118":{"name":"styleName","type":"propertyDef","startIndex":8608,"stopIndex":8712,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7119":{"name":"default category","type":"categoryDef","startIndex":8605,"stopIndex":11559,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7118},{"__isSmartRef__":true,"id":7120},{"__isSmartRef__":true,"id":7121},{"__isSmartRef__":true,"id":7122},{"__isSmartRef__":true,"id":7123},{"__isSmartRef__":true,"id":7124},{"__isSmartRef__":true,"id":7125},{"__isSmartRef__":true,"id":7126},{"__isSmartRef__":true,"id":7127},{"__isSmartRef__":true,"id":7128},{"__isSmartRef__":true,"id":7129},{"__isSmartRef__":true,"id":7130},{"__isSmartRef__":true,"id":7131},{"__isSmartRef__":true,"id":7132},{"__isSmartRef__":true,"id":7133},{"__isSmartRef__":true,"id":7134},{"__isSmartRef__":true,"id":7135},{"__isSmartRef__":true,"id":7136},{"__isSmartRef__":true,"id":7137},{"__isSmartRef__":true,"id":7138},{"__isSmartRef__":true,"id":7139},{"__isSmartRef__":true,"id":7140},{"__isSmartRef__":true,"id":7141},{"__isSmartRef__":true,"id":7142},{"__isSmartRef__":true,"id":7143}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7120":{"name":"widgetPanel","type":"propertyDef","startIndex":8729,"stopIndex":8869,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7121":{"name":"panel","type":"propertyDef","startIndex":8872,"stopIndex":8985,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7122":{"name":"link","type":"propertyDef","startIndex":8988,"stopIndex":9091,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7123":{"name":"helpText","type":"propertyDef","startIndex":9094,"stopIndex":9214,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7124":{"name":"button","type":"propertyDef","startIndex":9219,"stopIndex":9354,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7125":{"name":"Browser_codePane","type":"propertyDef","startIndex":9372,"stopIndex":9436,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7126":{"name":"Browser_codePaneText","type":"propertyDef","startIndex":9439,"stopIndex":9598,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7127":{"name":"Browser_locationInput","type":"propertyDef","startIndex":9601,"stopIndex":9670,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7128":{"name":"Browser_resizer","type":"propertyDef","startIndex":9673,"stopIndex":9746,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7129":{"name":"Browser_commentPane","type":"propertyDef","startIndex":9749,"stopIndex":9816,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7130":{"name":"Browser_commentPaneText","type":"propertyDef","startIndex":9819,"stopIndex":9890,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7131":{"name":"slider","type":"propertyDef","startIndex":9912,"stopIndex":10061,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7132":{"name":"slider_background","type":"propertyDef","startIndex":10068,"stopIndex":10189,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7133":{"name":"slider_horizontal","type":"propertyDef","startIndex":10192,"stopIndex":10352,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7134":{"name":"slider_background_horizontal","type":"propertyDef","startIndex":10355,"stopIndex":10487,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7135":{"name":"titleBar","type":"propertyDef","startIndex":10506,"stopIndex":10656,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7136":{"name":"titleBar_closeButton","type":"propertyDef","startIndex":10659,"stopIndex":10727,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7137":{"name":"titleBar_menuButton","type":"propertyDef","startIndex":10730,"stopIndex":10789,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7138":{"name":"titleBar_collapseButton","type":"propertyDef","startIndex":10792,"stopIndex":10864,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7139":{"name":"clock","type":"propertyDef","startIndex":10894,"stopIndex":11102,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7140":{"name":"fabrik","type":"propertyDef","startIndex":11105,"stopIndex":11267,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7141":{"name":"fabrik_componentBox","type":"propertyDef","startIndex":11270,"stopIndex":11444,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7142":{"name":"fabrik_listPane","type":"propertyDef","startIndex":11447,"stopIndex":11507,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7143":{"name":"world","type":"propertyDef","startIndex":11510,"stopIndex":11555,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7119},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":7117},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7144":{"name":null,"type":"comment","startIndex":11563,"stopIndex":11563,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7145":{"name":"DisplayThemes.lively","type":"klassExtensionDef","startIndex":11564,"stopIndex":15510,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7146},{"__isSmartRef__":true,"id":7148},{"__isSmartRef__":true,"id":7149},{"__isSmartRef__":true,"id":7150},{"__isSmartRef__":true,"id":7151},{"__isSmartRef__":true,"id":7152},{"__isSmartRef__":true,"id":7153},{"__isSmartRef__":true,"id":7154},{"__isSmartRef__":true,"id":7155},{"__isSmartRef__":true,"id":7156},{"__isSmartRef__":true,"id":7157},{"__isSmartRef__":true,"id":7158},{"__isSmartRef__":true,"id":7159},{"__isSmartRef__":true,"id":7160},{"__isSmartRef__":true,"id":7161},{"__isSmartRef__":true,"id":7162},{"__isSmartRef__":true,"id":7163},{"__isSmartRef__":true,"id":7164}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7147}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7146":{"name":"styleName","type":"propertyDef","startIndex":11603,"stopIndex":11626,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7147":{"name":"default category","type":"categoryDef","startIndex":11600,"stopIndex":15507,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7146},{"__isSmartRef__":true,"id":7148},{"__isSmartRef__":true,"id":7149},{"__isSmartRef__":true,"id":7150},{"__isSmartRef__":true,"id":7151},{"__isSmartRef__":true,"id":7152},{"__isSmartRef__":true,"id":7153},{"__isSmartRef__":true,"id":7154},{"__isSmartRef__":true,"id":7155},{"__isSmartRef__":true,"id":7156},{"__isSmartRef__":true,"id":7157},{"__isSmartRef__":true,"id":7158},{"__isSmartRef__":true,"id":7159},{"__isSmartRef__":true,"id":7160},{"__isSmartRef__":true,"id":7161},{"__isSmartRef__":true,"id":7162},{"__isSmartRef__":true,"id":7163},{"__isSmartRef__":true,"id":7164}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7148":{"name":"raisedBorder","type":"propertyDef","startIndex":11643,"stopIndex":11852,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7149":{"name":"button","type":"propertyDef","startIndex":11855,"stopIndex":12105,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7150":{"name":"widgetPanel","type":"propertyDef","startIndex":12112,"stopIndex":12271,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7151":{"name":"panel","type":"propertyDef","startIndex":12282,"stopIndex":12404,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7152":{"name":"link","type":"propertyDef","startIndex":12407,"stopIndex":12509,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7153":{"name":"helpText","type":"propertyDef","startIndex":12512,"stopIndex":12633,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7154":{"name":"slider","type":"propertyDef","startIndex":12650,"stopIndex":13013,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7155":{"name":"slider_background","type":"propertyDef","startIndex":13016,"stopIndex":13385,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7156":{"name":"slider_horizontal","type":"propertyDef","startIndex":13388,"stopIndex":13760,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7157":{"name":"slider_background_horizontal","type":"propertyDef","startIndex":13763,"stopIndex":14126,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7158":{"name":"titleBar","type":"propertyDef","startIndex":14146,"stopIndex":14469,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7159":{"name":"titleBar_closeButton","type":"propertyDef","startIndex":14472,"stopIndex":14571,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7160":{"name":"titleBar_menuButton","type":"propertyDef","startIndex":14574,"stopIndex":14671,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7161":{"name":"titleBar_collapseButton","type":"propertyDef","startIndex":14674,"stopIndex":14777,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7162":{"name":"clock","type":"propertyDef","startIndex":14795,"stopIndex":15015,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7163":{"name":"fabrik","type":"propertyDef","startIndex":15019,"stopIndex":15180,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7164":{"name":"world","type":"propertyDef","startIndex":15183,"stopIndex":15506,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7147},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":7145},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7165":{"name":null,"type":"comment","startIndex":15511,"stopIndex":15511,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7166":{"name":"DisplayThemes.hpi","type":"klassExtensionDef","startIndex":15512,"stopIndex":19627,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7167},{"__isSmartRef__":true,"id":7169},{"__isSmartRef__":true,"id":7170},{"__isSmartRef__":true,"id":7171},{"__isSmartRef__":true,"id":7172},{"__isSmartRef__":true,"id":7173},{"__isSmartRef__":true,"id":7174},{"__isSmartRef__":true,"id":7175},{"__isSmartRef__":true,"id":7176},{"__isSmartRef__":true,"id":7177},{"__isSmartRef__":true,"id":7178},{"__isSmartRef__":true,"id":7179},{"__isSmartRef__":true,"id":7180},{"__isSmartRef__":true,"id":7181},{"__isSmartRef__":true,"id":7182},{"__isSmartRef__":true,"id":7183},{"__isSmartRef__":true,"id":7184},{"__isSmartRef__":true,"id":7185},{"__isSmartRef__":true,"id":7186},{"__isSmartRef__":true,"id":7187},{"__isSmartRef__":true,"id":7188},{"__isSmartRef__":true,"id":7189},{"__isSmartRef__":true,"id":7190},{"__isSmartRef__":true,"id":7191},{"__isSmartRef__":true,"id":7192},{"__isSmartRef__":true,"id":7193},{"__isSmartRef__":true,"id":7194}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7168}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7167":{"name":"styleName","type":"propertyDef","startIndex":15548,"stopIndex":15568,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7168":{"name":"default category","type":"categoryDef","startIndex":15545,"stopIndex":19624,"fileName":"lively/morphic/Styles.js","_subElements":[{"__isSmartRef__":true,"id":7167},{"__isSmartRef__":true,"id":7169},{"__isSmartRef__":true,"id":7170},{"__isSmartRef__":true,"id":7171},{"__isSmartRef__":true,"id":7172},{"__isSmartRef__":true,"id":7173},{"__isSmartRef__":true,"id":7174},{"__isSmartRef__":true,"id":7175},{"__isSmartRef__":true,"id":7176},{"__isSmartRef__":true,"id":7177},{"__isSmartRef__":true,"id":7178},{"__isSmartRef__":true,"id":7179},{"__isSmartRef__":true,"id":7180},{"__isSmartRef__":true,"id":7181},{"__isSmartRef__":true,"id":7182},{"__isSmartRef__":true,"id":7183},{"__isSmartRef__":true,"id":7184},{"__isSmartRef__":true,"id":7185},{"__isSmartRef__":true,"id":7186},{"__isSmartRef__":true,"id":7187},{"__isSmartRef__":true,"id":7188},{"__isSmartRef__":true,"id":7189},{"__isSmartRef__":true,"id":7190},{"__isSmartRef__":true,"id":7191},{"__isSmartRef__":true,"id":7192},{"__isSmartRef__":true,"id":7193},{"__isSmartRef__":true,"id":7194}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7169":{"name":"raisedBorder","type":"propertyDef","startIndex":15586,"stopIndex":15770,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7170":{"name":"button","type":"propertyDef","startIndex":15773,"stopIndex":16143,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7171":{"name":"widgetPanel","type":"propertyDef","startIndex":16146,"stopIndex":16323,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7172":{"name":"focusHalo","type":"propertyDef","startIndex":16326,"stopIndex":16438,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7173":{"name":"panel","type":"propertyDef","startIndex":16441,"stopIndex":16567,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7174":{"name":"link","type":"propertyDef","startIndex":16570,"stopIndex":16672,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7175":{"name":"helpText","type":"propertyDef","startIndex":16675,"stopIndex":16796,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7176":{"name":"menu_items","type":"propertyDef","startIndex":16817,"stopIndex":16900,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7177":{"name":"menu_list","type":"propertyDef","startIndex":16903,"stopIndex":16958,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7178":{"name":"slider","type":"propertyDef","startIndex":16975,"stopIndex":17218,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7179":{"name":"slider_background","type":"propertyDef","startIndex":17221,"stopIndex":17437,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7180":{"name":"slider_horizontal","type":"propertyDef","startIndex":17440,"stopIndex":17655,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7181":{"name":"slider_background_horizontal","type":"propertyDef","startIndex":17658,"stopIndex":17859,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7182":{"name":"titleBar","type":"propertyDef","startIndex":17886,"stopIndex":18265,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7183":{"name":"titleBar_label","type":"propertyDef","startIndex":18268,"stopIndex":18315,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7184":{"name":"titleBar_label_highlight","type":"propertyDef","startIndex":18318,"stopIndex":18408,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7185":{"name":"titleBar_button_label","type":"propertyDef","startIndex":18411,"stopIndex":18519,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7186":{"name":"titleBar_closeButton","type":"propertyDef","startIndex":18522,"stopIndex":18611,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7187":{"name":"titleBar_menuButton","type":"propertyDef","startIndex":18614,"stopIndex":18703,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7188":{"name":"titleBar_collapseButton","type":"propertyDef","startIndex":18706,"stopIndex":18801,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7189":{"name":"titleBar_closeButton_highlight","type":"propertyDef","startIndex":18804,"stopIndex":18914,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7190":{"name":"titleBar_menuButton_highlight","type":"propertyDef","startIndex":18917,"stopIndex":19046,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7191":{"name":"titleBar_collapseButton_highlight","type":"propertyDef","startIndex":19049,"stopIndex":19192,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7192":{"name":"clock","type":"propertyDef","startIndex":19209,"stopIndex":19405,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7193":{"name":"fabrik","type":"propertyDef","startIndex":19410,"stopIndex":19571,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7194":{"name":"world","type":"propertyDef","startIndex":19574,"stopIndex":19620,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7168},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":7166},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7195":{"name":null,"type":"comment","startIndex":19628,"stopIndex":19628,"fileName":"lively/morphic/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7196":{"target":{"__isSmartRef__":true,"id":7197},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/SVG.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"7197":{"name":"lively.morphic.SVG","type":"moduleDef","startIndex":0,"stopIndex":10643,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7198},{"__isSmartRef__":true,"id":7199},{"__isSmartRef__":true,"id":7202},{"__isSmartRef__":true,"id":7203},{"__isSmartRef__":true,"id":7219},{"__isSmartRef__":true,"id":7220},{"__isSmartRef__":true,"id":7236},{"__isSmartRef__":true,"id":7237},{"__isSmartRef__":true,"id":7254},{"__isSmartRef__":true,"id":7257},{"__isSmartRef__":true,"id":7258},{"__isSmartRef__":true,"id":7263},{"__isSmartRef__":true,"id":7266},{"__isSmartRef__":true,"id":7269},{"__isSmartRef__":true,"id":7270},{"__isSmartRef__":true,"id":7285}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7198":{"name":null,"type":"comment","startIndex":114,"stopIndex":114,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7199":{"name":"lively.morphic.SVG.RenderContext","type":"klassDef","startIndex":115,"stopIndex":264,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7200}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Rendering.RenderContext","categories":[{"__isSmartRef__":true,"id":7201}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7200":{"name":"renderContextTableName","type":"propertyDef","startIndex":213,"stopIndex":259,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7201},"className":"lively.morphic.SVG.RenderContext","_owner":{"__isSmartRef__":true,"id":7199},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7201":{"name":"settings","type":"categoryDef","startIndex":199,"stopIndex":261,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7200}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7202":{"name":null,"type":"comment","startIndex":265,"stopIndex":265,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7203":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":266,"stopIndex":2925,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7204},{"__isSmartRef__":true,"id":7206},{"__isSmartRef__":true,"id":7208},{"__isSmartRef__":true,"id":7209},{"__isSmartRef__":true,"id":7211},{"__isSmartRef__":true,"id":7212},{"__isSmartRef__":true,"id":7213},{"__isSmartRef__":true,"id":7214},{"__isSmartRef__":true,"id":7216},{"__isSmartRef__":true,"id":7218}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7205},{"__isSmartRef__":true,"id":7207},{"__isSmartRef__":true,"id":7210},{"__isSmartRef__":true,"id":7215},{"__isSmartRef__":true,"id":7217}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7204":{"name":"svgDispatchTable","type":"propertyDef","startIndex":324,"stopIndex":661,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7205},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7205":{"name":"SVG render settings","type":"categoryDef","startIndex":299,"stopIndex":664,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7204}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7206":{"name":"setPositionSVG","type":"propertyDef","startIndex":680,"stopIndex":846,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7207},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7207":{"name":"updating","type":"categoryDef","startIndex":666,"stopIndex":1018,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7206},{"__isSmartRef__":true,"id":7208}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7208":{"name":"setRotationSVG","type":"propertyDef","startIndex":848,"stopIndex":1014,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7207},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7209":{"name":"renderWithSVG","type":"propertyDef","startIndex":1035,"stopIndex":1157,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7210},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7210":{"name":"rendering","type":"categoryDef","startIndex":1020,"stopIndex":2432,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7209},{"__isSmartRef__":true,"id":7211},{"__isSmartRef__":true,"id":7212},{"__isSmartRef__":true,"id":7213}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7211":{"name":"initSVG","type":"propertyDef","startIndex":1159,"stopIndex":1320,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7210},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7212":{"name":"appendSVG","type":"propertyDef","startIndex":1322,"stopIndex":2318,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7210},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7213":{"name":"replaceRenderContextSVG","type":"propertyDef","startIndex":2321,"stopIndex":2427,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7210},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7214":{"name":"removeSVG","type":"propertyDef","startIndex":2448,"stopIndex":2709,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7215},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7215":{"name":"removing","type":"categoryDef","startIndex":2434,"stopIndex":2712,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7214}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7216":{"name":"setPointerEventsSVG","type":"propertyDef","startIndex":2738,"stopIndex":2864,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7217},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7217":{"name":"event specific SVG","type":"categoryDef","startIndex":2714,"stopIndex":2922,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7216},{"__isSmartRef__":true,"id":7218}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7218":{"name":"setHandStyleSVG","type":"propertyDef","startIndex":2866,"stopIndex":2919,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7217},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7219":{"name":null,"type":"comment","startIndex":2926,"stopIndex":2926,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7220":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":2927,"stopIndex":4811,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7221},{"__isSmartRef__":true,"id":7223},{"__isSmartRef__":true,"id":7225},{"__isSmartRef__":true,"id":7226},{"__isSmartRef__":true,"id":7227},{"__isSmartRef__":true,"id":7228},{"__isSmartRef__":true,"id":7229},{"__isSmartRef__":true,"id":7230},{"__isSmartRef__":true,"id":7232},{"__isSmartRef__":true,"id":7233},{"__isSmartRef__":true,"id":7235}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7222},{"__isSmartRef__":true,"id":7224},{"__isSmartRef__":true,"id":7231},{"__isSmartRef__":true,"id":7234}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7221":{"name":"svgDispatchTable","type":"propertyDef","startIndex":2984,"stopIndex":3361,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7222},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7222":{"name":"SVG render settings","type":"categoryDef","startIndex":2959,"stopIndex":3364,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7221}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7223":{"name":"initSVG","type":"propertyDef","startIndex":3381,"stopIndex":3562,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7224},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7224":{"name":"rendering","type":"categoryDef","startIndex":3366,"stopIndex":4372,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7223},{"__isSmartRef__":true,"id":7225},{"__isSmartRef__":true,"id":7226},{"__isSmartRef__":true,"id":7227},{"__isSmartRef__":true,"id":7228},{"__isSmartRef__":true,"id":7229}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7225":{"name":"appendSVG","type":"propertyDef","startIndex":3564,"stopIndex":3692,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7224},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7226":{"name":"appendTextSVG","type":"propertyDef","startIndex":3694,"stopIndex":4095,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7224},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7227":{"name":"updateTextSVG","type":"propertyDef","startIndex":4097,"stopIndex":4225,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7224},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7228":{"name":"setMaxTextHeightSVG","type":"propertyDef","startIndex":4227,"stopIndex":4297,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7224},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7229":{"name":"setMaxTextWidthSVG","type":"propertyDef","startIndex":4299,"stopIndex":4368,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7224},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7230":{"name":"createTextNodeSVG","type":"propertyDef","startIndex":4393,"stopIndex":4564,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7231},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7231":{"name":"node creation","type":"categoryDef","startIndex":4374,"stopIndex":4652,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7230},{"__isSmartRef__":true,"id":7232}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7232":{"name":"getTextExtentSVG","type":"propertyDef","startIndex":4566,"stopIndex":4648,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7231},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7233":{"name":"getTextStringSVG","type":"propertyDef","startIndex":4673,"stopIndex":4757,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7234},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7234":{"name":"accessing SVG","type":"categoryDef","startIndex":4654,"stopIndex":4808,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7233},{"__isSmartRef__":true,"id":7235}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7235":{"name":"ignoreTextEventsSVG","type":"propertyDef","startIndex":4759,"stopIndex":4805,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7234},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7220},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7236":{"name":null,"type":"comment","startIndex":4812,"stopIndex":4812,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7237":{"name":"lively.morphic.Shapes.Shape","type":"klassExtensionDef","startIndex":4813,"stopIndex":7413,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7238},{"__isSmartRef__":true,"id":7240},{"__isSmartRef__":true,"id":7242},{"__isSmartRef__":true,"id":7243},{"__isSmartRef__":true,"id":7245},{"__isSmartRef__":true,"id":7246},{"__isSmartRef__":true,"id":7247},{"__isSmartRef__":true,"id":7248},{"__isSmartRef__":true,"id":7249},{"__isSmartRef__":true,"id":7250},{"__isSmartRef__":true,"id":7251},{"__isSmartRef__":true,"id":7252}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7239},{"__isSmartRef__":true,"id":7241},{"__isSmartRef__":true,"id":7244},{"__isSmartRef__":true,"id":7253}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7238":{"name":"svgDispatchTable","type":"propertyDef","startIndex":4878,"stopIndex":5302,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7239},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7239":{"name":"SVG render settings","type":"categoryDef","startIndex":4853,"stopIndex":5305,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7238}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7240":{"name":"initSVG","type":"propertyDef","startIndex":5326,"stopIndex":5777,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7241},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7241":{"name":"SVG rendering","type":"categoryDef","startIndex":5307,"stopIndex":5940,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7240},{"__isSmartRef__":true,"id":7242}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7242":{"name":"renderSVG","type":"propertyDef","startIndex":5779,"stopIndex":5937,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7241},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7243":{"name":"setPositionSVG","type":"propertyDef","startIndex":5960,"stopIndex":6099,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7244":{"name":"SVG updating","type":"categoryDef","startIndex":5942,"stopIndex":7304,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7243},{"__isSmartRef__":true,"id":7245},{"__isSmartRef__":true,"id":7246},{"__isSmartRef__":true,"id":7247},{"__isSmartRef__":true,"id":7248},{"__isSmartRef__":true,"id":7249},{"__isSmartRef__":true,"id":7250},{"__isSmartRef__":true,"id":7251}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7245":{"name":"setExtentSVG","type":"propertyDef","startIndex":6101,"stopIndex":6553,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7246":{"name":"setFillSVG","type":"propertyDef","startIndex":6555,"stopIndex":6686,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7247":{"name":"setBorderColorSVG","type":"propertyDef","startIndex":6688,"stopIndex":6724,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7248":{"name":"setBorderWidthSVG","type":"propertyDef","startIndex":6726,"stopIndex":6894,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7249":{"name":"setStrokeOpacitySVG","type":"propertyDef","startIndex":6896,"stopIndex":6934,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7250":{"name":"setBorderRadiusSVG","type":"propertyDef","startIndex":6936,"stopIndex":6973,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7251":{"name":"setBorderStyleSVG","type":"propertyDef","startIndex":6975,"stopIndex":7300,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7244},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7252":{"name":"createShapeNode","type":"propertyDef","startIndex":7328,"stopIndex":7409,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7253},"className":"lively.morphic.Shapes.Shape","_owner":{"__isSmartRef__":true,"id":7237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7253":{"name":"SVG DOM elements","type":"categoryDef","startIndex":7306,"stopIndex":7411,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7252}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7254":{"name":"lively.morphic.Shapes.Rectangle","type":"klassExtensionDef","startIndex":7414,"stopIndex":7557,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7255}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7256}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7255":{"name":"createShapeNode","type":"propertyDef","startIndex":7480,"stopIndex":7552,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7256},"className":"lively.morphic.Shapes.Rectangle","_owner":{"__isSmartRef__":true,"id":7254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7256":{"name":"SVG DOM elements","type":"categoryDef","startIndex":7458,"stopIndex":7554,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7255}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7257":{"name":null,"type":"comment","startIndex":7558,"stopIndex":7558,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7258":{"name":"lively.morphic.Shapes.Ellipse","type":"klassExtensionDef","startIndex":7559,"stopIndex":8152,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7259},{"__isSmartRef__":true,"id":7261}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7260},{"__isSmartRef__":true,"id":7262}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7259":{"name":"setExtentSVG","type":"propertyDef","startIndex":7632,"stopIndex":8045,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7260},"className":"lively.morphic.Shapes.Ellipse","_owner":{"__isSmartRef__":true,"id":7258},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7260":{"name":"SVG specific manipulation","type":"categoryDef","startIndex":7601,"stopIndex":8048,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7259}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7261":{"name":"createShapeNode","type":"propertyDef","startIndex":8072,"stopIndex":8147,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7262},"className":"lively.morphic.Shapes.Ellipse","_owner":{"__isSmartRef__":true,"id":7258},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7262":{"name":"SVG DOM elements","type":"categoryDef","startIndex":8050,"stopIndex":8149,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7261}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7263":{"name":"lively.morphic.Shapes.Image","type":"klassExtensionDef","startIndex":8153,"stopIndex":8317,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7264}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7265}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7264":{"name":"createShapeNode","type":"propertyDef","startIndex":8212,"stopIndex":8312,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7265},"className":"lively.morphic.Shapes.Image","_owner":{"__isSmartRef__":true,"id":7263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7265":{"name":"SVG rendering","type":"categoryDef","startIndex":8193,"stopIndex":8314,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7264}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7266":{"name":"lively.morphic.Shapes.External","type":"klassExtensionDef","startIndex":8318,"stopIndex":8499,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7267}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7268}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7267":{"name":"initSVG","type":"propertyDef","startIndex":8376,"stopIndex":8494,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7268},"className":"lively.morphic.Shapes.External","_owner":{"__isSmartRef__":true,"id":7266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7268":{"name":"rendering","type":"categoryDef","startIndex":8361,"stopIndex":8496,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7267}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7269":{"name":null,"type":"comment","startIndex":8500,"stopIndex":8500,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7270":{"name":"lively.morphic.Shapes.Path","type":"klassExtensionDef","startIndex":8501,"stopIndex":10623,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7271},{"__isSmartRef__":true,"id":7273},{"__isSmartRef__":true,"id":7275},{"__isSmartRef__":true,"id":7277},{"__isSmartRef__":true,"id":7278},{"__isSmartRef__":true,"id":7279},{"__isSmartRef__":true,"id":7281},{"__isSmartRef__":true,"id":7282},{"__isSmartRef__":true,"id":7283},{"__isSmartRef__":true,"id":7284}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7272},{"__isSmartRef__":true,"id":7274},{"__isSmartRef__":true,"id":7276},{"__isSmartRef__":true,"id":7280}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7271":{"name":"svgDispatchTable","type":"propertyDef","startIndex":8565,"stopIndex":8788,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7272},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7272":{"name":"SVg render settings","type":"categoryDef","startIndex":8540,"stopIndex":8791,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7271}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7273":{"name":"initSVG","type":"propertyDef","startIndex":8812,"stopIndex":9071,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7274},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7274":{"name":"SVG rendering","type":"categoryDef","startIndex":8793,"stopIndex":9074,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7273}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7275":{"name":"setPathElementsSVG","type":"propertyDef","startIndex":9091,"stopIndex":9445,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7276},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7276":{"name":"accessing","type":"categoryDef","startIndex":9076,"stopIndex":9749,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7275},{"__isSmartRef__":true,"id":7277},{"__isSmartRef__":true,"id":7278}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7277":{"name":"setBorderColorSVG","type":"propertyDef","startIndex":9451,"stopIndex":9581,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7276},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7278":{"name":"setBorderWidthSVG","type":"propertyDef","startIndex":9583,"stopIndex":9744,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7276},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7279":{"name":"setElementsFromSVGData","type":"propertyDef","startIndex":9769,"stopIndex":9929,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7280},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7280":{"name":"svg specific","type":"categoryDef","startIndex":9751,"stopIndex":10620,"fileName":"lively/morphic/SVG.js","_subElements":[{"__isSmartRef__":true,"id":7279},{"__isSmartRef__":true,"id":7281},{"__isSmartRef__":true,"id":7282},{"__isSmartRef__":true,"id":7283},{"__isSmartRef__":true,"id":7284}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7281":{"name":"getPathNodeSVG","type":"propertyDef","startIndex":9931,"stopIndex":10002,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7280},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7282":{"name":"getPathBoundsSVG","type":"propertyDef","startIndex":10005,"stopIndex":10266,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7280},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7283":{"name":"getTotalLengthSVG","type":"propertyDef","startIndex":10274,"stopIndex":10420,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7280},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7284":{"name":"getPointAtTotalLengthSVG","type":"propertyDef","startIndex":10422,"stopIndex":10616,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7280},"className":"lively.morphic.Shapes.Path","_owner":{"__isSmartRef__":true,"id":7270},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7285":{"name":null,"type":"comment","startIndex":10624,"stopIndex":10624,"fileName":"lively/morphic/SVG.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7286":{"target":{"__isSmartRef__":true,"id":7287},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Tests.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"7287":{"name":"lively.morphic.Tests","type":"moduleDef","startIndex":0,"stopIndex":149,"fileName":"lively/morphic/Tests.js","_subElements":[{"__isSmartRef__":true,"id":7288}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7288":{"name":null,"type":"comment","startIndex":126,"stopIndex":126,"fileName":"lively/morphic/Tests.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7289":{"target":{"__isSmartRef__":true,"id":7290},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/TextCore.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"7290":{"name":"lively.morphic.TextCore","type":"moduleDef","startIndex":0,"stopIndex":90287,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7291},{"__isSmartRef__":true,"id":7292},{"__isSmartRef__":true,"id":7314},{"__isSmartRef__":true,"id":7315},{"__isSmartRef__":true,"id":7495},{"__isSmartRef__":true,"id":7496},{"__isSmartRef__":true,"id":7499},{"__isSmartRef__":true,"id":7511},{"__isSmartRef__":true,"id":7512},{"__isSmartRef__":true,"id":7552},{"__isSmartRef__":true,"id":7553},{"__isSmartRef__":true,"id":7587},{"__isSmartRef__":true,"id":7602},{"__isSmartRef__":true,"id":7603},{"__isSmartRef__":true,"id":7606},{"__isSmartRef__":true,"id":7607},{"__isSmartRef__":true,"id":7608},{"__isSmartRef__":true,"id":7609},{"__isSmartRef__":true,"id":7614}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7291":{"name":null,"type":"comment","startIndex":99,"stopIndex":100,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7292":{"name":"TextChunkOwner","type":"traitDef","startIndex":101,"stopIndex":6782,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7293},{"__isSmartRef__":true,"id":7295},{"__isSmartRef__":true,"id":7296},{"__isSmartRef__":true,"id":7297},{"__isSmartRef__":true,"id":7298},{"__isSmartRef__":true,"id":7299},{"__isSmartRef__":true,"id":7300},{"__isSmartRef__":true,"id":7302},{"__isSmartRef__":true,"id":7304},{"__isSmartRef__":true,"id":7306},{"__isSmartRef__":true,"id":7307},{"__isSmartRef__":true,"id":7308},{"__isSmartRef__":true,"id":7310},{"__isSmartRef__":true,"id":7311},{"__isSmartRef__":true,"id":7312},{"__isSmartRef__":true,"id":7313}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7293":{"name":"createChunk","type":"propertyDef","startIndex":140,"stopIndex":264,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7294},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7294":{"name":"accessing","type":"categoryDef","startIndex":24,"stopIndex":891,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":7293},{"__isSmartRef__":true,"id":7295},{"__isSmartRef__":true,"id":7296},{"__isSmartRef__":true,"id":7297},{"__isSmartRef__":true,"id":7298},{"__isSmartRef__":true,"id":7299}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7295":{"name":"getTextChunks","type":"propertyDef","startIndex":266,"stopIndex":449,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7294},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7296":{"name":"setTextChunks","type":"propertyDef","startIndex":451,"stopIndex":636,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7294},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7297":{"name":"setTextChunksFromTo","type":"propertyDef","startIndex":638,"stopIndex":676,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7294},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7298":{"name":"firstTextChunk","type":"propertyDef","startIndex":678,"stopIndex":756,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7294},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7299":{"name":"getChunkRanges","type":"propertyDef","startIndex":759,"stopIndex":988,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7294},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7300":{"name":"isFocused","type":"propertyDef","startIndex":1007,"stopIndex":1037,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7301},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7301":{"name":"testing","type":"categoryDef","startIndex":893,"stopIndex":939,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":7300}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7302":{"name":"removeTextChunks","type":"propertyDef","startIndex":1056,"stopIndex":1292,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7303},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7303":{"name":"removing","type":"categoryDef","startIndex":941,"stopIndex":1194,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":7302}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7304":{"name":"getChunkAndLocalIndex","type":"propertyDef","startIndex":1321,"stopIndex":2182,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7305},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7305":{"name":"chunk computations","type":"categoryDef","startIndex":1196,"stopIndex":3755,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":7304},{"__isSmartRef__":true,"id":7306},{"__isSmartRef__":true,"id":7307}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7306":{"name":"sliceTextChunks","type":"propertyDef","startIndex":2184,"stopIndex":3669,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7305},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7307":{"name":"coalesceChunks","type":"propertyDef","startIndex":3672,"stopIndex":3853,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7305},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7308":{"name":"fixChunks","type":"propertyDef","startIndex":3882,"stopIndex":4243,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7309},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7309":{"name":"garbage collection","type":"categoryDef","startIndex":3757,"stopIndex":6678,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":7308},{"__isSmartRef__":true,"id":7310},{"__isSmartRef__":true,"id":7311},{"__isSmartRef__":true,"id":7312},{"__isSmartRef__":true,"id":7313}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7310":{"name":"fixChunksDelayed","type":"propertyDef","startIndex":4245,"stopIndex":4329,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7309},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7311":{"name":"garbageCollectChunks","type":"propertyDef","startIndex":4331,"stopIndex":6324,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7309},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7312":{"name":"removeNonChunkNodes","type":"propertyDef","startIndex":6327,"stopIndex":6468,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7309},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7313":{"name":"fixTextBeforeAndAfterChunks","type":"propertyDef","startIndex":6471,"stopIndex":6777,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7309},"_owner":{"__isSmartRef__":true,"id":7292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7314":{"name":null,"type":"comment","startIndex":6783,"stopIndex":6783,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7315":{"name":"lively.morphic.Text","type":"klassDef","startIndex":6784,"stopIndex":69238,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7316},{"__isSmartRef__":true,"id":7318},{"__isSmartRef__":true,"id":7319},{"__isSmartRef__":true,"id":7320},{"__isSmartRef__":true,"id":7321},{"__isSmartRef__":true,"id":7322},{"__isSmartRef__":true,"id":7324},{"__isSmartRef__":true,"id":7326},{"__isSmartRef__":true,"id":7328},{"__isSmartRef__":true,"id":7329},{"__isSmartRef__":true,"id":7330},{"__isSmartRef__":true,"id":7331},{"__isSmartRef__":true,"id":7332},{"__isSmartRef__":true,"id":7333},{"__isSmartRef__":true,"id":7334},{"__isSmartRef__":true,"id":7335},{"__isSmartRef__":true,"id":7336},{"__isSmartRef__":true,"id":7337},{"__isSmartRef__":true,"id":7338},{"__isSmartRef__":true,"id":7339},{"__isSmartRef__":true,"id":7340},{"__isSmartRef__":true,"id":7341},{"__isSmartRef__":true,"id":7342},{"__isSmartRef__":true,"id":7343},{"__isSmartRef__":true,"id":7344},{"__isSmartRef__":true,"id":7345},{"__isSmartRef__":true,"id":7346},{"__isSmartRef__":true,"id":7347},{"__isSmartRef__":true,"id":7348},{"__isSmartRef__":true,"id":7349},{"__isSmartRef__":true,"id":7350},{"__isSmartRef__":true,"id":7351},{"__isSmartRef__":true,"id":7352},{"__isSmartRef__":true,"id":7353},{"__isSmartRef__":true,"id":7354},{"__isSmartRef__":true,"id":7356},{"__isSmartRef__":true,"id":7357},{"__isSmartRef__":true,"id":7359},{"__isSmartRef__":true,"id":7360},{"__isSmartRef__":true,"id":7362},{"__isSmartRef__":true,"id":7363},{"__isSmartRef__":true,"id":7364},{"__isSmartRef__":true,"id":7365},{"__isSmartRef__":true,"id":7366},{"__isSmartRef__":true,"id":7367},{"__isSmartRef__":true,"id":7368},{"__isSmartRef__":true,"id":7369},{"__isSmartRef__":true,"id":7370},{"__isSmartRef__":true,"id":7371},{"__isSmartRef__":true,"id":7372},{"__isSmartRef__":true,"id":7373},{"__isSmartRef__":true,"id":7374},{"__isSmartRef__":true,"id":7375},{"__isSmartRef__":true,"id":7376},{"__isSmartRef__":true,"id":7377},{"__isSmartRef__":true,"id":7378},{"__isSmartRef__":true,"id":7379},{"__isSmartRef__":true,"id":7380},{"__isSmartRef__":true,"id":7381},{"__isSmartRef__":true,"id":7382},{"__isSmartRef__":true,"id":7383},{"__isSmartRef__":true,"id":7384},{"__isSmartRef__":true,"id":7385},{"__isSmartRef__":true,"id":7386},{"__isSmartRef__":true,"id":7387},{"__isSmartRef__":true,"id":7389},{"__isSmartRef__":true,"id":7390},{"__isSmartRef__":true,"id":7391},{"__isSmartRef__":true,"id":7392},{"__isSmartRef__":true,"id":7393},{"__isSmartRef__":true,"id":7394},{"__isSmartRef__":true,"id":7395},{"__isSmartRef__":true,"id":7396},{"__isSmartRef__":true,"id":7397},{"__isSmartRef__":true,"id":7398},{"__isSmartRef__":true,"id":7399},{"__isSmartRef__":true,"id":7400},{"__isSmartRef__":true,"id":7401},{"__isSmartRef__":true,"id":7403},{"__isSmartRef__":true,"id":7404},{"__isSmartRef__":true,"id":7405},{"__isSmartRef__":true,"id":7407},{"__isSmartRef__":true,"id":7408},{"__isSmartRef__":true,"id":7409},{"__isSmartRef__":true,"id":7410},{"__isSmartRef__":true,"id":7411},{"__isSmartRef__":true,"id":7412},{"__isSmartRef__":true,"id":7413},{"__isSmartRef__":true,"id":7414},{"__isSmartRef__":true,"id":7415},{"__isSmartRef__":true,"id":7416},{"__isSmartRef__":true,"id":7417},{"__isSmartRef__":true,"id":7418},{"__isSmartRef__":true,"id":7419},{"__isSmartRef__":true,"id":7420},{"__isSmartRef__":true,"id":7421},{"__isSmartRef__":true,"id":7422},{"__isSmartRef__":true,"id":7423},{"__isSmartRef__":true,"id":7424},{"__isSmartRef__":true,"id":7425},{"__isSmartRef__":true,"id":7426},{"__isSmartRef__":true,"id":7427},{"__isSmartRef__":true,"id":7428},{"__isSmartRef__":true,"id":7429},{"__isSmartRef__":true,"id":7431},{"__isSmartRef__":true,"id":7432},{"__isSmartRef__":true,"id":7434},{"__isSmartRef__":true,"id":7435},{"__isSmartRef__":true,"id":7436},{"__isSmartRef__":true,"id":7437},{"__isSmartRef__":true,"id":7438},{"__isSmartRef__":true,"id":7440},{"__isSmartRef__":true,"id":7441},{"__isSmartRef__":true,"id":7443},{"__isSmartRef__":true,"id":7444},{"__isSmartRef__":true,"id":7446},{"__isSmartRef__":true,"id":7448},{"__isSmartRef__":true,"id":7449},{"__isSmartRef__":true,"id":7451},{"__isSmartRef__":true,"id":7452},{"__isSmartRef__":true,"id":7453},{"__isSmartRef__":true,"id":7454},{"__isSmartRef__":true,"id":7455},{"__isSmartRef__":true,"id":7456},{"__isSmartRef__":true,"id":7457},{"__isSmartRef__":true,"id":7458},{"__isSmartRef__":true,"id":7459},{"__isSmartRef__":true,"id":7461},{"__isSmartRef__":true,"id":7462},{"__isSmartRef__":true,"id":7463},{"__isSmartRef__":true,"id":7464},{"__isSmartRef__":true,"id":7465},{"__isSmartRef__":true,"id":7466},{"__isSmartRef__":true,"id":7467},{"__isSmartRef__":true,"id":7468},{"__isSmartRef__":true,"id":7469},{"__isSmartRef__":true,"id":7470},{"__isSmartRef__":true,"id":7471},{"__isSmartRef__":true,"id":7472},{"__isSmartRef__":true,"id":7473},{"__isSmartRef__":true,"id":7474},{"__isSmartRef__":true,"id":7475},{"__isSmartRef__":true,"id":7476},{"__isSmartRef__":true,"id":7477},{"__isSmartRef__":true,"id":7478},{"__isSmartRef__":true,"id":7479},{"__isSmartRef__":true,"id":7480},{"__isSmartRef__":true,"id":7482},{"__isSmartRef__":true,"id":7484},{"__isSmartRef__":true,"id":7485},{"__isSmartRef__":true,"id":7486},{"__isSmartRef__":true,"id":7487},{"__isSmartRef__":true,"id":7488},{"__isSmartRef__":true,"id":7489},{"__isSmartRef__":true,"id":7491},{"__isSmartRef__":true,"id":7492},{"__isSmartRef__":true,"id":7493},{"__isSmartRef__":true,"id":7494}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["ScrollableTrait","TextChunkOwner"],"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":7317},{"__isSmartRef__":true,"id":7323},{"__isSmartRef__":true,"id":7325},{"__isSmartRef__":true,"id":7327},{"__isSmartRef__":true,"id":7355},{"__isSmartRef__":true,"id":7358},{"__isSmartRef__":true,"id":7361},{"__isSmartRef__":true,"id":7388},{"__isSmartRef__":true,"id":7402},{"__isSmartRef__":true,"id":7406},{"__isSmartRef__":true,"id":7430},{"__isSmartRef__":true,"id":7433},{"__isSmartRef__":true,"id":7439},{"__isSmartRef__":true,"id":7442},{"__isSmartRef__":true,"id":7445},{"__isSmartRef__":true,"id":7447},{"__isSmartRef__":true,"id":7450},{"__isSmartRef__":true,"id":7460},{"__isSmartRef__":true,"id":7481},{"__isSmartRef__":true,"id":7483},{"__isSmartRef__":true,"id":7490}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7316":{"name":"isText","type":"propertyDef","startIndex":6904,"stopIndex":6920,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7317},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7317":{"name":"properties","type":"categoryDef","startIndex":6888,"stopIndex":7853,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7316},{"__isSmartRef__":true,"id":7318},{"__isSmartRef__":true,"id":7319},{"__isSmartRef__":true,"id":7320},{"__isSmartRef__":true,"id":7321}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7318":{"name":"allowInput","type":"propertyDef","startIndex":6922,"stopIndex":6942,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7317},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7319":{"name":"style","type":"propertyDef","startIndex":6944,"stopIndex":7320,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7317},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7320":{"name":"autoAdjustPadding","type":"propertyDef","startIndex":7327,"stopIndex":7354,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7317},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7321":{"name":"suppressDropping","type":"propertyDef","startIndex":7356,"stopIndex":7382,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7317},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7322":{"name":"initialize","type":"propertyDef","startIndex":7873,"stopIndex":8134,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7323},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7323":{"name":"initializing","type":"categoryDef","startIndex":7855,"stopIndex":8137,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7322}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7324":{"name":"applyStyle","type":"propertyDef","startIndex":8152,"stopIndex":9241,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7325},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7325":{"name":"styling","type":"categoryDef","startIndex":8139,"stopIndex":9244,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7324}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7326":{"name":"setExtent","type":"propertyDef","startIndex":9261,"stopIndex":9546,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7327":{"name":"accessing","type":"categoryDef","startIndex":9246,"stopIndex":12273,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7326},{"__isSmartRef__":true,"id":7328},{"__isSmartRef__":true,"id":7329},{"__isSmartRef__":true,"id":7330},{"__isSmartRef__":true,"id":7331},{"__isSmartRef__":true,"id":7332},{"__isSmartRef__":true,"id":7333},{"__isSmartRef__":true,"id":7334},{"__isSmartRef__":true,"id":7335},{"__isSmartRef__":true,"id":7336},{"__isSmartRef__":true,"id":7337},{"__isSmartRef__":true,"id":7338},{"__isSmartRef__":true,"id":7339},{"__isSmartRef__":true,"id":7340},{"__isSmartRef__":true,"id":7341},{"__isSmartRef__":true,"id":7342},{"__isSmartRef__":true,"id":7343},{"__isSmartRef__":true,"id":7344},{"__isSmartRef__":true,"id":7345},{"__isSmartRef__":true,"id":7346},{"__isSmartRef__":true,"id":7347},{"__isSmartRef__":true,"id":7348},{"__isSmartRef__":true,"id":7349},{"__isSmartRef__":true,"id":7350},{"__isSmartRef__":true,"id":7351},{"__isSmartRef__":true,"id":7352},{"__isSmartRef__":true,"id":7353}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7328":{"name":"getTextExtent","type":"propertyDef","startIndex":9548,"stopIndex":9632,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7329":{"name":"getTextBounds","type":"propertyDef","startIndex":9634,"stopIndex":9711,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7330":{"name":"textString","type":"propertyDef","startIndex":9714,"stopIndex":10005,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7331":{"name":"textString","type":"propertyDef","startIndex":10007,"stopIndex":10420,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7332":{"name":"setTextString","type":"propertyDef","startIndex":10423,"stopIndex":10494,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7333":{"name":"getTextString","type":"propertyDef","startIndex":10496,"stopIndex":10552,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7334":{"name":"appendTextString","type":"propertyDef","startIndex":10554,"stopIndex":10629,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7335":{"name":"setTextColor","type":"propertyDef","startIndex":10632,"stopIndex":10715,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7336":{"name":"getTextColor","type":"propertyDef","startIndex":10717,"stopIndex":10803,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7337":{"name":"setFontSize","type":"propertyDef","startIndex":10805,"stopIndex":10884,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7338":{"name":"getFontSize","type":"propertyDef","startIndex":10886,"stopIndex":10955,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7339":{"name":"setFontFamily","type":"propertyDef","startIndex":10957,"stopIndex":11048,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7340":{"name":"getFontFamily","type":"propertyDef","startIndex":11050,"stopIndex":11123,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7341":{"name":"setPadding","type":"propertyDef","startIndex":11126,"stopIndex":11203,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7342":{"name":"getPadding","type":"propertyDef","startIndex":11205,"stopIndex":11272,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7343":{"name":"setAlign","type":"propertyDef","startIndex":11274,"stopIndex":11349,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7344":{"name":"getAlign","type":"propertyDef","startIndex":11351,"stopIndex":11414,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7345":{"name":"setVerticalAlign","type":"propertyDef","startIndex":11416,"stopIndex":11509,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7346":{"name":"getVerticalAlign","type":"propertyDef","startIndex":11511,"stopIndex":11590,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7347":{"name":"setDisplay","type":"propertyDef","startIndex":11592,"stopIndex":11669,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7348":{"name":"getDisplay","type":"propertyDef","startIndex":11671,"stopIndex":11738,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7349":{"name":"setFixedWidth","type":"propertyDef","startIndex":11741,"stopIndex":11909,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7350":{"name":"setFixedHeight","type":"propertyDef","startIndex":11911,"stopIndex":12005,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7351":{"name":"setMaxTextWidth","type":"propertyDef","startIndex":12007,"stopIndex":12101,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7352":{"name":"setMaxTextHeight","type":"propertyDef","startIndex":12103,"stopIndex":12199,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7353":{"name":"getTextNode","type":"propertyDef","startIndex":12201,"stopIndex":12269,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7327},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7354":{"name":"growOrShrinkToFit","type":"propertyDef","startIndex":12291,"stopIndex":12449,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7355},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7355":{"name":"rendering","type":"categoryDef","startIndex":12275,"stopIndex":12801,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7354},{"__isSmartRef__":true,"id":7356}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7356":{"name":"fit","type":"propertyDef","startIndex":12451,"stopIndex":12798,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7355},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7357":{"name":"beLabel","type":"propertyDef","startIndex":12819,"stopIndex":13305,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7358},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7358":{"name":"text modes","type":"categoryDef","startIndex":12803,"stopIndex":13704,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7357},{"__isSmartRef__":true,"id":7359}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7359":{"name":"beInputLine","type":"propertyDef","startIndex":13307,"stopIndex":13701,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7358},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7360":{"name":"onKeyDown","type":"propertyDef","startIndex":13728,"stopIndex":15347,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7361":{"name":"keyboard events","type":"categoryDef","startIndex":13706,"stopIndex":30414,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7360},{"__isSmartRef__":true,"id":7362},{"__isSmartRef__":true,"id":7363},{"__isSmartRef__":true,"id":7364},{"__isSmartRef__":true,"id":7365},{"__isSmartRef__":true,"id":7366},{"__isSmartRef__":true,"id":7367},{"__isSmartRef__":true,"id":7368},{"__isSmartRef__":true,"id":7369},{"__isSmartRef__":true,"id":7370},{"__isSmartRef__":true,"id":7371},{"__isSmartRef__":true,"id":7372},{"__isSmartRef__":true,"id":7373},{"__isSmartRef__":true,"id":7374},{"__isSmartRef__":true,"id":7375},{"__isSmartRef__":true,"id":7376},{"__isSmartRef__":true,"id":7377},{"__isSmartRef__":true,"id":7378},{"__isSmartRef__":true,"id":7379},{"__isSmartRef__":true,"id":7380},{"__isSmartRef__":true,"id":7381},{"__isSmartRef__":true,"id":7382},{"__isSmartRef__":true,"id":7383},{"__isSmartRef__":true,"id":7384},{"__isSmartRef__":true,"id":7385},{"__isSmartRef__":true,"id":7386}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7362":{"name":"onKeyUp","type":"propertyDef","startIndex":15349,"stopIndex":16036,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7363":{"name":"onKeyPress","type":"propertyDef","startIndex":16038,"stopIndex":16590,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7364":{"name":"onPaste","type":"propertyDef","startIndex":16592,"stopIndex":17220,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7365":{"name":"onCut","type":"propertyDef","startIndex":17222,"stopIndex":17286,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7366":{"name":"processCommandKeys","type":"propertyDef","startIndex":17290,"stopIndex":21355,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7367":{"name":"doDoit","type":"propertyDef","startIndex":21365,"stopIndex":21417,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7368":{"name":"doPrintit","type":"propertyDef","startIndex":21419,"stopIndex":21473,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7369":{"name":"doSave","type":"propertyDef","startIndex":21475,"stopIndex":21937,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7370":{"name":"doListProtocol","type":"propertyDef","startIndex":21939,"stopIndex":22069,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7371":{"name":"doFind","type":"propertyDef","startIndex":22072,"stopIndex":22446,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7372":{"name":"doFindNext","type":"propertyDef","startIndex":22449,"stopIndex":22682,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7373":{"name":"doMore","type":"propertyDef","startIndex":22689,"stopIndex":23575,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7374":{"name":"doInspect","type":"propertyDef","startIndex":23577,"stopIndex":23702,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7375":{"name":"doBrowseSenders","type":"propertyDef","startIndex":23704,"stopIndex":23818,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7376":{"name":"doBrowseClass","type":"propertyDef","startIndex":23820,"stopIndex":23931,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7377":{"name":"doBrowseImplementors","type":"propertyDef","startIndex":23934,"stopIndex":24058,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7378":{"name":"rememberSelectionForDoMore","type":"propertyDef","startIndex":24063,"stopIndex":24668,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7379":{"name":"indentSelection","type":"propertyDef","startIndex":24672,"stopIndex":24837,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7380":{"name":"outdentSelection","type":"propertyDef","startIndex":24839,"stopIndex":25205,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7381":{"name":"doExchange","type":"propertyDef","startIndex":25207,"stopIndex":26556,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7382":{"name":"addOrRemoveBrackets","type":"propertyDef","startIndex":26558,"stopIndex":28057,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7383":{"name":"addOrRemoveComment","type":"propertyDef","startIndex":28059,"stopIndex":28555,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7384":{"name":"modifySelectedLines","type":"propertyDef","startIndex":28559,"stopIndex":29056,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7385":{"name":"splitText","type":"propertyDef","startIndex":29058,"stopIndex":29832,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7386":{"name":"mergeText","type":"propertyDef","startIndex":29834,"stopIndex":30410,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7361},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7387":{"name":"onEnterPressed","type":"propertyDef","startIndex":30445,"stopIndex":31103,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7388":{"name":"keyboard event reaction","type":"categoryDef","startIndex":30416,"stopIndex":34581,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7387},{"__isSmartRef__":true,"id":7389},{"__isSmartRef__":true,"id":7390},{"__isSmartRef__":true,"id":7391},{"__isSmartRef__":true,"id":7392},{"__isSmartRef__":true,"id":7393},{"__isSmartRef__":true,"id":7394},{"__isSmartRef__":true,"id":7395},{"__isSmartRef__":true,"id":7396},{"__isSmartRef__":true,"id":7397},{"__isSmartRef__":true,"id":7398},{"__isSmartRef__":true,"id":7399},{"__isSmartRef__":true,"id":7400}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7389":{"name":"onEscPressed","type":"propertyDef","startIndex":31105,"stopIndex":31206,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7390":{"name":"onBackspacePressed","type":"propertyDef","startIndex":31209,"stopIndex":31665,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7391":{"name":"onDelPressed","type":"propertyDef","startIndex":31667,"stopIndex":32037,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7392":{"name":"onTabPressed","type":"propertyDef","startIndex":32039,"stopIndex":32241,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7393":{"name":"onHomePressed","type":"propertyDef","startIndex":32243,"stopIndex":32379,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7394":{"name":"onEndPressed","type":"propertyDef","startIndex":32381,"stopIndex":32513,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7395":{"name":"onPageUpPressed","type":"propertyDef","startIndex":32515,"stopIndex":32653,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7396":{"name":"onPageDownPressed","type":"propertyDef","startIndex":32655,"stopIndex":32793,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7397":{"name":"onLeftPressed","type":"propertyDef","startIndex":32795,"stopIndex":33632,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7398":{"name":"onRightPressed","type":"propertyDef","startIndex":33634,"stopIndex":34476,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7399":{"name":"onUpPressed","type":"propertyDef","startIndex":34478,"stopIndex":34524,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7400":{"name":"onDownPressed","type":"propertyDef","startIndex":34526,"stopIndex":34574,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7388},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7401":{"name":"onMouseDown","type":"propertyDef","startIndex":34601,"stopIndex":35644,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7402},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7402":{"name":"mouse events","type":"categoryDef","startIndex":34583,"stopIndex":36814,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7401},{"__isSmartRef__":true,"id":7403},{"__isSmartRef__":true,"id":7404}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7403":{"name":"onSelectStart","type":"propertyDef","startIndex":35646,"stopIndex":35747,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7402},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7404":{"name":"onMouseUp","type":"propertyDef","startIndex":35749,"stopIndex":36809,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7402},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7405":{"name":"domSelection","type":"propertyDef","startIndex":36831,"stopIndex":37347,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7406":{"name":"selection","type":"categoryDef","startIndex":36816,"stopIndex":51005,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7405},{"__isSmartRef__":true,"id":7407},{"__isSmartRef__":true,"id":7408},{"__isSmartRef__":true,"id":7409},{"__isSmartRef__":true,"id":7410},{"__isSmartRef__":true,"id":7411},{"__isSmartRef__":true,"id":7412},{"__isSmartRef__":true,"id":7413},{"__isSmartRef__":true,"id":7414},{"__isSmartRef__":true,"id":7415},{"__isSmartRef__":true,"id":7416},{"__isSmartRef__":true,"id":7417},{"__isSmartRef__":true,"id":7418},{"__isSmartRef__":true,"id":7419},{"__isSmartRef__":true,"id":7420},{"__isSmartRef__":true,"id":7421},{"__isSmartRef__":true,"id":7422},{"__isSmartRef__":true,"id":7423},{"__isSmartRef__":true,"id":7424},{"__isSmartRef__":true,"id":7425},{"__isSmartRef__":true,"id":7426},{"__isSmartRef__":true,"id":7427},{"__isSmartRef__":true,"id":7428}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7407":{"name":"selectionString","type":"propertyDef","startIndex":37350,"stopIndex":37470,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7408":{"name":"insertAtCursor","type":"propertyDef","startIndex":37473,"stopIndex":37653,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7409":{"name":"insertElementAtCursor","type":"propertyDef","startIndex":37656,"stopIndex":39279,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7410":{"name":"insertTextChunksAtCursor","type":"propertyDef","startIndex":39281,"stopIndex":40814,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7411":{"name":"removeTextSelection","type":"propertyDef","startIndex":40817,"stopIndex":40855,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7412":{"name":"getSelectionOrLineString","type":"propertyDef","startIndex":40857,"stopIndex":41089,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7413":{"name":"selectCurrentLine","type":"propertyDef","startIndex":41091,"stopIndex":41325,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7414":{"name":"moveCursorToLineStart","type":"propertyDef","startIndex":41327,"stopIndex":41460,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7415":{"name":"moveCursorToLineEnd","type":"propertyDef","startIndex":41462,"stopIndex":41594,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7416":{"name":"moveCursorToTextStart","type":"propertyDef","startIndex":41596,"stopIndex":41733,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7417":{"name":"moveCursorToTextEnd","type":"propertyDef","startIndex":41736,"stopIndex":41872,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7418":{"name":"modifySelection","type":"propertyDef","startIndex":41875,"stopIndex":42071,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7419":{"name":"setSelectionRange","type":"propertyDef","startIndex":42077,"stopIndex":43803,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7420":{"name":"getSelectionRange","type":"propertyDef","startIndex":43806,"stopIndex":46616,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7421":{"name":"selectAll","type":"propertyDef","startIndex":46618,"stopIndex":46793,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7422":{"name":"hasNullSelection","type":"propertyDef","startIndex":46795,"stopIndex":46927,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7423":{"name":"setNullSelectionAt","type":"propertyDef","startIndex":46930,"stopIndex":47004,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7424":{"name":"getSelectionBounds","type":"propertyDef","startIndex":47006,"stopIndex":47248,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7425":{"name":"getGlobalSelectionBounds","type":"propertyDef","startIndex":47250,"stopIndex":47757,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7426":{"name":"selectWord","type":"propertyDef","startIndex":47760,"stopIndex":50278,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7427":{"name":"matchBrackets","type":"propertyDef","startIndex":50280,"stopIndex":50644,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7428":{"name":"findLine","type":"propertyDef","startIndex":50646,"stopIndex":51001,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7406},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7429":{"name":"getScrollableNode","type":"propertyDef","startIndex":51022,"stopIndex":51139,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7430},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7430":{"name":"scrolling","type":"categoryDef","startIndex":51007,"stopIndex":51256,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7429},{"__isSmartRef__":true,"id":7431}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7431":{"name":"scrollSelectionIntoView","type":"propertyDef","startIndex":51141,"stopIndex":51253,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7430},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7432":{"name":"evalSelection","type":"propertyDef","startIndex":51274,"stopIndex":51501,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7433},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7433":{"name":"evaluation","type":"categoryDef","startIndex":51258,"stopIndex":52128,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7432},{"__isSmartRef__":true,"id":7434},{"__isSmartRef__":true,"id":7435},{"__isSmartRef__":true,"id":7436},{"__isSmartRef__":true,"id":7437}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7434":{"name":"evalAll","type":"propertyDef","startIndex":51503,"stopIndex":51637,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7433},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7435":{"name":"boundEval","type":"propertyDef","startIndex":51640,"stopIndex":51949,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7433},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7436":{"name":"tryBoundEval","type":"propertyDef","startIndex":51951,"stopIndex":52064,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7433},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7437":{"name":"getDoitContext","type":"propertyDef","startIndex":52067,"stopIndex":52125,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7433},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7438":{"name":"focus","type":"propertyDef","startIndex":52148,"stopIndex":52280,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7439},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7439":{"name":"blur & focus","type":"categoryDef","startIndex":52130,"stopIndex":52414,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7438},{"__isSmartRef__":true,"id":7440}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7440":{"name":"blur","type":"propertyDef","startIndex":52282,"stopIndex":52411,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7439},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7441":{"name":"hasUnsavedChanges","type":"propertyDef","startIndex":52429,"stopIndex":52552,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7442},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7442":{"name":"testing","type":"categoryDef","startIndex":52416,"stopIndex":52640,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7441},{"__isSmartRef__":true,"id":7443}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7443":{"name":"isFocused","type":"propertyDef","startIndex":52554,"stopIndex":52636,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7442},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7444":{"name":"searchForFind","type":"propertyDef","startIndex":52657,"stopIndex":53099,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7445},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7445":{"name":"searching","type":"categoryDef","startIndex":52642,"stopIndex":53106,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7444}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7446":{"name":"showError","type":"propertyDef","startIndex":53123,"stopIndex":54704,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7447},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7447":{"name":"debugging","type":"categoryDef","startIndex":53108,"stopIndex":55312,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7446},{"__isSmartRef__":true,"id":7448}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7448":{"name":"textNodeString","type":"propertyDef","startIndex":54706,"stopIndex":55308,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7447},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7449":{"name":"setWhiteSpaceHandling","type":"propertyDef","startIndex":55335,"stopIndex":55459,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7450":{"name":"experimentation","type":"categoryDef","startIndex":55314,"stopIndex":59330,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7449},{"__isSmartRef__":true,"id":7451},{"__isSmartRef__":true,"id":7452},{"__isSmartRef__":true,"id":7453},{"__isSmartRef__":true,"id":7454},{"__isSmartRef__":true,"id":7455},{"__isSmartRef__":true,"id":7456},{"__isSmartRef__":true,"id":7457},{"__isSmartRef__":true,"id":7458}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7451":{"name":"getWhiteSpaceHandling","type":"propertyDef","startIndex":55461,"stopIndex":55587,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7452":{"name":"getTextElements","type":"propertyDef","startIndex":55589,"stopIndex":57285,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7453":{"name":"getTextElementAndLocalIndexForGlobalIndex","type":"propertyDef","startIndex":57288,"stopIndex":58145,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7454":{"name":"setRichText","type":"propertyDef","startIndex":58147,"stopIndex":58256,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7455":{"name":"getRichText","type":"propertyDef","startIndex":58258,"stopIndex":58423,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7456":{"name":"getRichTextFromTo","type":"propertyDef","startIndex":58425,"stopIndex":58659,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7457":{"name":"getTextStyle","type":"propertyDef","startIndex":58663,"stopIndex":58934,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7458":{"name":"getRange","type":"propertyDef","startIndex":58936,"stopIndex":59327,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7450},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7459":{"name":"emphasize","type":"propertyDef","startIndex":59347,"stopIndex":59575,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7460":{"name":"rich text","type":"categoryDef","startIndex":59332,"stopIndex":65286,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7459},{"__isSmartRef__":true,"id":7461},{"__isSmartRef__":true,"id":7462},{"__isSmartRef__":true,"id":7463},{"__isSmartRef__":true,"id":7464},{"__isSmartRef__":true,"id":7465},{"__isSmartRef__":true,"id":7466},{"__isSmartRef__":true,"id":7467},{"__isSmartRef__":true,"id":7468},{"__isSmartRef__":true,"id":7469},{"__isSmartRef__":true,"id":7470},{"__isSmartRef__":true,"id":7471},{"__isSmartRef__":true,"id":7472},{"__isSmartRef__":true,"id":7473},{"__isSmartRef__":true,"id":7474},{"__isSmartRef__":true,"id":7475},{"__isSmartRef__":true,"id":7476},{"__isSmartRef__":true,"id":7477},{"__isSmartRef__":true,"id":7478},{"__isSmartRef__":true,"id":7479}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7461":{"name":"unEmphasize","type":"propertyDef","startIndex":59577,"stopIndex":59882,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7462":{"name":"unEmphasizeSelection","type":"propertyDef","startIndex":59884,"stopIndex":60072,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7463":{"name":"unEmphasizeAll","type":"propertyDef","startIndex":60074,"stopIndex":60164,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7464":{"name":"emphasizeAll","type":"propertyDef","startIndex":60169,"stopIndex":60268,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7465":{"name":"emphasizeRegex","type":"propertyDef","startIndex":60270,"stopIndex":60804,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7466":{"name":"changeEmphasis","type":"propertyDef","startIndex":60815,"stopIndex":61247,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7467":{"name":"toggleItalics","type":"propertyDef","startIndex":61249,"stopIndex":61452,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7468":{"name":"toggleBoldness","type":"propertyDef","startIndex":61456,"stopIndex":61662,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7469":{"name":"toggleUnderline","type":"propertyDef","startIndex":61664,"stopIndex":61889,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7470":{"name":"toggleLink","type":"propertyDef","startIndex":61892,"stopIndex":62212,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7471":{"name":"toggleDoit","type":"propertyDef","startIndex":62214,"stopIndex":62607,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7472":{"name":"toggleFont","type":"propertyDef","startIndex":62609,"stopIndex":63272,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7473":{"name":"toggleEmphasisForSelection","type":"propertyDef","startIndex":63278,"stopIndex":63819,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7474":{"name":"emphasizeSelection","type":"propertyDef","startIndex":63821,"stopIndex":64344,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7475":{"name":"convertSelectionRangeForEmphasis","type":"propertyDef","startIndex":64348,"stopIndex":64514,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7476":{"name":"increaseFontSizeOfSelection","type":"propertyDef","startIndex":64516,"stopIndex":64647,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7477":{"name":"decreaseFontSizeOfSelection","type":"propertyDef","startIndex":64649,"stopIndex":64780,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7478":{"name":"setFontSizeOfSelectionDo","type":"propertyDef","startIndex":64783,"stopIndex":65121,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7479":{"name":"getEmphasisAt","type":"propertyDef","startIndex":65125,"stopIndex":65282,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7460},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7480":{"name":"setStatusMessage","type":"propertyDef","startIndex":65309,"stopIndex":66545,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7481},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7481":{"name":"status messages","type":"categoryDef","startIndex":65288,"stopIndex":66548,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7480}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7482":{"name":"tab","type":"propertyDef","startIndex":66568,"stopIndex":66611,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7483},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7483":{"name":"tab handling","type":"categoryDef","startIndex":66550,"stopIndex":68139,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7482},{"__isSmartRef__":true,"id":7484},{"__isSmartRef__":true,"id":7485},{"__isSmartRef__":true,"id":7486},{"__isSmartRef__":true,"id":7487},{"__isSmartRef__":true,"id":7488}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7484":{"name":"isTabBeforeCursor","type":"propertyDef","startIndex":66613,"stopIndex":66712,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7483},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7485":{"name":"isTabAfterCursor","type":"propertyDef","startIndex":66714,"stopIndex":66811,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7483},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7486":{"name":"isTabBeforeOrAfterCursor","type":"propertyDef","startIndex":66813,"stopIndex":67387,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7483},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7487":{"name":"convertTabsToSpaces","type":"propertyDef","startIndex":67390,"stopIndex":67689,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7483},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7488":{"name":"tabspacesForCursorPos","type":"propertyDef","startIndex":67692,"stopIndex":68136,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7483},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7489":{"name":"highlightJavaScriptSyntax","type":"propertyDef","startIndex":68166,"stopIndex":68245,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7490},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7490":{"name":"syntax highlighting","type":"categoryDef","startIndex":68141,"stopIndex":69235,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7489},{"__isSmartRef__":true,"id":7491},{"__isSmartRef__":true,"id":7492},{"__isSmartRef__":true,"id":7493},{"__isSmartRef__":true,"id":7494}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7491":{"name":"enableSyntaxHighlighting","type":"propertyDef","startIndex":68247,"stopIndex":68575,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7490},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7492":{"name":"disableSyntaxHighlighting","type":"propertyDef","startIndex":68577,"stopIndex":68753,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7490},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7493":{"name":"enableSyntaxHighlightingOnSave","type":"propertyDef","startIndex":68756,"stopIndex":69046,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7490},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7494":{"name":"disableSyntaxHighlightingOnSave","type":"propertyDef","startIndex":69048,"stopIndex":69230,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7490},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7315},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7495":{"name":null,"type":"comment","startIndex":69239,"stopIndex":69240,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7496":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":69241,"stopIndex":69459,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7497}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7498}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7497":{"name":"activeInstance","type":"propertyDef","startIndex":69278,"stopIndex":69454,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7498},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7496},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7498":{"name":"default category","type":"categoryDef","startIndex":69276,"stopIndex":69456,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7497}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7499":{"name":"lively.morphic.Text.ProtocolLister","type":"klassDef","startIndex":69460,"stopIndex":72163,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7500},{"__isSmartRef__":true,"id":7502},{"__isSmartRef__":true,"id":7504},{"__isSmartRef__":true,"id":7506},{"__isSmartRef__":true,"id":7507},{"__isSmartRef__":true,"id":7508},{"__isSmartRef__":true,"id":7509},{"__isSmartRef__":true,"id":7510}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":7501},{"__isSmartRef__":true,"id":7503},{"__isSmartRef__":true,"id":7505}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7500":{"name":"initialize","type":"propertyDef","startIndex":69532,"stopIndex":69611,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7501},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7501":{"name":"initializing","type":"categoryDef","startIndex":69514,"stopIndex":69614,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7500}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7502":{"name":"evalSelectionAndOpenListForProtocol","type":"propertyDef","startIndex":69631,"stopIndex":69890,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7503},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7503":{"name":"interface","type":"categoryDef","startIndex":69616,"stopIndex":69894,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7502}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7504":{"name":"getPrototypeChainOf","type":"propertyDef","startIndex":69912,"stopIndex":70126,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7505},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7505":{"name":"accessing","type":"categoryDef","startIndex":69896,"stopIndex":72160,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7504},{"__isSmartRef__":true,"id":7506},{"__isSmartRef__":true,"id":7507},{"__isSmartRef__":true,"id":7508},{"__isSmartRef__":true,"id":7509},{"__isSmartRef__":true,"id":7510}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7506":{"name":"funcSignaturesOf","type":"propertyDef","startIndex":70129,"stopIndex":70628,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7505},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7507":{"name":"getListForProtocolOf","type":"propertyDef","startIndex":70631,"stopIndex":70896,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7505},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7508":{"name":"menuItemForProto","type":"propertyDef","startIndex":70899,"stopIndex":71356,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7505},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7509":{"name":"createSubMenuItemFromSignature","type":"propertyDef","startIndex":71358,"stopIndex":71849,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7505},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7510":{"name":"evalCurrentSelection","type":"propertyDef","startIndex":71853,"stopIndex":72157,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7505},"className":"lively.morphic.Text.ProtocolLister","_owner":{"__isSmartRef__":true,"id":7499},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7511":{"name":null,"type":"comment","startIndex":72164,"stopIndex":72164,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7512":{"name":"lively.morphic.TextChunk","type":"klassDef","startIndex":72165,"stopIndex":80063,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7513},{"__isSmartRef__":true,"id":7515},{"__isSmartRef__":true,"id":7517},{"__isSmartRef__":true,"id":7519},{"__isSmartRef__":true,"id":7520},{"__isSmartRef__":true,"id":7521},{"__isSmartRef__":true,"id":7522},{"__isSmartRef__":true,"id":7523},{"__isSmartRef__":true,"id":7525},{"__isSmartRef__":true,"id":7527},{"__isSmartRef__":true,"id":7529},{"__isSmartRef__":true,"id":7531},{"__isSmartRef__":true,"id":7532},{"__isSmartRef__":true,"id":7533},{"__isSmartRef__":true,"id":7534},{"__isSmartRef__":true,"id":7536},{"__isSmartRef__":true,"id":7537},{"__isSmartRef__":true,"id":7539},{"__isSmartRef__":true,"id":7541},{"__isSmartRef__":true,"id":7542},{"__isSmartRef__":true,"id":7543},{"__isSmartRef__":true,"id":7544},{"__isSmartRef__":true,"id":7545},{"__isSmartRef__":true,"id":7546},{"__isSmartRef__":true,"id":7547},{"__isSmartRef__":true,"id":7549},{"__isSmartRef__":true,"id":7551}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":7514},{"__isSmartRef__":true,"id":7516},{"__isSmartRef__":true,"id":7518},{"__isSmartRef__":true,"id":7524},{"__isSmartRef__":true,"id":7526},{"__isSmartRef__":true,"id":7528},{"__isSmartRef__":true,"id":7530},{"__isSmartRef__":true,"id":7535},{"__isSmartRef__":true,"id":7538},{"__isSmartRef__":true,"id":7540},{"__isSmartRef__":true,"id":7548},{"__isSmartRef__":true,"id":7550}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7513":{"name":"doNotSerialize","type":"propertyDef","startIndex":72223,"stopIndex":72256,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7514},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7514":{"name":"settings","type":"categoryDef","startIndex":72209,"stopIndex":72259,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7513}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7515":{"name":"initialize","type":"propertyDef","startIndex":72279,"stopIndex":72428,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7516},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7516":{"name":"initializing","type":"categoryDef","startIndex":72261,"stopIndex":72431,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7515}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7517":{"name":"textString","type":"propertyDef","startIndex":72448,"stopIndex":72524,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7518},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7518":{"name":"accessing","type":"categoryDef","startIndex":72433,"stopIndex":73075,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7517},{"__isSmartRef__":true,"id":7519},{"__isSmartRef__":true,"id":7520},{"__isSmartRef__":true,"id":7521},{"__isSmartRef__":true,"id":7522}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7519":{"name":"textString","type":"propertyDef","startIndex":72526,"stopIndex":72617,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7518},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7520":{"name":"getChunkNode","type":"propertyDef","startIndex":72619,"stopIndex":72768,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7518},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7521":{"name":"next","type":"propertyDef","startIndex":72770,"stopIndex":72920,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7518},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7522":{"name":"prev","type":"propertyDef","startIndex":72922,"stopIndex":73072,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7518},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7523":{"name":"isRendered","type":"propertyDef","startIndex":73090,"stopIndex":73184,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7524},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7524":{"name":"testing","type":"categoryDef","startIndex":73077,"stopIndex":73187,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7523}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7525":{"name":"addTo","type":"propertyDef","startIndex":73201,"stopIndex":73949,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7526},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7526":{"name":"adding","type":"categoryDef","startIndex":73189,"stopIndex":73953,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7525}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7527":{"name":"remove","type":"propertyDef","startIndex":73969,"stopIndex":74089,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7528},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7528":{"name":"removing","type":"categoryDef","startIndex":73955,"stopIndex":74092,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7527}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7529":{"name":"splitAfter","type":"propertyDef","startIndex":74109,"stopIndex":74181,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7530},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7530":{"name":"splitting","type":"categoryDef","startIndex":74094,"stopIndex":75948,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7529},{"__isSmartRef__":true,"id":7531},{"__isSmartRef__":true,"id":7532},{"__isSmartRef__":true,"id":7533}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7531":{"name":"splitBefore","type":"propertyDef","startIndex":74183,"stopIndex":74257,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7530},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7532":{"name":"split","type":"propertyDef","startIndex":74259,"stopIndex":75852,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7530},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7533":{"name":"createForSplit","type":"propertyDef","startIndex":75854,"stopIndex":75944,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7530},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7534":{"name":"joinWithNext","type":"propertyDef","startIndex":75963,"stopIndex":76295,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7535},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7535":{"name":"joining","type":"categoryDef","startIndex":75950,"stopIndex":76472,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7534},{"__isSmartRef__":true,"id":7536}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7536":{"name":"joinWithNextIfEqualStyle","type":"propertyDef","startIndex":76297,"stopIndex":76468,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7535},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7537":{"name":"styleText","type":"propertyDef","startIndex":76487,"stopIndex":76658,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7538},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7538":{"name":"styling","type":"categoryDef","startIndex":76474,"stopIndex":76661,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7537}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7539":{"name":"normalize","type":"propertyDef","startIndex":76677,"stopIndex":76751,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7540},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7540":{"name":"subnodes","type":"categoryDef","startIndex":76663,"stopIndex":79704,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7539},{"__isSmartRef__":true,"id":7541},{"__isSmartRef__":true,"id":7542},{"__isSmartRef__":true,"id":7543},{"__isSmartRef__":true,"id":7544},{"__isSmartRef__":true,"id":7545},{"__isSmartRef__":true,"id":7546}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7541":{"name":"claim","type":"propertyDef","startIndex":76753,"stopIndex":77101,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7540},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7542":{"name":"ingestAllFollowingElements","type":"propertyDef","startIndex":77104,"stopIndex":77628,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7540},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7543":{"name":"ingestAllPrecedingElements","type":"propertyDef","startIndex":77630,"stopIndex":78184,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7540},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7544":{"name":"nodesBetweenMeAndOther","type":"propertyDef","startIndex":78186,"stopIndex":78612,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7540},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7545":{"name":"ensureEndsWithBr","type":"propertyDef","startIndex":78615,"stopIndex":79080,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7540},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7546":{"name":"removeNonChunkNodes","type":"propertyDef","startIndex":79082,"stopIndex":79700,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7540},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7547":{"name":"toString","type":"propertyDef","startIndex":79721,"stopIndex":79825,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7548},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7548":{"name":"debugging","type":"categoryDef","startIndex":79706,"stopIndex":79828,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7547}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7549":{"name":"cacheContent","type":"propertyDef","startIndex":79849,"stopIndex":79930,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7550},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7550":{"name":"serialization","type":"categoryDef","startIndex":79830,"stopIndex":80060,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7549},{"__isSmartRef__":true,"id":7551}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7551":{"name":"restoreFromCacheContent","type":"propertyDef","startIndex":79932,"stopIndex":80058,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7550},"className":"lively.morphic.TextChunk","_owner":{"__isSmartRef__":true,"id":7512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7552":{"name":null,"type":"comment","startIndex":80064,"stopIndex":80064,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7553":{"name":"lively.morphic.TextEmphasis","type":"klassDef","startIndex":80065,"stopIndex":85064,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7554},{"__isSmartRef__":true,"id":7556},{"__isSmartRef__":true,"id":7558},{"__isSmartRef__":true,"id":7559},{"__isSmartRef__":true,"id":7560},{"__isSmartRef__":true,"id":7561},{"__isSmartRef__":true,"id":7562},{"__isSmartRef__":true,"id":7563},{"__isSmartRef__":true,"id":7564},{"__isSmartRef__":true,"id":7565},{"__isSmartRef__":true,"id":7566},{"__isSmartRef__":true,"id":7567},{"__isSmartRef__":true,"id":7568},{"__isSmartRef__":true,"id":7569},{"__isSmartRef__":true,"id":7570},{"__isSmartRef__":true,"id":7571},{"__isSmartRef__":true,"id":7572},{"__isSmartRef__":true,"id":7573},{"__isSmartRef__":true,"id":7574},{"__isSmartRef__":true,"id":7575},{"__isSmartRef__":true,"id":7576},{"__isSmartRef__":true,"id":7577},{"__isSmartRef__":true,"id":7579},{"__isSmartRef__":true,"id":7581},{"__isSmartRef__":true,"id":7583},{"__isSmartRef__":true,"id":7585}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":7555},{"__isSmartRef__":true,"id":7557},{"__isSmartRef__":true,"id":7578},{"__isSmartRef__":true,"id":7580},{"__isSmartRef__":true,"id":7582},{"__isSmartRef__":true,"id":7584},{"__isSmartRef__":true,"id":7586}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7554":{"name":"initialize","type":"propertyDef","startIndex":80130,"stopIndex":80200,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7555},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7555":{"name":"initializing","type":"categoryDef","startIndex":80112,"stopIndex":80203,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7554}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7556":{"name":"getFontWeight","type":"propertyDef","startIndex":80220,"stopIndex":80346,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7557":{"name":"accessing","type":"categoryDef","startIndex":80205,"stopIndex":81617,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7556},{"__isSmartRef__":true,"id":7558},{"__isSmartRef__":true,"id":7559},{"__isSmartRef__":true,"id":7560},{"__isSmartRef__":true,"id":7561},{"__isSmartRef__":true,"id":7562},{"__isSmartRef__":true,"id":7563},{"__isSmartRef__":true,"id":7564},{"__isSmartRef__":true,"id":7565},{"__isSmartRef__":true,"id":7566},{"__isSmartRef__":true,"id":7567},{"__isSmartRef__":true,"id":7568},{"__isSmartRef__":true,"id":7569},{"__isSmartRef__":true,"id":7570},{"__isSmartRef__":true,"id":7571},{"__isSmartRef__":true,"id":7572},{"__isSmartRef__":true,"id":7573},{"__isSmartRef__":true,"id":7574},{"__isSmartRef__":true,"id":7575},{"__isSmartRef__":true,"id":7576}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7558":{"name":"setFontWeight","type":"propertyDef","startIndex":80348,"stopIndex":80420,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7559":{"name":"getItalics","type":"propertyDef","startIndex":80422,"stopIndex":80523,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7560":{"name":"setItalics","type":"propertyDef","startIndex":80525,"stopIndex":80585,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7561":{"name":"getURI","type":"propertyDef","startIndex":80587,"stopIndex":80629,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7562":{"name":"setURI","type":"propertyDef","startIndex":80631,"stopIndex":80683,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7563":{"name":"getDoit","type":"propertyDef","startIndex":80685,"stopIndex":80729,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7564":{"name":"setDoit","type":"propertyDef","startIndex":80731,"stopIndex":80786,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7565":{"name":"getFontFamily","type":"propertyDef","startIndex":80788,"stopIndex":80844,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7566":{"name":"setFontFamily","type":"propertyDef","startIndex":80846,"stopIndex":80925,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7567":{"name":"getColor","type":"propertyDef","startIndex":80927,"stopIndex":80973,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7568":{"name":"setColor","type":"propertyDef","startIndex":80975,"stopIndex":81034,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7569":{"name":"getTextDecoration","type":"propertyDef","startIndex":81036,"stopIndex":81100,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7570":{"name":"setTextDecoration","type":"propertyDef","startIndex":81102,"stopIndex":81197,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7571":{"name":"getTextAlignment","type":"propertyDef","startIndex":81199,"stopIndex":81257,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7572":{"name":"setTextAlignment","type":"propertyDef","startIndex":81259,"stopIndex":81338,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7573":{"name":"getFontSize","type":"propertyDef","startIndex":81340,"stopIndex":81392,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7574":{"name":"setFontSize","type":"propertyDef","startIndex":81394,"stopIndex":81465,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7575":{"name":"getBackgroundColor","type":"propertyDef","startIndex":81467,"stopIndex":81533,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7576":{"name":"setBackgroundColor","type":"propertyDef","startIndex":81535,"stopIndex":81614,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7557},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7577":{"name":"clone","type":"propertyDef","startIndex":81632,"stopIndex":81691,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7578},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7578":{"name":"cloning","type":"categoryDef","startIndex":81619,"stopIndex":81694,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7577}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7579":{"name":"add","type":"propertyDef","startIndex":81710,"stopIndex":81873,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7580},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7580":{"name":"changing","type":"categoryDef","startIndex":81696,"stopIndex":81876,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7579}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7581":{"name":"equals","type":"propertyDef","startIndex":81891,"stopIndex":82669,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7582},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7582":{"name":"testing","type":"categoryDef","startIndex":81878,"stopIndex":82672,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7581}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7583":{"name":"applyToHTML","type":"propertyDef","startIndex":82689,"stopIndex":84798,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7584},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7584":{"name":"rendering","type":"categoryDef","startIndex":82674,"stopIndex":84801,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7583}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7585":{"name":"toString","type":"propertyDef","startIndex":84818,"stopIndex":85059,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7586},"className":"lively.morphic.TextEmphasis","_owner":{"__isSmartRef__":true,"id":7553},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7586":{"name":"debugging","type":"categoryDef","startIndex":84803,"stopIndex":85061,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7585}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7587":{"name":"lively.morphic.RichText","type":"klassDef","startIndex":85065,"stopIndex":87047,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7588},{"__isSmartRef__":true,"id":7590},{"__isSmartRef__":true,"id":7592},{"__isSmartRef__":true,"id":7594},{"__isSmartRef__":true,"id":7595},{"__isSmartRef__":true,"id":7597},{"__isSmartRef__":true,"id":7598},{"__isSmartRef__":true,"id":7599},{"__isSmartRef__":true,"id":7601}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["TextChunkOwner"],"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":7589},{"__isSmartRef__":true,"id":7591},{"__isSmartRef__":true,"id":7593},{"__isSmartRef__":true,"id":7596},{"__isSmartRef__":true,"id":7600}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7588":{"name":"isRichText","type":"propertyDef","startIndex":85147,"stopIndex":85167,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7589},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7589":{"name":"settings","type":"categoryDef","startIndex":85133,"stopIndex":85170,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7588}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7590":{"name":"initialize","type":"propertyDef","startIndex":85190,"stopIndex":85342,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7591},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7591":{"name":"initializing","type":"categoryDef","startIndex":85172,"stopIndex":85345,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7590}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7592":{"name":"emphasize","type":"propertyDef","startIndex":85372,"stopIndex":85644,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7593},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7593":{"name":"rich text interface","type":"categoryDef","startIndex":85347,"stopIndex":86208,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7592},{"__isSmartRef__":true,"id":7594}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7594":{"name":"emphasizeRegex","type":"propertyDef","startIndex":85646,"stopIndex":86205,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7593},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7595":{"name":"textString","type":"propertyDef","startIndex":86225,"stopIndex":86397,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7596},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7596":{"name":"accessing","type":"categoryDef","startIndex":86210,"stopIndex":86660,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7595},{"__isSmartRef__":true,"id":7597},{"__isSmartRef__":true,"id":7598}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7597":{"name":"textString","type":"propertyDef","startIndex":86399,"stopIndex":86556,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7596},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7598":{"name":"getTextNode","type":"propertyDef","startIndex":86558,"stopIndex":86656,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7596},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7599":{"name":"applyToTextMorph","type":"propertyDef","startIndex":86690,"stopIndex":86785,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7600},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7600":{"name":"text morph application","type":"categoryDef","startIndex":86662,"stopIndex":87044,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7599},{"__isSmartRef__":true,"id":7601}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7601":{"name":"replaceSelectionInMorph","type":"propertyDef","startIndex":86787,"stopIndex":87041,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7600},"className":"lively.morphic.RichText","_owner":{"__isSmartRef__":true,"id":7587},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7602":{"name":null,"type":"comment","startIndex":87048,"stopIndex":87049,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7603":{"name":"TextDevLayer","type":"copDef","startIndex":87050,"stopIndex":87160,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7604},{"__isSmartRef__":true,"id":7605}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7604":{"name":"lively.morphic.Text","type":"copSubElement","startIndex":87077,"stopIndex":87114,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":7603},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7605":{"name":"lively.morphic.TextChunk","type":"copSubElement","startIndex":87115,"stopIndex":87158,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":7603},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7606":{"name":null,"type":"comment","startIndex":87161,"stopIndex":87161,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7607":{"name":"lively.morphic.HTMLParser","type":"klassDef","startIndex":87162,"stopIndex":87207,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7608":{"name":null,"type":"comment","startIndex":87208,"stopIndex":87208,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7609":{"name":"lively.morphic.HTMLParser","type":"klassExtensionDef","startIndex":87209,"stopIndex":90266,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7610},{"__isSmartRef__":true,"id":7612},{"__isSmartRef__":true,"id":7613}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7611}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7610":{"name":"pastedHTMLToRichText","type":"propertyDef","startIndex":87252,"stopIndex":88534,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7611},"className":"lively.morphic.HTMLParser","_owner":{"__isSmartRef__":true,"id":7609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7611":{"name":"default category","type":"categoryDef","startIndex":87250,"stopIndex":90263,"fileName":"lively/morphic/TextCore.js","_subElements":[{"__isSmartRef__":true,"id":7610},{"__isSmartRef__":true,"id":7612},{"__isSmartRef__":true,"id":7613}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7612":{"name":"extractStylesAndApplyToRichText","type":"propertyDef","startIndex":88536,"stopIndex":90093,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7611},"className":"lively.morphic.HTMLParser","_owner":{"__isSmartRef__":true,"id":7609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7613":{"name":"convertStyleName","type":"propertyDef","startIndex":90095,"stopIndex":90260,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7611},"className":"lively.morphic.HTMLParser","_owner":{"__isSmartRef__":true,"id":7609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7614":{"name":null,"type":"comment","startIndex":90267,"stopIndex":90267,"fileName":"lively/morphic/TextCore.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7615":{"target":{"__isSmartRef__":true,"id":7616},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/Widgets.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"7616":{"name":"lively.morphic.Widgets","type":"moduleDef","startIndex":0,"stopIndex":79976,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7617},{"__isSmartRef__":true,"id":7618},{"__isSmartRef__":true,"id":7638},{"__isSmartRef__":true,"id":7639},{"__isSmartRef__":true,"id":7653},{"__isSmartRef__":true,"id":7667},{"__isSmartRef__":true,"id":7683},{"__isSmartRef__":true,"id":7684},{"__isSmartRef__":true,"id":7690},{"__isSmartRef__":true,"id":7691},{"__isSmartRef__":true,"id":7710},{"__isSmartRef__":true,"id":7711},{"__isSmartRef__":true,"id":7715},{"__isSmartRef__":true,"id":7716},{"__isSmartRef__":true,"id":7723},{"__isSmartRef__":true,"id":7726},{"__isSmartRef__":true,"id":7727},{"__isSmartRef__":true,"id":7763},{"__isSmartRef__":true,"id":7764},{"__isSmartRef__":true,"id":7811},{"__isSmartRef__":true,"id":7814},{"__isSmartRef__":true,"id":7815},{"__isSmartRef__":true,"id":7824},{"__isSmartRef__":true,"id":7825},{"__isSmartRef__":true,"id":7844},{"__isSmartRef__":true,"id":7845},{"__isSmartRef__":true,"id":7875},{"__isSmartRef__":true,"id":7876},{"__isSmartRef__":true,"id":7888},{"__isSmartRef__":true,"id":7889},{"__isSmartRef__":true,"id":7905},{"__isSmartRef__":true,"id":7906},{"__isSmartRef__":true,"id":7911},{"__isSmartRef__":true,"id":7912},{"__isSmartRef__":true,"id":7919},{"__isSmartRef__":true,"id":7920},{"__isSmartRef__":true,"id":7923},{"__isSmartRef__":true,"id":7924},{"__isSmartRef__":true,"id":7978},{"__isSmartRef__":true,"id":7985},{"__isSmartRef__":true,"id":7986},{"__isSmartRef__":true,"id":7987},{"__isSmartRef__":true,"id":8008},{"__isSmartRef__":true,"id":8009},{"__isSmartRef__":true,"id":8010},{"__isSmartRef__":true,"id":8013},{"__isSmartRef__":true,"id":8014},{"__isSmartRef__":true,"id":8022},{"__isSmartRef__":true,"id":8023},{"__isSmartRef__":true,"id":8037},{"__isSmartRef__":true,"id":8048}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7617":{"name":null,"type":"comment","startIndex":158,"stopIndex":158,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7618":{"name":"lively.morphic.Button","type":"klassDef","startIndex":159,"stopIndex":4175,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7619},{"__isSmartRef__":true,"id":7621},{"__isSmartRef__":true,"id":7622},{"__isSmartRef__":true,"id":7624},{"__isSmartRef__":true,"id":7626},{"__isSmartRef__":true,"id":7627},{"__isSmartRef__":true,"id":7628},{"__isSmartRef__":true,"id":7629},{"__isSmartRef__":true,"id":7630},{"__isSmartRef__":true,"id":7632},{"__isSmartRef__":true,"id":7634},{"__isSmartRef__":true,"id":7635},{"__isSmartRef__":true,"id":7636}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":7620},{"__isSmartRef__":true,"id":7623},{"__isSmartRef__":true,"id":7625},{"__isSmartRef__":true,"id":7631},{"__isSmartRef__":true,"id":7633},{"__isSmartRef__":true,"id":7637}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7619":{"name":"style","type":"propertyDef","startIndex":228,"stopIndex":815,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7620},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7620":{"name":"settings","type":"categoryDef","startIndex":214,"stopIndex":1055,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7619},{"__isSmartRef__":true,"id":7621}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7621":{"name":"labelStyle","type":"propertyDef","startIndex":817,"stopIndex":1052,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7620},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7622":{"name":"initialize","type":"propertyDef","startIndex":1075,"stopIndex":1618,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7623},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7623":{"name":"initializing","type":"categoryDef","startIndex":1057,"stopIndex":1621,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7622}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7624":{"name":"setLabel","type":"propertyDef","startIndex":1638,"stopIndex":1922,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7625},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7625":{"name":"accessing","type":"categoryDef","startIndex":1623,"stopIndex":2466,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7624},{"__isSmartRef__":true,"id":7626},{"__isSmartRef__":true,"id":7627},{"__isSmartRef__":true,"id":7628},{"__isSmartRef__":true,"id":7629}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7626":{"name":"getLabel","type":"propertyDef","startIndex":1924,"stopIndex":1986,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7625},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7627":{"name":"setValue","type":"propertyDef","startIndex":1989,"stopIndex":2213,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7625},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7628":{"name":"setExtent","type":"propertyDef","startIndex":2215,"stopIndex":2377,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7625},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7629":{"name":"setPadding","type":"propertyDef","startIndex":2379,"stopIndex":2461,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7625},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7630":{"name":"changeAppearanceFor","type":"propertyDef","startIndex":2481,"stopIndex":2595,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7631},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7631":{"name":"styling","type":"categoryDef","startIndex":2468,"stopIndex":2598,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7630}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7632":{"name":"onMouseDown","type":"propertyDef","startIndex":2613,"stopIndex":2898,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7633},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7633":{"name":"events","type":"categoryDef","startIndex":2600,"stopIndex":3841,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7632},{"__isSmartRef__":true,"id":7634},{"__isSmartRef__":true,"id":7635}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7634":{"name":"onMouseUp","type":"propertyDef","startIndex":2900,"stopIndex":3198,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7633},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7635":{"name":"simulateButtonClick","type":"propertyDef","startIndex":3200,"stopIndex":3838,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7633},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7636":{"name":"morphMenuItems","type":"propertyDef","startIndex":3853,"stopIndex":4170,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7637},"className":"lively.morphic.Button","_owner":{"__isSmartRef__":true,"id":7618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7637":{"name":"menu","type":"categoryDef","startIndex":3843,"stopIndex":4172,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7636}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7638":{"name":null,"type":"comment","startIndex":4176,"stopIndex":4176,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7639":{"name":"lively.morphic.Image","type":"klassDef","startIndex":4177,"stopIndex":5663,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7640},{"__isSmartRef__":true,"id":7642},{"__isSmartRef__":true,"id":7643},{"__isSmartRef__":true,"id":7644},{"__isSmartRef__":true,"id":7646},{"__isSmartRef__":true,"id":7647},{"__isSmartRef__":true,"id":7648},{"__isSmartRef__":true,"id":7649},{"__isSmartRef__":true,"id":7651}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":7641},{"__isSmartRef__":true,"id":7645},{"__isSmartRef__":true,"id":7650},{"__isSmartRef__":true,"id":7652}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7640":{"name":"doNotSerialize","type":"propertyDef","startIndex":4249,"stopIndex":4281,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7641},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7641":{"name":"initializing","type":"categoryDef","startIndex":4231,"stopIndex":4925,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7640},{"__isSmartRef__":true,"id":7642},{"__isSmartRef__":true,"id":7643}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7642":{"name":"initialize","type":"propertyDef","startIndex":4283,"stopIndex":4808,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7641},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7643":{"name":"createImageShape","type":"propertyDef","startIndex":4810,"stopIndex":4922,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7641},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7644":{"name":"setImageURL","type":"propertyDef","startIndex":4942,"stopIndex":5011,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7645},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7645":{"name":"accessing","type":"categoryDef","startIndex":4927,"stopIndex":5343,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7644},{"__isSmartRef__":true,"id":7646},{"__isSmartRef__":true,"id":7647},{"__isSmartRef__":true,"id":7648}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7646":{"name":"getImageURL","type":"propertyDef","startIndex":5013,"stopIndex":5076,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7645},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7647":{"name":"getNativeExtent","type":"propertyDef","startIndex":5078,"stopIndex":5149,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7645},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7648":{"name":"setNativeExtent","type":"propertyDef","startIndex":5151,"stopIndex":5340,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7645},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7649":{"name":"getHaloClasses","type":"propertyDef","startIndex":5356,"stopIndex":5466,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7650},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7650":{"name":"halos","type":"categoryDef","startIndex":5345,"stopIndex":5469,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7649}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7651":{"name":"morphMenuItems","type":"propertyDef","startIndex":5481,"stopIndex":5658,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7652},"className":"lively.morphic.Image","_owner":{"__isSmartRef__":true,"id":7639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7652":{"name":"menu","type":"categoryDef","startIndex":5471,"stopIndex":5660,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7651}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7653":{"name":"lively.morphic.CheckBox","type":"klassDef","startIndex":5664,"stopIndex":6943,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7654},{"__isSmartRef__":true,"id":7656},{"__isSmartRef__":true,"id":7658},{"__isSmartRef__":true,"id":7659},{"__isSmartRef__":true,"id":7661},{"__isSmartRef__":true,"id":7663},{"__isSmartRef__":true,"id":7665}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":7655},{"__isSmartRef__":true,"id":7657},{"__isSmartRef__":true,"id":7660},{"__isSmartRef__":true,"id":7662},{"__isSmartRef__":true,"id":7664},{"__isSmartRef__":true,"id":7666}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7654":{"name":"connections","type":"propertyDef","startIndex":5737,"stopIndex":5784,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7655},"className":"lively.morphic.CheckBox","_owner":{"__isSmartRef__":true,"id":7653},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7655":{"name":"properties","type":"categoryDef","startIndex":5721,"stopIndex":5786,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7654}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7656":{"name":"initialize","type":"propertyDef","startIndex":5806,"stopIndex":5929,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7657},"className":"lively.morphic.CheckBox","_owner":{"__isSmartRef__":true,"id":7653},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7657":{"name":"initializing","type":"categoryDef","startIndex":5788,"stopIndex":6102,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7656},{"__isSmartRef__":true,"id":7658}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7658":{"name":"createShape","type":"propertyDef","startIndex":5931,"stopIndex":6099,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7657},"className":"lively.morphic.CheckBox","_owner":{"__isSmartRef__":true,"id":7653},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7659":{"name":"setChecked","type":"propertyDef","startIndex":6119,"stopIndex":6262,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7660},"className":"lively.morphic.CheckBox","_owner":{"__isSmartRef__":true,"id":7653},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7660":{"name":"accessing","type":"categoryDef","startIndex":6104,"stopIndex":6265,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7659}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7661":{"name":"isChecked","type":"propertyDef","startIndex":6280,"stopIndex":6342,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7662},"className":"lively.morphic.CheckBox","_owner":{"__isSmartRef__":true,"id":7653},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7662":{"name":"testing","type":"categoryDef","startIndex":6267,"stopIndex":6345,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7661}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7663":{"name":"onClick","type":"propertyDef","startIndex":6369,"stopIndex":6674,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7664},"className":"lively.morphic.CheckBox","_owner":{"__isSmartRef__":true,"id":7653},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7664":{"name":"event handling","type":"categoryDef","startIndex":6347,"stopIndex":6679,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7663}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7665":{"name":"prepareForNewRenderContext","type":"propertyDef","startIndex":6700,"stopIndex":6938,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7666},"className":"lively.morphic.CheckBox","_owner":{"__isSmartRef__":true,"id":7653},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7666":{"name":"serialization","type":"categoryDef","startIndex":6681,"stopIndex":6940,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7665}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7667":{"name":"lively.morphic.ProgressBar","type":"klassDef","startIndex":6944,"stopIndex":9470,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7668},{"__isSmartRef__":true,"id":7670},{"__isSmartRef__":true,"id":7672},{"__isSmartRef__":true,"id":7673},{"__isSmartRef__":true,"id":7675},{"__isSmartRef__":true,"id":7676},{"__isSmartRef__":true,"id":7677},{"__isSmartRef__":true,"id":7679},{"__isSmartRef__":true,"id":7680},{"__isSmartRef__":true,"id":7681}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":7669},{"__isSmartRef__":true,"id":7674},{"__isSmartRef__":true,"id":7678},{"__isSmartRef__":true,"id":7682}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7668":{"name":"style","type":"propertyDef","startIndex":7016,"stopIndex":7164,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7669},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7669":{"name":"settings","type":"categoryDef","startIndex":7002,"stopIndex":7708,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7668},{"__isSmartRef__":true,"id":7670},{"__isSmartRef__":true,"id":7672}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7670":{"name":"progressStyle","type":"propertyDef","startIndex":7166,"stopIndex":7551,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7669},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7671":{"name":"lively.morphic.ProgressBar","type":"klassDef","startIndex":6944,"stopIndex":9470,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7668},{"__isSmartRef__":true,"id":7670},{"__isSmartRef__":true,"id":7672},{"__isSmartRef__":true,"id":7673},{"__isSmartRef__":true,"id":7675},{"__isSmartRef__":true,"id":7676},{"__isSmartRef__":true,"id":7677},{"__isSmartRef__":true,"id":7679},{"__isSmartRef__":true,"id":7680},{"__isSmartRef__":true,"id":7681}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":7669},{"__isSmartRef__":true,"id":7674},{"__isSmartRef__":true,"id":7678},{"__isSmartRef__":true,"id":7682}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7672":{"name":"labelStyle","type":"propertyDef","startIndex":7553,"stopIndex":7705,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7669},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7673":{"name":"initialize","type":"propertyDef","startIndex":7728,"stopIndex":7943,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7674},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7674":{"name":"initializing","type":"categoryDef","startIndex":7710,"stopIndex":8976,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7673},{"__isSmartRef__":true,"id":7675},{"__isSmartRef__":true,"id":7676}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7675":{"name":"createProgressMorph","type":"propertyDef","startIndex":7945,"stopIndex":8232,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7674},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7676":{"name":"createLabel","type":"propertyDef","startIndex":8234,"stopIndex":8971,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7674},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7677":{"name":"getValue","type":"propertyDef","startIndex":8993,"stopIndex":9039,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7678},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7678":{"name":"accessing","type":"categoryDef","startIndex":8978,"stopIndex":9245,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7677},{"__isSmartRef__":true,"id":7679},{"__isSmartRef__":true,"id":7680}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7679":{"name":"setValue","type":"propertyDef","startIndex":9041,"stopIndex":9111,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7678},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7680":{"name":"setLabel","type":"propertyDef","startIndex":9113,"stopIndex":9241,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7678},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7681":{"name":"updateBar","type":"propertyDef","startIndex":9261,"stopIndex":9465,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7682},"className":"lively.morphic.ProgressBar","_owner":{"__isSmartRef__":true,"id":7671},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7682":{"name":"updating","type":"categoryDef","startIndex":9247,"stopIndex":9467,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7681}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7683":{"name":null,"type":"comment","startIndex":9471,"stopIndex":9471,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7684":{"name":"lively.morphic.FrameRateMorph","type":"klassDef","startIndex":9472,"stopIndex":10631,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7685},{"__isSmartRef__":true,"id":7687},{"__isSmartRef__":true,"id":7688},{"__isSmartRef__":true,"id":7689}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Text","categories":[{"__isSmartRef__":true,"id":7686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7685":{"name":"initialize","type":"propertyDef","startIndex":9537,"stopIndex":9770,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7686},"className":"lively.morphic.FrameRateMorph","_owner":{"__isSmartRef__":true,"id":7684},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7686":{"name":"default category","type":"categoryDef","startIndex":9510,"stopIndex":10604,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7685},{"__isSmartRef__":true,"id":7687},{"__isSmartRef__":true,"id":7688},{"__isSmartRef__":true,"id":7689}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7687":{"name":"reset","type":"propertyDef","startIndex":9773,"stopIndex":9949,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7686},"className":"lively.morphic.FrameRateMorph","_owner":{"__isSmartRef__":true,"id":7684},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7688":{"name":"nextStep","type":"propertyDef","startIndex":9952,"stopIndex":10548,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7686},"className":"lively.morphic.FrameRateMorph","_owner":{"__isSmartRef__":true,"id":7684},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7689":{"name":"startSteppingScripts","type":"propertyDef","startIndex":10551,"stopIndex":10627,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7686},"className":"lively.morphic.FrameRateMorph","_owner":{"__isSmartRef__":true,"id":7684},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7690":{"name":null,"type":"comment","startIndex":10632,"stopIndex":10632,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7691":{"name":"lively.morphic.Menu","type":"klassDef","startIndex":10633,"stopIndex":18400,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7692},{"__isSmartRef__":true,"id":7694},{"__isSmartRef__":true,"id":7695},{"__isSmartRef__":true,"id":7697},{"__isSmartRef__":true,"id":7699},{"__isSmartRef__":true,"id":7701},{"__isSmartRef__":true,"id":7702},{"__isSmartRef__":true,"id":7703},{"__isSmartRef__":true,"id":7704},{"__isSmartRef__":true,"id":7706},{"__isSmartRef__":true,"id":7707},{"__isSmartRef__":true,"id":7708}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":7693},{"__isSmartRef__":true,"id":7696},{"__isSmartRef__":true,"id":7698},{"__isSmartRef__":true,"id":7700},{"__isSmartRef__":true,"id":7705},{"__isSmartRef__":true,"id":7709}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7692":{"name":"style","type":"propertyDef","startIndex":10698,"stopIndex":10844,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7693},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7693":{"name":"settings","type":"categoryDef","startIndex":10660,"stopIndex":10845,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7692},{"__isSmartRef__":true,"id":7694}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7694":{"name":"isEpiMorph","type":"propertyDef","startIndex":10846,"stopIndex":10866,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7693},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7695":{"name":"initialize","type":"propertyDef","startIndex":10889,"stopIndex":12073,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7696},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7696":{"name":"initializing","type":"categoryDef","startIndex":10847,"stopIndex":12052,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7695}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7697":{"name":"remove","type":"propertyDef","startIndex":12092,"stopIndex":12239,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7698},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7698":{"name":"removing","type":"categoryDef","startIndex":12054,"stopIndex":12218,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7697}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7699":{"name":"removeAllItems","type":"propertyDef","startIndex":12265,"stopIndex":12419,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7700},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7700":{"name":"item management","type":"categoryDef","startIndex":12220,"stopIndex":17663,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7699},{"__isSmartRef__":true,"id":7701},{"__isSmartRef__":true,"id":7702},{"__isSmartRef__":true,"id":7703}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7701":{"name":"createMenuItems","type":"propertyDef","startIndex":12422,"stopIndex":13742,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7700},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7702":{"name":"addItems","type":"propertyDef","startIndex":13745,"stopIndex":16318,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7700},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7703":{"name":"addItems2","type":"propertyDef","startIndex":16320,"stopIndex":17682,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7700},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7704":{"name":"openSubMenu","type":"propertyDef","startIndex":17703,"stopIndex":18011,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7705},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7705":{"name":"sub menu","type":"categoryDef","startIndex":17665,"stopIndex":18240,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7704},{"__isSmartRef__":true,"id":7706},{"__isSmartRef__":true,"id":7707}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7706":{"name":"removeSubMenu","type":"propertyDef","startIndex":18013,"stopIndex":18142,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7705},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7707":{"name":"removeOwnerMenu","type":"propertyDef","startIndex":18144,"stopIndex":18261,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7705},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7708":{"name":"remove","type":"propertyDef","startIndex":18279,"stopIndex":18395,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7709},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7691},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7709":{"name":"removal","type":"categoryDef","startIndex":18242,"stopIndex":18373,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7708}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7710":{"name":null,"type":"comment","startIndex":18401,"stopIndex":18401,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7711":{"name":"lively.morphic.Menu","type":"klassExtensionDef","startIndex":18402,"stopIndex":18921,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7712},{"__isSmartRef__":true,"id":7714}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7713}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7712":{"name":"openAtHand","type":"propertyDef","startIndex":18439,"stopIndex":18585,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7713},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7711},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7713":{"name":"default category","type":"categoryDef","startIndex":18413,"stopIndex":18894,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7712},{"__isSmartRef__":true,"id":7714}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7714":{"name":"openAt","type":"propertyDef","startIndex":18587,"stopIndex":18916,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":7713},"className":"lively.morphic.Menu","_owner":{"__isSmartRef__":true,"id":7711},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7715":{"name":null,"type":"comment","startIndex":18922,"stopIndex":18923,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7716":{"name":"lively.morphic.Morph","type":"klassExtensionDef","startIndex":18924,"stopIndex":20791,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7717},{"__isSmartRef__":true,"id":7719},{"__isSmartRef__":true,"id":7720},{"__isSmartRef__":true,"id":7721},{"__isSmartRef__":true,"id":7722}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7718}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7717":{"name":"enableMorphMenu","type":"propertyDef","startIndex":18967,"stopIndex":19042,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7718},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7716},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7718":{"name":"menu","type":"categoryDef","startIndex":18933,"stopIndex":20764,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7717},{"__isSmartRef__":true,"id":7719},{"__isSmartRef__":true,"id":7720},{"__isSmartRef__":true,"id":7721},{"__isSmartRef__":true,"id":7722}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7719":{"name":"disableMorphMenu","type":"propertyDef","startIndex":19044,"stopIndex":19108,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7718},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7716},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7720":{"name":"openMorphMenuAt","type":"propertyDef","startIndex":19110,"stopIndex":19253,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7718},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7716},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7721":{"name":"showMorphMenu","type":"propertyDef","startIndex":19255,"stopIndex":19385,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7718},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7716},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7722":{"name":"morphMenuItems","type":"propertyDef","startIndex":19387,"stopIndex":20785,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7718},"className":"lively.morphic.Morph","_owner":{"__isSmartRef__":true,"id":7716},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7723":{"name":"lively.morphic.Text","type":"klassExtensionDef","startIndex":20792,"stopIndex":21376,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7724}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7725}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7724":{"name":"morphMenuItems","type":"propertyDef","startIndex":20834,"stopIndex":21370,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7725},"className":"lively.morphic.Text","_owner":{"__isSmartRef__":true,"id":7723},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7725":{"name":"menu","type":"categoryDef","startIndex":20800,"stopIndex":21349,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7724}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7726":{"name":null,"type":"comment","startIndex":21377,"stopIndex":21378,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7727":{"name":"lively.morphic.World","type":"klassExtensionDef","startIndex":21379,"stopIndex":32710,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7728},{"__isSmartRef__":true,"id":7730},{"__isSmartRef__":true,"id":7731},{"__isSmartRef__":true,"id":7732},{"__isSmartRef__":true,"id":7733},{"__isSmartRef__":true,"id":7734},{"__isSmartRef__":true,"id":7735},{"__isSmartRef__":true,"id":7736},{"__isSmartRef__":true,"id":7738},{"__isSmartRef__":true,"id":7739},{"__isSmartRef__":true,"id":7740},{"__isSmartRef__":true,"id":7741},{"__isSmartRef__":true,"id":7743},{"__isSmartRef__":true,"id":7745},{"__isSmartRef__":true,"id":7746},{"__isSmartRef__":true,"id":7747},{"__isSmartRef__":true,"id":7749},{"__isSmartRef__":true,"id":7750},{"__isSmartRef__":true,"id":7751},{"__isSmartRef__":true,"id":7753},{"__isSmartRef__":true,"id":7755},{"__isSmartRef__":true,"id":7756},{"__isSmartRef__":true,"id":7757},{"__isSmartRef__":true,"id":7759},{"__isSmartRef__":true,"id":7761}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7729},{"__isSmartRef__":true,"id":7737},{"__isSmartRef__":true,"id":7742},{"__isSmartRef__":true,"id":7744},{"__isSmartRef__":true,"id":7748},{"__isSmartRef__":true,"id":7752},{"__isSmartRef__":true,"id":7754},{"__isSmartRef__":true,"id":7758},{"__isSmartRef__":true,"id":7760},{"__isSmartRef__":true,"id":7762}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7728":{"name":"openInspectorFor","type":"propertyDef","startIndex":21426,"stopIndex":21788,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7729},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7729":{"name":"editors","type":"categoryDef","startIndex":21388,"stopIndex":23464,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7728},{"__isSmartRef__":true,"id":7730},{"__isSmartRef__":true,"id":7731},{"__isSmartRef__":true,"id":7732},{"__isSmartRef__":true,"id":7733},{"__isSmartRef__":true,"id":7734},{"__isSmartRef__":true,"id":7735}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7730":{"name":"openStyleEditorFor","type":"propertyDef","startIndex":21791,"stopIndex":22109,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7729},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7731":{"name":"openObjectEditorFor","type":"propertyDef","startIndex":22112,"stopIndex":22463,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7729},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7732":{"name":"openBrowseSendersFor","type":"propertyDef","startIndex":22465,"stopIndex":22624,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7729},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7733":{"name":"openBrowseImplementorsFor","type":"propertyDef","startIndex":22626,"stopIndex":22863,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7729},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7734":{"name":"openClassBrowserFor","type":"propertyDef","startIndex":22865,"stopIndex":23026,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7729},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7735":{"name":"openPartItem","type":"propertyDef","startIndex":23029,"stopIndex":23479,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7729},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7736":{"name":"morphMenuPartsBinItems","type":"propertyDef","startIndex":23500,"stopIndex":23935,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7737},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7737":{"name":"menu","type":"categoryDef","startIndex":23466,"stopIndex":27669,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7736},{"__isSmartRef__":true,"id":7738},{"__isSmartRef__":true,"id":7739},{"__isSmartRef__":true,"id":7740}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7738":{"name":"morphMenuDefaultPartsItems","type":"propertyDef","startIndex":23937,"stopIndex":24747,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7737},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7739":{"name":"morphMenuItems","type":"propertyDef","startIndex":24750,"stopIndex":27590,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7737},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7740":{"name":"resetScale","type":"propertyDef","startIndex":27592,"stopIndex":27689,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7737},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7741":{"name":"positionForNewMorph","type":"propertyDef","startIndex":27712,"stopIndex":28306,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7742},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7742":{"name":"positioning","type":"categoryDef","startIndex":27671,"stopIndex":28285,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7741}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7743":{"name":"addFramedMorph","type":"propertyDef","startIndex":28324,"stopIndex":28592,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7744},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7744":{"name":"windows","type":"categoryDef","startIndex":28287,"stopIndex":29451,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7743},{"__isSmartRef__":true,"id":7745},{"__isSmartRef__":true,"id":7746}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7745":{"name":"addTextWindow","type":"propertyDef","startIndex":28595,"stopIndex":29178,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7744},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7746":{"name":"internalAddWindow","type":"propertyDef","startIndex":29181,"stopIndex":29472,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7744},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7747":{"name":"openDialog","type":"propertyDef","startIndex":29490,"stopIndex":29892,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7748},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7748":{"name":"dialogs","type":"categoryDef","startIndex":29453,"stopIndex":30168,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7747},{"__isSmartRef__":true,"id":7749},{"__isSmartRef__":true,"id":7750}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7749":{"name":"confirm","type":"propertyDef","startIndex":29894,"stopIndex":30028,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7748},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7750":{"name":"prompt","type":"propertyDef","startIndex":30030,"stopIndex":30189,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7748},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7751":{"name":"addProgressBar","type":"propertyDef","startIndex":30212,"stopIndex":30597,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7752},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7752":{"name":"progress bar","type":"categoryDef","startIndex":30170,"stopIndex":30547,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7751}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7753":{"name":"askForUserName","type":"propertyDef","startIndex":30619,"stopIndex":31055,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7754},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7754":{"name":"preferences","type":"categoryDef","startIndex":30549,"stopIndex":31844,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7753},{"__isSmartRef__":true,"id":7755},{"__isSmartRef__":true,"id":7756}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7755":{"name":"askForNewWorldExtent","type":"propertyDef","startIndex":31057,"stopIndex":31722,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7754},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7756":{"name":"setCurrentUser","type":"propertyDef","startIndex":31725,"stopIndex":31893,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7754},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7757":{"name":"withSelectedMorphsDo","type":"propertyDef","startIndex":31920,"stopIndex":32136,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7758},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7758":{"name":"morph selection","type":"categoryDef","startIndex":31846,"stopIndex":32086,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7757}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7759":{"name":"resetAllScales","type":"propertyDef","startIndex":32157,"stopIndex":32284,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7760},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7760":{"name":"debugging","type":"categoryDef","startIndex":32089,"stopIndex":32233,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7759}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7761":{"name":"interactiveDeleteWorldOnServer","type":"propertyDef","startIndex":32298,"stopIndex":32706,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7762},"className":"lively.morphic.World","_owner":{"__isSmartRef__":true,"id":7727},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7762":{"name":"wiki","type":"categoryDef","startIndex":32235,"stopIndex":32654,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7761}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7763":{"name":null,"type":"comment","startIndex":32711,"stopIndex":32711,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7764":{"name":"lively.morphic.List","type":"klassExtensionDef","startIndex":32712,"stopIndex":38129,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7765},{"__isSmartRef__":true,"id":7767},{"__isSmartRef__":true,"id":7769},{"__isSmartRef__":true,"id":7770},{"__isSmartRef__":true,"id":7771},{"__isSmartRef__":true,"id":7773},{"__isSmartRef__":true,"id":7775},{"__isSmartRef__":true,"id":7776},{"__isSmartRef__":true,"id":7778},{"__isSmartRef__":true,"id":7779},{"__isSmartRef__":true,"id":7780},{"__isSmartRef__":true,"id":7781},{"__isSmartRef__":true,"id":7782},{"__isSmartRef__":true,"id":7783},{"__isSmartRef__":true,"id":7784},{"__isSmartRef__":true,"id":7785},{"__isSmartRef__":true,"id":7786},{"__isSmartRef__":true,"id":7787},{"__isSmartRef__":true,"id":7788},{"__isSmartRef__":true,"id":7789},{"__isSmartRef__":true,"id":7790},{"__isSmartRef__":true,"id":7791},{"__isSmartRef__":true,"id":7792},{"__isSmartRef__":true,"id":7793},{"__isSmartRef__":true,"id":7794},{"__isSmartRef__":true,"id":7796},{"__isSmartRef__":true,"id":7797},{"__isSmartRef__":true,"id":7798},{"__isSmartRef__":true,"id":7800},{"__isSmartRef__":true,"id":7801},{"__isSmartRef__":true,"id":7802},{"__isSmartRef__":true,"id":7803},{"__isSmartRef__":true,"id":7804},{"__isSmartRef__":true,"id":7806},{"__isSmartRef__":true,"id":7807},{"__isSmartRef__":true,"id":7808},{"__isSmartRef__":true,"id":7809},{"__isSmartRef__":true,"id":7810}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7766},{"__isSmartRef__":true,"id":7768},{"__isSmartRef__":true,"id":7772},{"__isSmartRef__":true,"id":7774},{"__isSmartRef__":true,"id":7777},{"__isSmartRef__":true,"id":7795},{"__isSmartRef__":true,"id":7799},{"__isSmartRef__":true,"id":7805}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7765":{"name":"connections","type":"propertyDef","startIndex":32763,"stopIndex":32860,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7766},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7766":{"name":"documentation","type":"categoryDef","startIndex":32691,"stopIndex":32810,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7765}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7767":{"name":"style","type":"propertyDef","startIndex":32879,"stopIndex":33027,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7768},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7768":{"name":"settings","type":"categoryDef","startIndex":32812,"stopIndex":33038,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7767},{"__isSmartRef__":true,"id":7769},{"__isSmartRef__":true,"id":7770}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7769":{"name":"selectionColor","type":"propertyDef","startIndex":33029,"stopIndex":33070,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7768},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7770":{"name":"isList","type":"propertyDef","startIndex":33072,"stopIndex":33088,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7768},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7771":{"name":"initialize","type":"propertyDef","startIndex":33111,"stopIndex":33370,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7772},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7772":{"name":"initializing","type":"categoryDef","startIndex":33040,"stopIndex":33320,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7771}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7773":{"name":"setExtent","type":"propertyDef","startIndex":33390,"stopIndex":33488,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7774},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7774":{"name":"accessing","type":"categoryDef","startIndex":33322,"stopIndex":33526,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7773},{"__isSmartRef__":true,"id":7775}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7775":{"name":"getListExtent","type":"propertyDef","startIndex":33490,"stopIndex":33574,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7774},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7776":{"name":"getMenu","type":"propertyDef","startIndex":33601,"stopIndex":33668,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7777":{"name":"list interface","type":"categoryDef","startIndex":33528,"stopIndex":35854,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7776},{"__isSmartRef__":true,"id":7778},{"__isSmartRef__":true,"id":7779},{"__isSmartRef__":true,"id":7780},{"__isSmartRef__":true,"id":7781},{"__isSmartRef__":true,"id":7782},{"__isSmartRef__":true,"id":7783},{"__isSmartRef__":true,"id":7784},{"__isSmartRef__":true,"id":7785},{"__isSmartRef__":true,"id":7786},{"__isSmartRef__":true,"id":7787},{"__isSmartRef__":true,"id":7788},{"__isSmartRef__":true,"id":7789},{"__isSmartRef__":true,"id":7790},{"__isSmartRef__":true,"id":7791},{"__isSmartRef__":true,"id":7792},{"__isSmartRef__":true,"id":7793}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7778":{"name":"updateList","type":"propertyDef","startIndex":33670,"stopIndex":33932,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7779":{"name":"addItem","type":"propertyDef","startIndex":33934,"stopIndex":34024,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7780":{"name":"selectAt","type":"propertyDef","startIndex":34027,"stopIndex":34253,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7781":{"name":"deselectAt","type":"propertyDef","startIndex":34255,"stopIndex":34334,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7782":{"name":"updateSelectionAndLineNoProperties","type":"propertyDef","startIndex":34337,"stopIndex":34580,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7783":{"name":"setList","type":"propertyDef","startIndex":34583,"stopIndex":34645,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7784":{"name":"getList","type":"propertyDef","startIndex":34647,"stopIndex":34695,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7785":{"name":"getValues","type":"propertyDef","startIndex":34697,"stopIndex":34823,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7786":{"name":"setSelection","type":"propertyDef","startIndex":34826,"stopIndex":34904,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7787":{"name":"getSelection","type":"propertyDef","startIndex":34906,"stopIndex":34960,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7788":{"name":"getItem","type":"propertyDef","startIndex":34962,"stopIndex":35046,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7789":{"name":"removeItemOrValue","type":"propertyDef","startIndex":35048,"stopIndex":35244,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7790":{"name":"getSelectedItem","type":"propertyDef","startIndex":35247,"stopIndex":35400,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7791":{"name":"moveUpInList","type":"propertyDef","startIndex":35402,"stopIndex":35609,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7792":{"name":"moveDownInList","type":"propertyDef","startIndex":35611,"stopIndex":35820,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7793":{"name":"clearSelections","type":"propertyDef","startIndex":35822,"stopIndex":35903,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7777},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7794":{"name":"changeListPosition","type":"propertyDef","startIndex":35937,"stopIndex":36190,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7795},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7795":{"name":"private list functions","type":"categoryDef","startIndex":35856,"stopIndex":36542,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7794},{"__isSmartRef__":true,"id":7796},{"__isSmartRef__":true,"id":7797}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7796":{"name":"resizeList","type":"propertyDef","startIndex":36192,"stopIndex":36279,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7795},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7797":{"name":"find","type":"propertyDef","startIndex":36281,"stopIndex":36591,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7795},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7798":{"name":"applyStyle","type":"propertyDef","startIndex":36610,"stopIndex":36916,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7799},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7799":{"name":"styling","type":"categoryDef","startIndex":36544,"stopIndex":37222,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7798},{"__isSmartRef__":true,"id":7800},{"__isSmartRef__":true,"id":7801},{"__isSmartRef__":true,"id":7802},{"__isSmartRef__":true,"id":7803}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7800":{"name":"setFontSize","type":"propertyDef","startIndex":36918,"stopIndex":37006,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7799},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7801":{"name":"getFontSize","type":"propertyDef","startIndex":37008,"stopIndex":37084,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7799},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7802":{"name":"setFontFamily","type":"propertyDef","startIndex":37086,"stopIndex":37182,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7799},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7803":{"name":"getFontFamily","type":"propertyDef","startIndex":37184,"stopIndex":37272,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7799},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7804":{"name":"enableMultipleSelections","type":"propertyDef","startIndex":37309,"stopIndex":37466,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7805},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7805":{"name":"multiple selection support","type":"categoryDef","startIndex":37224,"stopIndex":38073,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7804},{"__isSmartRef__":true,"id":7806},{"__isSmartRef__":true,"id":7807},{"__isSmartRef__":true,"id":7808},{"__isSmartRef__":true,"id":7809},{"__isSmartRef__":true,"id":7810}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7806":{"name":"getSelectedItems","type":"propertyDef","startIndex":37468,"stopIndex":37626,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7805},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7807":{"name":"getSelectedIndexes","type":"propertyDef","startIndex":37628,"stopIndex":37722,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7805},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7808":{"name":"getSelections","type":"propertyDef","startIndex":37725,"stopIndex":37862,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7805},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7809":{"name":"setSelections","type":"propertyDef","startIndex":37864,"stopIndex":38019,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7805},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7810":{"name":"selectAllAt","type":"propertyDef","startIndex":38021,"stopIndex":38122,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7805},"className":"lively.morphic.List","_owner":{"__isSmartRef__":true,"id":7764},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7811":{"name":"lively.morphic.DropDownList","type":"klassExtensionDef","startIndex":38130,"stopIndex":38285,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7812}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":7813}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7812":{"name":"initialize","type":"propertyDef","startIndex":38188,"stopIndex":38280,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7813},"className":"lively.morphic.DropDownList","_owner":{"__isSmartRef__":true,"id":7811},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7813":{"name":"initializing","type":"categoryDef","startIndex":38117,"stopIndex":38229,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7812}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7814":{"name":null,"type":"comment","startIndex":38286,"stopIndex":38286,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7815":{"name":"lively.morphic.WindowControl","type":"klassDef","startIndex":38287,"stopIndex":38777,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7816},{"__isSmartRef__":true,"id":7818},{"__isSmartRef__":true,"id":7820},{"__isSmartRef__":true,"id":7821},{"__isSmartRef__":true,"id":7822}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Button","categories":[{"__isSmartRef__":true,"id":7817},{"__isSmartRef__":true,"id":7819},{"__isSmartRef__":true,"id":7823}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7816":{"name":"documentation","type":"propertyDef","startIndex":38369,"stopIndex":38422,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7817},"className":"lively.morphic.WindowControl","_owner":{"__isSmartRef__":true,"id":7815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7817":{"name":"documentation","type":"categoryDef","startIndex":38297,"stopIndex":38372,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7816}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7818":{"name":"style","type":"propertyDef","startIndex":38451,"stopIndex":38527,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7819},"className":"lively.morphic.WindowControl","_owner":{"__isSmartRef__":true,"id":7815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7819":{"name":"settings and state","type":"categoryDef","startIndex":38374,"stopIndex":38541,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7818},{"__isSmartRef__":true,"id":7820},{"__isSmartRef__":true,"id":7821}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7820":{"name":"focus","type":"propertyDef","startIndex":38529,"stopIndex":38552,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7819},"className":"lively.morphic.WindowControl","_owner":{"__isSmartRef__":true,"id":7815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7821":{"name":"connections","type":"propertyDef","startIndex":38554,"stopIndex":38591,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7819},"className":"lively.morphic.WindowControl","_owner":{"__isSmartRef__":true,"id":7815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7822":{"name":"initialize","type":"propertyDef","startIndex":38614,"stopIndex":38772,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7823},"className":"lively.morphic.WindowControl","_owner":{"__isSmartRef__":true,"id":7815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7823":{"name":"initializing","type":"categoryDef","startIndex":38543,"stopIndex":38721,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7822}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7824":{"name":null,"type":"comment","startIndex":38778,"stopIndex":38778,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7825":{"name":"lively.morphic.TitleBar","type":"klassDef","startIndex":38779,"stopIndex":43061,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7826},{"__isSmartRef__":true,"id":7828},{"__isSmartRef__":true,"id":7830},{"__isSmartRef__":true,"id":7831},{"__isSmartRef__":true,"id":7832},{"__isSmartRef__":true,"id":7833},{"__isSmartRef__":true,"id":7834},{"__isSmartRef__":true,"id":7835},{"__isSmartRef__":true,"id":7837},{"__isSmartRef__":true,"id":7839},{"__isSmartRef__":true,"id":7841},{"__isSmartRef__":true,"id":7843}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["TitleBarMorph"],"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":7827},{"__isSmartRef__":true,"id":7829},{"__isSmartRef__":true,"id":7836},{"__isSmartRef__":true,"id":7838},{"__isSmartRef__":true,"id":7840},{"__isSmartRef__":true,"id":7842}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7826":{"name":"documentation","type":"propertyDef","startIndex":38877,"stopIndex":38933,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7827},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7827":{"name":"documentation","type":"categoryDef","startIndex":38805,"stopIndex":38883,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7826}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7828":{"name":"controlSpacing","type":"propertyDef","startIndex":38954,"stopIndex":38975,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7829},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7829":{"name":"properties","type":"categoryDef","startIndex":38885,"stopIndex":39541,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7828},{"__isSmartRef__":true,"id":7830},{"__isSmartRef__":true,"id":7831},{"__isSmartRef__":true,"id":7832},{"__isSmartRef__":true,"id":7833},{"__isSmartRef__":true,"id":7834}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7830":{"name":"barHeight","type":"propertyDef","startIndex":38977,"stopIndex":38994,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7829},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7831":{"name":"shortBarHeight","type":"propertyDef","startIndex":38996,"stopIndex":39018,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7829},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7832":{"name":"accessibleInInactiveWindow","type":"propertyDef","startIndex":39020,"stopIndex":39056,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7829},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7833":{"name":"style","type":"propertyDef","startIndex":39058,"stopIndex":39406,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7829},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7834":{"name":"labelStyle","type":"propertyDef","startIndex":39408,"stopIndex":39591,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7829},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7835":{"name":"initialize","type":"propertyDef","startIndex":39615,"stopIndex":41495,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7836},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7836":{"name":"intitializing","type":"categoryDef","startIndex":39543,"stopIndex":41446,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7835}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7837":{"name":"setTitle","type":"propertyDef","startIndex":41512,"stopIndex":41626,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7838},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7838":{"name":"label","type":"categoryDef","startIndex":41448,"stopIndex":41576,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7837}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7839":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":41646,"stopIndex":42967,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7840},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7840":{"name":"layouting","type":"categoryDef","startIndex":41578,"stopIndex":42917,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7839}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7841":{"name":"onMouseDown","type":"propertyDef","startIndex":42992,"stopIndex":43024,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7842},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7842":{"name":"event handling","type":"categoryDef","startIndex":42919,"stopIndex":43005,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7841},{"__isSmartRef__":true,"id":7843}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7843":{"name":"onMouseUp","type":"propertyDef","startIndex":43026,"stopIndex":43056,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7842},"className":"lively.morphic.TitleBar","_owner":{"__isSmartRef__":true,"id":7825},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7844":{"name":null,"type":"comment","startIndex":43062,"stopIndex":43062,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7845":{"name":"lively.morphic.Window","type":"klassDef","startIndex":43063,"stopIndex":49245,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7846},{"__isSmartRef__":true,"id":7848},{"__isSmartRef__":true,"id":7850},{"__isSmartRef__":true,"id":7851},{"__isSmartRef__":true,"id":7852},{"__isSmartRef__":true,"id":7854},{"__isSmartRef__":true,"id":7856},{"__isSmartRef__":true,"id":7857},{"__isSmartRef__":true,"id":7858},{"__isSmartRef__":true,"id":7860},{"__isSmartRef__":true,"id":7861},{"__isSmartRef__":true,"id":7863},{"__isSmartRef__":true,"id":7864},{"__isSmartRef__":true,"id":7865},{"__isSmartRef__":true,"id":7866},{"__isSmartRef__":true,"id":7867},{"__isSmartRef__":true,"id":7868},{"__isSmartRef__":true,"id":7870},{"__isSmartRef__":true,"id":7872},{"__isSmartRef__":true,"id":7874}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["WindowMorph"],"superclassName":"lively.morphic.Morph","categories":[{"__isSmartRef__":true,"id":7847},{"__isSmartRef__":true,"id":7849},{"__isSmartRef__":true,"id":7853},{"__isSmartRef__":true,"id":7855},{"__isSmartRef__":true,"id":7859},{"__isSmartRef__":true,"id":7862},{"__isSmartRef__":true,"id":7869},{"__isSmartRef__":true,"id":7871},{"__isSmartRef__":true,"id":7873}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7846":{"name":"documentation","type":"propertyDef","startIndex":43159,"stopIndex":43227,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7847},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7847":{"name":"documentation","type":"categoryDef","startIndex":43087,"stopIndex":43177,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7846}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7848":{"name":"state","type":"propertyDef","startIndex":43256,"stopIndex":43277,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7849},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7849":{"name":"settings and state","type":"categoryDef","startIndex":43179,"stopIndex":43371,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7848},{"__isSmartRef__":true,"id":7850},{"__isSmartRef__":true,"id":7851}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7850":{"name":"style","type":"propertyDef","startIndex":43279,"stopIndex":43401,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7849},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7851":{"name":"isWindow","type":"propertyDef","startIndex":43403,"stopIndex":43421,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7849},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7852":{"name":"initialize","type":"propertyDef","startIndex":43444,"stopIndex":44473,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7853},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7853":{"name":"initializing","type":"categoryDef","startIndex":43373,"stopIndex":44424,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7852}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7854":{"name":"makeTitleBar","type":"propertyDef","startIndex":44504,"stopIndex":44712,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7855},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7855":{"name":"window behavior","type":"categoryDef","startIndex":44426,"stopIndex":44996,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7854},{"__isSmartRef__":true,"id":7856},{"__isSmartRef__":true,"id":7857}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7856":{"name":"getBounds","type":"propertyDef","startIndex":44714,"stopIndex":44860,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7855},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7857":{"name":"initiateShutdown","type":"propertyDef","startIndex":44862,"stopIndex":45046,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7855},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7858":{"name":"showTargetMorphMenu","type":"propertyDef","startIndex":45061,"stopIndex":45333,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7859},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7859":{"name":"menu","type":"categoryDef","startIndex":44998,"stopIndex":45626,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7858},{"__isSmartRef__":true,"id":7860}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7860":{"name":"morphMenuItems","type":"propertyDef","startIndex":45335,"stopIndex":45676,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7859},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7861":{"name":"highlight","type":"propertyDef","startIndex":45707,"stopIndex":45962,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7862},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7862":{"name":"mouse event handling","type":"categoryDef","startIndex":45628,"stopIndex":47201,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7861},{"__isSmartRef__":true,"id":7863},{"__isSmartRef__":true,"id":7864},{"__isSmartRef__":true,"id":7865},{"__isSmartRef__":true,"id":7866},{"__isSmartRef__":true,"id":7867}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7863":{"name":"isInFront","type":"propertyDef","startIndex":45964,"stopIndex":46045,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7862},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7864":{"name":"comeForward","type":"propertyDef","startIndex":46048,"stopIndex":46720,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7862},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7865":{"name":"onMouseDown","type":"propertyDef","startIndex":46723,"stopIndex":46947,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7862},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7866":{"name":"onDragStart","type":"propertyDef","startIndex":46949,"stopIndex":47054,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7862},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7867":{"name":"onDrag","type":"propertyDef","startIndex":47056,"stopIndex":47251,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7862},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7868":{"name":"toString","type":"propertyDef","startIndex":47271,"stopIndex":47390,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7869},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7869":{"name":"debugging","type":"categoryDef","startIndex":47203,"stopIndex":47340,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7868}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7870":{"name":"remove","type":"propertyDef","startIndex":47409,"stopIndex":47614,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7871},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7871":{"name":"removing","type":"categoryDef","startIndex":47342,"stopIndex":47564,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7870}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7872":{"name":"collapse","type":"propertyDef","startIndex":47635,"stopIndex":48461,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7873},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7873":{"name":"collapsing","type":"categoryDef","startIndex":47566,"stopIndex":49189,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7872},{"__isSmartRef__":true,"id":7874}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7874":{"name":"expand","type":"propertyDef","startIndex":48463,"stopIndex":49239,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7873},"className":"lively.morphic.Window","_owner":{"__isSmartRef__":true,"id":7845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7875":{"name":null,"type":"comment","startIndex":49246,"stopIndex":49247,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7876":{"name":"lively.morphic.App","type":"klassDef","startIndex":49248,"stopIndex":50108,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7877},{"__isSmartRef__":true,"id":7879},{"__isSmartRef__":true,"id":7881},{"__isSmartRef__":true,"id":7883},{"__isSmartRef__":true,"id":7885},{"__isSmartRef__":true,"id":7886}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":7878},{"__isSmartRef__":true,"id":7880},{"__isSmartRef__":true,"id":7882},{"__isSmartRef__":true,"id":7884},{"__isSmartRef__":true,"id":7887}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7877":{"name":"initialViewExtent","type":"propertyDef","startIndex":49302,"stopIndex":49337,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7878},"className":"lively.morphic.App","_owner":{"__isSmartRef__":true,"id":7876},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7878":{"name":"properties","type":"categoryDef","startIndex":49233,"stopIndex":49287,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7877}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7879":{"name":"buildView","type":"propertyDef","startIndex":49360,"stopIndex":49453,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7880},"className":"lively.morphic.App","_owner":{"__isSmartRef__":true,"id":7876},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7880":{"name":"initializing","type":"categoryDef","startIndex":49289,"stopIndex":49403,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7879}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7881":{"name":"getInitialViewExtent","type":"propertyDef","startIndex":49473,"stopIndex":49575,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7882},"className":"lively.morphic.App","_owner":{"__isSmartRef__":true,"id":7876},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7882":{"name":"accessing","type":"categoryDef","startIndex":49405,"stopIndex":49525,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7881}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7883":{"name":"openIn","type":"propertyDef","startIndex":49593,"stopIndex":49912,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7884},"className":"lively.morphic.App","_owner":{"__isSmartRef__":true,"id":7876},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7884":{"name":"opening","type":"categoryDef","startIndex":49527,"stopIndex":49953,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7883},{"__isSmartRef__":true,"id":7885}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7885":{"name":"open","type":"propertyDef","startIndex":49914,"stopIndex":50002,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7884},"className":"lively.morphic.App","_owner":{"__isSmartRef__":true,"id":7876},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7886":{"name":"removeTopLevel","type":"propertyDef","startIndex":50022,"stopIndex":50103,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7887},"className":"lively.morphic.App","_owner":{"__isSmartRef__":true,"id":7876},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7887":{"name":"removing","type":"categoryDef","startIndex":49955,"stopIndex":50052,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7886}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7888":{"name":null,"type":"comment","startIndex":50109,"stopIndex":50109,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7889":{"name":"lively.morphic.AbstractDialog","type":"klassDef","startIndex":50110,"stopIndex":52738,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7890},{"__isSmartRef__":true,"id":7892},{"__isSmartRef__":true,"id":7894},{"__isSmartRef__":true,"id":7895},{"__isSmartRef__":true,"id":7897},{"__isSmartRef__":true,"id":7898},{"__isSmartRef__":true,"id":7899},{"__isSmartRef__":true,"id":7900},{"__isSmartRef__":true,"id":7901},{"__isSmartRef__":true,"id":7902},{"__isSmartRef__":true,"id":7904}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.App","categories":[{"__isSmartRef__":true,"id":7891},{"__isSmartRef__":true,"id":7893},{"__isSmartRef__":true,"id":7896},{"__isSmartRef__":true,"id":7903}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7890":{"name":"connections","type":"propertyDef","startIndex":50190,"stopIndex":50217,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7891},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7891":{"name":"documentation","type":"categoryDef","startIndex":50118,"stopIndex":50167,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7890}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7892":{"name":"initialViewExtent","type":"propertyDef","startIndex":50238,"stopIndex":50272,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7893},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7893":{"name":"properties","type":"categoryDef","startIndex":50169,"stopIndex":50236,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7892},{"__isSmartRef__":true,"id":7894}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7894":{"name":"inset","type":"propertyDef","startIndex":50274,"stopIndex":50286,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7893},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7895":{"name":"initialize","type":"propertyDef","startIndex":50309,"stopIndex":50477,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7896},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7896":{"name":"initializing","type":"categoryDef","startIndex":50238,"stopIndex":52401,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7895},{"__isSmartRef__":true,"id":7897},{"__isSmartRef__":true,"id":7898},{"__isSmartRef__":true,"id":7899},{"__isSmartRef__":true,"id":7900},{"__isSmartRef__":true,"id":7901}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7897":{"name":"buildPanel","type":"propertyDef","startIndex":50479,"stopIndex":50783,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7896},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7898":{"name":"buildLabel","type":"propertyDef","startIndex":50785,"stopIndex":51382,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7896},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7899":{"name":"buildCancelButton","type":"propertyDef","startIndex":51384,"stopIndex":51818,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7896},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7900":{"name":"buildOKButton","type":"propertyDef","startIndex":51820,"stopIndex":52239,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7896},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7901":{"name":"buildView","type":"propertyDef","startIndex":52241,"stopIndex":52451,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7896},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7902":{"name":"setCallback","type":"propertyDef","startIndex":52471,"stopIndex":52597,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7903},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7903":{"name":"callbacks","type":"categoryDef","startIndex":52403,"stopIndex":52682,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7902},{"__isSmartRef__":true,"id":7904}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7904":{"name":"triggerCallback","type":"propertyDef","startIndex":52599,"stopIndex":52733,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7903},"className":"lively.morphic.AbstractDialog","_owner":{"__isSmartRef__":true,"id":7889},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7905":{"name":null,"type":"comment","startIndex":52739,"stopIndex":52739,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7906":{"name":"lively.morphic.ConfirmDialog","type":"klassDef","startIndex":52740,"stopIndex":53253,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7907},{"__isSmartRef__":true,"id":7909}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.AbstractDialog","categories":[{"__isSmartRef__":true,"id":7908},{"__isSmartRef__":true,"id":7910}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7907":{"name":"initialViewExtent","type":"propertyDef","startIndex":52827,"stopIndex":52861,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7908},"className":"lively.morphic.ConfirmDialog","_owner":{"__isSmartRef__":true,"id":7906},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7908":{"name":"properties","type":"categoryDef","startIndex":52758,"stopIndex":52811,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7907}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7909":{"name":"buildView","type":"propertyDef","startIndex":52884,"stopIndex":53248,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7910},"className":"lively.morphic.ConfirmDialog","_owner":{"__isSmartRef__":true,"id":7906},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7910":{"name":"initializing","type":"categoryDef","startIndex":52813,"stopIndex":53197,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7909}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7911":{"name":null,"type":"comment","startIndex":53254,"stopIndex":53254,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7912":{"name":"lively.morphic.PromptDialog","type":"klassDef","startIndex":53255,"stopIndex":54782,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7913},{"__isSmartRef__":true,"id":7915},{"__isSmartRef__":true,"id":7916},{"__isSmartRef__":true,"id":7917}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.AbstractDialog","categories":[{"__isSmartRef__":true,"id":7914},{"__isSmartRef__":true,"id":7918}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7913":{"name":"initialize","type":"propertyDef","startIndex":53427,"stopIndex":53587,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7914},"className":"lively.morphic.PromptDialog","_owner":{"__isSmartRef__":true,"id":7912},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7914":{"name":"initializing","type":"categoryDef","startIndex":53356,"stopIndex":54262,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7913},{"__isSmartRef__":true,"id":7915},{"__isSmartRef__":true,"id":7916}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7915":{"name":"buildTextInput","type":"propertyDef","startIndex":53589,"stopIndex":53959,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7914},"className":"lively.morphic.PromptDialog","_owner":{"__isSmartRef__":true,"id":7912},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7916":{"name":"buildView","type":"propertyDef","startIndex":53962,"stopIndex":54311,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7914},"className":"lively.morphic.PromptDialog","_owner":{"__isSmartRef__":true,"id":7912},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7917":{"name":"openIn","type":"propertyDef","startIndex":54330,"stopIndex":54777,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7918},"className":"lively.morphic.PromptDialog","_owner":{"__isSmartRef__":true,"id":7912},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7918":{"name":"opening","type":"categoryDef","startIndex":54264,"stopIndex":54726,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7917}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7919":{"name":null,"type":"comment","startIndex":54783,"stopIndex":54784,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7920":{"name":"lively.morphic.WindowedApp","type":"klassDef","startIndex":54785,"stopIndex":55214,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7921}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.App","categories":[{"__isSmartRef__":true,"id":7922}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7921":{"name":"openIn","type":"propertyDef","startIndex":54856,"stopIndex":55209,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7922},"className":"lively.morphic.WindowedApp","_owner":{"__isSmartRef__":true,"id":7920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7922":{"name":"opening","type":"categoryDef","startIndex":54790,"stopIndex":55158,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7921}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7923":{"name":null,"type":"comment","startIndex":55215,"stopIndex":55257,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7924":{"name":"lively.morphic.Selection","type":"klassDef","startIndex":55258,"stopIndex":67526,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7925},{"__isSmartRef__":true,"id":7927},{"__isSmartRef__":true,"id":7929},{"__isSmartRef__":true,"id":7930},{"__isSmartRef__":true,"id":7931},{"__isSmartRef__":true,"id":7932},{"__isSmartRef__":true,"id":7933},{"__isSmartRef__":true,"id":7935},{"__isSmartRef__":true,"id":7937},{"__isSmartRef__":true,"id":7938},{"__isSmartRef__":true,"id":7940},{"__isSmartRef__":true,"id":7942},{"__isSmartRef__":true,"id":7944},{"__isSmartRef__":true,"id":7946},{"__isSmartRef__":true,"id":7947},{"__isSmartRef__":true,"id":7949},{"__isSmartRef__":true,"id":7950},{"__isSmartRef__":true,"id":7951},{"__isSmartRef__":true,"id":7952},{"__isSmartRef__":true,"id":7953},{"__isSmartRef__":true,"id":7954},{"__isSmartRef__":true,"id":7955},{"__isSmartRef__":true,"id":7956},{"__isSmartRef__":true,"id":7957},{"__isSmartRef__":true,"id":7958},{"__isSmartRef__":true,"id":7959},{"__isSmartRef__":true,"id":7960},{"__isSmartRef__":true,"id":7961},{"__isSmartRef__":true,"id":7963},{"__isSmartRef__":true,"id":7964},{"__isSmartRef__":true,"id":7965},{"__isSmartRef__":true,"id":7966},{"__isSmartRef__":true,"id":7968},{"__isSmartRef__":true,"id":7969},{"__isSmartRef__":true,"id":7971},{"__isSmartRef__":true,"id":7972},{"__isSmartRef__":true,"id":7974},{"__isSmartRef__":true,"id":7975},{"__isSmartRef__":true,"id":7976},{"__isSmartRef__":true,"id":7977}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":7926},{"__isSmartRef__":true,"id":7928},{"__isSmartRef__":true,"id":7934},{"__isSmartRef__":true,"id":7936},{"__isSmartRef__":true,"id":7939},{"__isSmartRef__":true,"id":7941},{"__isSmartRef__":true,"id":7943},{"__isSmartRef__":true,"id":7945},{"__isSmartRef__":true,"id":7948},{"__isSmartRef__":true,"id":7962},{"__isSmartRef__":true,"id":7967},{"__isSmartRef__":true,"id":7970},{"__isSmartRef__":true,"id":7973}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7925":{"name":"documentation","type":"propertyDef","startIndex":55333,"stopIndex":55459,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7926},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7926":{"name":"documentation","type":"categoryDef","startIndex":55261,"stopIndex":55409,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7925}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7927":{"name":"style","type":"propertyDef","startIndex":55478,"stopIndex":55546,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7928},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7928":{"name":"settings","type":"categoryDef","startIndex":55411,"stopIndex":55586,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7927},{"__isSmartRef__":true,"id":7929},{"__isSmartRef__":true,"id":7930},{"__isSmartRef__":true,"id":7931},{"__isSmartRef__":true,"id":7932}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7929":{"name":"isEpiMorph","type":"propertyDef","startIndex":55548,"stopIndex":55568,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7928},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7930":{"name":"doNotRemove","type":"propertyDef","startIndex":55570,"stopIndex":55591,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7928},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7931":{"name":"propagate","type":"propertyDef","startIndex":55593,"stopIndex":55612,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7928},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7932":{"name":"isSelection","type":"propertyDef","startIndex":55614,"stopIndex":55635,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7928},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7933":{"name":"initialize","type":"propertyDef","startIndex":55659,"stopIndex":55817,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7934},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7934":{"name":"initializing","type":"categoryDef","startIndex":55588,"stopIndex":55767,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7933}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7935":{"name":"withoutPropagationDo","type":"propertyDef","startIndex":55839,"stopIndex":55988,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7936},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7936":{"name":"propagation","type":"categoryDef","startIndex":55769,"stopIndex":56007,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7935},{"__isSmartRef__":true,"id":7937}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7937":{"name":"isPropagating","type":"propertyDef","startIndex":55990,"stopIndex":56057,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7936},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7938":{"name":"morphMenuItems","type":"propertyDef","startIndex":56072,"stopIndex":56997,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7939},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7939":{"name":"menu","type":"categoryDef","startIndex":56009,"stopIndex":56947,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7938}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7940":{"name":"copy","type":"propertyDef","startIndex":57015,"stopIndex":57171,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7941},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7941":{"name":"copying","type":"categoryDef","startIndex":56949,"stopIndex":57121,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7940}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7942":{"name":"addSelectionWhile","type":"propertyDef","startIndex":57200,"stopIndex":57824,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7943},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7943":{"name":"selection handling","type":"categoryDef","startIndex":57123,"stopIndex":57774,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7942}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7944":{"name":"remove","type":"propertyDef","startIndex":57843,"stopIndex":57987,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7945},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7945":{"name":"removing","type":"categoryDef","startIndex":57776,"stopIndex":58171,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7944},{"__isSmartRef__":true,"id":7946}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7946":{"name":"removeOnlyIt","type":"propertyDef","startIndex":57989,"stopIndex":58221,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7945},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7947":{"name":"world","type":"propertyDef","startIndex":58241,"stopIndex":58330,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7948":{"name":"accessing","type":"categoryDef","startIndex":58173,"stopIndex":60733,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7947},{"__isSmartRef__":true,"id":7949},{"__isSmartRef__":true,"id":7950},{"__isSmartRef__":true,"id":7951},{"__isSmartRef__":true,"id":7952},{"__isSmartRef__":true,"id":7953},{"__isSmartRef__":true,"id":7954},{"__isSmartRef__":true,"id":7955},{"__isSmartRef__":true,"id":7956},{"__isSmartRef__":true,"id":7957},{"__isSmartRef__":true,"id":7958},{"__isSmartRef__":true,"id":7959},{"__isSmartRef__":true,"id":7960}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7949":{"name":"setBorderWidth","type":"propertyDef","startIndex":58332,"stopIndex":58578,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7950":{"name":"setFill","type":"propertyDef","startIndex":58585,"stopIndex":58829,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7951":{"name":"setBorderColor","type":"propertyDef","startIndex":58836,"stopIndex":59081,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7952":{"name":"shapeRoundEdgesBy","type":"propertyDef","startIndex":59084,"stopIndex":59329,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7953":{"name":"setFillOpacity","type":"propertyDef","startIndex":59336,"stopIndex":59573,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7954":{"name":"setStrokeOpacity","type":"propertyDef","startIndex":59580,"stopIndex":59820,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7955":{"name":"setTextColor","type":"propertyDef","startIndex":59823,"stopIndex":60023,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7956":{"name":"setFontSize","type":"propertyDef","startIndex":60026,"stopIndex":60223,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7957":{"name":"setFontFamily","type":"propertyDef","startIndex":60226,"stopIndex":60429,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7958":{"name":"setRotation","type":"propertyDef","startIndex":60432,"stopIndex":60533,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7959":{"name":"setScale","type":"propertyDef","startIndex":60540,"stopIndex":60638,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7960":{"name":"setOrigin","type":"propertyDef","startIndex":60640,"stopIndex":60780,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7948},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7961":{"name":"alignVertically","type":"propertyDef","startIndex":60802,"stopIndex":61337,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7962},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7962":{"name":"aligning","type":"categoryDef","startIndex":60735,"stopIndex":63524,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7961},{"__isSmartRef__":true,"id":7963},{"__isSmartRef__":true,"id":7964},{"__isSmartRef__":true,"id":7965}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7963":{"name":"alignHorizontally","type":"propertyDef","startIndex":61340,"stopIndex":61600,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7962},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7964":{"name":"spaceVertically","type":"propertyDef","startIndex":61607,"stopIndex":62581,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7962},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7965":{"name":"spaceHorizontally","type":"propertyDef","startIndex":62584,"stopIndex":63574,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7962},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7966":{"name":"grabByHand","type":"propertyDef","startIndex":63593,"stopIndex":63921,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7967},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7967":{"name":"grabbing","type":"categoryDef","startIndex":63526,"stopIndex":64187,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7966},{"__isSmartRef__":true,"id":7968}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7968":{"name":"dropOn","type":"propertyDef","startIndex":63923,"stopIndex":64236,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7967},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7969":{"name":"moveBy","type":"propertyDef","startIndex":64256,"stopIndex":64549,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7970},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7970":{"name":"geometry","type":"categoryDef","startIndex":64189,"stopIndex":64945,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7969},{"__isSmartRef__":true,"id":7971}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7971":{"name":"setPosition","type":"propertyDef","startIndex":64551,"stopIndex":64993,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7970},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7972":{"name":"reset","type":"propertyDef","startIndex":65011,"stopIndex":65231,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7973},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7973":{"name":"world","type":"categoryDef","startIndex":64947,"stopIndex":67470,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7972},{"__isSmartRef__":true,"id":7974},{"__isSmartRef__":true,"id":7975},{"__isSmartRef__":true,"id":7976},{"__isSmartRef__":true,"id":7977}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7974":{"name":"selectMorphs","type":"propertyDef","startIndex":65234,"stopIndex":66682,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7973},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7975":{"name":"removeSelecitonIndicators","type":"propertyDef","startIndex":66685,"stopIndex":66866,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7973},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7976":{"name":"makeGroup","type":"propertyDef","startIndex":66868,"stopIndex":67194,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7973},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7977":{"name":"unGroup","type":"propertyDef","startIndex":67196,"stopIndex":67519,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7973},"className":"lively.morphic.Selection","_owner":{"__isSmartRef__":true,"id":7924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7978":{"name":"SelectionMorphTrait","type":"traitDef","startIndex":67527,"stopIndex":69613,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7979},{"__isSmartRef__":true,"id":7981},{"__isSmartRef__":true,"id":7982},{"__isSmartRef__":true,"id":7983},{"__isSmartRef__":true,"id":7984}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7979":{"name":"getSelectedMorphs","type":"propertyDef","startIndex":67571,"stopIndex":67662,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7980},"_owner":{"__isSmartRef__":true,"id":7978},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7980":{"name":"selection","type":"categoryDef","startIndex":29,"stopIndex":2084,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":7979},{"__isSmartRef__":true,"id":7981},{"__isSmartRef__":true,"id":7982},{"__isSmartRef__":true,"id":7983},{"__isSmartRef__":true,"id":7984}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7981":{"name":"onDragStart","type":"propertyDef","startIndex":67673,"stopIndex":68131,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7980},"_owner":{"__isSmartRef__":true,"id":7978},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7982":{"name":"onDrag","type":"propertyDef","startIndex":68133,"stopIndex":68616,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7980},"_owner":{"__isSmartRef__":true,"id":7978},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7983":{"name":"onDragEnd","type":"propertyDef","startIndex":68618,"stopIndex":69374,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7980},"_owner":{"__isSmartRef__":true,"id":7978},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7984":{"name":"resetSelection","type":"propertyDef","startIndex":69377,"stopIndex":69609,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7980},"_owner":{"__isSmartRef__":true,"id":7978},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7985":{"name":null,"type":"unknown","startIndex":69614,"stopIndex":69697,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7986":{"name":null,"type":"comment","startIndex":69698,"stopIndex":69698,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7987":{"name":"lively.morphic.TextEditor","type":"klassDef","startIndex":69699,"stopIndex":74974,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7988},{"__isSmartRef__":true,"id":7990},{"__isSmartRef__":true,"id":7991},{"__isSmartRef__":true,"id":7993},{"__isSmartRef__":true,"id":7995},{"__isSmartRef__":true,"id":7996},{"__isSmartRef__":true,"id":7997},{"__isSmartRef__":true,"id":7999},{"__isSmartRef__":true,"id":8001},{"__isSmartRef__":true,"id":8002},{"__isSmartRef__":true,"id":8003},{"__isSmartRef__":true,"id":8004},{"__isSmartRef__":true,"id":8005},{"__isSmartRef__":true,"id":8006}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.WindowedApp","categories":[{"__isSmartRef__":true,"id":7989},{"__isSmartRef__":true,"id":7992},{"__isSmartRef__":true,"id":7994},{"__isSmartRef__":true,"id":7998},{"__isSmartRef__":true,"id":8000},{"__isSmartRef__":true,"id":8007}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7988":{"name":"defaultTitle","type":"propertyDef","startIndex":69778,"stopIndex":69808,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7989},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7989":{"name":"settings","type":"categoryDef","startIndex":69711,"stopIndex":69795,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7988},{"__isSmartRef__":true,"id":7990}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7990":{"name":"initialViewExtent","type":"propertyDef","startIndex":69810,"stopIndex":69845,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7989},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7991":{"name":"buildView","type":"propertyDef","startIndex":69868,"stopIndex":72198,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7992},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7992":{"name":"initializing","type":"categoryDef","startIndex":69797,"stopIndex":72148,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7991}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7993":{"name":"setCurrentURL","type":"propertyDef","startIndex":72216,"stopIndex":72340,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7994},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7994":{"name":"network","type":"categoryDef","startIndex":72150,"stopIndex":72460,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7993},{"__isSmartRef__":true,"id":7995},{"__isSmartRef__":true,"id":7996}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7995":{"name":"createWebResource","type":"propertyDef","startIndex":72342,"stopIndex":72417,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7994},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7996":{"name":"getURL","type":"propertyDef","startIndex":72419,"stopIndex":72510,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7994},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7997":{"name":"showAsLoading","type":"propertyDef","startIndex":72527,"stopIndex":72978,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":7998},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7998":{"name":"helper","type":"categoryDef","startIndex":72462,"stopIndex":72928,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7997}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"7999":{"name":"getEditorContent","type":"propertyDef","startIndex":73003,"stopIndex":73081,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8000},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8000":{"name":"file functions","type":"categoryDef","startIndex":72930,"stopIndex":74722,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":7999},{"__isSmartRef__":true,"id":8001},{"__isSmartRef__":true,"id":8002},{"__isSmartRef__":true,"id":8003},{"__isSmartRef__":true,"id":8004},{"__isSmartRef__":true,"id":8005}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8001":{"name":"saveFile","type":"propertyDef","startIndex":73083,"stopIndex":73321,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8000},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8002":{"name":"loadFile","type":"propertyDef","startIndex":73327,"stopIndex":73724,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8000},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8003":{"name":"finishLoading","type":"propertyDef","startIndex":73726,"stopIndex":74058,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8000},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8004":{"name":"askToCreateFile","type":"propertyDef","startIndex":74061,"stopIndex":74574,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8000},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8005":{"name":"removeFile","type":"propertyDef","startIndex":74576,"stopIndex":74772,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8000},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8006":{"name":"load","type":"propertyDef","startIndex":74792,"stopIndex":74969,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8007},"className":"lively.morphic.TextEditor","_owner":{"__isSmartRef__":true,"id":7987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8007":{"name":"interface","type":"categoryDef","startIndex":74724,"stopIndex":74918,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8006}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8008":{"name":null,"type":"comment","startIndex":74975,"stopIndex":74975,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8009":{"name":null,"type":"unknown","startIndex":74976,"stopIndex":75060,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8010":{"name":"lively.ide","type":"klassExtensionDef","startIndex":75061,"stopIndex":75325,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8011}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8012}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8011":{"name":"openFile","type":"propertyDef","startIndex":75089,"stopIndex":75320,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8012},"className":"lively.ide","_owner":{"__isSmartRef__":true,"id":8010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8012":{"name":"default category","type":"categoryDef","startIndex":75034,"stopIndex":75269,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8011}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8013":{"name":null,"type":"comment","startIndex":75326,"stopIndex":75328,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8014":{"name":"lively.morphic.HorizontalDivider","type":"klassDef","startIndex":75329,"stopIndex":76099,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8015},{"__isSmartRef__":true,"id":8017},{"__isSmartRef__":true,"id":8019},{"__isSmartRef__":true,"id":8021}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["HorizontalDividerTrait"],"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":8016},{"__isSmartRef__":true,"id":8018},{"__isSmartRef__":true,"id":8020}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8015":{"name":"style","type":"propertyDef","startIndex":75440,"stopIndex":75491,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8016},"className":"lively.morphic.HorizontalDivider","_owner":{"__isSmartRef__":true,"id":8014},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8016":{"name":"settings","type":"categoryDef","startIndex":75373,"stopIndex":75441,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8015}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8017":{"name":"initialize","type":"propertyDef","startIndex":75514,"stopIndex":75743,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8018},"className":"lively.morphic.HorizontalDivider","_owner":{"__isSmartRef__":true,"id":8014},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8018":{"name":"initializing","type":"categoryDef","startIndex":75443,"stopIndex":75693,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8017}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8019":{"name":"onDragStart","type":"propertyDef","startIndex":75766,"stopIndex":75868,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8020},"className":"lively.morphic.HorizontalDivider","_owner":{"__isSmartRef__":true,"id":8014},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8020":{"name":"mouse events","type":"categoryDef","startIndex":75695,"stopIndex":76043,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8019},{"__isSmartRef__":true,"id":8021}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8021":{"name":"onDrag","type":"propertyDef","startIndex":75870,"stopIndex":76094,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8020},"className":"lively.morphic.HorizontalDivider","_owner":{"__isSmartRef__":true,"id":8014},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8022":{"name":null,"type":"comment","startIndex":76100,"stopIndex":76100,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8023":{"name":"lively.morphic.Slider","type":"klassDef","startIndex":76101,"stopIndex":78104,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8024},{"__isSmartRef__":true,"id":8026},{"__isSmartRef__":true,"id":8027},{"__isSmartRef__":true,"id":8029},{"__isSmartRef__":true,"id":8031},{"__isSmartRef__":true,"id":8032},{"__isSmartRef__":true,"id":8033},{"__isSmartRef__":true,"id":8034},{"__isSmartRef__":true,"id":8035}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["SliderMorphTrait"],"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":8025},{"__isSmartRef__":true,"id":8028},{"__isSmartRef__":true,"id":8030},{"__isSmartRef__":true,"id":8036}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8024":{"name":"style","type":"propertyDef","startIndex":76195,"stopIndex":76372,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8025},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8025":{"name":"settings","type":"categoryDef","startIndex":76128,"stopIndex":76360,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8024},{"__isSmartRef__":true,"id":8026}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8026":{"name":"connections","type":"propertyDef","startIndex":76374,"stopIndex":76411,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8025},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8027":{"name":"initialize","type":"propertyDef","startIndex":76433,"stopIndex":76901,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8028},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8028":{"name":"initializing","type":"categoryDef","startIndex":76362,"stopIndex":76851,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8027}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8029":{"name":"getValue","type":"propertyDef","startIndex":76921,"stopIndex":76967,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8030},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8030":{"name":"accessing","type":"categoryDef","startIndex":76853,"stopIndex":77315,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8029},{"__isSmartRef__":true,"id":8031},{"__isSmartRef__":true,"id":8032},{"__isSmartRef__":true,"id":8033},{"__isSmartRef__":true,"id":8034}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8031":{"name":"setValue","type":"propertyDef","startIndex":76974,"stopIndex":77033,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8030},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8032":{"name":"getSliderExtent","type":"propertyDef","startIndex":77040,"stopIndex":77100,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8030},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8033":{"name":"setSliderExtent","type":"propertyDef","startIndex":77103,"stopIndex":77237,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8030},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8034":{"name":"setExtent","type":"propertyDef","startIndex":77239,"stopIndex":77364,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8030},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8035":{"name":"onMouseDown","type":"propertyDef","startIndex":77388,"stopIndex":78070,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8036},"className":"lively.morphic.Slider","_owner":{"__isSmartRef__":true,"id":8023},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8036":{"name":"mouse events","type":"categoryDef","startIndex":77317,"stopIndex":78019,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8035}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8037":{"name":"lively.morphic.SliderKnob","type":"klassDef","startIndex":78105,"stopIndex":79751,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8038},{"__isSmartRef__":true,"id":8040},{"__isSmartRef__":true,"id":8041},{"__isSmartRef__":true,"id":8043},{"__isSmartRef__":true,"id":8045},{"__isSmartRef__":true,"id":8046},{"__isSmartRef__":true,"id":8047}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.morphic.Box","categories":[{"__isSmartRef__":true,"id":8039},{"__isSmartRef__":true,"id":8042},{"__isSmartRef__":true,"id":8044}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8038":{"name":"style","type":"propertyDef","startIndex":78176,"stopIndex":78269,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8039},"className":"lively.morphic.SliderKnob","_owner":{"__isSmartRef__":true,"id":8037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8039":{"name":"settings","type":"categoryDef","startIndex":78109,"stopIndex":78247,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8038},{"__isSmartRef__":true,"id":8040}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8040":{"name":"dragTriggerDistance","type":"propertyDef","startIndex":78271,"stopIndex":78297,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8039},"className":"lively.morphic.SliderKnob","_owner":{"__isSmartRef__":true,"id":8037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8041":{"name":"initialize","type":"propertyDef","startIndex":78320,"stopIndex":78444,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8042},"className":"lively.morphic.SliderKnob","_owner":{"__isSmartRef__":true,"id":8037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8042":{"name":"initializing","type":"categoryDef","startIndex":78249,"stopIndex":78394,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8041}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8043":{"name":"onDragStart","type":"propertyDef","startIndex":78467,"stopIndex":78577,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8044},"className":"lively.morphic.SliderKnob","_owner":{"__isSmartRef__":true,"id":8037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8044":{"name":"mouse events","type":"categoryDef","startIndex":78396,"stopIndex":79695,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8043},{"__isSmartRef__":true,"id":8045},{"__isSmartRef__":true,"id":8046},{"__isSmartRef__":true,"id":8047}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8045":{"name":"onDrag","type":"propertyDef","startIndex":78579,"stopIndex":79601,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8044},"className":"lively.morphic.SliderKnob","_owner":{"__isSmartRef__":true,"id":8037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8046":{"name":"onDragEnd","type":"propertyDef","startIndex":79603,"stopIndex":79662,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8044},"className":"lively.morphic.SliderKnob","_owner":{"__isSmartRef__":true,"id":8037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8047":{"name":"onMouseDown","type":"propertyDef","startIndex":79664,"stopIndex":79744,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8044},"className":"lively.morphic.SliderKnob","_owner":{"__isSmartRef__":true,"id":8037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8048":{"name":"Array.prototype","type":"klassExtensionDef","startIndex":79752,"stopIndex":79957,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8049}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8050}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8049":{"name":"asListItemArray","type":"propertyDef","startIndex":79785,"stopIndex":79952,"fileName":"lively/morphic/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8050},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":8048},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8050":{"name":"default category","type":"categoryDef","startIndex":79730,"stopIndex":79901,"fileName":"lively/morphic/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":8049}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8051":{"target":{"__isSmartRef__":true,"id":8052},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/WidgetsAddOns.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8052":{"name":"lively.morphic.WidgetsAddOns","type":"moduleDef","startIndex":0,"stopIndex":1043,"fileName":"lively/morphic/WidgetsAddOns.js","_subElements":[{"__isSmartRef__":true,"id":8053},{"__isSmartRef__":true,"id":8054},{"__isSmartRef__":true,"id":8059}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8053":{"name":null,"type":"comment","startIndex":119,"stopIndex":119,"fileName":"lively/morphic/WidgetsAddOns.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8054":{"name":"FilterableListLayer","type":"copDef","startIndex":120,"stopIndex":1023,"fileName":"lively/morphic/WidgetsAddOns.js","_subElements":[{"__isSmartRef__":true,"id":8055}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8055":{"name":"lively.morphic.List","type":"copSubElement","startIndex":153,"stopIndex":1021,"fileName":"lively/morphic/WidgetsAddOns.js","_subElements":[{"__isSmartRef__":true,"id":8056},{"__isSmartRef__":true,"id":8058}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":8054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8056":{"name":"filterItems","type":"propertyDef","startIndex":189,"stopIndex":803,"fileName":"lively/morphic/WidgetsAddOns.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8057},"_owner":{"__isSmartRef__":true,"id":8055},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8057":{"name":"default category","type":"categoryDef","startIndex":67,"stopIndex":900,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":8056},{"__isSmartRef__":true,"id":8058}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8058":{"name":"updateList","type":"propertyDef","startIndex":805,"stopIndex":1019,"fileName":"lively/morphic/WidgetsAddOns.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8057},"_owner":{"__isSmartRef__":true,"id":8055},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8059":{"name":null,"type":"comment","startIndex":1024,"stopIndex":1024,"fileName":"lively/morphic/WidgetsAddOns.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8060":{"target":{"__isSmartRef__":true,"id":8061},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"8061":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"8062":{"isListItem":true,"string":"video/","value":{"__isSmartRef__":true,"id":4934}},"8063":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":4935}},"8064":{"isListItem":true,"string":"AdditionalMorphs.js","value":{"__isSmartRef__":true,"id":4936}},"8065":{"isListItem":true,"string":"Canvas.js","value":{"__isSmartRef__":true,"id":5054}},"8066":{"isListItem":true,"string":"ClickOnLineHack.js","value":{"__isSmartRef__":true,"id":5114}},"8067":{"isListItem":true,"string":"ColorChooserDraft.js","value":{"__isSmartRef__":true,"id":5127}},"8068":{"isListItem":true,"string":"Compat.js","value":{"__isSmartRef__":true,"id":5183}},"8069":{"isListItem":true,"string":"CompatLayer.js","value":{"__isSmartRef__":true,"id":5193}},"8070":{"isListItem":true,"string":"CompatSCB.js","value":{"__isSmartRef__":true,"id":5221}},"8071":{"isListItem":true,"string":"Complete.js","value":{"__isSmartRef__":true,"id":5224}},"8072":{"isListItem":true,"string":"Connectors.js","value":{"__isSmartRef__":true,"id":5228}},"8073":{"isListItem":true,"string":"Core.js","value":{"__isSmartRef__":true,"id":5306}},"8074":{"isListItem":true,"string":"EventExperiments.js","value":{"__isSmartRef__":true,"id":5523}},"8075":{"isListItem":true,"string":"Events.js","value":{"__isSmartRef__":true,"id":5576}},"8076":{"isListItem":true,"string":"Examples.js","value":{"__isSmartRef__":true,"id":5829}},"8077":{"isListItem":true,"string":"Experiments.js","value":{"__isSmartRef__":true,"id":5843}},"8078":{"isListItem":true,"string":"Graffle.js","value":{"__isSmartRef__":true,"id":5849}},"8079":{"isListItem":true,"string":"Halos.js","value":{"__isSmartRef__":true,"id":5853}},"8080":{"isListItem":true,"string":"HTML.js","value":{"__isSmartRef__":true,"id":6040}},"8081":{"isListItem":true,"string":"Layout.js","value":{"__isSmartRef__":true,"id":6198}},"8082":{"isListItem":true,"string":"MorphAddons.js","value":{"__isSmartRef__":true,"id":6262}},"8083":{"isListItem":true,"string":"ObjectMigration.js","value":{"__isSmartRef__":true,"id":6405}},"8084":{"isListItem":true,"string":"Paragraphs.js","value":{"__isSmartRef__":true,"id":6415}},"8085":{"isListItem":true,"string":"PathShapes.js","value":{"__isSmartRef__":true,"id":6423}},"8086":{"isListItem":true,"string":"Rendering.js","value":{"__isSmartRef__":true,"id":6615}},"8087":{"isListItem":true,"string":"ScriptingSupport.js","value":{"__isSmartRef__":true,"id":6718}},"8088":{"isListItem":true,"string":"Serialization.js","value":{"__isSmartRef__":true,"id":6774}},"8089":{"isListItem":true,"string":"Shapes.js","value":{"__isSmartRef__":true,"id":6857}},"8090":{"isListItem":true,"string":"Styles.js","value":{"__isSmartRef__":true,"id":6946}},"8091":{"isListItem":true,"string":"SVG.js","value":{"__isSmartRef__":true,"id":7196}},"8092":{"isListItem":true,"string":"Tests.js","value":{"__isSmartRef__":true,"id":7286}},"8093":{"isListItem":true,"string":"TextCore.js","value":{"__isSmartRef__":true,"id":7289}},"8094":{"isListItem":true,"string":"Widgets.js","value":{"__isSmartRef__":true,"id":7615}},"8095":{"isListItem":true,"string":"WidgetsAddOns.js","value":{"__isSmartRef__":true,"id":8051}},"8096":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":8060}},"8097":{"morph":{"__isSmartRef__":true,"id":4920},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8098":{"x":0,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8099":{"sourceObj":{"__isSmartRef__":true,"id":4920},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setPane1Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":8100},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":8101},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8100":{"source":{"__isSmartRef__":true,"id":4920},"target":{"__isSmartRef__":true,"id":4674}},"8101":{"updater":{"__isSmartRef__":true,"id":8102}},"8102":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":8100},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":8103},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"8103":{},"8104":{"sourceObj":{"__isSmartRef__":true,"id":4920},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane1Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8105},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8105":{"source":{"__isSmartRef__":true,"id":4920},"target":{"__isSmartRef__":true,"id":4674}},"8106":{"sourceObj":{"__isSmartRef__":true,"id":4920},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane1Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8107},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8107":{"source":{"__isSmartRef__":true,"id":4920},"target":{"__isSmartRef__":true,"id":4674}},"8108":{"sourceObj":{"__isSmartRef__":true,"id":4920},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane1Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8109},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8109":{"source":{"__isSmartRef__":true,"id":4920},"target":{"__isSmartRef__":true,"id":4674}},"8110":{"target":{"__isSmartRef__":true,"id":6263},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":4930},"moduleName":"lively/morphic/MorphAddons.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8111":{"source":{"__isSmartRef__":true,"id":4674},"target":{"__isSmartRef__":true,"id":4920}},"8112":{"sourceObj":{"__isSmartRef__":true,"id":4674},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":8113},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8158},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8113":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8114},"id":86,"renderContextTable":{"__isSmartRef__":true,"id":8119},"itemList":[{"__isSmartRef__":true,"id":8120},{"__isSmartRef__":true,"id":8122},{"__isSmartRef__":true,"id":8124},{"__isSmartRef__":true,"id":8126},{"__isSmartRef__":true,"id":8128},{"__isSmartRef__":true,"id":8130},{"__isSmartRef__":true,"id":8132},{"__isSmartRef__":true,"id":8134},{"__isSmartRef__":true,"id":8136},{"__isSmartRef__":true,"id":8138},{"__isSmartRef__":true,"id":8140},{"__isSmartRef__":true,"id":8142}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":8144},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8145},"selectedLineNo":5,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":4660},"attributeConnections":[{"__isSmartRef__":true,"id":8146},{"__isSmartRef__":true,"id":8151},{"__isSmartRef__":true,"id":8153},{"__isSmartRef__":true,"id":8155}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":8157},"prevScroll":[0,16],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"8114":{"_Position":{"__isSmartRef__":true,"id":8115},"renderContextTable":{"__isSmartRef__":true,"id":8116},"_Extent":{"__isSmartRef__":true,"id":8117},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":8118},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8115":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8116":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8117":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8118":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8119":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"8120":{"isListItem":true,"string":"Global (extension)","value":{"__isSmartRef__":true,"id":8121}},"8121":{"target":{"__isSmartRef__":true,"id":6265},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8122":{"isListItem":true,"string":"lively.morphic.Morph (extension)","value":{"__isSmartRef__":true,"id":8123}},"8123":{"target":{"__isSmartRef__":true,"id":6277},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8124":{"isListItem":true,"string":"lively.morphic.Morph (extension)","value":{"__isSmartRef__":true,"id":8125}},"8125":{"target":{"__isSmartRef__":true,"id":6336},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8126":{"isListItem":true,"string":"lively.morphic.Text (extension)","value":{"__isSmartRef__":true,"id":8127}},"8127":{"target":{"__isSmartRef__":true,"id":6343},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8128":{"isListItem":true,"string":"lively.morphic.Text (extension)","value":{"__isSmartRef__":true,"id":8129}},"8129":{"target":{"__isSmartRef__":true,"id":6348},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8130":{"isListItem":true,"string":"lively.morphic.World (extension)","value":{"__isSmartRef__":true,"id":8131}},"8131":{"target":{"__isSmartRef__":true,"id":6352},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8132":{"isListItem":true,"string":"lively.morphic.HandMorph (extension)","value":{"__isSmartRef__":true,"id":8133}},"8133":{"target":{"__isSmartRef__":true,"id":6373},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8134":{"isListItem":true,"string":"lively.morphic.Panel","value":{"__isSmartRef__":true,"id":8135}},"8135":{"target":{"__isSmartRef__":true,"id":6377},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8136":{"isListItem":true,"string":"lively.morphic.Panel (extension)","value":{"__isSmartRef__":true,"id":8137}},"8137":{"target":{"__isSmartRef__":true,"id":6383},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8138":{"isListItem":true,"string":"lively.morphic.Text (extension)","value":{"__isSmartRef__":true,"id":8139}},"8139":{"target":{"__isSmartRef__":true,"id":6387},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8140":{"isListItem":true,"string":"lively.morphic.Button (extension)","value":{"__isSmartRef__":true,"id":8141}},"8141":{"target":{"__isSmartRef__":true,"id":6393},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8142":{"isListItem":true,"string":"lively.morphic.List (extension)","value":{"__isSmartRef__":true,"id":8143}},"8143":{"target":{"__isSmartRef__":true,"id":6398},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8144":{"morph":{"__isSmartRef__":true,"id":8113},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8145":{"x":205,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8146":{"sourceObj":{"__isSmartRef__":true,"id":8113},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setPane2Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":8147},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":8148},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8147":{"source":{"__isSmartRef__":true,"id":8113},"target":{"__isSmartRef__":true,"id":4674}},"8148":{"updater":{"__isSmartRef__":true,"id":8149}},"8149":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":8147},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":8150},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"8150":{},"8151":{"sourceObj":{"__isSmartRef__":true,"id":8113},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane2Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8152},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8152":{"source":{"__isSmartRef__":true,"id":8113},"target":{"__isSmartRef__":true,"id":4674}},"8153":{"sourceObj":{"__isSmartRef__":true,"id":8113},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane2Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8154},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8154":{"source":{"__isSmartRef__":true,"id":8113},"target":{"__isSmartRef__":true,"id":4674}},"8155":{"sourceObj":{"__isSmartRef__":true,"id":8113},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane2Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8156},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8156":{"source":{"__isSmartRef__":true,"id":8113},"target":{"__isSmartRef__":true,"id":4674}},"8157":{"target":{"__isSmartRef__":true,"id":6352},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8158":{"source":{"__isSmartRef__":true,"id":4674},"target":{"__isSmartRef__":true,"id":8113}},"8159":{"sourceObj":{"__isSmartRef__":true,"id":4674},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":8160},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8188},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8160":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8161},"id":87,"renderContextTable":{"__isSmartRef__":true,"id":8166},"itemList":[{"__isSmartRef__":true,"id":8167},{"__isSmartRef__":true,"id":8169},{"__isSmartRef__":true,"id":8171},{"__isSmartRef__":true,"id":8173}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":8175},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8176},"selectedLineNo":0,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":4660},"attributeConnections":[{"__isSmartRef__":true,"id":8177},{"__isSmartRef__":true,"id":8182},{"__isSmartRef__":true,"id":8184},{"__isSmartRef__":true,"id":8186}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"8161":{"_Position":{"__isSmartRef__":true,"id":8162},"renderContextTable":{"__isSmartRef__":true,"id":8163},"_Extent":{"__isSmartRef__":true,"id":8164},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":8165},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8162":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8163":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8164":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8165":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8166":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"8167":{"isListItem":true,"string":"-- all --","value":{"__isSmartRef__":true,"id":8168}},"8168":{"target":{"__isSmartRef__":true,"id":6352},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8131},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8169":{"isListItem":true,"string":"debugging","value":{"__isSmartRef__":true,"id":8170}},"8170":{"target":{"__isSmartRef__":true,"id":6364},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8131},"targets":[{"__isSmartRef__":true,"id":6364}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8171":{"isListItem":true,"string":"logging","value":{"__isSmartRef__":true,"id":8172}},"8172":{"target":{"__isSmartRef__":true,"id":6366},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8131},"targets":[{"__isSmartRef__":true,"id":6366}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8173":{"isListItem":true,"string":"auth","value":{"__isSmartRef__":true,"id":8174}},"8174":{"target":{"__isSmartRef__":true,"id":6371},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8131},"targets":[{"__isSmartRef__":true,"id":6371}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8175":{"morph":{"__isSmartRef__":true,"id":8160},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8176":{"x":410,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8177":{"sourceObj":{"__isSmartRef__":true,"id":8160},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setPane3Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":8178},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":8179},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8178":{"source":{"__isSmartRef__":true,"id":8160},"target":{"__isSmartRef__":true,"id":4674}},"8179":{"updater":{"__isSmartRef__":true,"id":8180}},"8180":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":8178},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":8181},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"8181":{},"8182":{"sourceObj":{"__isSmartRef__":true,"id":8160},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane3Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8183},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8183":{"source":{"__isSmartRef__":true,"id":8160},"target":{"__isSmartRef__":true,"id":4674}},"8184":{"sourceObj":{"__isSmartRef__":true,"id":8160},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane3Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8185},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8185":{"source":{"__isSmartRef__":true,"id":8160},"target":{"__isSmartRef__":true,"id":4674}},"8186":{"sourceObj":{"__isSmartRef__":true,"id":8160},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane3Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8187},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8187":{"source":{"__isSmartRef__":true,"id":8160},"target":{"__isSmartRef__":true,"id":4674}},"8188":{"source":{"__isSmartRef__":true,"id":4674},"target":{"__isSmartRef__":true,"id":8160}},"8189":{"sourceObj":{"__isSmartRef__":true,"id":4674},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":8190},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8227},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8190":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8191},"id":88,"renderContextTable":{"__isSmartRef__":true,"id":8196},"itemList":[{"__isSmartRef__":true,"id":8197},{"__isSmartRef__":true,"id":8199},{"__isSmartRef__":true,"id":8201},{"__isSmartRef__":true,"id":8203},{"__isSmartRef__":true,"id":8205},{"__isSmartRef__":true,"id":8207},{"__isSmartRef__":true,"id":8209}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":8211},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8212},"selectedLineNo":5,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":4660},"attributeConnections":[{"__isSmartRef__":true,"id":8213},{"__isSmartRef__":true,"id":8218},{"__isSmartRef__":true,"id":8220},{"__isSmartRef__":true,"id":8222}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":8224},"showsHalos":false,"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"8191":{"_Position":{"__isSmartRef__":true,"id":8192},"renderContextTable":{"__isSmartRef__":true,"id":8193},"_Extent":{"__isSmartRef__":true,"id":8194},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":8195},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8192":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8193":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8194":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8195":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8196":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"8197":{"isListItem":true,"string":"logError (proto)","value":{"__isSmartRef__":true,"id":8198}},"8198":{"target":{"__isSmartRef__":true,"id":6353},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8199":{"isListItem":true,"string":"setStatusMessage (proto)","value":{"__isSmartRef__":true,"id":8200}},"8200":{"target":{"__isSmartRef__":true,"id":6356},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8201":{"isListItem":true,"string":"alert (proto)","value":{"__isSmartRef__":true,"id":8202}},"8202":{"target":{"__isSmartRef__":true,"id":6358},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8203":{"isListItem":true,"string":"alertOK (proto)","value":{"__isSmartRef__":true,"id":8204}},"8204":{"target":{"__isSmartRef__":true,"id":6359},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8205":{"isListItem":true,"string":"addStatusMessageMorph (proto)","value":{"__isSmartRef__":true,"id":8206}},"8206":{"target":{"__isSmartRef__":true,"id":6360},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8207":{"isListItem":true,"string":"addStatusProgress (proto)","value":{"__isSmartRef__":true,"id":8208}},"8208":{"target":{"__isSmartRef__":true,"id":6361},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8209":{"isListItem":true,"string":"getUserName (proto)","value":{"__isSmartRef__":true,"id":8210}},"8210":{"target":{"__isSmartRef__":true,"id":6362},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8168},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8211":{"morph":{"__isSmartRef__":true,"id":8190},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8212":{"x":615,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8213":{"sourceObj":{"__isSmartRef__":true,"id":8190},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setPane4Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":8214},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":8215},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8214":{"source":{"__isSmartRef__":true,"id":8190},"target":{"__isSmartRef__":true,"id":4674}},"8215":{"updater":{"__isSmartRef__":true,"id":8216}},"8216":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":8214},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":8217},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"8217":{},"8218":{"sourceObj":{"__isSmartRef__":true,"id":8190},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane4Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8219},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8219":{"source":{"__isSmartRef__":true,"id":8190},"target":{"__isSmartRef__":true,"id":4674}},"8220":{"sourceObj":{"__isSmartRef__":true,"id":8190},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane4Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8221},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8221":{"source":{"__isSmartRef__":true,"id":8190},"target":{"__isSmartRef__":true,"id":4674}},"8222":{"sourceObj":{"__isSmartRef__":true,"id":8190},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"getPane4Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8223},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8223":{"source":{"__isSmartRef__":true,"id":8190},"target":{"__isSmartRef__":true,"id":4674}},"8224":{"target":{"__isSmartRef__":true,"id":6361},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8225},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8225":{"target":{"__isSmartRef__":true,"id":6352},"browser":{"__isSmartRef__":true,"id":4674},"parent":{"__isSmartRef__":true,"id":8226},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8226":{"target":{"__isSmartRef__":true,"id":6352},"browser":{"__isSmartRef__":true,"id":4674},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8227":{"source":{"__isSmartRef__":true,"id":4674},"target":{"__isSmartRef__":true,"id":8190}},"8228":{"sourceObj":{"__isSmartRef__":true,"id":4674},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":8229},"targetMethodName":"setTextString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8245},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8229":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8230},"id":90,"renderContextTable":{"__isSmartRef__":true,"id":8234},"textChunks":[{"__isSmartRef__":true,"id":8235}],"eventHandler":{"__isSmartRef__":true,"id":8237},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8238},"_ClipMode":"scroll","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8239},"priorExtent":{"__isSmartRef__":true,"id":8240},"_MaxTextWidth":820,"_MaxTextHeight":302.5,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":4660},"accessibleInInactiveWindow":true,"layout":{"__isSmartRef__":true,"id":8241},"noEval":true,"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":8242},{"__isSmartRef__":true,"id":8243}],"doNotSerialize":["$$textString","$$savedTextString"],"doNotCopyProperties":["$$textString","$$savedTextString"],"textString":" addStatusProgress: function(label) {\n return this.addStatusMessageMorph(this.addProgressBar(null, label));\n },","lastSyntaxHighlightTime":1308936984064,"savedTextString":" addStatusProgress: function(label) {\n return this.addStatusMessageMorph(this.addProgressBar(null, label));\n },","styleClass":["Browser_codePaneText"],"focusHaloBorderWidth":0.5,"priorSelectionRange":[124,124],"charsReplaced":"","lastFindLoc":102,"showsHalos":false,"lastSearchString":"msgM","prevScroll":[0,0],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8230":{"_Position":{"__isSmartRef__":true,"id":8231},"renderContextTable":{"__isSmartRef__":true,"id":8232},"_Extent":{"__isSmartRef__":true,"id":8233},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8231":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8232":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8233":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8234":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8235":{"style":{"__isSmartRef__":true,"id":8236},"chunkOwner":{"__isSmartRef__":true,"id":8229},"storedString":" addStatusProgress: function(label) {\n return this.addStatusMessageMorph(this.addProgressBar(null, label));\n },","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8236":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8237":{"morph":{"__isSmartRef__":true,"id":8229},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8238":{"x":5,"y":5,"width":-10,"height":-10,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8239":{"x":0,"y":247.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8240":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8241":{"resizeWidth":true,"resizeHeight":true},"8242":{"sourceObj":{"__isSmartRef__":true,"id":8229},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":8229},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8243":{"sourceObj":{"__isSmartRef__":true,"id":8229},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setSourceString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8244},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8244":{"source":{"__isSmartRef__":true,"id":8229},"target":{"__isSmartRef__":true,"id":4674}},"8245":{"source":{"__isSmartRef__":true,"id":4674},"target":{"__isSmartRef__":true,"id":8229}},"8246":{"sourceObj":{"__isSmartRef__":true,"id":4674},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":4661},"targetMethodName":"setTextString","converter":null,"converterString":null,"updaterString":"function ($upd, value) { value && $upd(String(value)) }","varMapping":{"__isSmartRef__":true,"id":8247},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":8248},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8247":{"source":{"__isSmartRef__":true,"id":4674},"target":{"__isSmartRef__":true,"id":4661}},"8248":{"updater":{"__isSmartRef__":true,"id":8249}},"8249":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":8247},"source":"function ($upd, value) { value && $upd(String(value)) }","funcProperties":{"__isSmartRef__":true,"id":8250},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"8250":{},"8251":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"8252":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8253},"id":2157,"renderContextTable":{"__isSmartRef__":true,"id":8258},"textChunks":[{"__isSmartRef__":true,"id":8259}],"eventHandler":{"__isSmartRef__":true,"id":8261},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"visible","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8262},"priorExtent":{"__isSmartRef__":true,"id":8263},"_MaxTextWidth":300,"_MaxTextHeight":30,"evalEnabled":false,"owner":null,"_TextColor":{"__isSmartRef__":true,"id":8264},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8253":{"_Position":{"__isSmartRef__":true,"id":8254},"renderContextTable":{"__isSmartRef__":true,"id":8255},"_Extent":{"__isSmartRef__":true,"id":8256},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":8257},"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8254":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8255":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8256":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8257":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8258":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8259":{"style":{"__isSmartRef__":true,"id":8260},"chunkOwner":{"__isSmartRef__":true,"id":8252},"storedString":"Saving newMethod...\nSuccessfully saved\nSuccessfully evaluated addStatusProgress","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8260":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8261":{"morph":{"__isSmartRef__":true,"id":8252},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8262":{"x":260,"y":136.25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8263":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8264":{"r":0,"g":0.8,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8265":{"source":{"__isSmartRef__":true,"id":4661},"target":{"__isSmartRef__":true,"id":4674}},"8266":{"submorphs":[{"__isSmartRef__":true,"id":8267}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8279},"id":81,"renderContextTable":{"__isSmartRef__":true,"id":8283},"eventHandler":{"__isSmartRef__":true,"id":8284},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8285},"priorExtent":{"__isSmartRef__":true,"id":8286},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8287},"label":{"__isSmartRef__":true,"id":8267},"owner":{"__isSmartRef__":true,"id":4660},"attributeConnections":[{"__isSmartRef__":true,"id":8296}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":8298},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8267":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8268},"id":82,"renderContextTable":{"__isSmartRef__":true,"id":8272},"textChunks":[{"__isSmartRef__":true,"id":8273}],"eventHandler":{"__isSmartRef__":true,"id":8275},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8276},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8277},"priorExtent":{"__isSmartRef__":true,"id":8278},"_MaxTextWidth":98.39999999999999,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8266},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8268":{"_Position":{"__isSmartRef__":true,"id":8269},"renderContextTable":{"__isSmartRef__":true,"id":8270},"_Extent":{"__isSmartRef__":true,"id":8271},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8269":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8270":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8271":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8272":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8273":{"style":{"__isSmartRef__":true,"id":8274},"chunkOwner":{"__isSmartRef__":true,"id":8267},"storedString":"codebase","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8274":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8275":{"morph":{"__isSmartRef__":true,"id":8267},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8276":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8277":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8278":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8279":{"_Position":{"__isSmartRef__":true,"id":8280},"renderContextTable":{"__isSmartRef__":true,"id":8281},"_Extent":{"__isSmartRef__":true,"id":8282},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8280":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8281":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8282":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8283":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8284":{"morph":{"__isSmartRef__":true,"id":8266},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8285":{"x":656,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8286":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8287":{"stops":[{"__isSmartRef__":true,"id":8288},{"__isSmartRef__":true,"id":8290},{"__isSmartRef__":true,"id":8292},{"__isSmartRef__":true,"id":8294}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8288":{"offset":0,"color":{"__isSmartRef__":true,"id":8289}},"8289":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8290":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8291}},"8291":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8292":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8293}},"8293":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8294":{"offset":1,"color":{"__isSmartRef__":true,"id":8295}},"8295":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8296":{"sourceObj":{"__isSmartRef__":true,"id":8266},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.codeBase.withFilename('lively/')}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8297},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8297":{"source":{"__isSmartRef__":true,"id":8266},"target":{"__isSmartRef__":true,"id":4674}},"8298":{"moveHorizontal":true},"8299":{"submorphs":[{"__isSmartRef__":true,"id":8300}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8312},"id":83,"renderContextTable":{"__isSmartRef__":true,"id":8316},"eventHandler":{"__isSmartRef__":true,"id":8317},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8318},"priorExtent":{"__isSmartRef__":true,"id":8319},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8320},"label":{"__isSmartRef__":true,"id":8300},"owner":{"__isSmartRef__":true,"id":4660},"attributeConnections":[{"__isSmartRef__":true,"id":8329}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":8331},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8300":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8301},"id":84,"renderContextTable":{"__isSmartRef__":true,"id":8305},"textChunks":[{"__isSmartRef__":true,"id":8306}],"eventHandler":{"__isSmartRef__":true,"id":8308},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8309},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8310},"priorExtent":{"__isSmartRef__":true,"id":8311},"_MaxTextWidth":65.6,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8299},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8301":{"_Position":{"__isSmartRef__":true,"id":8302},"renderContextTable":{"__isSmartRef__":true,"id":8303},"_Extent":{"__isSmartRef__":true,"id":8304},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8302":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8303":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8304":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8305":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8306":{"style":{"__isSmartRef__":true,"id":8307},"chunkOwner":{"__isSmartRef__":true,"id":8300},"storedString":"local","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8307":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8308":{"morph":{"__isSmartRef__":true,"id":8300},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8309":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8310":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8311":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8312":{"_Position":{"__isSmartRef__":true,"id":8313},"renderContextTable":{"__isSmartRef__":true,"id":8314},"_Extent":{"__isSmartRef__":true,"id":8315},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8313":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8314":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8315":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8316":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8317":{"morph":{"__isSmartRef__":true,"id":8299},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8318":{"x":754.4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8319":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8320":{"stops":[{"__isSmartRef__":true,"id":8321},{"__isSmartRef__":true,"id":8323},{"__isSmartRef__":true,"id":8325},{"__isSmartRef__":true,"id":8327}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8321":{"offset":0,"color":{"__isSmartRef__":true,"id":8322}},"8322":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8323":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8324}},"8324":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8325":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8326}},"8326":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8327":{"offset":1,"color":{"__isSmartRef__":true,"id":8328}},"8328":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8329":{"sourceObj":{"__isSmartRef__":true,"id":8299},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":4674},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.source.getDirectory() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8330},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8330":{"source":{"__isSmartRef__":true,"id":8299},"target":{"__isSmartRef__":true,"id":4674}},"8331":{"moveHorizontal":true},"8332":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8333},"id":89,"renderContextTable":{"__isSmartRef__":true,"id":8338},"eventHandler":{"__isSmartRef__":true,"id":8339},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"_Position":{"__isSmartRef__":true,"id":8340},"fixed":[{"__isSmartRef__":true,"id":4676},{"__isSmartRef__":true,"id":4710},{"__isSmartRef__":true,"id":4744},{"__isSmartRef__":true,"id":4778},{"__isSmartRef__":true,"id":4812},{"__isSmartRef__":true,"id":4846},{"__isSmartRef__":true,"id":4880}],"scalingBelow":[{"__isSmartRef__":true,"id":8229}],"scalingAbove":[{"__isSmartRef__":true,"id":4920},{"__isSmartRef__":true,"id":8113},{"__isSmartRef__":true,"id":8160},{"__isSmartRef__":true,"id":8190}],"minHeight":20,"pointerConnection":null,"owner":{"__isSmartRef__":true,"id":4660},"styleClass":["Browser_resizer"],"__LivelyClassName__":"lively.morphic.HorizontalDivider","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8333":{"_Position":{"__isSmartRef__":true,"id":8334},"renderContextTable":{"__isSmartRef__":true,"id":8335},"_Extent":{"__isSmartRef__":true,"id":8336},"_Fill":{"__isSmartRef__":true,"id":8337},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8334":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8335":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8336":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8337":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8338":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8339":{"morph":{"__isSmartRef__":true,"id":8332},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8340":{"x":0,"y":242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8341":{"_Position":{"__isSmartRef__":true,"id":8342},"renderContextTable":{"__isSmartRef__":true,"id":8343},"_Extent":{"__isSmartRef__":true,"id":8344},"_Fill":{"__isSmartRef__":true,"id":8345},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8342":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8343":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8344":{"x":820,"y":550,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8345":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8346":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8347":{"morph":{"__isSmartRef__":true,"id":4660},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8348":{"adjustForNewBounds":true,"resizeWidth":true,"resizeHeight":true},"8349":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8350":{"renderContextTable":{"__isSmartRef__":true,"id":8351},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":8352},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8351":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8352":{"x":820,"y":572,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8353":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8354":{"morph":{"__isSmartRef__":true,"id":4536},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8355":{"adjustForNewBounds":true},"8356":{"x":261,"y":827,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8357":{"x":820,"y":572,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8358":{"x":946,"y":839,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8359":{"submorphs":[{"__isSmartRef__":true,"id":8360},{"__isSmartRef__":true,"id":8483}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17435},"id":98,"renderContextTable":{"__isSmartRef__":true,"id":17438},"eventHandler":{"__isSmartRef__":true,"id":17439},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":17440},"LK2":true,"_Position":{"__isSmartRef__":true,"id":17441},"priorExtent":{"__isSmartRef__":true,"id":17442},"targetMorph":{"__isSmartRef__":true,"id":8483},"titleBar":{"__isSmartRef__":true,"id":8360},"contentOffset":{"__isSmartRef__":true,"id":17434},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"prevDragPos":{"__isSmartRef__":true,"id":17443},"highlighted":true,"_Rotation":0,"_Scale":1,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"8360":{"submorphs":[{"__isSmartRef__":true,"id":8361},{"__isSmartRef__":true,"id":8373},{"__isSmartRef__":true,"id":8407},{"__isSmartRef__":true,"id":8440}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8474},"id":99,"renderContextTable":{"__isSmartRef__":true,"id":8478},"eventHandler":{"__isSmartRef__":true,"id":8479},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":8480},"_Position":{"__isSmartRef__":true,"id":8481},"windowMorph":{"__isSmartRef__":true,"id":8359},"label":{"__isSmartRef__":true,"id":8361},"closeButton":{"__isSmartRef__":true,"id":8373},"menuButton":{"__isSmartRef__":true,"id":8407},"collapseButton":{"__isSmartRef__":true,"id":8440},"priorExtent":{"__isSmartRef__":true,"id":8482},"owner":{"__isSmartRef__":true,"id":8359},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"8361":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8362},"id":100,"renderContextTable":{"__isSmartRef__":true,"id":8366},"textChunks":[{"__isSmartRef__":true,"id":8367}],"eventHandler":{"__isSmartRef__":true,"id":8369},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":105},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":8370},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":8360},"priorExtent":{"__isSmartRef__":true,"id":8371},"_MaxTextWidth":761,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":8372},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"8362":{"_Position":{"__isSmartRef__":true,"id":8363},"renderContextTable":{"__isSmartRef__":true,"id":8364},"_Extent":{"__isSmartRef__":true,"id":8365},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8363":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8364":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8365":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8366":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8367":{"style":{"__isSmartRef__":true,"id":8368},"chunkOwner":{"__isSmartRef__":true,"id":8361},"storedString":"Network.js:WebResource:-- all --:createProgressBar (proto)","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8368":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8369":{"morph":{"__isSmartRef__":true,"id":8361},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8370":{"resizeWidth":true},"8371":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8372":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8373":{"submorphs":[{"__isSmartRef__":true,"id":8374}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8385},"id":101,"renderContextTable":{"__isSmartRef__":true,"id":8389},"eventHandler":{"__isSmartRef__":true,"id":8390},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8391},"priorExtent":{"__isSmartRef__":true,"id":8392},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":8393},"label":{"__isSmartRef__":true,"id":8374},"owner":{"__isSmartRef__":true,"id":8360},"layout":{"__isSmartRef__":true,"id":8402},"attributeConnections":[{"__isSmartRef__":true,"id":8403},{"__isSmartRef__":true,"id":8405}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"8374":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8375},"id":102,"renderContextTable":{"__isSmartRef__":true,"id":8379},"textChunks":[{"__isSmartRef__":true,"id":8380}],"eventHandler":{"__isSmartRef__":true,"id":8382},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":8383},"priorExtent":{"__isSmartRef__":true,"id":8384},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8373},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"8375":{"_Position":{"__isSmartRef__":true,"id":8376},"renderContextTable":{"__isSmartRef__":true,"id":8377},"_Extent":{"__isSmartRef__":true,"id":8378},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8376":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8377":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8378":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8379":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8380":{"style":{"__isSmartRef__":true,"id":8381},"chunkOwner":{"__isSmartRef__":true,"id":8374},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"8381":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"8382":{"morph":{"__isSmartRef__":true,"id":8374},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8383":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8384":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8385":{"_Position":{"__isSmartRef__":true,"id":8386},"renderContextTable":{"__isSmartRef__":true,"id":8387},"_Extent":{"__isSmartRef__":true,"id":8388},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8386":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8387":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8388":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8389":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8390":{"morph":{"__isSmartRef__":true,"id":8373},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8391":{"x":800,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8392":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8393":{"stops":[{"__isSmartRef__":true,"id":8394},{"__isSmartRef__":true,"id":8396},{"__isSmartRef__":true,"id":8398},{"__isSmartRef__":true,"id":8400}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"8394":{"offset":0,"color":{"__isSmartRef__":true,"id":8395}},"8395":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8396":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8397}},"8397":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8398":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8399}},"8399":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8400":{"offset":1,"color":{"__isSmartRef__":true,"id":8401}},"8401":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8402":{"moveHorizontal":true},"8403":{"sourceObj":{"__isSmartRef__":true,"id":8373},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":8359},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8404},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"8404":{"source":{"__isSmartRef__":true,"id":8373},"target":{"__isSmartRef__":true,"id":8359}},"8405":{"sourceObj":{"__isSmartRef__":true,"id":8373},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8359},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8406},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"8406":{"source":{"__isSmartRef__":true,"id":8373},"target":{"__isSmartRef__":true,"id":8359}},"8407":{"submorphs":[{"__isSmartRef__":true,"id":8408}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8419},"id":103,"renderContextTable":{"__isSmartRef__":true,"id":8423},"eventHandler":{"__isSmartRef__":true,"id":8424},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8425},"priorExtent":{"__isSmartRef__":true,"id":8426},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":8427},"label":{"__isSmartRef__":true,"id":8408},"owner":{"__isSmartRef__":true,"id":8360},"attributeConnections":[{"__isSmartRef__":true,"id":8436},{"__isSmartRef__":true,"id":8438}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"8408":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8409},"id":104,"renderContextTable":{"__isSmartRef__":true,"id":8413},"textChunks":[{"__isSmartRef__":true,"id":8414}],"eventHandler":{"__isSmartRef__":true,"id":8416},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":8417},"priorExtent":{"__isSmartRef__":true,"id":8418},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8407},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"8409":{"_Position":{"__isSmartRef__":true,"id":8410},"renderContextTable":{"__isSmartRef__":true,"id":8411},"_Extent":{"__isSmartRef__":true,"id":8412},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8410":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8411":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8412":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8413":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8414":{"style":{"__isSmartRef__":true,"id":8415},"chunkOwner":{"__isSmartRef__":true,"id":8408},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"8415":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"8416":{"morph":{"__isSmartRef__":true,"id":8408},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8417":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8418":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8419":{"_Position":{"__isSmartRef__":true,"id":8420},"renderContextTable":{"__isSmartRef__":true,"id":8421},"_Extent":{"__isSmartRef__":true,"id":8422},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8420":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8421":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8422":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8423":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8424":{"morph":{"__isSmartRef__":true,"id":8407},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8425":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8426":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8427":{"stops":[{"__isSmartRef__":true,"id":8428},{"__isSmartRef__":true,"id":8430},{"__isSmartRef__":true,"id":8432},{"__isSmartRef__":true,"id":8434}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"8428":{"offset":0,"color":{"__isSmartRef__":true,"id":8429}},"8429":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8430":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8431}},"8431":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8432":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8433}},"8433":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8434":{"offset":1,"color":{"__isSmartRef__":true,"id":8435}},"8435":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8436":{"sourceObj":{"__isSmartRef__":true,"id":8407},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":8359},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8437},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"8437":{"source":{"__isSmartRef__":true,"id":8407},"target":{"__isSmartRef__":true,"id":8359}},"8438":{"sourceObj":{"__isSmartRef__":true,"id":8407},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8359},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8439},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"8439":{"source":{"__isSmartRef__":true,"id":8407},"target":{"__isSmartRef__":true,"id":8359}},"8440":{"submorphs":[{"__isSmartRef__":true,"id":8441}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8452},"id":105,"renderContextTable":{"__isSmartRef__":true,"id":8456},"eventHandler":{"__isSmartRef__":true,"id":8457},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8458},"priorExtent":{"__isSmartRef__":true,"id":8459},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":8460},"label":{"__isSmartRef__":true,"id":8441},"owner":{"__isSmartRef__":true,"id":8360},"layout":{"__isSmartRef__":true,"id":8469},"attributeConnections":[{"__isSmartRef__":true,"id":8470},{"__isSmartRef__":true,"id":8472}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"8441":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8442},"id":106,"renderContextTable":{"__isSmartRef__":true,"id":8446},"textChunks":[{"__isSmartRef__":true,"id":8447}],"eventHandler":{"__isSmartRef__":true,"id":8449},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":8450},"priorExtent":{"__isSmartRef__":true,"id":8451},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8440},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"8442":{"_Position":{"__isSmartRef__":true,"id":8443},"renderContextTable":{"__isSmartRef__":true,"id":8444},"_Extent":{"__isSmartRef__":true,"id":8445},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8443":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8444":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8445":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8446":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8447":{"style":{"__isSmartRef__":true,"id":8448},"chunkOwner":{"__isSmartRef__":true,"id":8441},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"8448":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"8449":{"morph":{"__isSmartRef__":true,"id":8441},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8450":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8451":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8452":{"_Position":{"__isSmartRef__":true,"id":8453},"renderContextTable":{"__isSmartRef__":true,"id":8454},"_Extent":{"__isSmartRef__":true,"id":8455},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8453":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8454":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8455":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8456":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8457":{"morph":{"__isSmartRef__":true,"id":8440},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8458":{"x":781,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8459":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8460":{"stops":[{"__isSmartRef__":true,"id":8461},{"__isSmartRef__":true,"id":8463},{"__isSmartRef__":true,"id":8465},{"__isSmartRef__":true,"id":8467}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"8461":{"offset":0,"color":{"__isSmartRef__":true,"id":8462}},"8462":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8463":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8464}},"8464":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8465":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8466}},"8466":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8467":{"offset":1,"color":{"__isSmartRef__":true,"id":8468}},"8468":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"8469":{"moveHorizontal":true},"8470":{"sourceObj":{"__isSmartRef__":true,"id":8440},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":8359},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8471},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"8471":{"source":{"__isSmartRef__":true,"id":8440},"target":{"__isSmartRef__":true,"id":8359}},"8472":{"sourceObj":{"__isSmartRef__":true,"id":8440},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8359},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8473},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"8473":{"source":{"__isSmartRef__":true,"id":8440},"target":{"__isSmartRef__":true,"id":8359}},"8474":{"_Position":{"__isSmartRef__":true,"id":8475},"renderContextTable":{"__isSmartRef__":true,"id":8476},"_Extent":{"__isSmartRef__":true,"id":8477},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":226},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"8475":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8476":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8477":{"x":820,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8478":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8479":{"morph":{"__isSmartRef__":true,"id":8360},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"8480":{"resizeWidth":true,"adjustForNewBounds":true},"8481":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"8482":{"x":820,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8483":{"submorphs":[{"__isSmartRef__":true,"id":8484},{"__isSmartRef__":true,"id":17349},{"__isSmartRef__":true,"id":17385},{"__isSmartRef__":true,"id":8746},{"__isSmartRef__":true,"id":16982},{"__isSmartRef__":true,"id":17035},{"__isSmartRef__":true,"id":17085},{"__isSmartRef__":true,"id":17418},{"__isSmartRef__":true,"id":17207},{"__isSmartRef__":true,"id":8499},{"__isSmartRef__":true,"id":8533},{"__isSmartRef__":true,"id":8570},{"__isSmartRef__":true,"id":8604},{"__isSmartRef__":true,"id":8638},{"__isSmartRef__":true,"id":8672},{"__isSmartRef__":true,"id":8706}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17426},"id":1,"renderContextTable":{"__isSmartRef__":true,"id":17431},"eventHandler":{"__isSmartRef__":true,"id":17432},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":17433},"_Position":{"__isSmartRef__":true,"id":17434},"locationPane":{"__isSmartRef__":true,"id":8484},"codeBaseDirBtn":{"__isSmartRef__":true,"id":17349},"localDirBtn":{"__isSmartRef__":true,"id":17385},"Pane1":{"__isSmartRef__":true,"id":8746},"Pane2":{"__isSmartRef__":true,"id":16982},"Pane3":{"__isSmartRef__":true,"id":17035},"Pane4":{"__isSmartRef__":true,"id":17085},"midResizer":{"__isSmartRef__":true,"id":17418},"sourcePane":{"__isSmartRef__":true,"id":17207},"ownerWidget":{"__isSmartRef__":true,"id":8497},"owner":{"__isSmartRef__":true,"id":8359},"targetURL":{"__isSmartRef__":true,"id":17335},"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"8484":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8485},"id":2,"renderContextTable":{"__isSmartRef__":true,"id":8489},"textChunks":[{"__isSmartRef__":true,"id":8490}],"eventHandler":{"__isSmartRef__":true,"id":8492},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8493},"priorExtent":{"__isSmartRef__":true,"id":8494},"_MaxTextWidth":656,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8483},"isInputLine":true,"layout":{"__isSmartRef__":true,"id":8495},"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":8496}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8485":{"_Position":{"__isSmartRef__":true,"id":8486},"renderContextTable":{"__isSmartRef__":true,"id":8487},"_Extent":{"__isSmartRef__":true,"id":8488},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8486":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8487":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8488":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8489":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8490":{"style":{"__isSmartRef__":true,"id":8491},"chunkOwner":{"__isSmartRef__":true,"id":8484},"storedString":"http://lively-kernel.org/repository/webwerkstatt/lively/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8491":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8492":{"morph":{"__isSmartRef__":true,"id":8484},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8493":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8494":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8495":{"resizeWidth":true},"8496":{"sourceObj":{"__isSmartRef__":true,"id":8484},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setTargetURL","converter":null,"converterString":"function (value) { return new URL(value) }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17348},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8497":{"buttonCommands":[{"__isSmartRef__":true,"id":8498},{"__isSmartRef__":true,"id":8532},{"__isSmartRef__":true,"id":8569},{"__isSmartRef__":true,"id":8603},{"__isSmartRef__":true,"id":8637},{"__isSmartRef__":true,"id":8671},{"__isSmartRef__":true,"id":8705}],"RootFilters":[{"__isSmartRef__":true,"id":8739}],"Pane1Filters":[{"__isSmartRef__":true,"id":8740},{"__isSmartRef__":true,"id":8741}],"Pane2Filters":[{"__isSmartRef__":true,"id":8742}],"Pane3Filters":[{"__isSmartRef__":true,"id":8743}],"Pane4Filters":[{"__isSmartRef__":true,"id":8744}],"evaluate":true,"panel":{"__isSmartRef__":true,"id":8483},"attributeConnections":[{"__isSmartRef__":true,"id":8745},{"__isSmartRef__":true,"id":16981},{"__isSmartRef__":true,"id":17034},{"__isSmartRef__":true,"id":17084},{"__isSmartRef__":true,"id":17206},{"__isSmartRef__":true,"id":17330}],"SourceString":" createProgressBar: function(label) {\n // this.enableShowingProgress();\n // var labelFunc = Object.isString(labelOrFunc) ?\n // function() { return labelOrFunc } : labelOrFunc;\n var progressBar = lively.morphic.World.current().addStatusProgress(label);\n connect(this, 'progressEvent', progressBar, 'setValue',\n {converter: function(rpe) { return (rpe.loaded / rpe.total) }});\n connect(this, 'status', progressBar, 'remove', {\n updater: function($upd, status) { if (status.isDone()) $upd() }});\n return progressBar;\n },","sourceString":" createProgressBar: function(label) {\n // this.enableShowingProgress();\n // var labelFunc = Object.isString(labelOrFunc) ?\n // function() { return labelOrFunc } : labelOrFunc;\n var progressBar = lively.morphic.World.current().addStatusProgress(label);\n connect(this, 'progressEvent', progressBar, 'setValue',\n {converter: function(rpe) { return (rpe.loaded / rpe.total) }});\n connect(this, 'status', progressBar, 'remove', {\n updater: function($upd, status) { if (status.isDone()) $upd() }});\n return progressBar;\n },","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"targetURL":{"__isSmartRef__":true,"id":17335},"_rootNode":{"__isSmartRef__":true,"id":8756},"Pane1Selection":{"__isSmartRef__":true,"id":11929},"pane1Selection":{"__isSmartRef__":true,"id":11929},"Pane2Selection":{"__isSmartRef__":true,"id":17016},"pane2Selection":{"__isSmartRef__":true,"id":17016},"Pane3Selection":{"__isSmartRef__":true,"id":17043},"pane3Selection":{"__isSmartRef__":true,"id":17043},"Pane4Selection":{"__isSmartRef__":true,"id":17133},"pane4Selection":{"__isSmartRef__":true,"id":17133},"Pane4Content":[{"__isSmartRef__":true,"id":17092},{"__isSmartRef__":true,"id":17094},{"__isSmartRef__":true,"id":17096},{"__isSmartRef__":true,"id":17098},{"__isSmartRef__":true,"id":17100},{"__isSmartRef__":true,"id":17102},{"__isSmartRef__":true,"id":17104},{"__isSmartRef__":true,"id":17106},{"__isSmartRef__":true,"id":17108},{"__isSmartRef__":true,"id":17110},{"__isSmartRef__":true,"id":17112},{"__isSmartRef__":true,"id":17114},{"__isSmartRef__":true,"id":17116},{"__isSmartRef__":true,"id":17118},{"__isSmartRef__":true,"id":17120},{"__isSmartRef__":true,"id":17122},{"__isSmartRef__":true,"id":17124},{"__isSmartRef__":true,"id":17126},{"__isSmartRef__":true,"id":17128},{"__isSmartRef__":true,"id":17130},{"__isSmartRef__":true,"id":17132},{"__isSmartRef__":true,"id":17134},{"__isSmartRef__":true,"id":17136},{"__isSmartRef__":true,"id":17138},{"__isSmartRef__":true,"id":17140},{"__isSmartRef__":true,"id":17142},{"__isSmartRef__":true,"id":17144},{"__isSmartRef__":true,"id":17146},{"__isSmartRef__":true,"id":17148},{"__isSmartRef__":true,"id":17150},{"__isSmartRef__":true,"id":17152},{"__isSmartRef__":true,"id":17154},{"__isSmartRef__":true,"id":17156},{"__isSmartRef__":true,"id":17158},{"__isSmartRef__":true,"id":17160},{"__isSmartRef__":true,"id":17162},{"__isSmartRef__":true,"id":17164},{"__isSmartRef__":true,"id":17166},{"__isSmartRef__":true,"id":17168},{"__isSmartRef__":true,"id":17170},{"__isSmartRef__":true,"id":17172},{"__isSmartRef__":true,"id":17174},{"__isSmartRef__":true,"id":17176},{"__isSmartRef__":true,"id":17178},{"__isSmartRef__":true,"id":17180},{"__isSmartRef__":true,"id":17182},{"__isSmartRef__":true,"id":17184},{"__isSmartRef__":true,"id":17186},{"__isSmartRef__":true,"id":17188}],"Pane3Content":[{"__isSmartRef__":true,"id":17042},{"__isSmartRef__":true,"id":17044},{"__isSmartRef__":true,"id":17046},{"__isSmartRef__":true,"id":17048},{"__isSmartRef__":true,"id":17050},{"__isSmartRef__":true,"id":17052},{"__isSmartRef__":true,"id":17054},{"__isSmartRef__":true,"id":17056},{"__isSmartRef__":true,"id":17058},{"__isSmartRef__":true,"id":17060},{"__isSmartRef__":true,"id":17062},{"__isSmartRef__":true,"id":17064},{"__isSmartRef__":true,"id":17066},{"__isSmartRef__":true,"id":17068}],"Pane2Content":[{"__isSmartRef__":true,"id":16989},{"__isSmartRef__":true,"id":16991},{"__isSmartRef__":true,"id":16993},{"__isSmartRef__":true,"id":16995},{"__isSmartRef__":true,"id":16997},{"__isSmartRef__":true,"id":16999},{"__isSmartRef__":true,"id":17001},{"__isSmartRef__":true,"id":17003},{"__isSmartRef__":true,"id":17005},{"__isSmartRef__":true,"id":17007},{"__isSmartRef__":true,"id":17009},{"__isSmartRef__":true,"id":17011},{"__isSmartRef__":true,"id":17013},{"__isSmartRef__":true,"id":17015},{"__isSmartRef__":true,"id":17017}],"Pane1Content":[{"__isSmartRef__":true,"id":8753},{"__isSmartRef__":true,"id":16882},{"__isSmartRef__":true,"id":16883},{"__isSmartRef__":true,"id":16884},{"__isSmartRef__":true,"id":16885},{"__isSmartRef__":true,"id":16886},{"__isSmartRef__":true,"id":16887},{"__isSmartRef__":true,"id":16888},{"__isSmartRef__":true,"id":16889},{"__isSmartRef__":true,"id":16890},{"__isSmartRef__":true,"id":16891},{"__isSmartRef__":true,"id":16892},{"__isSmartRef__":true,"id":16893},{"__isSmartRef__":true,"id":16894},{"__isSmartRef__":true,"id":16895},{"__isSmartRef__":true,"id":16896},{"__isSmartRef__":true,"id":16897},{"__isSmartRef__":true,"id":16898},{"__isSmartRef__":true,"id":16899},{"__isSmartRef__":true,"id":16900},{"__isSmartRef__":true,"id":16901},{"__isSmartRef__":true,"id":16902},{"__isSmartRef__":true,"id":16903},{"__isSmartRef__":true,"id":16904},{"__isSmartRef__":true,"id":16905},{"__isSmartRef__":true,"id":16906},{"__isSmartRef__":true,"id":16907},{"__isSmartRef__":true,"id":16908},{"__isSmartRef__":true,"id":16909},{"__isSmartRef__":true,"id":16910},{"__isSmartRef__":true,"id":16911},{"__isSmartRef__":true,"id":16912},{"__isSmartRef__":true,"id":16913},{"__isSmartRef__":true,"id":16914},{"__isSmartRef__":true,"id":16915},{"__isSmartRef__":true,"id":16916},{"__isSmartRef__":true,"id":16917},{"__isSmartRef__":true,"id":16918},{"__isSmartRef__":true,"id":16919},{"__isSmartRef__":true,"id":16920},{"__isSmartRef__":true,"id":16921},{"__isSmartRef__":true,"id":16922},{"__isSmartRef__":true,"id":16923},{"__isSmartRef__":true,"id":16924},{"__isSmartRef__":true,"id":16925},{"__isSmartRef__":true,"id":16926},{"__isSmartRef__":true,"id":16927},{"__isSmartRef__":true,"id":16928},{"__isSmartRef__":true,"id":16929},{"__isSmartRef__":true,"id":16930},{"__isSmartRef__":true,"id":16931},{"__isSmartRef__":true,"id":16932},{"__isSmartRef__":true,"id":16933},{"__isSmartRef__":true,"id":16934},{"__isSmartRef__":true,"id":16935},{"__isSmartRef__":true,"id":16936},{"__isSmartRef__":true,"id":16937},{"__isSmartRef__":true,"id":16938},{"__isSmartRef__":true,"id":16939},{"__isSmartRef__":true,"id":16940},{"__isSmartRef__":true,"id":16941},{"__isSmartRef__":true,"id":16942},{"__isSmartRef__":true,"id":16943},{"__isSmartRef__":true,"id":16944},{"__isSmartRef__":true,"id":16945},{"__isSmartRef__":true,"id":16946},{"__isSmartRef__":true,"id":16947},{"__isSmartRef__":true,"id":16948},{"__isSmartRef__":true,"id":16949},{"__isSmartRef__":true,"id":16950},{"__isSmartRef__":true,"id":16951},{"__isSmartRef__":true,"id":16952},{"__isSmartRef__":true,"id":16953},{"__isSmartRef__":true,"id":16954},{"__isSmartRef__":true,"id":16955},{"__isSmartRef__":true,"id":16956},{"__isSmartRef__":true,"id":16957},{"__isSmartRef__":true,"id":16958},{"__isSmartRef__":true,"id":16959},{"__isSmartRef__":true,"id":16960},{"__isSmartRef__":true,"id":16961},{"__isSmartRef__":true,"id":16962},{"__isSmartRef__":true,"id":16963},{"__isSmartRef__":true,"id":16964},{"__isSmartRef__":true,"id":16965}],"Pane1Menu":[["Add to world requirements"],["remove"],["reparse"],["-------"],["open in text editor"],["show versions"],["diff versions"]],"Pane2Menu":[["references"],["add sibling below"],["remove"],["-------"],["view hierarchy"],["add class"],["add object extension"],["add layer"]],"Pane3Menu":[["add sibling below"],["remove"]],"currentModuleName":"lively.Network","Pane4Menu":[["senders"],["implementors"],["add sibling below"],["remove"],["-------"],["add method"]],"_statusMorph":{"__isSmartRef__":true,"id":17336},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser"},"8498":{"browser":{"__isSmartRef__":true,"id":8497},"button":{"__isSmartRef__":true,"id":8499},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"8499":{"submorphs":[{"__isSmartRef__":true,"id":8500}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8512},"id":13,"renderContextTable":{"__isSmartRef__":true,"id":8516},"eventHandler":{"__isSmartRef__":true,"id":8517},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8518},"priorExtent":{"__isSmartRef__":true,"id":8519},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8520},"label":{"__isSmartRef__":true,"id":8500},"command":{"__isSmartRef__":true,"id":8498},"attributeConnections":[{"__isSmartRef__":true,"id":8529},{"__isSmartRef__":true,"id":8530}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8500":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8501},"id":14,"renderContextTable":{"__isSmartRef__":true,"id":8505},"textChunks":[{"__isSmartRef__":true,"id":8506}],"eventHandler":{"__isSmartRef__":true,"id":8508},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8509},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8510},"priorExtent":{"__isSmartRef__":true,"id":8511},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8499},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8501":{"_Position":{"__isSmartRef__":true,"id":8502},"renderContextTable":{"__isSmartRef__":true,"id":8503},"_Extent":{"__isSmartRef__":true,"id":8504},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8502":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8503":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8504":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8505":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8506":{"style":{"__isSmartRef__":true,"id":8507},"chunkOwner":{"__isSmartRef__":true,"id":8500},"storedString":"Add module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8507":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8508":{"morph":{"__isSmartRef__":true,"id":8500},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8509":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8510":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8511":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8512":{"_Position":{"__isSmartRef__":true,"id":8513},"renderContextTable":{"__isSmartRef__":true,"id":8514},"_Extent":{"__isSmartRef__":true,"id":8515},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8513":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8514":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8515":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8516":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8517":{"morph":{"__isSmartRef__":true,"id":8499},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8518":{"x":0,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8519":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8520":{"stops":[{"__isSmartRef__":true,"id":8521},{"__isSmartRef__":true,"id":8523},{"__isSmartRef__":true,"id":8525},{"__isSmartRef__":true,"id":8527}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8521":{"offset":0,"color":{"__isSmartRef__":true,"id":8522}},"8522":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8523":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8524}},"8524":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8525":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8526}},"8526":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8527":{"offset":1,"color":{"__isSmartRef__":true,"id":8528}},"8528":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8529":{"sourceObj":{"__isSmartRef__":true,"id":8499},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8498},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8530":{"sourceObj":{"__isSmartRef__":true,"id":8499},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8499},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8531},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8531":{"source":{"__isSmartRef__":true,"id":8499},"target":{"__isSmartRef__":true,"id":8499}},"8532":{"browser":{"__isSmartRef__":true,"id":8497},"button":{"__isSmartRef__":true,"id":8533},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"8533":{"submorphs":[{"__isSmartRef__":true,"id":8534}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8546},"id":15,"renderContextTable":{"__isSmartRef__":true,"id":8550},"eventHandler":{"__isSmartRef__":true,"id":8551},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8552},"priorExtent":{"__isSmartRef__":true,"id":8553},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8554},"label":{"__isSmartRef__":true,"id":8534},"command":{"__isSmartRef__":true,"id":8532},"attributeConnections":[{"__isSmartRef__":true,"id":8563},{"__isSmartRef__":true,"id":8564}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8534":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8535},"id":16,"renderContextTable":{"__isSmartRef__":true,"id":8539},"textChunks":[{"__isSmartRef__":true,"id":8540}],"eventHandler":{"__isSmartRef__":true,"id":8542},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8543},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8544},"priorExtent":{"__isSmartRef__":true,"id":8545},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8533},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8535":{"_Position":{"__isSmartRef__":true,"id":8536},"renderContextTable":{"__isSmartRef__":true,"id":8537},"_Extent":{"__isSmartRef__":true,"id":8538},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8536":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8537":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8538":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8539":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8540":{"style":{"__isSmartRef__":true,"id":8541},"chunkOwner":{"__isSmartRef__":true,"id":8534},"storedString":"Load all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8541":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8542":{"morph":{"__isSmartRef__":true,"id":8534},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8543":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8544":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8545":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8546":{"_Position":{"__isSmartRef__":true,"id":8547},"renderContextTable":{"__isSmartRef__":true,"id":8548},"_Extent":{"__isSmartRef__":true,"id":8549},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8547":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8548":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8549":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8550":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8551":{"morph":{"__isSmartRef__":true,"id":8533},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8552":{"x":117.14285714285714,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8553":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8554":{"stops":[{"__isSmartRef__":true,"id":8555},{"__isSmartRef__":true,"id":8557},{"__isSmartRef__":true,"id":8559},{"__isSmartRef__":true,"id":8561}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8555":{"offset":0,"color":{"__isSmartRef__":true,"id":8556}},"8556":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8557":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8558}},"8558":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8559":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8560}},"8560":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8561":{"offset":1,"color":{"__isSmartRef__":true,"id":8562}},"8562":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8563":{"sourceObj":{"__isSmartRef__":true,"id":8533},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8532},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8564":{"sourceObj":{"__isSmartRef__":true,"id":8533},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8533},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8565},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":8566},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8565":{"source":{"__isSmartRef__":true,"id":8533},"target":{"__isSmartRef__":true,"id":8533}},"8566":{"converter":{"__isSmartRef__":true,"id":8567}},"8567":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":8565},"source":"function () { return this.getSourceObj().command.asString() }","funcProperties":{"__isSmartRef__":true,"id":8568},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"8568":{},"8569":{"browser":{"__isSmartRef__":true,"id":8497},"button":{"__isSmartRef__":true,"id":8570},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"8570":{"submorphs":[{"__isSmartRef__":true,"id":8571}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8583},"id":17,"renderContextTable":{"__isSmartRef__":true,"id":8587},"eventHandler":{"__isSmartRef__":true,"id":8588},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8589},"priorExtent":{"__isSmartRef__":true,"id":8590},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8591},"label":{"__isSmartRef__":true,"id":8571},"command":{"__isSmartRef__":true,"id":8569},"attributeConnections":[{"__isSmartRef__":true,"id":8600},{"__isSmartRef__":true,"id":8601}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8571":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8572},"id":18,"renderContextTable":{"__isSmartRef__":true,"id":8576},"textChunks":[{"__isSmartRef__":true,"id":8577}],"eventHandler":{"__isSmartRef__":true,"id":8579},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8580},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8581},"priorExtent":{"__isSmartRef__":true,"id":8582},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8570},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8572":{"_Position":{"__isSmartRef__":true,"id":8573},"renderContextTable":{"__isSmartRef__":true,"id":8574},"_Extent":{"__isSmartRef__":true,"id":8575},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8573":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8574":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8575":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8576":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8577":{"style":{"__isSmartRef__":true,"id":8578},"chunkOwner":{"__isSmartRef__":true,"id":8571},"storedString":"LineNo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8578":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8579":{"morph":{"__isSmartRef__":true,"id":8571},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8580":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8581":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8582":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8583":{"_Position":{"__isSmartRef__":true,"id":8584},"renderContextTable":{"__isSmartRef__":true,"id":8585},"_Extent":{"__isSmartRef__":true,"id":8586},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8584":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8585":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8586":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8587":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8588":{"morph":{"__isSmartRef__":true,"id":8570},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8589":{"x":234.28571428571428,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8590":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8591":{"stops":[{"__isSmartRef__":true,"id":8592},{"__isSmartRef__":true,"id":8594},{"__isSmartRef__":true,"id":8596},{"__isSmartRef__":true,"id":8598}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8592":{"offset":0,"color":{"__isSmartRef__":true,"id":8593}},"8593":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8594":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8595}},"8595":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8596":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8597}},"8597":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8598":{"offset":1,"color":{"__isSmartRef__":true,"id":8599}},"8599":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8600":{"sourceObj":{"__isSmartRef__":true,"id":8570},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8569},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8601":{"sourceObj":{"__isSmartRef__":true,"id":8570},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8570},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8602},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8602":{"source":{"__isSmartRef__":true,"id":8570},"target":{"__isSmartRef__":true,"id":8570}},"8603":{"browser":{"__isSmartRef__":true,"id":8497},"button":{"__isSmartRef__":true,"id":8604},"__LivelyClassName__":"lively.ide.ParserDebugCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"8604":{"submorphs":[{"__isSmartRef__":true,"id":8605}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8617},"id":19,"renderContextTable":{"__isSmartRef__":true,"id":8621},"eventHandler":{"__isSmartRef__":true,"id":8622},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8623},"priorExtent":{"__isSmartRef__":true,"id":8624},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8625},"label":{"__isSmartRef__":true,"id":8605},"command":{"__isSmartRef__":true,"id":8603},"attributeConnections":[{"__isSmartRef__":true,"id":8634},{"__isSmartRef__":true,"id":8635}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8605":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8606},"id":20,"renderContextTable":{"__isSmartRef__":true,"id":8610},"textChunks":[{"__isSmartRef__":true,"id":8611}],"eventHandler":{"__isSmartRef__":true,"id":8613},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8614},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8615},"priorExtent":{"__isSmartRef__":true,"id":8616},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8604},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8606":{"_Position":{"__isSmartRef__":true,"id":8607},"renderContextTable":{"__isSmartRef__":true,"id":8608},"_Extent":{"__isSmartRef__":true,"id":8609},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8607":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8608":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8609":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8610":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8611":{"style":{"__isSmartRef__":true,"id":8612},"chunkOwner":{"__isSmartRef__":true,"id":8605},"storedString":"Dbg errors is off","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8612":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8613":{"morph":{"__isSmartRef__":true,"id":8605},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8614":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8615":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8616":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8617":{"_Position":{"__isSmartRef__":true,"id":8618},"renderContextTable":{"__isSmartRef__":true,"id":8619},"_Extent":{"__isSmartRef__":true,"id":8620},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8618":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8619":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8620":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8621":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8622":{"morph":{"__isSmartRef__":true,"id":8604},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8623":{"x":351.42857142857144,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8624":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8625":{"stops":[{"__isSmartRef__":true,"id":8626},{"__isSmartRef__":true,"id":8628},{"__isSmartRef__":true,"id":8630},{"__isSmartRef__":true,"id":8632}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8626":{"offset":0,"color":{"__isSmartRef__":true,"id":8627}},"8627":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8628":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8629}},"8629":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8630":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8631}},"8631":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8632":{"offset":1,"color":{"__isSmartRef__":true,"id":8633}},"8633":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8634":{"sourceObj":{"__isSmartRef__":true,"id":8604},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8603},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8635":{"sourceObj":{"__isSmartRef__":true,"id":8604},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8604},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8636},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8636":{"source":{"__isSmartRef__":true,"id":8604},"target":{"__isSmartRef__":true,"id":8604}},"8637":{"browser":{"__isSmartRef__":true,"id":8497},"button":{"__isSmartRef__":true,"id":8638},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"8638":{"submorphs":[{"__isSmartRef__":true,"id":8639}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8651},"id":21,"renderContextTable":{"__isSmartRef__":true,"id":8655},"eventHandler":{"__isSmartRef__":true,"id":8656},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8657},"priorExtent":{"__isSmartRef__":true,"id":8658},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8659},"label":{"__isSmartRef__":true,"id":8639},"command":{"__isSmartRef__":true,"id":8637},"attributeConnections":[{"__isSmartRef__":true,"id":8668},{"__isSmartRef__":true,"id":8669}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8639":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8640},"id":22,"renderContextTable":{"__isSmartRef__":true,"id":8644},"textChunks":[{"__isSmartRef__":true,"id":8645}],"eventHandler":{"__isSmartRef__":true,"id":8647},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8648},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8649},"priorExtent":{"__isSmartRef__":true,"id":8650},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8638},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8640":{"_Position":{"__isSmartRef__":true,"id":8641},"renderContextTable":{"__isSmartRef__":true,"id":8642},"_Extent":{"__isSmartRef__":true,"id":8643},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8641":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8642":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8643":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8644":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8645":{"style":{"__isSmartRef__":true,"id":8646},"chunkOwner":{"__isSmartRef__":true,"id":8639},"storedString":"Eval on","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8646":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8647":{"morph":{"__isSmartRef__":true,"id":8639},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8648":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8649":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8650":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8651":{"_Position":{"__isSmartRef__":true,"id":8652},"renderContextTable":{"__isSmartRef__":true,"id":8653},"_Extent":{"__isSmartRef__":true,"id":8654},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8652":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8653":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8654":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8655":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8656":{"morph":{"__isSmartRef__":true,"id":8638},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8657":{"x":468.57142857142856,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8658":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8659":{"stops":[{"__isSmartRef__":true,"id":8660},{"__isSmartRef__":true,"id":8662},{"__isSmartRef__":true,"id":8664},{"__isSmartRef__":true,"id":8666}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8660":{"offset":0,"color":{"__isSmartRef__":true,"id":8661}},"8661":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8662":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8663}},"8663":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8664":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8665}},"8665":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8666":{"offset":1,"color":{"__isSmartRef__":true,"id":8667}},"8667":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8668":{"sourceObj":{"__isSmartRef__":true,"id":8638},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8637},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8669":{"sourceObj":{"__isSmartRef__":true,"id":8638},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8638},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8670},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8670":{"source":{"__isSmartRef__":true,"id":8638},"target":{"__isSmartRef__":true,"id":8638}},"8671":{"browser":{"__isSmartRef__":true,"id":8497},"button":{"__isSmartRef__":true,"id":8672},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"8672":{"submorphs":[{"__isSmartRef__":true,"id":8673}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8685},"id":23,"renderContextTable":{"__isSmartRef__":true,"id":8689},"eventHandler":{"__isSmartRef__":true,"id":8690},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8691},"priorExtent":{"__isSmartRef__":true,"id":8692},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8693},"label":{"__isSmartRef__":true,"id":8673},"command":{"__isSmartRef__":true,"id":8671},"attributeConnections":[{"__isSmartRef__":true,"id":8702},{"__isSmartRef__":true,"id":8703}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8673":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8674},"id":24,"renderContextTable":{"__isSmartRef__":true,"id":8678},"textChunks":[{"__isSmartRef__":true,"id":8679}],"eventHandler":{"__isSmartRef__":true,"id":8681},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8682},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8683},"priorExtent":{"__isSmartRef__":true,"id":8684},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8672},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8674":{"_Position":{"__isSmartRef__":true,"id":8675},"renderContextTable":{"__isSmartRef__":true,"id":8676},"_Extent":{"__isSmartRef__":true,"id":8677},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8675":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8676":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8677":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8678":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8679":{"style":{"__isSmartRef__":true,"id":8680},"chunkOwner":{"__isSmartRef__":true,"id":8673},"storedString":"Sort","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8680":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8681":{"morph":{"__isSmartRef__":true,"id":8673},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8682":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8683":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8684":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8685":{"_Position":{"__isSmartRef__":true,"id":8686},"renderContextTable":{"__isSmartRef__":true,"id":8687},"_Extent":{"__isSmartRef__":true,"id":8688},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8686":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8687":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8688":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8689":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8690":{"morph":{"__isSmartRef__":true,"id":8672},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8691":{"x":585.7142857142857,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8692":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8693":{"stops":[{"__isSmartRef__":true,"id":8694},{"__isSmartRef__":true,"id":8696},{"__isSmartRef__":true,"id":8698},{"__isSmartRef__":true,"id":8700}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8694":{"offset":0,"color":{"__isSmartRef__":true,"id":8695}},"8695":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8696":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8697}},"8697":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8698":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8699}},"8699":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8700":{"offset":1,"color":{"__isSmartRef__":true,"id":8701}},"8701":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8702":{"sourceObj":{"__isSmartRef__":true,"id":8672},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8671},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8703":{"sourceObj":{"__isSmartRef__":true,"id":8672},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8672},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8704},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8704":{"source":{"__isSmartRef__":true,"id":8672},"target":{"__isSmartRef__":true,"id":8672}},"8705":{"browser":{"__isSmartRef__":true,"id":8497},"button":{"__isSmartRef__":true,"id":8706},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"8706":{"submorphs":[{"__isSmartRef__":true,"id":8707}],"scripts":[],"shape":{"__isSmartRef__":true,"id":8719},"id":25,"renderContextTable":{"__isSmartRef__":true,"id":8723},"eventHandler":{"__isSmartRef__":true,"id":8724},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":8725},"priorExtent":{"__isSmartRef__":true,"id":8726},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":8727},"label":{"__isSmartRef__":true,"id":8707},"command":{"__isSmartRef__":true,"id":8705},"attributeConnections":[{"__isSmartRef__":true,"id":8736},{"__isSmartRef__":true,"id":8737}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"8707":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8708},"id":26,"renderContextTable":{"__isSmartRef__":true,"id":8712},"textChunks":[{"__isSmartRef__":true,"id":8713}],"eventHandler":{"__isSmartRef__":true,"id":8715},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":8716},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":8717},"priorExtent":{"__isSmartRef__":true,"id":8718},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8706},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8708":{"_Position":{"__isSmartRef__":true,"id":8709},"renderContextTable":{"__isSmartRef__":true,"id":8710},"_Extent":{"__isSmartRef__":true,"id":8711},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8709":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8710":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8711":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8712":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"8713":{"style":{"__isSmartRef__":true,"id":8714},"chunkOwner":{"__isSmartRef__":true,"id":8707},"storedString":"View as...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8714":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"8715":{"morph":{"__isSmartRef__":true,"id":8707},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8716":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"8717":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8718":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8719":{"_Position":{"__isSmartRef__":true,"id":8720},"renderContextTable":{"__isSmartRef__":true,"id":8721},"_Extent":{"__isSmartRef__":true,"id":8722},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8720":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8721":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8722":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8723":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"8724":{"morph":{"__isSmartRef__":true,"id":8706},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"8725":{"x":702.8571428571429,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8726":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8727":{"stops":[{"__isSmartRef__":true,"id":8728},{"__isSmartRef__":true,"id":8730},{"__isSmartRef__":true,"id":8732},{"__isSmartRef__":true,"id":8734}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8728":{"offset":0,"color":{"__isSmartRef__":true,"id":8729}},"8729":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8730":{"offset":0.4,"color":{"__isSmartRef__":true,"id":8731}},"8731":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8732":{"offset":0.6,"color":{"__isSmartRef__":true,"id":8733}},"8733":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8734":{"offset":1,"color":{"__isSmartRef__":true,"id":8735}},"8735":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8736":{"sourceObj":{"__isSmartRef__":true,"id":8706},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8705},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8737":{"sourceObj":{"__isSmartRef__":true,"id":8706},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8706},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":8738},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8738":{"source":{"__isSmartRef__":true,"id":8706},"target":{"__isSmartRef__":true,"id":8706}},"8739":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"8740":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"8741":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"8742":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"8743":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"8744":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"8745":{"sourceObj":{"__isSmartRef__":true,"id":8497},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":8746},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":16980},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"8746":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":8747},"id":7,"renderContextTable":{"__isSmartRef__":true,"id":8752},"itemList":[{"__isSmartRef__":true,"id":8753},{"__isSmartRef__":true,"id":16882},{"__isSmartRef__":true,"id":16883},{"__isSmartRef__":true,"id":16884},{"__isSmartRef__":true,"id":16885},{"__isSmartRef__":true,"id":16886},{"__isSmartRef__":true,"id":16887},{"__isSmartRef__":true,"id":16888},{"__isSmartRef__":true,"id":16889},{"__isSmartRef__":true,"id":16890},{"__isSmartRef__":true,"id":16891},{"__isSmartRef__":true,"id":16892},{"__isSmartRef__":true,"id":16893},{"__isSmartRef__":true,"id":16894},{"__isSmartRef__":true,"id":16895},{"__isSmartRef__":true,"id":16896},{"__isSmartRef__":true,"id":16897},{"__isSmartRef__":true,"id":16898},{"__isSmartRef__":true,"id":16899},{"__isSmartRef__":true,"id":16900},{"__isSmartRef__":true,"id":16901},{"__isSmartRef__":true,"id":16902},{"__isSmartRef__":true,"id":16903},{"__isSmartRef__":true,"id":16904},{"__isSmartRef__":true,"id":16905},{"__isSmartRef__":true,"id":16906},{"__isSmartRef__":true,"id":16907},{"__isSmartRef__":true,"id":16908},{"__isSmartRef__":true,"id":16909},{"__isSmartRef__":true,"id":16910},{"__isSmartRef__":true,"id":16911},{"__isSmartRef__":true,"id":16912},{"__isSmartRef__":true,"id":16913},{"__isSmartRef__":true,"id":16914},{"__isSmartRef__":true,"id":16915},{"__isSmartRef__":true,"id":16916},{"__isSmartRef__":true,"id":16917},{"__isSmartRef__":true,"id":16918},{"__isSmartRef__":true,"id":16919},{"__isSmartRef__":true,"id":16920},{"__isSmartRef__":true,"id":16921},{"__isSmartRef__":true,"id":16922},{"__isSmartRef__":true,"id":16923},{"__isSmartRef__":true,"id":16924},{"__isSmartRef__":true,"id":16925},{"__isSmartRef__":true,"id":16926},{"__isSmartRef__":true,"id":16927},{"__isSmartRef__":true,"id":16928},{"__isSmartRef__":true,"id":16929},{"__isSmartRef__":true,"id":16930},{"__isSmartRef__":true,"id":16931},{"__isSmartRef__":true,"id":16932},{"__isSmartRef__":true,"id":16933},{"__isSmartRef__":true,"id":16934},{"__isSmartRef__":true,"id":16935},{"__isSmartRef__":true,"id":16936},{"__isSmartRef__":true,"id":16937},{"__isSmartRef__":true,"id":16938},{"__isSmartRef__":true,"id":16939},{"__isSmartRef__":true,"id":16940},{"__isSmartRef__":true,"id":16941},{"__isSmartRef__":true,"id":16942},{"__isSmartRef__":true,"id":16943},{"__isSmartRef__":true,"id":16944},{"__isSmartRef__":true,"id":16945},{"__isSmartRef__":true,"id":16946},{"__isSmartRef__":true,"id":16947},{"__isSmartRef__":true,"id":16948},{"__isSmartRef__":true,"id":16949},{"__isSmartRef__":true,"id":16950},{"__isSmartRef__":true,"id":16951},{"__isSmartRef__":true,"id":16952},{"__isSmartRef__":true,"id":16953},{"__isSmartRef__":true,"id":16954},{"__isSmartRef__":true,"id":16955},{"__isSmartRef__":true,"id":16956},{"__isSmartRef__":true,"id":16957},{"__isSmartRef__":true,"id":16958},{"__isSmartRef__":true,"id":16959},{"__isSmartRef__":true,"id":16960},{"__isSmartRef__":true,"id":16961},{"__isSmartRef__":true,"id":16962},{"__isSmartRef__":true,"id":16963},{"__isSmartRef__":true,"id":16964},{"__isSmartRef__":true,"id":16965}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":16966},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":16967},"selectedLineNo":43,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":8483},"attributeConnections":[{"__isSmartRef__":true,"id":16968},{"__isSmartRef__":true,"id":16973},{"__isSmartRef__":true,"id":16975},{"__isSmartRef__":true,"id":16977}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":16979},"prevScroll":[0,656],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"8747":{"_Position":{"__isSmartRef__":true,"id":8748},"renderContextTable":{"__isSmartRef__":true,"id":8749},"_Extent":{"__isSmartRef__":true,"id":8750},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":8751},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"8748":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8749":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"8750":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"8751":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"8752":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"8753":{"isListItem":true,"string":"AST/","value":{"__isSmartRef__":true,"id":8754}},"8754":{"target":{"__isSmartRef__":true,"id":8755},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"AST/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8755":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/AST/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8756":{"target":{"__isSmartRef__":true,"id":4931},"browser":{"__isSmartRef__":true,"id":8497},"parent":null,"allFiles":["lively/Undo.js","lively/Traits.js","lively/Widgets.js","lively/DOMAbstraction.js","lively/defaultconfig.js","lively/LKFileParser.ometa","lively/SyntaxHighlighting.js","lively/TouchSupport.js","lively/WikiParser.js","lively/LogHelper.js","lively/WebPIM.js","lively/Text.js","lively/TestModule.js","lively/EmuDom.js","lively/TestRunnerExtensions.js","lively/Tools.js","lively/rhino-compat.js","lively/Storage.js","lively/Ometa.js","lively/JSON.js","lively/CrayonColors.js","lively/NewMorphicCompat.js","lively/TileScripting.js","lively/localconfig.js","lively/TextSupport.js","lively/Styles.js","lively/LKFileParser.js","lively/CanvasExptCoreFixes.js","lively/Network.js","lively/Migration.js","lively/scene.js","lively/TestFramework.js","lively/OldModel.js","lively/morphic.js","lively/ChangeSet.js","lively/SerializationRefactoring.js","lively/WikiWidget.js","lively/OldBase.js","lively/Data.js","lively/WikiParser.ometa","lively/Base.js","lively/PartsBinMorphs.js","lively/CanvasExpt.js","lively/Rendering.js","lively/Examples.js","lively/Helper.js","lively/GeometryEvents.js","lively/SmartRefSerialization.js","lively/miniprototype.js","lively/demofx.js","lively/PartsBin.js","lively/GridLayout.js","lively/Persistence.js","lively/Core.js","lively/LayerableMorphs.js","lively/LKWiki.js","lively/bindings.js","lively/SmalltalkParserSupport.js","lively/Fabrik.js","lively/StyleAdditions.js","lively/SmalltalkParser.js","lively/Scripting.js","lively/lk-js-parser.ometa","lively/SpellChecker.js","lively/Graffle.js","lively/Presentation.js","lively/bootstrap.js","lively/Main.js","lively/FileUploadWidget.js","lively/SmalltalkParser.ometa","lively/Connector.js","lively/WidgetsTraits.js","lively/simpleMain.js","lively/ide.js","lively/NoMoreModels.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":8755},{"__isSmartRef__":true,"id":8757},{"__isSmartRef__":true,"id":8758},{"__isSmartRef__":true,"id":8759},{"__isSmartRef__":true,"id":8760},{"__isSmartRef__":true,"id":8761},{"__isSmartRef__":true,"id":8762},{"__isSmartRef__":true,"id":8763}],"parentNamespacePath":{"__isSmartRef__":true,"id":8764},"_childNodes":[{"__isSmartRef__":true,"id":8754},{"__isSmartRef__":true,"id":8765},{"__isSmartRef__":true,"id":8766},{"__isSmartRef__":true,"id":8767},{"__isSmartRef__":true,"id":8768},{"__isSmartRef__":true,"id":8769},{"__isSmartRef__":true,"id":8770},{"__isSmartRef__":true,"id":8771},{"__isSmartRef__":true,"id":8772},{"__isSmartRef__":true,"id":8773},{"__isSmartRef__":true,"id":9254},{"__isSmartRef__":true,"id":9321},{"__isSmartRef__":true,"id":9417},{"__isSmartRef__":true,"id":9505},{"__isSmartRef__":true,"id":9521},{"__isSmartRef__":true,"id":9719},{"__isSmartRef__":true,"id":9784},{"__isSmartRef__":true,"id":9796},{"__isSmartRef__":true,"id":9853},{"__isSmartRef__":true,"id":9887},{"__isSmartRef__":true,"id":10032},{"__isSmartRef__":true,"id":10132},{"__isSmartRef__":true,"id":10240},{"__isSmartRef__":true,"id":10246},{"__isSmartRef__":true,"id":10696},{"__isSmartRef__":true,"id":11136},{"__isSmartRef__":true,"id":11170},{"__isSmartRef__":true,"id":11177},{"__isSmartRef__":true,"id":11191},{"__isSmartRef__":true,"id":11252},{"__isSmartRef__":true,"id":11284},{"__isSmartRef__":true,"id":11326},{"__isSmartRef__":true,"id":11335},{"__isSmartRef__":true,"id":11342},{"__isSmartRef__":true,"id":11368},{"__isSmartRef__":true,"id":11371},{"__isSmartRef__":true,"id":11453},{"__isSmartRef__":true,"id":11635},{"__isSmartRef__":true,"id":11660},{"__isSmartRef__":true,"id":11680},{"__isSmartRef__":true,"id":11782},{"__isSmartRef__":true,"id":11787},{"__isSmartRef__":true,"id":11922},{"__isSmartRef__":true,"id":11929},{"__isSmartRef__":true,"id":12159},{"__isSmartRef__":true,"id":12194},{"__isSmartRef__":true,"id":12204},{"__isSmartRef__":true,"id":12330},{"__isSmartRef__":true,"id":12376},{"__isSmartRef__":true,"id":12395},{"__isSmartRef__":true,"id":12502},{"__isSmartRef__":true,"id":12527},{"__isSmartRef__":true,"id":12641},{"__isSmartRef__":true,"id":12720},{"__isSmartRef__":true,"id":12723},{"__isSmartRef__":true,"id":12735},{"__isSmartRef__":true,"id":13379},{"__isSmartRef__":true,"id":13473},{"__isSmartRef__":true,"id":13476},{"__isSmartRef__":true,"id":13484},{"__isSmartRef__":true,"id":13487},{"__isSmartRef__":true,"id":13556},{"__isSmartRef__":true,"id":13862},{"__isSmartRef__":true,"id":13865},{"__isSmartRef__":true,"id":13900},{"__isSmartRef__":true,"id":14022},{"__isSmartRef__":true,"id":14062},{"__isSmartRef__":true,"id":14312},{"__isSmartRef__":true,"id":14315},{"__isSmartRef__":true,"id":14484},{"__isSmartRef__":true,"id":14491},{"__isSmartRef__":true,"id":14524},{"__isSmartRef__":true,"id":14928},{"__isSmartRef__":true,"id":14992},{"__isSmartRef__":true,"id":15156},{"__isSmartRef__":true,"id":15437},{"__isSmartRef__":true,"id":15473},{"__isSmartRef__":true,"id":15516},{"__isSmartRef__":true,"id":15558},{"__isSmartRef__":true,"id":15715},{"__isSmartRef__":true,"id":16779},{"__isSmartRef__":true,"id":16831},{"__isSmartRef__":true,"id":16834},{"__isSmartRef__":true,"id":16856},{"__isSmartRef__":true,"id":16881}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8757":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/dom/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8758":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/oldCore/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8759":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/deprecated/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8760":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8761":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/persistence/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8762":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/bindings/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8763":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/ide/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8764":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"8765":{"target":{"__isSmartRef__":true,"id":8762},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"bindings/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8766":{"target":{"__isSmartRef__":true,"id":8759},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"deprecated/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8767":{"target":{"__isSmartRef__":true,"id":8757},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"dom/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8768":{"target":{"__isSmartRef__":true,"id":8763},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"ide/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8769":{"target":{"__isSmartRef__":true,"id":8760},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"morphic/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8770":{"target":{"__isSmartRef__":true,"id":8758},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"oldCore/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8771":{"target":{"__isSmartRef__":true,"id":8761},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"persistence/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8772":{"target":{"__isSmartRef__":true,"id":8764},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8773":{"target":{"__isSmartRef__":true,"id":8774},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Base.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"8774":{"name":"lively/Base.js","type":"completeFileDef","startIndex":0,"stopIndex":76515,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8775},{"__isSmartRef__":true,"id":8776},{"__isSmartRef__":true,"id":8777},{"__isSmartRef__":true,"id":8778},{"__isSmartRef__":true,"id":8779},{"__isSmartRef__":true,"id":8780},{"__isSmartRef__":true,"id":8781},{"__isSmartRef__":true,"id":8782},{"__isSmartRef__":true,"id":8783},{"__isSmartRef__":true,"id":8784},{"__isSmartRef__":true,"id":8785},{"__isSmartRef__":true,"id":8786},{"__isSmartRef__":true,"id":8787},{"__isSmartRef__":true,"id":8788},{"__isSmartRef__":true,"id":8789},{"__isSmartRef__":true,"id":8804},{"__isSmartRef__":true,"id":8805},{"__isSmartRef__":true,"id":8828},{"__isSmartRef__":true,"id":8829},{"__isSmartRef__":true,"id":8843},{"__isSmartRef__":true,"id":8847},{"__isSmartRef__":true,"id":8860},{"__isSmartRef__":true,"id":8861},{"__isSmartRef__":true,"id":8871},{"__isSmartRef__":true,"id":8872},{"__isSmartRef__":true,"id":8880},{"__isSmartRef__":true,"id":8881},{"__isSmartRef__":true,"id":8882},{"__isSmartRef__":true,"id":8886},{"__isSmartRef__":true,"id":8887},{"__isSmartRef__":true,"id":8922},{"__isSmartRef__":true,"id":8923},{"__isSmartRef__":true,"id":8930},{"__isSmartRef__":true,"id":8931},{"__isSmartRef__":true,"id":8932},{"__isSmartRef__":true,"id":8933},{"__isSmartRef__":true,"id":8938},{"__isSmartRef__":true,"id":8939},{"__isSmartRef__":true,"id":8940},{"__isSmartRef__":true,"id":8941},{"__isSmartRef__":true,"id":8942},{"__isSmartRef__":true,"id":8943},{"__isSmartRef__":true,"id":8944},{"__isSmartRef__":true,"id":8945},{"__isSmartRef__":true,"id":8946},{"__isSmartRef__":true,"id":8959},{"__isSmartRef__":true,"id":8960},{"__isSmartRef__":true,"id":8966},{"__isSmartRef__":true,"id":8967},{"__isSmartRef__":true,"id":8971},{"__isSmartRef__":true,"id":8972},{"__isSmartRef__":true,"id":8975},{"__isSmartRef__":true,"id":8976},{"__isSmartRef__":true,"id":8986},{"__isSmartRef__":true,"id":8987},{"__isSmartRef__":true,"id":8994},{"__isSmartRef__":true,"id":8995},{"__isSmartRef__":true,"id":8996},{"__isSmartRef__":true,"id":8997},{"__isSmartRef__":true,"id":8998},{"__isSmartRef__":true,"id":9038},{"__isSmartRef__":true,"id":9039},{"__isSmartRef__":true,"id":9044},{"__isSmartRef__":true,"id":9045},{"__isSmartRef__":true,"id":9051},{"__isSmartRef__":true,"id":9052},{"__isSmartRef__":true,"id":9053},{"__isSmartRef__":true,"id":9084},{"__isSmartRef__":true,"id":9085},{"__isSmartRef__":true,"id":9108},{"__isSmartRef__":true,"id":9109},{"__isSmartRef__":true,"id":9113},{"__isSmartRef__":true,"id":9114},{"__isSmartRef__":true,"id":9124},{"__isSmartRef__":true,"id":9125},{"__isSmartRef__":true,"id":9136},{"__isSmartRef__":true,"id":9137},{"__isSmartRef__":true,"id":9145},{"__isSmartRef__":true,"id":9146},{"__isSmartRef__":true,"id":9147},{"__isSmartRef__":true,"id":9148},{"__isSmartRef__":true,"id":9164},{"__isSmartRef__":true,"id":9165},{"__isSmartRef__":true,"id":9189},{"__isSmartRef__":true,"id":9190},{"__isSmartRef__":true,"id":9201},{"__isSmartRef__":true,"id":9211},{"__isSmartRef__":true,"id":9215},{"__isSmartRef__":true,"id":9216},{"__isSmartRef__":true,"id":9217},{"__isSmartRef__":true,"id":9218},{"__isSmartRef__":true,"id":9240},{"__isSmartRef__":true,"id":9244},{"__isSmartRef__":true,"id":9251}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8775":{"name":null,"type":"comment","startIndex":0,"stopIndex":1358,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8776":{"name":null,"type":"unknown","startIndex":1359,"stopIndex":1410,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8777":{"name":"dbgOn","type":"functionDef","startIndex":1411,"stopIndex":1741,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8778":{"name":"dbgUser","type":"functionDef","startIndex":1742,"stopIndex":1858,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8779":{"name":"assert","type":"functionDef","startIndex":1859,"stopIndex":2087,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8780":{"name":null,"type":"unknown","startIndex":2088,"stopIndex":3591,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8781":{"name":null,"type":"comment","startIndex":3592,"stopIndex":3593,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8782":{"name":"namespace","type":"functionDef","startIndex":3594,"stopIndex":3864,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8783":{"name":null,"type":"comment","startIndex":3865,"stopIndex":3866,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8784":{"name":"__oldNamespace","type":"functionDef","startIndex":3867,"stopIndex":4925,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8785":{"name":"module","type":"functionDef","startIndex":4926,"stopIndex":7165,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8786":{"name":null,"type":"comment","startIndex":7166,"stopIndex":7166,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8787":{"name":"require","type":"functionDef","startIndex":7167,"stopIndex":7638,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8788":{"name":null,"type":"comment","startIndex":7639,"stopIndex":7910,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8789":{"name":"Function.prototype","type":"klassExtensionDef","startIndex":7911,"stopIndex":16878,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8790},{"__isSmartRef__":true,"id":8792},{"__isSmartRef__":true,"id":8793},{"__isSmartRef__":true,"id":8794},{"__isSmartRef__":true,"id":8795},{"__isSmartRef__":true,"id":8796},{"__isSmartRef__":true,"id":8797},{"__isSmartRef__":true,"id":8798},{"__isSmartRef__":true,"id":8799},{"__isSmartRef__":true,"id":8800},{"__isSmartRef__":true,"id":8801},{"__isSmartRef__":true,"id":8802},{"__isSmartRef__":true,"id":8803}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8791}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8790":{"name":"defaultCategoryName","type":"propertyDef","startIndex":7948,"stopIndex":7988,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8791":{"name":"default category","type":"categoryDef","startIndex":7945,"stopIndex":16875,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8790},{"__isSmartRef__":true,"id":8792},{"__isSmartRef__":true,"id":8793},{"__isSmartRef__":true,"id":8794},{"__isSmartRef__":true,"id":8795},{"__isSmartRef__":true,"id":8796},{"__isSmartRef__":true,"id":8797},{"__isSmartRef__":true,"id":8798},{"__isSmartRef__":true,"id":8799},{"__isSmartRef__":true,"id":8800},{"__isSmartRef__":true,"id":8801},{"__isSmartRef__":true,"id":8802},{"__isSmartRef__":true,"id":8803}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8792":{"name":"subclass","type":"propertyDef","startIndex":7991,"stopIndex":9927,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8793":{"name":"addMethods","type":"propertyDef","startIndex":9930,"stopIndex":10609,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8794":{"name":"addCategorizedMethods","type":"propertyDef","startIndex":10613,"stopIndex":14967,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8795":{"name":"addProperties","type":"propertyDef","startIndex":14971,"stopIndex":15087,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8796":{"name":"isSubclassOf","type":"propertyDef","startIndex":15090,"stopIndex":15172,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8797":{"name":"allSubclasses","type":"propertyDef","startIndex":15176,"stopIndex":15313,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8798":{"name":"withAllSubclasses","type":"propertyDef","startIndex":15315,"stopIndex":15392,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8799":{"name":"directSubclasses","type":"propertyDef","startIndex":15396,"stopIndex":15537,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8800":{"name":"withAllSortedSubclassesDo","type":"propertyDef","startIndex":15540,"stopIndex":16338,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8801":{"name":"superclasses","type":"propertyDef","startIndex":16341,"stopIndex":16524,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8802":{"name":"categoryNameFor","type":"propertyDef","startIndex":16527,"stopIndex":16708,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8803":{"name":"remove","type":"propertyDef","startIndex":16710,"stopIndex":16872,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8791},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8804":{"name":null,"type":"comment","startIndex":16879,"stopIndex":16879,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8805":{"name":"Class","type":"objectDef","startIndex":16880,"stopIndex":23218,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8806},{"__isSmartRef__":true,"id":8808},{"__isSmartRef__":true,"id":8809},{"__isSmartRef__":true,"id":8810},{"__isSmartRef__":true,"id":8811},{"__isSmartRef__":true,"id":8812},{"__isSmartRef__":true,"id":8813},{"__isSmartRef__":true,"id":8814},{"__isSmartRef__":true,"id":8815},{"__isSmartRef__":true,"id":8816},{"__isSmartRef__":true,"id":8817},{"__isSmartRef__":true,"id":8818},{"__isSmartRef__":true,"id":8819},{"__isSmartRef__":true,"id":8820},{"__isSmartRef__":true,"id":8821},{"__isSmartRef__":true,"id":8822},{"__isSmartRef__":true,"id":8823},{"__isSmartRef__":true,"id":8824},{"__isSmartRef__":true,"id":8825},{"__isSmartRef__":true,"id":8826},{"__isSmartRef__":true,"id":8827}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8806":{"name":"anonymousCounter","type":"propertyDef","startIndex":16896,"stopIndex":16916,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8807":{"name":"default category","type":"categoryDef","startIndex":12,"stopIndex":6336,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":8806},{"__isSmartRef__":true,"id":8808},{"__isSmartRef__":true,"id":8809},{"__isSmartRef__":true,"id":8810},{"__isSmartRef__":true,"id":8811},{"__isSmartRef__":true,"id":8812},{"__isSmartRef__":true,"id":8813},{"__isSmartRef__":true,"id":8814},{"__isSmartRef__":true,"id":8815},{"__isSmartRef__":true,"id":8816},{"__isSmartRef__":true,"id":8817},{"__isSmartRef__":true,"id":8818},{"__isSmartRef__":true,"id":8819},{"__isSmartRef__":true,"id":8820},{"__isSmartRef__":true,"id":8821},{"__isSmartRef__":true,"id":8822},{"__isSmartRef__":true,"id":8823},{"__isSmartRef__":true,"id":8824},{"__isSmartRef__":true,"id":8825},{"__isSmartRef__":true,"id":8826},{"__isSmartRef__":true,"id":8827}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8808":{"name":"initializerTemplate","type":"propertyDef","startIndex":16920,"stopIndex":17015,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8809":{"name":"newInitializer","type":"propertyDef","startIndex":17019,"stopIndex":17190,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8810":{"name":"initializer","type":"propertyDef","startIndex":17193,"stopIndex":17769,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8811":{"name":"def","type":"propertyDef","startIndex":17772,"stopIndex":18908,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8812":{"name":"isValidIdentifier","type":"propertyDef","startIndex":18911,"stopIndex":19016,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8813":{"name":"isClass","type":"propertyDef","startIndex":19020,"stopIndex":19286,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8814":{"name":"className","type":"propertyDef","startIndex":19289,"stopIndex":19534,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8815":{"name":"forName","type":"propertyDef","startIndex":19537,"stopIndex":19799,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8816":{"name":"deleteObjectNamed","type":"propertyDef","startIndex":19802,"stopIndex":20065,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8817":{"name":"unqualifiedNameFor","type":"propertyDef","startIndex":20068,"stopIndex":20371,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8818":{"name":"namespaceFor","type":"propertyDef","startIndex":20374,"stopIndex":20623,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8819":{"name":"withAllClassNames","type":"propertyDef","startIndex":20626,"stopIndex":20882,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8820":{"name":"makeEnum","type":"propertyDef","startIndex":20885,"stopIndex":21150,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8821":{"name":"getConstructor","type":"propertyDef","startIndex":21153,"stopIndex":21288,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8822":{"name":"getPrototype","type":"propertyDef","startIndex":21291,"stopIndex":21394,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8823":{"name":"applyPrototypeMethod","type":"propertyDef","startIndex":21397,"stopIndex":21634,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8824":{"name":"getSuperConstructor","type":"propertyDef","startIndex":21637,"stopIndex":21755,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8825":{"name":"getSuperPrototype","type":"propertyDef","startIndex":21758,"stopIndex":21900,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8826":{"name":"addPins","type":"propertyDef","startIndex":21903,"stopIndex":22758,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8827":{"name":"addMixin","type":"propertyDef","startIndex":22762,"stopIndex":23213,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8807},"_owner":{"__isSmartRef__":true,"id":8805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8828":{"name":null,"type":"comment","startIndex":23219,"stopIndex":23219,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8829":{"name":"Strings","type":"objectDef","startIndex":23220,"stopIndex":26668,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8830},{"__isSmartRef__":true,"id":8832},{"__isSmartRef__":true,"id":8833},{"__isSmartRef__":true,"id":8834},{"__isSmartRef__":true,"id":8835},{"__isSmartRef__":true,"id":8836},{"__isSmartRef__":true,"id":8837},{"__isSmartRef__":true,"id":8838},{"__isSmartRef__":true,"id":8839},{"__isSmartRef__":true,"id":8840},{"__isSmartRef__":true,"id":8841},{"__isSmartRef__":true,"id":8842}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8830":{"name":"documentation","type":"propertyDef","startIndex":23236,"stopIndex":23284,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8831":{"name":"default category","type":"categoryDef","startIndex":14,"stopIndex":3446,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":8830},{"__isSmartRef__":true,"id":8832},{"__isSmartRef__":true,"id":8833},{"__isSmartRef__":true,"id":8834},{"__isSmartRef__":true,"id":8835},{"__isSmartRef__":true,"id":8836},{"__isSmartRef__":true,"id":8837},{"__isSmartRef__":true,"id":8838},{"__isSmartRef__":true,"id":8839},{"__isSmartRef__":true,"id":8840},{"__isSmartRef__":true,"id":8841},{"__isSmartRef__":true,"id":8842}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8832":{"name":"format","type":"propertyDef","startIndex":23288,"stopIndex":23376,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8833":{"name":"formatFromArray","type":"propertyDef","startIndex":23380,"stopIndex":25056,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8834":{"name":"withDecimalPrecision","type":"propertyDef","startIndex":25059,"stopIndex":25242,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8835":{"name":"indent","type":"propertyDef","startIndex":25245,"stopIndex":25415,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8836":{"name":"removeSurroundingWhitespaces","type":"propertyDef","startIndex":25418,"stopIndex":25827,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8837":{"name":"print","type":"propertyDef","startIndex":25830,"stopIndex":26013,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8838":{"name":"lines","type":"propertyDef","startIndex":26016,"stopIndex":26071,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8839":{"name":"tokens","type":"propertyDef","startIndex":26074,"stopIndex":26161,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8840":{"name":"printNested","type":"propertyDef","startIndex":26164,"stopIndex":26415,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8841":{"name":"camelCaseString","type":"propertyDef","startIndex":26418,"stopIndex":26504,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8842":{"name":"tableize","type":"propertyDef","startIndex":26507,"stopIndex":26664,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8831},"_owner":{"__isSmartRef__":true,"id":8829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8843":{"name":"Numbers","type":"objectDef","startIndex":26669,"stopIndex":27107,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8844},{"__isSmartRef__":true,"id":8846}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8844":{"name":"random","type":"propertyDef","startIndex":26685,"stopIndex":26844,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8845},"_owner":{"__isSmartRef__":true,"id":8843},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8845":{"name":"default category","type":"categoryDef","startIndex":14,"stopIndex":438,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":8844},{"__isSmartRef__":true,"id":8846}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8846":{"name":"humanReadableByteSize","type":"propertyDef","startIndex":26846,"stopIndex":27101,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8845},"_owner":{"__isSmartRef__":true,"id":8843},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8847":{"name":"Functions","type":"objectDef","startIndex":27108,"stopIndex":28332,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8848},{"__isSmartRef__":true,"id":8850},{"__isSmartRef__":true,"id":8851},{"__isSmartRef__":true,"id":8852},{"__isSmartRef__":true,"id":8853},{"__isSmartRef__":true,"id":8854},{"__isSmartRef__":true,"id":8855},{"__isSmartRef__":true,"id":8856},{"__isSmartRef__":true,"id":8857},{"__isSmartRef__":true,"id":8858},{"__isSmartRef__":true,"id":8859}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8848":{"name":"documentation","type":"propertyDef","startIndex":27126,"stopIndex":27176,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8849":{"name":"default category","type":"categoryDef","startIndex":16,"stopIndex":1222,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":8848},{"__isSmartRef__":true,"id":8850},{"__isSmartRef__":true,"id":8851},{"__isSmartRef__":true,"id":8852},{"__isSmartRef__":true,"id":8853},{"__isSmartRef__":true,"id":8854},{"__isSmartRef__":true,"id":8855},{"__isSmartRef__":true,"id":8856},{"__isSmartRef__":true,"id":8857},{"__isSmartRef__":true,"id":8858},{"__isSmartRef__":true,"id":8859}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8850":{"name":"Empty","type":"propertyDef","startIndex":27179,"stopIndex":27200,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8851":{"name":"K","type":"propertyDef","startIndex":27203,"stopIndex":27236,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8852":{"name":"Null","type":"propertyDef","startIndex":27239,"stopIndex":27288,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8853":{"name":"False","type":"propertyDef","startIndex":27291,"stopIndex":27343,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8854":{"name":"True","type":"propertyDef","startIndex":27346,"stopIndex":27395,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8855":{"name":"all","type":"propertyDef","startIndex":27398,"stopIndex":27636,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8856":{"name":"own","type":"propertyDef","startIndex":27639,"stopIndex":27907,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8857":{"name":"timeToRun","type":"propertyDef","startIndex":27910,"stopIndex":28057,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8858":{"name":"timeToRunN","type":"propertyDef","startIndex":28059,"stopIndex":28218,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8859":{"name":"notYetImplemented","type":"propertyDef","startIndex":28223,"stopIndex":28328,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8849},"_owner":{"__isSmartRef__":true,"id":8847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8860":{"name":null,"type":"comment","startIndex":28333,"stopIndex":28334,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8861":{"name":"Properties","type":"objectDef","startIndex":28335,"stopIndex":29734,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8862},{"__isSmartRef__":true,"id":8864},{"__isSmartRef__":true,"id":8865},{"__isSmartRef__":true,"id":8866},{"__isSmartRef__":true,"id":8867},{"__isSmartRef__":true,"id":8868},{"__isSmartRef__":true,"id":8869},{"__isSmartRef__":true,"id":8870}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8862":{"name":"documentation","type":"propertyDef","startIndex":28354,"stopIndex":28409,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8863":{"name":"default category","type":"categoryDef","startIndex":17,"stopIndex":1397,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":8862},{"__isSmartRef__":true,"id":8864},{"__isSmartRef__":true,"id":8865},{"__isSmartRef__":true,"id":8866},{"__isSmartRef__":true,"id":8867},{"__isSmartRef__":true,"id":8868},{"__isSmartRef__":true,"id":8869},{"__isSmartRef__":true,"id":8870}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8864":{"name":"all","type":"propertyDef","startIndex":28412,"stopIndex":28666,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8865":{"name":"own","type":"propertyDef","startIndex":28670,"stopIndex":28897,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8866":{"name":"forEachOwn","type":"propertyDef","startIndex":28900,"stopIndex":29175,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8867":{"name":"nameFor","type":"propertyDef","startIndex":29178,"stopIndex":29325,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8868":{"name":"values","type":"propertyDef","startIndex":29327,"stopIndex":29456,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8869":{"name":"ownValues","type":"propertyDef","startIndex":29458,"stopIndex":29623,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8870":{"name":"printObjectSize","type":"propertyDef","startIndex":29625,"stopIndex":29728,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8863},"_owner":{"__isSmartRef__":true,"id":8861},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8871":{"name":null,"type":"comment","startIndex":29735,"stopIndex":29760,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8872":{"name":"Namespace","type":"klassDef","startIndex":29761,"stopIndex":31024,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8873},{"__isSmartRef__":true,"id":8875},{"__isSmartRef__":true,"id":8877},{"__isSmartRef__":true,"id":8878},{"__isSmartRef__":true,"id":8879}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":8874},{"__isSmartRef__":true,"id":8876}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8873":{"name":"initialize","type":"propertyDef","startIndex":29809,"stopIndex":29957,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8874},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8872},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8874":{"name":"initializing","type":"categoryDef","startIndex":29790,"stopIndex":29960,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8873}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8875":{"name":"gather","type":"propertyDef","startIndex":29977,"stopIndex":30276,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8876},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8872},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8876":{"name":"accessing","type":"categoryDef","startIndex":29962,"stopIndex":31021,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8875},{"__isSmartRef__":true,"id":8877},{"__isSmartRef__":true,"id":8878},{"__isSmartRef__":true,"id":8879}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8877":{"name":"subNamespaces","type":"propertyDef","startIndex":30280,"stopIndex":30475,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8876},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8872},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8878":{"name":"classes","type":"propertyDef","startIndex":30479,"stopIndex":30774,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8876},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8872},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8879":{"name":"functions","type":"propertyDef","startIndex":30778,"stopIndex":31017,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8876},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8872},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8880":{"name":null,"type":"comment","startIndex":31025,"stopIndex":31067,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8881":{"name":"Global","type":"klassExtensionDef","startIndex":31068,"stopIndex":31111,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["Namespace.prototype"],"categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8882":{"name":"Global","type":"klassExtensionDef","startIndex":31112,"stopIndex":31198,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8883},{"__isSmartRef__":true,"id":8885}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8884}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8883":{"name":"namespaceIdentifier","type":"propertyDef","startIndex":31136,"stopIndex":31166,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8884},"className":"Global","_owner":{"__isSmartRef__":true,"id":8882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8884":{"name":"default category","type":"categoryDef","startIndex":31134,"stopIndex":31195,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8883},{"__isSmartRef__":true,"id":8885}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8885":{"name":"isLoaded","type":"propertyDef","startIndex":31168,"stopIndex":31193,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8884},"className":"Global","_owner":{"__isSmartRef__":true,"id":8882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8886":{"name":null,"type":"comment","startIndex":31199,"stopIndex":31199,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8887":{"name":"Namespace","type":"klassExtensionDef","startIndex":31200,"stopIndex":37830,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8888},{"__isSmartRef__":true,"id":8890},{"__isSmartRef__":true,"id":8892},{"__isSmartRef__":true,"id":8893},{"__isSmartRef__":true,"id":8895},{"__isSmartRef__":true,"id":8896},{"__isSmartRef__":true,"id":8897},{"__isSmartRef__":true,"id":8898},{"__isSmartRef__":true,"id":8899},{"__isSmartRef__":true,"id":8900},{"__isSmartRef__":true,"id":8901},{"__isSmartRef__":true,"id":8902},{"__isSmartRef__":true,"id":8903},{"__isSmartRef__":true,"id":8905},{"__isSmartRef__":true,"id":8906},{"__isSmartRef__":true,"id":8907},{"__isSmartRef__":true,"id":8909},{"__isSmartRef__":true,"id":8910},{"__isSmartRef__":true,"id":8911},{"__isSmartRef__":true,"id":8913},{"__isSmartRef__":true,"id":8914},{"__isSmartRef__":true,"id":8915},{"__isSmartRef__":true,"id":8917},{"__isSmartRef__":true,"id":8918},{"__isSmartRef__":true,"id":8920},{"__isSmartRef__":true,"id":8921}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8889},{"__isSmartRef__":true,"id":8891},{"__isSmartRef__":true,"id":8894},{"__isSmartRef__":true,"id":8904},{"__isSmartRef__":true,"id":8908},{"__isSmartRef__":true,"id":8912},{"__isSmartRef__":true,"id":8916},{"__isSmartRef__":true,"id":8919}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8888":{"name":"beAnonymous","type":"propertyDef","startIndex":31240,"stopIndex":31391,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8889},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8889":{"name":"initializing","type":"categoryDef","startIndex":31222,"stopIndex":31394,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8888}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8890":{"name":"uri","type":"propertyDef","startIndex":31455,"stopIndex":32385,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8891},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8891":{"name":"accessing","type":"categoryDef","startIndex":31396,"stopIndex":32478,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8890},{"__isSmartRef__":true,"id":8892}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8892":{"name":"relativePath","type":"propertyDef","startIndex":32387,"stopIndex":32474,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8891},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8893":{"name":"addDependendModule","type":"propertyDef","startIndex":32505,"stopIndex":32819,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8894":{"name":"module dependencies","type":"categoryDef","startIndex":32480,"stopIndex":34737,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8893},{"__isSmartRef__":true,"id":8895},{"__isSmartRef__":true,"id":8896},{"__isSmartRef__":true,"id":8897},{"__isSmartRef__":true,"id":8898},{"__isSmartRef__":true,"id":8899},{"__isSmartRef__":true,"id":8900},{"__isSmartRef__":true,"id":8901},{"__isSmartRef__":true,"id":8902}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8895":{"name":"informDependendModules","type":"propertyDef","startIndex":32822,"stopIndex":33043,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8896":{"name":"traceDependendModules","type":"propertyDef","startIndex":33047,"stopIndex":33338,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8897":{"name":"addRequiredModule","type":"propertyDef","startIndex":33341,"stopIndex":33761,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8898":{"name":"removeRequiredModule","type":"propertyDef","startIndex":33765,"stopIndex":34157,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8899":{"name":"pendingRequirementNames","type":"propertyDef","startIndex":34162,"stopIndex":34327,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8900":{"name":"hasPendingRequirements","type":"propertyDef","startIndex":34331,"stopIndex":34445,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8901":{"name":"loadRequirementsFirst","type":"propertyDef","startIndex":34449,"stopIndex":34559,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8902":{"name":"wasRequiredBy","type":"propertyDef","startIndex":34562,"stopIndex":34734,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8894},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8903":{"name":"addOnloadCallback","type":"propertyDef","startIndex":34759,"stopIndex":34867,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8904},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8904":{"name":"load callbacks","type":"categoryDef","startIndex":34739,"stopIndex":35209,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8903},{"__isSmartRef__":true,"id":8905},{"__isSmartRef__":true,"id":8906}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8905":{"name":"runOnloadCallbacks","type":"propertyDef","startIndex":34871,"stopIndex":35146,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8904},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8906":{"name":"isAnonymous","type":"propertyDef","startIndex":35149,"stopIndex":35205,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8904},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8907":{"name":"isLoaded","type":"propertyDef","startIndex":35224,"stopIndex":35275,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8908},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8908":{"name":"testing","type":"categoryDef","startIndex":35211,"stopIndex":35502,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8907},{"__isSmartRef__":true,"id":8909},{"__isSmartRef__":true,"id":8910}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8909":{"name":"isLoading","type":"propertyDef","startIndex":35280,"stopIndex":35439,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8908},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8910":{"name":"isAnonymous","type":"propertyDef","startIndex":35442,"stopIndex":35498,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8908},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8911":{"name":"load","type":"propertyDef","startIndex":35517,"stopIndex":36472,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8912},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8912":{"name":"loading","type":"categoryDef","startIndex":35504,"stopIndex":36768,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8911},{"__isSmartRef__":true,"id":8913},{"__isSmartRef__":true,"id":8914}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8913":{"name":"activate","type":"propertyDef","startIndex":36476,"stopIndex":36548,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8912},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8914":{"name":"deactivate","type":"propertyDef","startIndex":36551,"stopIndex":36765,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8912},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8915":{"name":"remove","type":"propertyDef","startIndex":36784,"stopIndex":37026,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8916},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8916":{"name":"removing","type":"categoryDef","startIndex":36770,"stopIndex":37172,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8915},{"__isSmartRef__":true,"id":8917}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8917":{"name":"removeScriptNode","type":"propertyDef","startIndex":37028,"stopIndex":37169,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8916},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8918":{"name":"toString","type":"propertyDef","startIndex":37189,"stopIndex":37264,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8919},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8919":{"name":"debugging","type":"categoryDef","startIndex":37174,"stopIndex":37827,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8918},{"__isSmartRef__":true,"id":8920},{"__isSmartRef__":true,"id":8921}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8920":{"name":"inspect","type":"propertyDef","startIndex":37266,"stopIndex":37339,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8919},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8921":{"name":"logError","type":"propertyDef","startIndex":37341,"stopIndex":37826,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8919},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8922":{"name":null,"type":"comment","startIndex":37831,"stopIndex":37831,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8923":{"name":"Namespace","type":"klassExtensionDef","startIndex":37832,"stopIndex":39307,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8924},{"__isSmartRef__":true,"id":8926},{"__isSmartRef__":true,"id":8927},{"__isSmartRef__":true,"id":8928},{"__isSmartRef__":true,"id":8929}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8925}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8924":{"name":"namespaceStack","type":"propertyDef","startIndex":37859,"stopIndex":37884,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8925},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8925":{"name":"default category","type":"categoryDef","startIndex":37857,"stopIndex":39304,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8924},{"__isSmartRef__":true,"id":8926},{"__isSmartRef__":true,"id":8927},{"__isSmartRef__":true,"id":8928},{"__isSmartRef__":true,"id":8929}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8926":{"name":"current","type":"propertyDef","startIndex":37886,"stopIndex":37944,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8925},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8927":{"name":"topologicalSortLoadedModules","type":"propertyDef","startIndex":37946,"stopIndex":38776,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8925},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8928":{"name":"bootstrapModules","type":"propertyDef","startIndex":38779,"stopIndex":39175,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8925},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8929":{"name":"bootstrapModulesString","type":"propertyDef","startIndex":39177,"stopIndex":39301,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8925},"className":"Namespace","_owner":{"__isSmartRef__":true,"id":8923},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8930":{"name":null,"type":"comment","startIndex":39308,"stopIndex":39308,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8931":{"name":"moveNamespaceClassToLivelyLang","type":"functionDef","startIndex":39309,"stopIndex":39533,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8932":{"name":null,"type":"comment","startIndex":39534,"stopIndex":39534,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8933":{"name":"lively.lang.Execution","type":"objectDef","startIndex":39535,"stopIndex":39693,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8934},{"__isSmartRef__":true,"id":8936},{"__isSmartRef__":true,"id":8937}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8934":{"name":"showStack","type":"propertyDef","startIndex":39560,"stopIndex":39613,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8935},"_owner":{"__isSmartRef__":true,"id":8933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8935":{"name":"default category","type":"categoryDef","startIndex":24,"stopIndex":156,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":8934},{"__isSmartRef__":true,"id":8936},{"__isSmartRef__":true,"id":8937}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8936":{"name":"resetDebuggingStack","type":"propertyDef","startIndex":39615,"stopIndex":39651,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8935},"_owner":{"__isSmartRef__":true,"id":8933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8937":{"name":"installStackTracers","type":"propertyDef","startIndex":39653,"stopIndex":39689,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8935},"_owner":{"__isSmartRef__":true,"id":8933},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8938":{"name":null,"type":"comment","startIndex":39694,"stopIndex":39695,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8939":{"name":"let","type":"propertyDef","startIndex":39696,"stopIndex":39983,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"lively.lang","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8940":{"name":"getStack","type":"functionDef","startIndex":39984,"stopIndex":40261,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8941":{"name":null,"type":"comment","startIndex":40262,"stopIndex":40262,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8942":{"name":"printStack","type":"functionDef","startIndex":40263,"stopIndex":40746,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8943":{"name":null,"type":"comment","startIndex":40747,"stopIndex":40747,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8944":{"name":"logStack","type":"functionDef","startIndex":40748,"stopIndex":40804,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8945":{"name":null,"type":"comment","startIndex":40805,"stopIndex":40903,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8946":{"name":"Function.prototype","type":"klassExtensionDef","startIndex":40904,"stopIndex":45359,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8947},{"__isSmartRef__":true,"id":8949},{"__isSmartRef__":true,"id":8950},{"__isSmartRef__":true,"id":8951},{"__isSmartRef__":true,"id":8952},{"__isSmartRef__":true,"id":8953},{"__isSmartRef__":true,"id":8954},{"__isSmartRef__":true,"id":8955},{"__isSmartRef__":true,"id":8956},{"__isSmartRef__":true,"id":8957},{"__isSmartRef__":true,"id":8958}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8948}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8947":{"name":"inspectFull","type":"propertyDef","startIndex":40941,"stopIndex":41115,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8948":{"name":"default category","type":"categoryDef","startIndex":40938,"stopIndex":45356,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8947},{"__isSmartRef__":true,"id":8949},{"__isSmartRef__":true,"id":8950},{"__isSmartRef__":true,"id":8951},{"__isSmartRef__":true,"id":8952},{"__isSmartRef__":true,"id":8953},{"__isSmartRef__":true,"id":8954},{"__isSmartRef__":true,"id":8955},{"__isSmartRef__":true,"id":8956},{"__isSmartRef__":true,"id":8957},{"__isSmartRef__":true,"id":8958}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8949":{"name":"inspect","type":"propertyDef","startIndex":41118,"stopIndex":41504,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8950":{"name":"qualifiedMethodName","type":"propertyDef","startIndex":41507,"stopIndex":41659,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8951":{"name":"functionNames","type":"propertyDef","startIndex":41662,"stopIndex":41994,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8952":{"name":"withAllFunctionNames","type":"propertyDef","startIndex":41997,"stopIndex":42267,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8953":{"name":"localFunctionNames","type":"propertyDef","startIndex":42270,"stopIndex":42700,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8954":{"name":"getOriginal","type":"propertyDef","startIndex":42703,"stopIndex":42914,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8955":{"name":"logErrors","type":"propertyDef","startIndex":42918,"stopIndex":43769,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8956":{"name":"logCompletion","type":"propertyDef","startIndex":43773,"stopIndex":44399,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8957":{"name":"logCalls","type":"propertyDef","startIndex":44402,"stopIndex":45089,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8958":{"name":"traceCalls","type":"propertyDef","startIndex":45093,"stopIndex":45352,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8948},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":8946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8959":{"name":null,"type":"comment","startIndex":45360,"stopIndex":45404,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8960":{"name":"Number.prototype","type":"klassExtensionDef","startIndex":45405,"stopIndex":45763,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8961},{"__isSmartRef__":true,"id":8963},{"__isSmartRef__":true,"id":8964},{"__isSmartRef__":true,"id":8965}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8962}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8961":{"name":"randomSmallerInteger","type":"propertyDef","startIndex":45440,"stopIndex":45551,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8962},"className":"Number.prototype","_owner":{"__isSmartRef__":true,"id":8960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8962":{"name":"default category","type":"categoryDef","startIndex":45437,"stopIndex":45760,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8961},{"__isSmartRef__":true,"id":8963},{"__isSmartRef__":true,"id":8964},{"__isSmartRef__":true,"id":8965}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8963":{"name":"roundTo","type":"propertyDef","startIndex":45554,"stopIndex":45630,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8962},"className":"Number.prototype","_owner":{"__isSmartRef__":true,"id":8960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8964":{"name":"toDegrees","type":"propertyDef","startIndex":45633,"stopIndex":45697,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8962},"className":"Number.prototype","_owner":{"__isSmartRef__":true,"id":8960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8965":{"name":"toRadians","type":"propertyDef","startIndex":45700,"stopIndex":45759,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8962},"className":"Number.prototype","_owner":{"__isSmartRef__":true,"id":8960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8966":{"name":null,"type":"comment","startIndex":45764,"stopIndex":45807,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8967":{"name":"String.prototype","type":"klassExtensionDef","startIndex":45808,"stopIndex":46024,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8968},{"__isSmartRef__":true,"id":8970}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8969}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8968":{"name":"size","type":"propertyDef","startIndex":45842,"stopIndex":45931,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8969},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":8967},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8969":{"name":"default category","type":"categoryDef","startIndex":45840,"stopIndex":46021,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8968},{"__isSmartRef__":true,"id":8970}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8970":{"name":"asString","type":"propertyDef","startIndex":45934,"stopIndex":46020,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8969},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":8967},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8971":{"name":null,"type":"comment","startIndex":46025,"stopIndex":46066,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8972":{"name":"CharSet","type":"klassDef","startIndex":46067,"stopIndex":46146,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8973}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":8974}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8973":{"name":"documentation","type":"propertyDef","startIndex":46096,"stopIndex":46142,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":8974},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8974":{"name":"default category","type":"categoryDef","startIndex":46094,"stopIndex":46143,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8973}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8975":{"name":null,"type":"comment","startIndex":46147,"stopIndex":46147,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8976":{"name":"CharSet","type":"klassExtensionDef","startIndex":46148,"stopIndex":46442,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8977},{"__isSmartRef__":true,"id":8979},{"__isSmartRef__":true,"id":8980},{"__isSmartRef__":true,"id":8981},{"__isSmartRef__":true,"id":8982},{"__isSmartRef__":true,"id":8983},{"__isSmartRef__":true,"id":8984},{"__isSmartRef__":true,"id":8985}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8978}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8977":{"name":"lowercase","type":"propertyDef","startIndex":46173,"stopIndex":46213,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8978":{"name":"default category","type":"categoryDef","startIndex":46171,"stopIndex":46439,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8977},{"__isSmartRef__":true,"id":8979},{"__isSmartRef__":true,"id":8980},{"__isSmartRef__":true,"id":8981},{"__isSmartRef__":true,"id":8982},{"__isSmartRef__":true,"id":8983},{"__isSmartRef__":true,"id":8984},{"__isSmartRef__":true,"id":8985}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8979":{"name":"uppercase","type":"propertyDef","startIndex":46215,"stopIndex":46255,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8980":{"name":"digits","type":"propertyDef","startIndex":46257,"stopIndex":46278,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8981":{"name":"underscore","type":"propertyDef","startIndex":46280,"stopIndex":46296,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8982":{"name":"nonAlpha","type":"propertyDef","startIndex":46298,"stopIndex":46332,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8983":{"name":"shiftedNonAlpha","type":"propertyDef","startIndex":46334,"stopIndex":46375,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8984":{"name":"leftBrackets","type":"propertyDef","startIndex":46377,"stopIndex":46406,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8985":{"name":"rightBrackets","type":"propertyDef","startIndex":46408,"stopIndex":46438,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8978},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8986":{"name":null,"type":"comment","startIndex":46443,"stopIndex":46443,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8987":{"name":"CharSet","type":"klassExtensionDef","startIndex":46444,"stopIndex":46828,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8988},{"__isSmartRef__":true,"id":8990},{"__isSmartRef__":true,"id":8991},{"__isSmartRef__":true,"id":8992},{"__isSmartRef__":true,"id":8993}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":8989}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8988":{"name":"alphaNum","type":"propertyDef","startIndex":46469,"stopIndex":46581,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8989},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8989":{"name":"default category","type":"categoryDef","startIndex":46467,"stopIndex":46825,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8988},{"__isSmartRef__":true,"id":8990},{"__isSmartRef__":true,"id":8991},{"__isSmartRef__":true,"id":8992},{"__isSmartRef__":true,"id":8993}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8990":{"name":"charsAsTyped","type":"propertyDef","startIndex":46583,"stopIndex":46634,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8989},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8991":{"name":"charsUnshifted","type":"propertyDef","startIndex":46636,"stopIndex":46689,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8989},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8992":{"name":"charsShifted","type":"propertyDef","startIndex":46691,"stopIndex":46749,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8989},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8993":{"name":"nonBlank","type":"propertyDef","startIndex":46752,"stopIndex":46824,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":8989},"className":"CharSet","_owner":{"__isSmartRef__":true,"id":8987},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8994":{"name":null,"type":"comment","startIndex":46829,"stopIndex":46832,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8995":{"name":null,"type":"unknown","startIndex":46833,"stopIndex":46853,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8996":{"name":null,"type":"unknown","startIndex":46854,"stopIndex":46915,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8997":{"name":null,"type":"comment","startIndex":46916,"stopIndex":47109,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8998":{"name":"Point","type":"klassDef","startIndex":47110,"stopIndex":50864,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8999},{"__isSmartRef__":true,"id":9001},{"__isSmartRef__":true,"id":9002},{"__isSmartRef__":true,"id":9003},{"__isSmartRef__":true,"id":9004},{"__isSmartRef__":true,"id":9005},{"__isSmartRef__":true,"id":9006},{"__isSmartRef__":true,"id":9007},{"__isSmartRef__":true,"id":9008},{"__isSmartRef__":true,"id":9009},{"__isSmartRef__":true,"id":9010},{"__isSmartRef__":true,"id":9011},{"__isSmartRef__":true,"id":9012},{"__isSmartRef__":true,"id":9013},{"__isSmartRef__":true,"id":9014},{"__isSmartRef__":true,"id":9015},{"__isSmartRef__":true,"id":9016},{"__isSmartRef__":true,"id":9017},{"__isSmartRef__":true,"id":9018},{"__isSmartRef__":true,"id":9019},{"__isSmartRef__":true,"id":9020},{"__isSmartRef__":true,"id":9021},{"__isSmartRef__":true,"id":9022},{"__isSmartRef__":true,"id":9023},{"__isSmartRef__":true,"id":9024},{"__isSmartRef__":true,"id":9025},{"__isSmartRef__":true,"id":9026},{"__isSmartRef__":true,"id":9027},{"__isSmartRef__":true,"id":9028},{"__isSmartRef__":true,"id":9029},{"__isSmartRef__":true,"id":9030},{"__isSmartRef__":true,"id":9031},{"__isSmartRef__":true,"id":9032},{"__isSmartRef__":true,"id":9033},{"__isSmartRef__":true,"id":9034},{"__isSmartRef__":true,"id":9035},{"__isSmartRef__":true,"id":9036},{"__isSmartRef__":true,"id":9037}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9000}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"8999":{"name":"documentation","type":"propertyDef","startIndex":47137,"stopIndex":47163,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9000":{"name":"default category","type":"categoryDef","startIndex":47135,"stopIndex":50861,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":8999},{"__isSmartRef__":true,"id":9001},{"__isSmartRef__":true,"id":9002},{"__isSmartRef__":true,"id":9003},{"__isSmartRef__":true,"id":9004},{"__isSmartRef__":true,"id":9005},{"__isSmartRef__":true,"id":9006},{"__isSmartRef__":true,"id":9007},{"__isSmartRef__":true,"id":9008},{"__isSmartRef__":true,"id":9009},{"__isSmartRef__":true,"id":9010},{"__isSmartRef__":true,"id":9011},{"__isSmartRef__":true,"id":9012},{"__isSmartRef__":true,"id":9013},{"__isSmartRef__":true,"id":9014},{"__isSmartRef__":true,"id":9015},{"__isSmartRef__":true,"id":9016},{"__isSmartRef__":true,"id":9017},{"__isSmartRef__":true,"id":9018},{"__isSmartRef__":true,"id":9019},{"__isSmartRef__":true,"id":9020},{"__isSmartRef__":true,"id":9021},{"__isSmartRef__":true,"id":9022},{"__isSmartRef__":true,"id":9023},{"__isSmartRef__":true,"id":9024},{"__isSmartRef__":true,"id":9025},{"__isSmartRef__":true,"id":9026},{"__isSmartRef__":true,"id":9027},{"__isSmartRef__":true,"id":9028},{"__isSmartRef__":true,"id":9029},{"__isSmartRef__":true,"id":9030},{"__isSmartRef__":true,"id":9031},{"__isSmartRef__":true,"id":9032},{"__isSmartRef__":true,"id":9033},{"__isSmartRef__":true,"id":9034},{"__isSmartRef__":true,"id":9035},{"__isSmartRef__":true,"id":9036},{"__isSmartRef__":true,"id":9037}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9001":{"name":"initialize","type":"propertyDef","startIndex":47166,"stopIndex":47241,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9002":{"name":"toFixed","type":"propertyDef","startIndex":47243,"stopIndex":47329,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9003":{"name":"deserialize","type":"propertyDef","startIndex":47333,"stopIndex":47549,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9004":{"name":"addPt","type":"propertyDef","startIndex":47552,"stopIndex":47621,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9005":{"name":"addXY","type":"propertyDef","startIndex":47623,"stopIndex":47694,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9006":{"name":"midPt","type":"propertyDef","startIndex":47696,"stopIndex":47773,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9007":{"name":"subPt","type":"propertyDef","startIndex":47775,"stopIndex":47844,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9008":{"name":"negated","type":"propertyDef","startIndex":47846,"stopIndex":47906,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9009":{"name":"inverted","type":"propertyDef","startIndex":47908,"stopIndex":47975,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9010":{"name":"invertedSafely","type":"propertyDef","startIndex":47977,"stopIndex":48070,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9011":{"name":"scaleBy","type":"propertyDef","startIndex":48072,"stopIndex":48146,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9012":{"name":"scaleByPt","type":"propertyDef","startIndex":48148,"stopIndex":48234,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9013":{"name":"lessPt","type":"propertyDef","startIndex":48236,"stopIndex":48297,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9014":{"name":"leqPt","type":"propertyDef","startIndex":48299,"stopIndex":48361,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9015":{"name":"eqPt","type":"propertyDef","startIndex":48363,"stopIndex":48424,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9016":{"name":"withX","type":"propertyDef","startIndex":48426,"stopIndex":48471,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9017":{"name":"withY","type":"propertyDef","startIndex":48473,"stopIndex":48518,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9018":{"name":"normalized","type":"propertyDef","startIndex":48521,"stopIndex":48606,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9019":{"name":"dotProduct","type":"propertyDef","startIndex":48609,"stopIndex":48672,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9020":{"name":"minPt","type":"propertyDef","startIndex":48675,"stopIndex":48823,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9021":{"name":"maxPt","type":"propertyDef","startIndex":48826,"stopIndex":48972,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9022":{"name":"roundTo","type":"propertyDef","startIndex":48975,"stopIndex":49074,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9023":{"name":"random","type":"propertyDef","startIndex":49077,"stopIndex":49164,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9024":{"name":"dist","type":"propertyDef","startIndex":49167,"stopIndex":49277,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9025":{"name":"nearestPointOnLineBetween","type":"propertyDef","startIndex":49280,"stopIndex":49659,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9026":{"name":"asRectangle","type":"propertyDef","startIndex":49662,"stopIndex":49734,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9027":{"name":"extent","type":"propertyDef","startIndex":49736,"stopIndex":49814,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9028":{"name":"extentAsRectangle","type":"propertyDef","startIndex":49816,"stopIndex":49893,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9029":{"name":"toString","type":"propertyDef","startIndex":49896,"stopIndex":49980,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9030":{"name":"toTuple","type":"propertyDef","startIndex":49983,"stopIndex":50037,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9031":{"name":"toLiteral","type":"propertyDef","startIndex":50040,"stopIndex":50097,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9032":{"name":"inspect","type":"propertyDef","startIndex":50100,"stopIndex":50156,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9033":{"name":"matrixTransform","type":"propertyDef","startIndex":50159,"stopIndex":50387,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9034":{"name":"matrixTransformDirection","type":"propertyDef","startIndex":50390,"stopIndex":50615,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9035":{"name":"r","type":"propertyDef","startIndex":50618,"stopIndex":50744,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9036":{"name":"theta","type":"propertyDef","startIndex":50746,"stopIndex":50802,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9037":{"name":"copy","type":"propertyDef","startIndex":50805,"stopIndex":50860,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9000},"className":"Point","_owner":{"__isSmartRef__":true,"id":8998},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9038":{"name":null,"type":"comment","startIndex":50865,"stopIndex":50865,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9039":{"name":"Point","type":"klassExtensionDef","startIndex":50866,"stopIndex":51248,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9040},{"__isSmartRef__":true,"id":9042},{"__isSmartRef__":true,"id":9043}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9041}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9040":{"name":"fastR","type":"propertyDef","startIndex":50886,"stopIndex":51022,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9041},"className":"Point","_owner":{"__isSmartRef__":true,"id":9039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9041":{"name":"default category","type":"categoryDef","startIndex":50883,"stopIndex":51245,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9040},{"__isSmartRef__":true,"id":9042},{"__isSmartRef__":true,"id":9043}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9042":{"name":"fastNormalized","type":"propertyDef","startIndex":51025,"stopIndex":51118,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9041},"className":"Point","_owner":{"__isSmartRef__":true,"id":9039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9043":{"name":"griddedBy","type":"propertyDef","startIndex":51121,"stopIndex":51244,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9041},"className":"Point","_owner":{"__isSmartRef__":true,"id":9039},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9044":{"name":null,"type":"comment","startIndex":51249,"stopIndex":51249,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9045":{"name":"Point","type":"klassExtensionDef","startIndex":51250,"stopIndex":51811,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9046},{"__isSmartRef__":true,"id":9048},{"__isSmartRef__":true,"id":9049},{"__isSmartRef__":true,"id":9050}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9047}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9046":{"name":"ensure","type":"propertyDef","startIndex":51274,"stopIndex":51439,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9047},"className":"Point","_owner":{"__isSmartRef__":true,"id":9045},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9047":{"name":"default category","type":"categoryDef","startIndex":51271,"stopIndex":51808,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9046},{"__isSmartRef__":true,"id":9048},{"__isSmartRef__":true,"id":9049},{"__isSmartRef__":true,"id":9050}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9048":{"name":"polar","type":"propertyDef","startIndex":51442,"stopIndex":51614,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9047},"className":"Point","_owner":{"__isSmartRef__":true,"id":9045},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9049":{"name":"random","type":"propertyDef","startIndex":51616,"stopIndex":51732,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9047},"className":"Point","_owner":{"__isSmartRef__":true,"id":9045},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9050":{"name":"fromLiteral","type":"propertyDef","startIndex":51735,"stopIndex":51807,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9047},"className":"Point","_owner":{"__isSmartRef__":true,"id":9045},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9051":{"name":null,"type":"comment","startIndex":51812,"stopIndex":51852,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9052":{"name":"pt","type":"functionDef","startIndex":51853,"stopIndex":51901,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9053":{"name":"Rectangle","type":"klassDef","startIndex":51902,"stopIndex":54353,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9054},{"__isSmartRef__":true,"id":9056},{"__isSmartRef__":true,"id":9057},{"__isSmartRef__":true,"id":9058},{"__isSmartRef__":true,"id":9059},{"__isSmartRef__":true,"id":9060},{"__isSmartRef__":true,"id":9061},{"__isSmartRef__":true,"id":9062},{"__isSmartRef__":true,"id":9063},{"__isSmartRef__":true,"id":9064},{"__isSmartRef__":true,"id":9065},{"__isSmartRef__":true,"id":9066},{"__isSmartRef__":true,"id":9067},{"__isSmartRef__":true,"id":9068},{"__isSmartRef__":true,"id":9069},{"__isSmartRef__":true,"id":9070},{"__isSmartRef__":true,"id":9071},{"__isSmartRef__":true,"id":9072},{"__isSmartRef__":true,"id":9073},{"__isSmartRef__":true,"id":9074},{"__isSmartRef__":true,"id":9075},{"__isSmartRef__":true,"id":9076},{"__isSmartRef__":true,"id":9077},{"__isSmartRef__":true,"id":9078},{"__isSmartRef__":true,"id":9079},{"__isSmartRef__":true,"id":9080},{"__isSmartRef__":true,"id":9081},{"__isSmartRef__":true,"id":9082},{"__isSmartRef__":true,"id":9083}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9055}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9054":{"name":"documentation","type":"propertyDef","startIndex":51934,"stopIndex":51971,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9055":{"name":"default category","type":"categoryDef","startIndex":51931,"stopIndex":54350,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9054},{"__isSmartRef__":true,"id":9056},{"__isSmartRef__":true,"id":9057},{"__isSmartRef__":true,"id":9058},{"__isSmartRef__":true,"id":9059},{"__isSmartRef__":true,"id":9060},{"__isSmartRef__":true,"id":9061},{"__isSmartRef__":true,"id":9062},{"__isSmartRef__":true,"id":9063},{"__isSmartRef__":true,"id":9064},{"__isSmartRef__":true,"id":9065},{"__isSmartRef__":true,"id":9066},{"__isSmartRef__":true,"id":9067},{"__isSmartRef__":true,"id":9068},{"__isSmartRef__":true,"id":9069},{"__isSmartRef__":true,"id":9070},{"__isSmartRef__":true,"id":9071},{"__isSmartRef__":true,"id":9072},{"__isSmartRef__":true,"id":9073},{"__isSmartRef__":true,"id":9074},{"__isSmartRef__":true,"id":9075},{"__isSmartRef__":true,"id":9076},{"__isSmartRef__":true,"id":9077},{"__isSmartRef__":true,"id":9078},{"__isSmartRef__":true,"id":9079},{"__isSmartRef__":true,"id":9080},{"__isSmartRef__":true,"id":9081},{"__isSmartRef__":true,"id":9082},{"__isSmartRef__":true,"id":9083}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9056":{"name":"initialize","type":"propertyDef","startIndex":52015,"stopIndex":52128,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9057":{"name":"copy","type":"propertyDef","startIndex":52131,"stopIndex":52216,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9058":{"name":"toFixed","type":"propertyDef","startIndex":52218,"stopIndex":52363,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9059":{"name":"maxX","type":"propertyDef","startIndex":52366,"stopIndex":52415,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9060":{"name":"maxY","type":"propertyDef","startIndex":52417,"stopIndex":52467,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9061":{"name":"withWidth","type":"propertyDef","startIndex":52471,"stopIndex":52550,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9062":{"name":"withHeight","type":"propertyDef","startIndex":52552,"stopIndex":52631,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9063":{"name":"withX","type":"propertyDef","startIndex":52633,"stopIndex":52712,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9064":{"name":"withY","type":"propertyDef","startIndex":52714,"stopIndex":52793,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9065":{"name":"extent","type":"propertyDef","startIndex":52795,"stopIndex":52860,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9066":{"name":"withExtent","type":"propertyDef","startIndex":52862,"stopIndex":52944,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9067":{"name":"center","type":"propertyDef","startIndex":52946,"stopIndex":53031,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9068":{"name":"topLeft","type":"propertyDef","startIndex":53033,"stopIndex":53126,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9069":{"name":"topRight","type":"propertyDef","startIndex":53128,"stopIndex":53190,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9070":{"name":"bottomRight","type":"propertyDef","startIndex":53192,"stopIndex":53262,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9071":{"name":"bottomLeft","type":"propertyDef","startIndex":53264,"stopIndex":53328,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9072":{"name":"leftCenter","type":"propertyDef","startIndex":53330,"stopIndex":53398,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9073":{"name":"rightCenter","type":"propertyDef","startIndex":53400,"stopIndex":53474,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9074":{"name":"topCenter","type":"propertyDef","startIndex":53476,"stopIndex":53543,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9075":{"name":"bottomCenter","type":"propertyDef","startIndex":53545,"stopIndex":53620,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9076":{"name":"withTopLeft","type":"propertyDef","startIndex":53622,"stopIndex":53699,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9077":{"name":"withTopRight","type":"propertyDef","startIndex":53701,"stopIndex":53778,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9078":{"name":"withBottomRight","type":"propertyDef","startIndex":53780,"stopIndex":53857,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9079":{"name":"withBottomLeft","type":"propertyDef","startIndex":53859,"stopIndex":53936,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9080":{"name":"withLeftCenter","type":"propertyDef","startIndex":53938,"stopIndex":54045,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9081":{"name":"withRightCenter","type":"propertyDef","startIndex":54047,"stopIndex":54143,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9082":{"name":"withTopCenter","type":"propertyDef","startIndex":54145,"stopIndex":54251,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9083":{"name":"withBottomCenter","type":"propertyDef","startIndex":54253,"stopIndex":54349,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9055},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9084":{"name":null,"type":"comment","startIndex":54354,"stopIndex":54354,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9085":{"name":"Rectangle","type":"klassExtensionDef","startIndex":54355,"stopIndex":57717,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9086},{"__isSmartRef__":true,"id":9088},{"__isSmartRef__":true,"id":9089},{"__isSmartRef__":true,"id":9090},{"__isSmartRef__":true,"id":9091},{"__isSmartRef__":true,"id":9092},{"__isSmartRef__":true,"id":9093},{"__isSmartRef__":true,"id":9094},{"__isSmartRef__":true,"id":9095},{"__isSmartRef__":true,"id":9096},{"__isSmartRef__":true,"id":9097},{"__isSmartRef__":true,"id":9098},{"__isSmartRef__":true,"id":9099},{"__isSmartRef__":true,"id":9100},{"__isSmartRef__":true,"id":9101},{"__isSmartRef__":true,"id":9102},{"__isSmartRef__":true,"id":9103},{"__isSmartRef__":true,"id":9104},{"__isSmartRef__":true,"id":9105},{"__isSmartRef__":true,"id":9106},{"__isSmartRef__":true,"id":9107}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9087}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9086":{"name":"equals","type":"propertyDef","startIndex":54379,"stopIndex":54546,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9087":{"name":"default category","type":"categoryDef","startIndex":54376,"stopIndex":57714,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9086},{"__isSmartRef__":true,"id":9088},{"__isSmartRef__":true,"id":9089},{"__isSmartRef__":true,"id":9090},{"__isSmartRef__":true,"id":9091},{"__isSmartRef__":true,"id":9092},{"__isSmartRef__":true,"id":9093},{"__isSmartRef__":true,"id":9094},{"__isSmartRef__":true,"id":9095},{"__isSmartRef__":true,"id":9096},{"__isSmartRef__":true,"id":9097},{"__isSmartRef__":true,"id":9098},{"__isSmartRef__":true,"id":9099},{"__isSmartRef__":true,"id":9100},{"__isSmartRef__":true,"id":9101},{"__isSmartRef__":true,"id":9102},{"__isSmartRef__":true,"id":9103},{"__isSmartRef__":true,"id":9104},{"__isSmartRef__":true,"id":9105},{"__isSmartRef__":true,"id":9106},{"__isSmartRef__":true,"id":9107}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9088":{"name":"containsPoint","type":"propertyDef","startIndex":54550,"stopIndex":54683,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9089":{"name":"containsRect","type":"propertyDef","startIndex":54686,"stopIndex":54807,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9090":{"name":"constrainPt","type":"propertyDef","startIndex":54810,"stopIndex":54899,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9091":{"name":"realWidth","type":"propertyDef","startIndex":54901,"stopIndex":54981,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9092":{"name":"realHeight","type":"propertyDef","startIndex":54983,"stopIndex":55066,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9093":{"name":"relativeToAbsPoint","type":"propertyDef","startIndex":55070,"stopIndex":55200,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9094":{"name":"intersection","type":"propertyDef","startIndex":55204,"stopIndex":55565,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9095":{"name":"intersects","type":"propertyDef","startIndex":55568,"stopIndex":55638,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9096":{"name":"union","type":"propertyDef","startIndex":55660,"stopIndex":55777,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9097":{"name":"isNonEmpty","type":"propertyDef","startIndex":55780,"stopIndex":55853,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9098":{"name":"dist","type":"propertyDef","startIndex":55856,"stopIndex":56012,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9099":{"name":"closestPointToPt","type":"propertyDef","startIndex":56015,"stopIndex":56218,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9100":{"name":"randomPoint","type":"propertyDef","startIndex":56221,"stopIndex":56362,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9101":{"name":"translatedBy","type":"propertyDef","startIndex":56365,"stopIndex":56470,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9102":{"name":"scaleByRect","type":"propertyDef","startIndex":56473,"stopIndex":56696,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9103":{"name":"scaleRectIn","type":"propertyDef","startIndex":56699,"stopIndex":56974,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9104":{"name":"insetBy","type":"propertyDef","startIndex":56977,"stopIndex":57084,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9105":{"name":"insetByPt","type":"propertyDef","startIndex":57087,"stopIndex":57204,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9106":{"name":"expandBy","type":"propertyDef","startIndex":57207,"stopIndex":57269,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9107":{"name":"transformRectForInclusion","type":"propertyDef","startIndex":57272,"stopIndex":57712,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9087},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9108":{"name":null,"type":"comment","startIndex":57718,"stopIndex":57718,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9109":{"name":"Rectangle","type":"klassExtensionDef","startIndex":57719,"stopIndex":57875,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9110},{"__isSmartRef__":true,"id":9112}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9111}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9110":{"name":"corners","type":"propertyDef","startIndex":57746,"stopIndex":57805,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9111},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9109},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9111":{"name":"default category","type":"categoryDef","startIndex":57744,"stopIndex":57872,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9110},{"__isSmartRef__":true,"id":9112}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9112":{"name":"sides","type":"propertyDef","startIndex":57808,"stopIndex":57871,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9111},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9109},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9113":{"name":null,"type":"comment","startIndex":57876,"stopIndex":57876,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9114":{"name":"Rectangle","type":"klassExtensionDef","startIndex":57877,"stopIndex":58928,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9115},{"__isSmartRef__":true,"id":9117},{"__isSmartRef__":true,"id":9118},{"__isSmartRef__":true,"id":9119},{"__isSmartRef__":true,"id":9120},{"__isSmartRef__":true,"id":9121},{"__isSmartRef__":true,"id":9122},{"__isSmartRef__":true,"id":9123}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9116}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9115":{"name":"partNamed","type":"propertyDef","startIndex":57901,"stopIndex":57974,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9116":{"name":"default category","type":"categoryDef","startIndex":57898,"stopIndex":58925,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9115},{"__isSmartRef__":true,"id":9117},{"__isSmartRef__":true,"id":9118},{"__isSmartRef__":true,"id":9119},{"__isSmartRef__":true,"id":9120},{"__isSmartRef__":true,"id":9121},{"__isSmartRef__":true,"id":9122},{"__isSmartRef__":true,"id":9123}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9117":{"name":"withPartNamed","type":"propertyDef","startIndex":57977,"stopIndex":58089,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9118":{"name":"setterName","type":"propertyDef","startIndex":58092,"stopIndex":58194,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9119":{"name":"partNameNear","type":"propertyDef","startIndex":58197,"stopIndex":58367,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9120":{"name":"partNameNearest","type":"propertyDef","startIndex":58370,"stopIndex":58679,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9121":{"name":"toString","type":"propertyDef","startIndex":58682,"stopIndex":58785,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9122":{"name":"toTuple","type":"propertyDef","startIndex":58788,"stopIndex":58865,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9123":{"name":"inspect","type":"propertyDef","startIndex":58868,"stopIndex":58924,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9116},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9114},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9124":{"name":null,"type":"comment","startIndex":58929,"stopIndex":58929,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9125":{"name":"Rectangle","type":"klassExtensionDef","startIndex":58930,"stopIndex":60256,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9126},{"__isSmartRef__":true,"id":9128},{"__isSmartRef__":true,"id":9129},{"__isSmartRef__":true,"id":9130},{"__isSmartRef__":true,"id":9131},{"__isSmartRef__":true,"id":9132},{"__isSmartRef__":true,"id":9133},{"__isSmartRef__":true,"id":9134},{"__isSmartRef__":true,"id":9135}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9127}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9126":{"name":"left","type":"propertyDef","startIndex":59198,"stopIndex":59237,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9127":{"name":"default category","type":"categoryDef","startIndex":58951,"stopIndex":60253,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9126},{"__isSmartRef__":true,"id":9128},{"__isSmartRef__":true,"id":9129},{"__isSmartRef__":true,"id":9130},{"__isSmartRef__":true,"id":9131},{"__isSmartRef__":true,"id":9132},{"__isSmartRef__":true,"id":9133},{"__isSmartRef__":true,"id":9134},{"__isSmartRef__":true,"id":9135}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9128":{"name":"right","type":"propertyDef","startIndex":59240,"stopIndex":59285,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9129":{"name":"top","type":"propertyDef","startIndex":59288,"stopIndex":59326,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9130":{"name":"bottom","type":"propertyDef","startIndex":59329,"stopIndex":59375,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9131":{"name":"toInsetTuple","type":"propertyDef","startIndex":59378,"stopIndex":59473,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9132":{"name":"toAttributeValue","type":"propertyDef","startIndex":59476,"stopIndex":59811,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9133":{"name":"insetByRect","type":"propertyDef","startIndex":59814,"stopIndex":59980,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9134":{"name":"outsetByRect","type":"propertyDef","startIndex":59983,"stopIndex":60150,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9135":{"name":"toLiteral","type":"propertyDef","startIndex":60153,"stopIndex":60250,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9127},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9125},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9136":{"name":null,"type":"comment","startIndex":60257,"stopIndex":60259,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9137":{"name":"Rectangle","type":"klassExtensionDef","startIndex":60260,"stopIndex":61798,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9138},{"__isSmartRef__":true,"id":9140},{"__isSmartRef__":true,"id":9141},{"__isSmartRef__":true,"id":9142},{"__isSmartRef__":true,"id":9143},{"__isSmartRef__":true,"id":9144}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9139}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9138":{"name":"fromAny","type":"propertyDef","startIndex":60288,"stopIndex":60368,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9139},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9137},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9139":{"name":"default category","type":"categoryDef","startIndex":60285,"stopIndex":61795,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9138},{"__isSmartRef__":true,"id":9140},{"__isSmartRef__":true,"id":9141},{"__isSmartRef__":true,"id":9142},{"__isSmartRef__":true,"id":9143},{"__isSmartRef__":true,"id":9144}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9140":{"name":"fromLiteral","type":"propertyDef","startIndex":60371,"stopIndex":60484,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9139},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9137},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9141":{"name":"unionPts","type":"propertyDef","startIndex":60487,"stopIndex":60746,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9139},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9137},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9142":{"name":"ensure","type":"propertyDef","startIndex":60749,"stopIndex":60909,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9139},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9137},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9143":{"name":"fromElement","type":"propertyDef","startIndex":60912,"stopIndex":61560,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9139},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9137},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9144":{"name":"inset","type":"propertyDef","startIndex":61563,"stopIndex":61794,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9139},"className":"Rectangle","_owner":{"__isSmartRef__":true,"id":9137},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9145":{"name":null,"type":"comment","startIndex":61799,"stopIndex":61843,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9146":{"name":"rect","type":"functionDef","startIndex":61844,"stopIndex":61973,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9147":{"name":null,"type":"comment","startIndex":61974,"stopIndex":62150,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9148":{"name":"Color","type":"klassDef","startIndex":62151,"stopIndex":64542,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9149},{"__isSmartRef__":true,"id":9151},{"__isSmartRef__":true,"id":9152},{"__isSmartRef__":true,"id":9153},{"__isSmartRef__":true,"id":9154},{"__isSmartRef__":true,"id":9155},{"__isSmartRef__":true,"id":9156},{"__isSmartRef__":true,"id":9157},{"__isSmartRef__":true,"id":9158},{"__isSmartRef__":true,"id":9159},{"__isSmartRef__":true,"id":9160},{"__isSmartRef__":true,"id":9161},{"__isSmartRef__":true,"id":9162},{"__isSmartRef__":true,"id":9163}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9150}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9149":{"name":"documentation","type":"propertyDef","startIndex":62180,"stopIndex":62276,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9150":{"name":"default category","type":"categoryDef","startIndex":62176,"stopIndex":64539,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9149},{"__isSmartRef__":true,"id":9151},{"__isSmartRef__":true,"id":9152},{"__isSmartRef__":true,"id":9153},{"__isSmartRef__":true,"id":9154},{"__isSmartRef__":true,"id":9155},{"__isSmartRef__":true,"id":9156},{"__isSmartRef__":true,"id":9157},{"__isSmartRef__":true,"id":9158},{"__isSmartRef__":true,"id":9159},{"__isSmartRef__":true,"id":9160},{"__isSmartRef__":true,"id":9161},{"__isSmartRef__":true,"id":9162},{"__isSmartRef__":true,"id":9163}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9151":{"name":"isColor","type":"propertyDef","startIndex":62279,"stopIndex":62293,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9152":{"name":"initialize","type":"propertyDef","startIndex":62296,"stopIndex":62418,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9153":{"name":"mixedWith","type":"propertyDef","startIndex":62421,"stopIndex":62680,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9154":{"name":"darker","type":"propertyDef","startIndex":62683,"stopIndex":62831,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9155":{"name":"lighter","type":"propertyDef","startIndex":62834,"stopIndex":63022,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9156":{"name":"toString","type":"propertyDef","startIndex":63025,"stopIndex":63398,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9157":{"name":"toRGBAString","type":"propertyDef","startIndex":63401,"stopIndex":63583,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9158":{"name":"toTuple","type":"propertyDef","startIndex":63587,"stopIndex":63655,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9159":{"name":"deserialize","type":"propertyDef","startIndex":63659,"stopIndex":64136,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9160":{"name":"grayValue","type":"propertyDef","startIndex":64140,"stopIndex":64207,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9161":{"name":"withA","type":"propertyDef","startIndex":64211,"stopIndex":64278,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9162":{"name":"equals","type":"propertyDef","startIndex":64282,"stopIndex":64433,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9163":{"name":"invert","type":"propertyDef","startIndex":64435,"stopIndex":64535,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9150},"className":"Color","_owner":{"__isSmartRef__":true,"id":9148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9164":{"name":null,"type":"comment","startIndex":64543,"stopIndex":64543,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9165":{"name":"Color","type":"klassExtensionDef","startIndex":64544,"stopIndex":67649,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9166},{"__isSmartRef__":true,"id":9168},{"__isSmartRef__":true,"id":9169},{"__isSmartRef__":true,"id":9170},{"__isSmartRef__":true,"id":9171},{"__isSmartRef__":true,"id":9172},{"__isSmartRef__":true,"id":9173},{"__isSmartRef__":true,"id":9174},{"__isSmartRef__":true,"id":9175},{"__isSmartRef__":true,"id":9176},{"__isSmartRef__":true,"id":9177},{"__isSmartRef__":true,"id":9178},{"__isSmartRef__":true,"id":9179},{"__isSmartRef__":true,"id":9180},{"__isSmartRef__":true,"id":9181},{"__isSmartRef__":true,"id":9182},{"__isSmartRef__":true,"id":9183},{"__isSmartRef__":true,"id":9184},{"__isSmartRef__":true,"id":9185},{"__isSmartRef__":true,"id":9186},{"__isSmartRef__":true,"id":9187},{"__isSmartRef__":true,"id":9188}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9167}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9166":{"name":"black","type":"propertyDef","startIndex":64568,"stopIndex":64592,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9167":{"name":"default category","type":"categoryDef","startIndex":64565,"stopIndex":67646,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9166},{"__isSmartRef__":true,"id":9168},{"__isSmartRef__":true,"id":9169},{"__isSmartRef__":true,"id":9170},{"__isSmartRef__":true,"id":9171},{"__isSmartRef__":true,"id":9172},{"__isSmartRef__":true,"id":9173},{"__isSmartRef__":true,"id":9174},{"__isSmartRef__":true,"id":9175},{"__isSmartRef__":true,"id":9176},{"__isSmartRef__":true,"id":9177},{"__isSmartRef__":true,"id":9178},{"__isSmartRef__":true,"id":9179},{"__isSmartRef__":true,"id":9180},{"__isSmartRef__":true,"id":9181},{"__isSmartRef__":true,"id":9182},{"__isSmartRef__":true,"id":9183},{"__isSmartRef__":true,"id":9184},{"__isSmartRef__":true,"id":9185},{"__isSmartRef__":true,"id":9186},{"__isSmartRef__":true,"id":9187},{"__isSmartRef__":true,"id":9188}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9168":{"name":"white","type":"propertyDef","startIndex":64594,"stopIndex":64618,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9169":{"name":"gray","type":"propertyDef","startIndex":64620,"stopIndex":64649,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9170":{"name":"red","type":"propertyDef","startIndex":64651,"stopIndex":64675,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9171":{"name":"green","type":"propertyDef","startIndex":64677,"stopIndex":64703,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9172":{"name":"yellow","type":"propertyDef","startIndex":64705,"stopIndex":64734,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9173":{"name":"blue","type":"propertyDef","startIndex":64736,"stopIndex":64762,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9174":{"name":"purple","type":"propertyDef","startIndex":64764,"stopIndex":64789,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9175":{"name":"magenta","type":"propertyDef","startIndex":64791,"stopIndex":64817,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9176":{"name":"random","type":"propertyDef","startIndex":64822,"stopIndex":64910,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9177":{"name":"hsb","type":"propertyDef","startIndex":64913,"stopIndex":65587,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9178":{"name":"wheel","type":"propertyDef","startIndex":65590,"stopIndex":65656,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9179":{"name":"wheelHsb","type":"propertyDef","startIndex":65659,"stopIndex":65897,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9180":{"name":"rgb","type":"propertyDef","startIndex":65900,"stopIndex":65969,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9181":{"name":"rgba","type":"propertyDef","startIndex":65972,"stopIndex":66048,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9182":{"name":"fromLiteral","type":"propertyDef","startIndex":66052,"stopIndex":66137,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9183":{"name":"fromTuple","type":"propertyDef","startIndex":66140,"stopIndex":66232,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9184":{"name":"fromString","type":"propertyDef","startIndex":66235,"stopIndex":66340,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9185":{"name":"rgbaRegex","type":"propertyDef","startIndex":66343,"stopIndex":66473,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9186":{"name":"parse","type":"propertyDef","startIndex":66476,"stopIndex":66643,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9187":{"name":"parseRGB","type":"propertyDef","startIndex":66646,"stopIndex":67107,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9188":{"name":"parseHex","type":"propertyDef","startIndex":67111,"stopIndex":67644,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9167},"className":"Color","_owner":{"__isSmartRef__":true,"id":9165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9189":{"name":null,"type":"comment","startIndex":67650,"stopIndex":67651,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9190":{"name":"Color","type":"klassExtensionDef","startIndex":67652,"stopIndex":68718,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9191},{"__isSmartRef__":true,"id":9193},{"__isSmartRef__":true,"id":9194},{"__isSmartRef__":true,"id":9195},{"__isSmartRef__":true,"id":9196},{"__isSmartRef__":true,"id":9197},{"__isSmartRef__":true,"id":9198},{"__isSmartRef__":true,"id":9199},{"__isSmartRef__":true,"id":9200}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9192}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9191":{"name":"darkGray","type":"propertyDef","startIndex":67675,"stopIndex":67705,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9192":{"name":"default category","type":"categoryDef","startIndex":67673,"stopIndex":68715,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9191},{"__isSmartRef__":true,"id":9193},{"__isSmartRef__":true,"id":9194},{"__isSmartRef__":true,"id":9195},{"__isSmartRef__":true,"id":9196},{"__isSmartRef__":true,"id":9197},{"__isSmartRef__":true,"id":9198},{"__isSmartRef__":true,"id":9199},{"__isSmartRef__":true,"id":9200}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9193":{"name":"lightGray","type":"propertyDef","startIndex":67707,"stopIndex":67739,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9194":{"name":"veryLightGray","type":"propertyDef","startIndex":67741,"stopIndex":67787,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9195":{"name":"turquoise","type":"propertyDef","startIndex":67789,"stopIndex":67823,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9196":{"name":"orange","type":"propertyDef","startIndex":67825,"stopIndex":67925,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9197":{"name":"tangerine","type":"propertyDef","startIndex":68229,"stopIndex":68263,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9198":{"name":"primary","type":"propertyDef","startIndex":68266,"stopIndex":68447,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9199":{"name":"secondary","type":"propertyDef","startIndex":68450,"stopIndex":68618,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9200":{"name":"neutral","type":"propertyDef","startIndex":68621,"stopIndex":68714,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9192},"className":"Color","_owner":{"__isSmartRef__":true,"id":9190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9201":{"name":"Function","type":"klassExtensionDef","startIndex":68719,"stopIndex":70554,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9202},{"__isSmartRef__":true,"id":9204},{"__isSmartRef__":true,"id":9205},{"__isSmartRef__":true,"id":9207},{"__isSmartRef__":true,"id":9208},{"__isSmartRef__":true,"id":9209},{"__isSmartRef__":true,"id":9210}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9203},{"__isSmartRef__":true,"id":9206}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9202":{"name":"toLiteral","type":"propertyDef","startIndex":68759,"stopIndex":68835,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9203},"className":"Function","_owner":{"__isSmartRef__":true,"id":9201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9203":{"name":"serialization","type":"categoryDef","startIndex":68740,"stopIndex":68942,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9202},{"__isSmartRef__":true,"id":9204}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9204":{"name":"unbind","type":"propertyDef","startIndex":68837,"stopIndex":68939,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9203},"className":"Function","_owner":{"__isSmartRef__":true,"id":9201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9205":{"name":"asScript","type":"propertyDef","startIndex":68959,"stopIndex":69072,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9206},"className":"Function","_owner":{"__isSmartRef__":true,"id":9201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9206":{"name":"scripting","type":"categoryDef","startIndex":68944,"stopIndex":70551,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9205},{"__isSmartRef__":true,"id":9207},{"__isSmartRef__":true,"id":9208},{"__isSmartRef__":true,"id":9209},{"__isSmartRef__":true,"id":9210}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9207":{"name":"asScriptOf","type":"propertyDef","startIndex":69074,"stopIndex":70038,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9206},"className":"Function","_owner":{"__isSmartRef__":true,"id":9201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9208":{"name":"binds","type":"propertyDef","startIndex":70040,"stopIndex":70193,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9206},"className":"Function","_owner":{"__isSmartRef__":true,"id":9201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9209":{"name":"setProperty","type":"propertyDef","startIndex":70195,"stopIndex":70364,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9206},"className":"Function","_owner":{"__isSmartRef__":true,"id":9201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9210":{"name":"getVarMapping","type":"propertyDef","startIndex":70367,"stopIndex":70547,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9206},"className":"Function","_owner":{"__isSmartRef__":true,"id":9201},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9211":{"name":"Function","type":"klassExtensionDef","startIndex":70555,"stopIndex":70783,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9212},{"__isSmartRef__":true,"id":9214}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9213}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9212":{"name":"fromString","type":"propertyDef","startIndex":70581,"stopIndex":70673,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9213},"className":"Function","_owner":{"__isSmartRef__":true,"id":9211},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9213":{"name":"default category","type":"categoryDef","startIndex":70579,"stopIndex":70780,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9212},{"__isSmartRef__":true,"id":9214}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9214":{"name":"fromLiteral","type":"propertyDef","startIndex":70676,"stopIndex":70778,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9213},"className":"Function","_owner":{"__isSmartRef__":true,"id":9211},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9215":{"name":null,"type":"comment","startIndex":70784,"stopIndex":70784,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9216":{"name":null,"type":"unknown","startIndex":70785,"stopIndex":70873,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9217":{"name":null,"type":"comment","startIndex":70874,"stopIndex":70874,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9218":{"name":"lively.Closure","type":"klassDef","startIndex":70875,"stopIndex":74701,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9219},{"__isSmartRef__":true,"id":9221},{"__isSmartRef__":true,"id":9222},{"__isSmartRef__":true,"id":9223},{"__isSmartRef__":true,"id":9224},{"__isSmartRef__":true,"id":9226},{"__isSmartRef__":true,"id":9227},{"__isSmartRef__":true,"id":9228},{"__isSmartRef__":true,"id":9229},{"__isSmartRef__":true,"id":9230},{"__isSmartRef__":true,"id":9231},{"__isSmartRef__":true,"id":9232},{"__isSmartRef__":true,"id":9234},{"__isSmartRef__":true,"id":9235},{"__isSmartRef__":true,"id":9236},{"__isSmartRef__":true,"id":9237},{"__isSmartRef__":true,"id":9238}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9220},{"__isSmartRef__":true,"id":9225},{"__isSmartRef__":true,"id":9233},{"__isSmartRef__":true,"id":9239}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9219":{"name":"isLivelyClosure","type":"propertyDef","startIndex":70973,"stopIndex":70998,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9220},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9220":{"name":"initializing","type":"categoryDef","startIndex":70955,"stopIndex":71359,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9219},{"__isSmartRef__":true,"id":9221},{"__isSmartRef__":true,"id":9222},{"__isSmartRef__":true,"id":9223}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9221":{"name":"initialize","type":"propertyDef","startIndex":71000,"stopIndex":71238,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9220},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9222":{"name":"setFuncSource","type":"propertyDef","startIndex":71240,"stopIndex":71294,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9220},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9223":{"name":"hasFuncSource","type":"propertyDef","startIndex":71296,"stopIndex":71357,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9220},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9224":{"name":"getFuncSource","type":"propertyDef","startIndex":71376,"stopIndex":71457,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9225},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9225":{"name":"accessing","type":"categoryDef","startIndex":71361,"stopIndex":72578,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9224},{"__isSmartRef__":true,"id":9226},{"__isSmartRef__":true,"id":9227},{"__isSmartRef__":true,"id":9228},{"__isSmartRef__":true,"id":9229},{"__isSmartRef__":true,"id":9230},{"__isSmartRef__":true,"id":9231}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9226":{"name":"getFunc","type":"propertyDef","startIndex":71459,"stopIndex":71534,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9225},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9227":{"name":"getFuncProperties","type":"propertyDef","startIndex":71536,"stopIndex":71731,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9225},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9228":{"name":"setFuncProperties","type":"propertyDef","startIndex":71733,"stopIndex":71921,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9225},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9229":{"name":"lookup","type":"propertyDef","startIndex":71925,"stopIndex":71984,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9225},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9230":{"name":"parameterNames","type":"propertyDef","startIndex":71986,"stopIndex":72489,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9225},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9231":{"name":"firstParameter","type":"propertyDef","startIndex":72491,"stopIndex":72571,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9225},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9232":{"name":"addClosureInformation","type":"propertyDef","startIndex":72603,"stopIndex":72734,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9233},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9233":{"name":"function creation","type":"categoryDef","startIndex":72580,"stopIndex":74622,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9232},{"__isSmartRef__":true,"id":9234},{"__isSmartRef__":true,"id":9235},{"__isSmartRef__":true,"id":9236},{"__isSmartRef__":true,"id":9237}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9234":{"name":"recreateFunc","type":"propertyDef","startIndex":72736,"stopIndex":72825,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9233},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9235":{"name":"recreateFuncFromSource","type":"propertyDef","startIndex":72827,"stopIndex":74157,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9233},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9236":{"name":"addFuncProperties","type":"propertyDef","startIndex":74159,"stopIndex":74394,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9233},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9237":{"name":"couldNotCreateFunc","type":"propertyDef","startIndex":74396,"stopIndex":74619,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9233},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9238":{"name":"asFunction","type":"propertyDef","startIndex":74640,"stopIndex":74697,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9239},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9218},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9239":{"name":"conversion","type":"categoryDef","startIndex":74624,"stopIndex":74698,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9238}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9240":{"name":"lively.Closure","type":"klassExtensionDef","startIndex":74702,"stopIndex":74919,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9241},{"__isSmartRef__":true,"id":9243}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9242}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9241":{"name":"fromFunction","type":"propertyDef","startIndex":74734,"stopIndex":74819,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9242},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9240},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9242":{"name":"default category","type":"categoryDef","startIndex":74732,"stopIndex":74916,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9241},{"__isSmartRef__":true,"id":9243}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9243":{"name":"fromSource","type":"propertyDef","startIndex":74821,"stopIndex":74914,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9242},"className":"lively.Closure","_owner":{"__isSmartRef__":true,"id":9240},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9244":{"name":"Object","type":"klassExtensionDef","startIndex":74920,"stopIndex":76402,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9245},{"__isSmartRef__":true,"id":9247},{"__isSmartRef__":true,"id":9248},{"__isSmartRef__":true,"id":9249},{"__isSmartRef__":true,"id":9250}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9246}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9245":{"name":"inherit","type":"propertyDef","startIndex":74944,"stopIndex":75169,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9246},"className":"Object","_owner":{"__isSmartRef__":true,"id":9244},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9246":{"name":"default category","type":"categoryDef","startIndex":74942,"stopIndex":76399,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9245},{"__isSmartRef__":true,"id":9247},{"__isSmartRef__":true,"id":9248},{"__isSmartRef__":true,"id":9249},{"__isSmartRef__":true,"id":9250}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9247":{"name":"merge","type":"propertyDef","startIndex":75171,"stopIndex":75578,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9246},"className":"Object","_owner":{"__isSmartRef__":true,"id":9244},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9248":{"name":"valuesInPropertyHierarchy","type":"propertyDef","startIndex":75580,"stopIndex":76068,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9246},"className":"Object","_owner":{"__isSmartRef__":true,"id":9244},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9249":{"name":"mergePropertyInHierarchy","type":"propertyDef","startIndex":76070,"stopIndex":76193,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9246},"className":"Object","_owner":{"__isSmartRef__":true,"id":9244},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9250":{"name":"protoCopy","type":"propertyDef","startIndex":76195,"stopIndex":76392,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9246},"className":"Object","_owner":{"__isSmartRef__":true,"id":9244},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9251":{"name":"Date","type":"klassExtensionDef","startIndex":76403,"stopIndex":76515,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9252}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9253}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9252":{"name":"ensureTimeStamp","type":"propertyDef","startIndex":76425,"stopIndex":76510,"fileName":"lively/Base.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9253},"className":"Date","_owner":{"__isSmartRef__":true,"id":9251},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9253":{"name":"default category","type":"categoryDef","startIndex":76423,"stopIndex":76512,"fileName":"lively/Base.js","_subElements":[{"__isSmartRef__":true,"id":9252}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9254":{"target":{"__isSmartRef__":true,"id":9255},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/bindings.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9255":{"name":"lively.bindings","type":"moduleDef","startIndex":1136,"stopIndex":18841,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9256},{"__isSmartRef__":true,"id":9257},{"__isSmartRef__":true,"id":9293},{"__isSmartRef__":true,"id":9294},{"__isSmartRef__":true,"id":9297},{"__isSmartRef__":true,"id":9300},{"__isSmartRef__":true,"id":9303},{"__isSmartRef__":true,"id":9304},{"__isSmartRef__":true,"id":9313},{"__isSmartRef__":true,"id":9320}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9256":{"name":null,"type":"comment","startIndex":1192,"stopIndex":1192,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9257":{"name":"AttributeConnection","type":"klassDef","startIndex":1193,"stopIndex":12692,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9258},{"__isSmartRef__":true,"id":9260},{"__isSmartRef__":true,"id":9262},{"__isSmartRef__":true,"id":9263},{"__isSmartRef__":true,"id":9264},{"__isSmartRef__":true,"id":9265},{"__isSmartRef__":true,"id":9266},{"__isSmartRef__":true,"id":9268},{"__isSmartRef__":true,"id":9269},{"__isSmartRef__":true,"id":9270},{"__isSmartRef__":true,"id":9271},{"__isSmartRef__":true,"id":9272},{"__isSmartRef__":true,"id":9273},{"__isSmartRef__":true,"id":9274},{"__isSmartRef__":true,"id":9275},{"__isSmartRef__":true,"id":9276},{"__isSmartRef__":true,"id":9277},{"__isSmartRef__":true,"id":9278},{"__isSmartRef__":true,"id":9280},{"__isSmartRef__":true,"id":9281},{"__isSmartRef__":true,"id":9282},{"__isSmartRef__":true,"id":9284},{"__isSmartRef__":true,"id":9285},{"__isSmartRef__":true,"id":9286},{"__isSmartRef__":true,"id":9287},{"__isSmartRef__":true,"id":9288},{"__isSmartRef__":true,"id":9290},{"__isSmartRef__":true,"id":9291}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9259},{"__isSmartRef__":true,"id":9261},{"__isSmartRef__":true,"id":9267},{"__isSmartRef__":true,"id":9279},{"__isSmartRef__":true,"id":9283},{"__isSmartRef__":true,"id":9289},{"__isSmartRef__":true,"id":9292}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9258":{"name":"doNotSerialize","type":"propertyDef","startIndex":1246,"stopIndex":1275,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9259},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9259":{"name":"settings","type":"categoryDef","startIndex":1232,"stopIndex":1278,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9258}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9260":{"name":"initialize","type":"propertyDef","startIndex":1299,"stopIndex":1430,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9261},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9261":{"name":"initializing","type":"categoryDef","startIndex":1280,"stopIndex":2568,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9260},{"__isSmartRef__":true,"id":9262},{"__isSmartRef__":true,"id":9263},{"__isSmartRef__":true,"id":9264},{"__isSmartRef__":true,"id":9265}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9262":{"name":"init","type":"propertyDef","startIndex":1432,"stopIndex":2231,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9261},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9263":{"name":"onSourceAndTargetRestored","type":"propertyDef","startIndex":2235,"stopIndex":2334,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9261},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9264":{"name":"copy","type":"propertyDef","startIndex":2337,"stopIndex":2433,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9261},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9265":{"name":"fixInstanceAfterCopyingFromSite","type":"propertyDef","startIndex":2435,"stopIndex":2563,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9261},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9266":{"name":"getTargetObj","type":"propertyDef","startIndex":2586,"stopIndex":2637,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9267":{"name":"accessing","type":"categoryDef","startIndex":2570,"stopIndex":3621,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9266},{"__isSmartRef__":true,"id":9268},{"__isSmartRef__":true,"id":9269},{"__isSmartRef__":true,"id":9270},{"__isSmartRef__":true,"id":9271},{"__isSmartRef__":true,"id":9272},{"__isSmartRef__":true,"id":9273},{"__isSmartRef__":true,"id":9274},{"__isSmartRef__":true,"id":9275},{"__isSmartRef__":true,"id":9276},{"__isSmartRef__":true,"id":9277}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9268":{"name":"getSourceObj","type":"propertyDef","startIndex":2640,"stopIndex":2691,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9269":{"name":"getSourceAttrName","type":"propertyDef","startIndex":2694,"stopIndex":2755,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9270":{"name":"getTargetMethodName","type":"propertyDef","startIndex":2758,"stopIndex":2823,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9271":{"name":"getSourceValue","type":"propertyDef","startIndex":2825,"stopIndex":2909,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9272":{"name":"getPrivateSourceValue","type":"propertyDef","startIndex":2911,"stopIndex":3014,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9273":{"name":"getConverter","type":"propertyDef","startIndex":3018,"stopIndex":3239,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9274":{"name":"getUpdater","type":"propertyDef","startIndex":3241,"stopIndex":3450,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9275":{"name":"privateAttrName","type":"propertyDef","startIndex":3453,"stopIndex":3516,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9276":{"name":"activate","type":"propertyDef","startIndex":3519,"stopIndex":3565,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9277":{"name":"deactivate","type":"propertyDef","startIndex":3568,"stopIndex":3617,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9267},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9278":{"name":"connect","type":"propertyDef","startIndex":3640,"stopIndex":5022,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9279},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9279":{"name":"connecting","type":"categoryDef","startIndex":3623,"stopIndex":7512,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9278},{"__isSmartRef__":true,"id":9280},{"__isSmartRef__":true,"id":9281}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9280":{"name":"disconnect","type":"propertyDef","startIndex":5025,"stopIndex":5504,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9279},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9281":{"name":"update","type":"propertyDef","startIndex":5507,"stopIndex":7508,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9279},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9282":{"name":"addSourceObjGetterAndSetter","type":"propertyDef","startIndex":7535,"stopIndex":9523,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9283},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9283":{"name":"private helper","type":"categoryDef","startIndex":7514,"stopIndex":11885,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9282},{"__isSmartRef__":true,"id":9284},{"__isSmartRef__":true,"id":9285},{"__isSmartRef__":true,"id":9286},{"__isSmartRef__":true,"id":9287}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9284":{"name":"addConnectionWrapper","type":"propertyDef","startIndex":9526,"stopIndex":10566,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9283},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9285":{"name":"removeSourceObjGetterAndSetter","type":"propertyDef","startIndex":10569,"stopIndex":11475,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9283},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9286":{"name":"addAttributeConnection","type":"propertyDef","startIndex":11478,"stopIndex":11657,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9283},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9287":{"name":"getExistingConnection","type":"propertyDef","startIndex":11660,"stopIndex":11882,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9283},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9288":{"name":"isRecursivelyActivated","type":"propertyDef","startIndex":11901,"stopIndex":12002,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9289},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9289":{"name":"testing","type":"categoryDef","startIndex":11887,"stopIndex":12319,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9288},{"__isSmartRef__":true,"id":9290}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9290":{"name":"isSimilarConnection","type":"propertyDef","startIndex":12005,"stopIndex":12316,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9289},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9291":{"name":"toString","type":"propertyDef","startIndex":12336,"stopIndex":12687,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9292},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9257},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9292":{"name":"debugging","type":"categoryDef","startIndex":12321,"stopIndex":12689,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9291}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9293":{"name":null,"type":"comment","startIndex":12693,"stopIndex":12693,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9294":{"name":"AttributeConnection","type":"klassExtensionDef","startIndex":12694,"stopIndex":13701,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9295}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9296}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9295":{"name":"toLiteral","type":"propertyDef","startIndex":12727,"stopIndex":13696,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9296},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9294},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9296":{"name":"default category","type":"categoryDef","startIndex":12725,"stopIndex":13698,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9295}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9297":{"name":"AttributeConnection","type":"klassExtensionDef","startIndex":13702,"stopIndex":14952,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9298}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9299}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9298":{"name":"fromLiteral","type":"propertyDef","startIndex":13739,"stopIndex":14948,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9299},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9297},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9299":{"name":"default category","type":"categoryDef","startIndex":13737,"stopIndex":14949,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9298}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9300":{"name":"AttributeConnection","type":"klassExtensionDef","startIndex":14953,"stopIndex":15478,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9301}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9302}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9301":{"name":"onrestore","type":"propertyDef","startIndex":15003,"stopIndex":15473,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9302},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":9300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9302":{"name":"serialization","type":"categoryDef","startIndex":14984,"stopIndex":15475,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9301}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9303":{"name":null,"type":"comment","startIndex":15479,"stopIndex":15479,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9304":{"name":"lively.bindings","type":"klassExtensionDef","startIndex":15480,"stopIndex":18584,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9305},{"__isSmartRef__":true,"id":9307},{"__isSmartRef__":true,"id":9308},{"__isSmartRef__":true,"id":9309},{"__isSmartRef__":true,"id":9310},{"__isSmartRef__":true,"id":9311},{"__isSmartRef__":true,"id":9312}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9306}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9305":{"name":"documentation","type":"propertyDef","startIndex":15514,"stopIndex":15681,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9306},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":9304},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9306":{"name":"default category","type":"categoryDef","startIndex":15511,"stopIndex":18581,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9305},{"__isSmartRef__":true,"id":9307},{"__isSmartRef__":true,"id":9308},{"__isSmartRef__":true,"id":9309},{"__isSmartRef__":true,"id":9310},{"__isSmartRef__":true,"id":9311},{"__isSmartRef__":true,"id":9312}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9307":{"name":"connect","type":"propertyDef","startIndex":15684,"stopIndex":16520,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9306},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":9304},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9308":{"name":"disconnect","type":"propertyDef","startIndex":16524,"stopIndex":17071,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9306},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":9304},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9309":{"name":"disconnectAll","type":"propertyDef","startIndex":17075,"stopIndex":17265,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9306},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":9304},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9310":{"name":"signal","type":"propertyDef","startIndex":17269,"stopIndex":17589,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9306},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":9304},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9311":{"name":"callWhenNotNull","type":"propertyDef","startIndex":17592,"stopIndex":17958,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9306},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":9304},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9312":{"name":"callWhenPathNotNull","type":"propertyDef","startIndex":17960,"stopIndex":18578,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9306},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":9304},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9313":{"name":"Global","type":"klassExtensionDef","startIndex":18585,"stopIndex":18819,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9314},{"__isSmartRef__":true,"id":9316},{"__isSmartRef__":true,"id":9317},{"__isSmartRef__":true,"id":9318},{"__isSmartRef__":true,"id":9319}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9315}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9314":{"name":"connect","type":"propertyDef","startIndex":18609,"stopIndex":18642,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9315},"className":"Global","_owner":{"__isSmartRef__":true,"id":9313},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9315":{"name":"default category","type":"categoryDef","startIndex":18607,"stopIndex":18816,"fileName":"lively/bindings.js","_subElements":[{"__isSmartRef__":true,"id":9314},{"__isSmartRef__":true,"id":9316},{"__isSmartRef__":true,"id":9317},{"__isSmartRef__":true,"id":9318},{"__isSmartRef__":true,"id":9319}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9316":{"name":"disconnect","type":"propertyDef","startIndex":18644,"stopIndex":18683,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9315},"className":"Global","_owner":{"__isSmartRef__":true,"id":9313},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9317":{"name":"disconnectAll","type":"propertyDef","startIndex":18685,"stopIndex":18730,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9315},"className":"Global","_owner":{"__isSmartRef__":true,"id":9313},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9318":{"name":"signal","type":"propertyDef","startIndex":18732,"stopIndex":18763,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9315},"className":"Global","_owner":{"__isSmartRef__":true,"id":9313},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9319":{"name":"updateAttributeConnection","type":"propertyDef","startIndex":18765,"stopIndex":18815,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9315},"className":"Global","_owner":{"__isSmartRef__":true,"id":9313},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9320":{"name":null,"type":"comment","startIndex":18820,"stopIndex":18821,"fileName":"lively/bindings.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9321":{"target":{"__isSmartRef__":true,"id":9322},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/bootstrap.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9322":{"name":"lively/bootstrap.js","type":"completeFileDef","startIndex":0,"stopIndex":39914,"fileName":"lively/bootstrap.js","_subElements":[{"__isSmartRef__":true,"id":9323},{"__isSmartRef__":true,"id":9324},{"__isSmartRef__":true,"id":9325},{"__isSmartRef__":true,"id":9326},{"__isSmartRef__":true,"id":9327},{"__isSmartRef__":true,"id":9328},{"__isSmartRef__":true,"id":9355},{"__isSmartRef__":true,"id":9356},{"__isSmartRef__":true,"id":9373},{"__isSmartRef__":true,"id":9394},{"__isSmartRef__":true,"id":9395},{"__isSmartRef__":true,"id":9404},{"__isSmartRef__":true,"id":9405},{"__isSmartRef__":true,"id":9415},{"__isSmartRef__":true,"id":9416}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9323":{"name":null,"type":"unknown","startIndex":0,"stopIndex":67,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9324":{"name":null,"type":"unknown","startIndex":68,"stopIndex":152,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9325":{"name":null,"type":"comment","startIndex":153,"stopIndex":153,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9326":{"name":"setupConsole","type":"functionDef","startIndex":154,"stopIndex":2127,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9327":{"name":null,"type":"comment","startIndex":2128,"stopIndex":2128,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9328":{"name":"JSLoader","type":"objectDef","startIndex":2129,"stopIndex":12958,"fileName":"lively/bootstrap.js","_subElements":[{"__isSmartRef__":true,"id":9329},{"__isSmartRef__":true,"id":9331},{"__isSmartRef__":true,"id":9332},{"__isSmartRef__":true,"id":9333},{"__isSmartRef__":true,"id":9334},{"__isSmartRef__":true,"id":9335},{"__isSmartRef__":true,"id":9336},{"__isSmartRef__":true,"id":9337},{"__isSmartRef__":true,"id":9338},{"__isSmartRef__":true,"id":9339},{"__isSmartRef__":true,"id":9340},{"__isSmartRef__":true,"id":9341},{"__isSmartRef__":true,"id":9342},{"__isSmartRef__":true,"id":9343},{"__isSmartRef__":true,"id":9344},{"__isSmartRef__":true,"id":9345},{"__isSmartRef__":true,"id":9346},{"__isSmartRef__":true,"id":9347},{"__isSmartRef__":true,"id":9348},{"__isSmartRef__":true,"id":9349},{"__isSmartRef__":true,"id":9350},{"__isSmartRef__":true,"id":9351},{"__isSmartRef__":true,"id":9352},{"__isSmartRef__":true,"id":9353},{"__isSmartRef__":true,"id":9354}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9329":{"name":"SVGNamespace","type":"propertyDef","startIndex":2147,"stopIndex":2195,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9330":{"name":"default category","type":"categoryDef","startIndex":15,"stopIndex":10827,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9329},{"__isSmartRef__":true,"id":9331},{"__isSmartRef__":true,"id":9332},{"__isSmartRef__":true,"id":9333},{"__isSmartRef__":true,"id":9334},{"__isSmartRef__":true,"id":9335},{"__isSmartRef__":true,"id":9336},{"__isSmartRef__":true,"id":9337},{"__isSmartRef__":true,"id":9338},{"__isSmartRef__":true,"id":9339},{"__isSmartRef__":true,"id":9340},{"__isSmartRef__":true,"id":9341},{"__isSmartRef__":true,"id":9342},{"__isSmartRef__":true,"id":9343},{"__isSmartRef__":true,"id":9344},{"__isSmartRef__":true,"id":9345},{"__isSmartRef__":true,"id":9346},{"__isSmartRef__":true,"id":9347},{"__isSmartRef__":true,"id":9348},{"__isSmartRef__":true,"id":9349},{"__isSmartRef__":true,"id":9350},{"__isSmartRef__":true,"id":9351},{"__isSmartRef__":true,"id":9352},{"__isSmartRef__":true,"id":9353},{"__isSmartRef__":true,"id":9354}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9331":{"name":"XLINKNamespace","type":"propertyDef","startIndex":2197,"stopIndex":2249,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9332":{"name":"LIVELYNamespace","type":"propertyDef","startIndex":2251,"stopIndex":2315,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9333":{"name":"loadJs","type":"propertyDef","startIndex":2318,"stopIndex":3761,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9334":{"name":"loadSync","type":"propertyDef","startIndex":3763,"stopIndex":4111,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9335":{"name":"loadAsync","type":"propertyDef","startIndex":4113,"stopIndex":4646,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9336":{"name":"loadCombinedModules","type":"propertyDef","startIndex":4650,"stopIndex":7607,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9337":{"name":"loadAll","type":"propertyDef","startIndex":7610,"stopIndex":7848,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9338":{"name":"resolveAndLoadAll","type":"propertyDef","startIndex":7851,"stopIndex":8035,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9339":{"name":"findParentScriptNode","type":"propertyDef","startIndex":8038,"stopIndex":8239,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9340":{"name":"getLinkAttribute","type":"propertyDef","startIndex":8242,"stopIndex":8373,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9341":{"name":"getScripts","type":"propertyDef","startIndex":8380,"stopIndex":8457,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9342":{"name":"scriptInDOM","type":"propertyDef","startIndex":8460,"stopIndex":8540,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9343":{"name":"scriptsThatLinkTo","type":"propertyDef","startIndex":8543,"stopIndex":8856,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9344":{"name":"removeQueries","type":"propertyDef","startIndex":8859,"stopIndex":8920,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9345":{"name":"resolveURLString","type":"propertyDef","startIndex":8923,"stopIndex":9559,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9346":{"name":"scriptElementLinksTo","type":"propertyDef","startIndex":9566,"stopIndex":10013,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9347":{"name":"currentDir","type":"propertyDef","startIndex":10016,"stopIndex":10115,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9348":{"name":"dirOfURL","type":"propertyDef","startIndex":10118,"stopIndex":10231,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9349":{"name":"makeAbsolute","type":"propertyDef","startIndex":10234,"stopIndex":10490,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9350":{"name":"makeUncached","type":"propertyDef","startIndex":10492,"stopIndex":10690,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9351":{"name":"removeAllScriptsThatLinkTo","type":"propertyDef","startIndex":10694,"stopIndex":10906,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9352":{"name":"getSync","type":"propertyDef","startIndex":10908,"stopIndex":12295,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9353":{"name":"DEPRECATED$findParentScriptNode","type":"propertyDef","startIndex":12299,"stopIndex":12863,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9354":{"name":"isCSS","type":"propertyDef","startIndex":12865,"stopIndex":12955,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9330},"_owner":{"__isSmartRef__":true,"id":9328},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9355":{"name":null,"type":"comment","startIndex":12959,"stopIndex":12959,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9356":{"name":"LivelyLoader","type":"objectDef","startIndex":12960,"stopIndex":27072,"fileName":"lively/bootstrap.js","_subElements":[{"__isSmartRef__":true,"id":9357},{"__isSmartRef__":true,"id":9359},{"__isSmartRef__":true,"id":9360},{"__isSmartRef__":true,"id":9361},{"__isSmartRef__":true,"id":9362},{"__isSmartRef__":true,"id":9363},{"__isSmartRef__":true,"id":9364},{"__isSmartRef__":true,"id":9365},{"__isSmartRef__":true,"id":9366},{"__isSmartRef__":true,"id":9367},{"__isSmartRef__":true,"id":9368},{"__isSmartRef__":true,"id":9369},{"__isSmartRef__":true,"id":9370},{"__isSmartRef__":true,"id":9371},{"__isSmartRef__":true,"id":9372}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9357":{"name":"codeBase","type":"propertyDef","startIndex":12986,"stopIndex":13851,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9358":{"name":"default category","type":"categoryDef","startIndex":19,"stopIndex":14110,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9357},{"__isSmartRef__":true,"id":9359},{"__isSmartRef__":true,"id":9360},{"__isSmartRef__":true,"id":9361},{"__isSmartRef__":true,"id":9362},{"__isSmartRef__":true,"id":9363},{"__isSmartRef__":true,"id":9364},{"__isSmartRef__":true,"id":9365},{"__isSmartRef__":true,"id":9366},{"__isSmartRef__":true,"id":9367},{"__isSmartRef__":true,"id":9368},{"__isSmartRef__":true,"id":9369},{"__isSmartRef__":true,"id":9370},{"__isSmartRef__":true,"id":9371},{"__isSmartRef__":true,"id":9372}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9359":{"name":"installWatcher","type":"propertyDef","startIndex":13858,"stopIndex":14408,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9360":{"name":"createConfigObject","type":"propertyDef","startIndex":14410,"stopIndex":14634,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9361":{"name":"bootstrap","type":"propertyDef","startIndex":14642,"stopIndex":16931,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9362":{"name":"loadMain","type":"propertyDef","startIndex":16934,"stopIndex":17331,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9363":{"name":"startWorld","type":"propertyDef","startIndex":17334,"stopIndex":17588,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9364":{"name":"findCanvas","type":"propertyDef","startIndex":17590,"stopIndex":17899,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9365":{"name":"startCanvasWorld","type":"propertyDef","startIndex":17903,"stopIndex":18234,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9366":{"name":"findRealCanvas","type":"propertyDef","startIndex":18237,"stopIndex":18437,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9367":{"name":"startNewMorphicWorld","type":"propertyDef","startIndex":18444,"stopIndex":18800,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9368":{"name":"bootstrapNewMorphicWorld","type":"propertyDef","startIndex":18802,"stopIndex":19432,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9369":{"name":"startHeadless","type":"propertyDef","startIndex":19434,"stopIndex":19640,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9370":{"name":"bootstrapHeadless","type":"propertyDef","startIndex":19642,"stopIndex":20222,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9371":{"name":"loadUserConfig","type":"propertyDef","startIndex":20225,"stopIndex":20679,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9372":{"name":"addPatches","type":"propertyDef","startIndex":20682,"stopIndex":27068,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9358},"_owner":{"__isSmartRef__":true,"id":9356},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9373":{"name":"LoadingScreen","type":"objectDef","startIndex":27073,"stopIndex":34062,"fileName":"lively/bootstrap.js","_subElements":[{"__isSmartRef__":true,"id":9374},{"__isSmartRef__":true,"id":9376},{"__isSmartRef__":true,"id":9377},{"__isSmartRef__":true,"id":9378},{"__isSmartRef__":true,"id":9379},{"__isSmartRef__":true,"id":9380},{"__isSmartRef__":true,"id":9381},{"__isSmartRef__":true,"id":9382},{"__isSmartRef__":true,"id":9383},{"__isSmartRef__":true,"id":9384},{"__isSmartRef__":true,"id":9385},{"__isSmartRef__":true,"id":9386},{"__isSmartRef__":true,"id":9387},{"__isSmartRef__":true,"id":9388},{"__isSmartRef__":true,"id":9389},{"__isSmartRef__":true,"id":9390},{"__isSmartRef__":true,"id":9391},{"__isSmartRef__":true,"id":9392},{"__isSmartRef__":true,"id":9393}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9374":{"name":"width","type":"propertyDef","startIndex":27091,"stopIndex":27167,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9375":{"name":"default category","type":"categoryDef","startIndex":16,"stopIndex":6987,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9374},{"__isSmartRef__":true,"id":9376},{"__isSmartRef__":true,"id":9377},{"__isSmartRef__":true,"id":9378},{"__isSmartRef__":true,"id":9379},{"__isSmartRef__":true,"id":9380},{"__isSmartRef__":true,"id":9381},{"__isSmartRef__":true,"id":9382},{"__isSmartRef__":true,"id":9383},{"__isSmartRef__":true,"id":9384},{"__isSmartRef__":true,"id":9385},{"__isSmartRef__":true,"id":9386},{"__isSmartRef__":true,"id":9387},{"__isSmartRef__":true,"id":9388},{"__isSmartRef__":true,"id":9389},{"__isSmartRef__":true,"id":9390},{"__isSmartRef__":true,"id":9391},{"__isSmartRef__":true,"id":9392},{"__isSmartRef__":true,"id":9393}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9376":{"name":"height","type":"propertyDef","startIndex":27169,"stopIndex":27247,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9377":{"name":"id","type":"propertyDef","startIndex":27250,"stopIndex":27274,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9378":{"name":"consoleId","type":"propertyDef","startIndex":27276,"stopIndex":27308,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9379":{"name":"logoId","type":"propertyDef","startIndex":27310,"stopIndex":27335,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9380":{"name":"brokenWorldMsgId","type":"propertyDef","startIndex":27337,"stopIndex":27382,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9381":{"name":"buildBackground","type":"propertyDef","startIndex":27385,"stopIndex":27765,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9382":{"name":"buildLoadingLogo","type":"propertyDef","startIndex":27768,"stopIndex":28722,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9383":{"name":"buildBrokenWorldMessage","type":"propertyDef","startIndex":28725,"stopIndex":29804,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9384":{"name":"ensureBrokenWorldMessage","type":"propertyDef","startIndex":29807,"stopIndex":30046,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9385":{"name":"buildConsole","type":"propertyDef","startIndex":30049,"stopIndex":31377,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9386":{"name":"removeConsole","type":"propertyDef","startIndex":31380,"stopIndex":31692,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9387":{"name":"toggleConsole","type":"propertyDef","startIndex":31695,"stopIndex":31929,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9388":{"name":"buildConsoleButton","type":"propertyDef","startIndex":31932,"stopIndex":32814,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9389":{"name":"buildCloseButton","type":"propertyDef","startIndex":32816,"stopIndex":33230,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9390":{"name":"build","type":"propertyDef","startIndex":33235,"stopIndex":33689,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9391":{"name":"add","type":"propertyDef","startIndex":33692,"stopIndex":33845,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9392":{"name":"remove","type":"propertyDef","startIndex":33848,"stopIndex":33953,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9393":{"name":"removeElement","type":"propertyDef","startIndex":33956,"stopIndex":34059,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9375},"_owner":{"__isSmartRef__":true,"id":9373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9394":{"name":null,"type":"comment","startIndex":34063,"stopIndex":34063,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9395":{"name":"EmbededLoader","type":"objectDef","startIndex":34064,"stopIndex":38365,"fileName":"lively/bootstrap.js","_subElements":[{"__isSmartRef__":true,"id":9396},{"__isSmartRef__":true,"id":9398},{"__isSmartRef__":true,"id":9399},{"__isSmartRef__":true,"id":9400},{"__isSmartRef__":true,"id":9401},{"__isSmartRef__":true,"id":9402},{"__isSmartRef__":true,"id":9403}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9396":{"name":"addWorld","type":"propertyDef","startIndex":34087,"stopIndex":34468,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9397},"_owner":{"__isSmartRef__":true,"id":9395},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9397":{"name":"default category","type":"categoryDef","startIndex":20,"stopIndex":4299,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9396},{"__isSmartRef__":true,"id":9398},{"__isSmartRef__":true,"id":9399},{"__isSmartRef__":true,"id":9400},{"__isSmartRef__":true,"id":9401},{"__isSmartRef__":true,"id":9402},{"__isSmartRef__":true,"id":9403}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9398":{"name":"embedAndLoadWorld","type":"propertyDef","startIndex":34475,"stopIndex":36887,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9397},"_owner":{"__isSmartRef__":true,"id":9395},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9399":{"name":"convertCDATASections","type":"propertyDef","startIndex":36890,"stopIndex":37375,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9397},"_owner":{"__isSmartRef__":true,"id":9395},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9400":{"name":"getWorldAttributeFrom","type":"propertyDef","startIndex":37378,"stopIndex":37586,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9397},"_owner":{"__isSmartRef__":true,"id":9395},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9401":{"name":"isLivelyCanvas","type":"propertyDef","startIndex":37593,"stopIndex":37777,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9397},"_owner":{"__isSmartRef__":true,"id":9395},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9402":{"name":"findLivelyCanvasIn","type":"propertyDef","startIndex":37784,"stopIndex":38018,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9397},"_owner":{"__isSmartRef__":true,"id":9395},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9403":{"name":"embedLively","type":"propertyDef","startIndex":38025,"stopIndex":38362,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9397},"_owner":{"__isSmartRef__":true,"id":9395},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9404":{"name":null,"type":"comment","startIndex":38366,"stopIndex":38366,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9405":{"name":"LivelyMigrationSupport","type":"objectDef","startIndex":38367,"stopIndex":39425,"fileName":"lively/bootstrap.js","_subElements":[{"__isSmartRef__":true,"id":9406},{"__isSmartRef__":true,"id":9408},{"__isSmartRef__":true,"id":9409},{"__isSmartRef__":true,"id":9410},{"__isSmartRef__":true,"id":9411},{"__isSmartRef__":true,"id":9412},{"__isSmartRef__":true,"id":9413},{"__isSmartRef__":true,"id":9414}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9406":{"name":"migrationLevel","type":"propertyDef","startIndex":38398,"stopIndex":38547,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9407":{"name":"default category","type":"categoryDef","startIndex":29,"stopIndex":1056,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9406},{"__isSmartRef__":true,"id":9408},{"__isSmartRef__":true,"id":9409},{"__isSmartRef__":true,"id":9410},{"__isSmartRef__":true,"id":9411},{"__isSmartRef__":true,"id":9412},{"__isSmartRef__":true,"id":9413},{"__isSmartRef__":true,"id":9414}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9408":{"name":"documentMigrationLevel","type":"propertyDef","startIndex":38549,"stopIndex":38578,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9409":{"name":"migrationLevelNodeId","type":"propertyDef","startIndex":38580,"stopIndex":38628,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9410":{"name":"extractMigrationLevel","type":"propertyDef","startIndex":38630,"stopIndex":38863,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9411":{"name":"setDocumentMigrationLevel","type":"propertyDef","startIndex":38865,"stopIndex":38988,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9412":{"name":"fixModuleName","type":"propertyDef","startIndex":38991,"stopIndex":39272,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9413":{"name":"addModuleRename","type":"propertyDef","startIndex":39274,"stopIndex":39395,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9414":{"name":"moduleRenameDict","type":"propertyDef","startIndex":39397,"stopIndex":39421,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9407},"_owner":{"__isSmartRef__":true,"id":9405},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9415":{"name":null,"type":"comment","startIndex":39426,"stopIndex":39426,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9416":{"name":"startWorld","type":"functionDef","startIndex":39427,"stopIndex":39914,"fileName":"lively/bootstrap.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9417":{"target":{"__isSmartRef__":true,"id":9418},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/CanvasExpt.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9418":{"name":"lively/CanvasExpt.js","type":"completeFileDef","startIndex":0,"stopIndex":16756,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9419},{"__isSmartRef__":true,"id":9420},{"__isSmartRef__":true,"id":9423},{"__isSmartRef__":true,"id":9424},{"__isSmartRef__":true,"id":9428},{"__isSmartRef__":true,"id":9429},{"__isSmartRef__":true,"id":9434},{"__isSmartRef__":true,"id":9435},{"__isSmartRef__":true,"id":9441},{"__isSmartRef__":true,"id":9442},{"__isSmartRef__":true,"id":9445},{"__isSmartRef__":true,"id":9446},{"__isSmartRef__":true,"id":9449},{"__isSmartRef__":true,"id":9450},{"__isSmartRef__":true,"id":9453},{"__isSmartRef__":true,"id":9454},{"__isSmartRef__":true,"id":9461},{"__isSmartRef__":true,"id":9462},{"__isSmartRef__":true,"id":9467},{"__isSmartRef__":true,"id":9468},{"__isSmartRef__":true,"id":9473},{"__isSmartRef__":true,"id":9474},{"__isSmartRef__":true,"id":9481},{"__isSmartRef__":true,"id":9482},{"__isSmartRef__":true,"id":9488},{"__isSmartRef__":true,"id":9489},{"__isSmartRef__":true,"id":9492},{"__isSmartRef__":true,"id":9493},{"__isSmartRef__":true,"id":9496},{"__isSmartRef__":true,"id":9497},{"__isSmartRef__":true,"id":9500},{"__isSmartRef__":true,"id":9501},{"__isSmartRef__":true,"id":9502},{"__isSmartRef__":true,"id":9503},{"__isSmartRef__":true,"id":9504}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9419":{"name":null,"type":"comment","startIndex":0,"stopIndex":2006,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9420":{"name":"Morph","type":"klassExtensionDef","startIndex":2007,"stopIndex":2448,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9421}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9422}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9421":{"name":"makeLine","type":"propertyDef","startIndex":2030,"stopIndex":2443,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9422},"className":"Morph","_owner":{"__isSmartRef__":true,"id":9420},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9422":{"name":"default category","type":"categoryDef","startIndex":2028,"stopIndex":2445,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9421}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9423":{"name":null,"type":"comment","startIndex":2449,"stopIndex":2449,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9424":{"name":"Morph","type":"klassExtensionDef","startIndex":2450,"stopIndex":2852,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9425},{"__isSmartRef__":true,"id":9427}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9426}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9425":{"name":"changed","type":"propertyDef","startIndex":2493,"stopIndex":2625,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9426},"className":"Morph","_owner":{"__isSmartRef__":true,"id":9424},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9426":{"name":"default category","type":"categoryDef","startIndex":2467,"stopIndex":2849,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9425},{"__isSmartRef__":true,"id":9427}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9427":{"name":"invalidRect","type":"propertyDef","startIndex":2628,"stopIndex":2847,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9426},"className":"Morph","_owner":{"__isSmartRef__":true,"id":9424},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9428":{"name":null,"type":"comment","startIndex":2853,"stopIndex":2853,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9429":{"name":"Morph","type":"klassExtensionDef","startIndex":2854,"stopIndex":4051,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9430},{"__isSmartRef__":true,"id":9432},{"__isSmartRef__":true,"id":9433}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9431}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9430":{"name":"fullDrawOn","type":"propertyDef","startIndex":2893,"stopIndex":3463,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9431},"className":"Morph","_owner":{"__isSmartRef__":true,"id":9429},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9431":{"name":"default category","type":"categoryDef","startIndex":2871,"stopIndex":4048,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9430},{"__isSmartRef__":true,"id":9432},{"__isSmartRef__":true,"id":9433}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9432":{"name":"drawOn","type":"propertyDef","startIndex":3466,"stopIndex":3686,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9431},"className":"Morph","_owner":{"__isSmartRef__":true,"id":9429},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9433":{"name":"drawSubmorphsOn","type":"propertyDef","startIndex":3689,"stopIndex":4046,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9431},"className":"Morph","_owner":{"__isSmartRef__":true,"id":9429},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9434":{"name":null,"type":"comment","startIndex":4052,"stopIndex":4052,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9435":{"name":"TextMorph","type":"klassExtensionDef","startIndex":4053,"stopIndex":5952,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9436},{"__isSmartRef__":true,"id":9438},{"__isSmartRef__":true,"id":9439},{"__isSmartRef__":true,"id":9440}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9437}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9436":{"name":"drawOn","type":"propertyDef","startIndex":4096,"stopIndex":4210,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9437},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":9435},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9437":{"name":"default category","type":"categoryDef","startIndex":4074,"stopIndex":5949,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9436},{"__isSmartRef__":true,"id":9438},{"__isSmartRef__":true,"id":9439},{"__isSmartRef__":true,"id":9440}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9438":{"name":"drawSubmorphsOn","type":"propertyDef","startIndex":4213,"stopIndex":4511,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9437},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":9435},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9439":{"name":"fontString","type":"propertyDef","startIndex":4515,"stopIndex":4834,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9437},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":9435},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9440":{"name":"drawTextOn","type":"propertyDef","startIndex":4838,"stopIndex":5948,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9437},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":9435},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9441":{"name":null,"type":"comment","startIndex":5953,"stopIndex":5953,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9442":{"name":"lively.scene.Image","type":"klassExtensionDef","startIndex":5954,"stopIndex":6285,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9443}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9444}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9443":{"name":"loadImage","type":"propertyDef","startIndex":5986,"stopIndex":6281,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9444},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":9442},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9444":{"name":"default category","type":"categoryDef","startIndex":5984,"stopIndex":6282,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9443}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9445":{"name":null,"type":"comment","startIndex":6286,"stopIndex":6290,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9446":{"name":"ImageMorph","type":"klassExtensionDef","startIndex":6291,"stopIndex":6752,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9447}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9448}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9447":{"name":"drawOn","type":"propertyDef","startIndex":6335,"stopIndex":6745,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9448},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":9446},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9448":{"name":"default category","type":"categoryDef","startIndex":6313,"stopIndex":6749,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9447}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9449":{"name":null,"type":"comment","startIndex":6753,"stopIndex":6753,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9450":{"name":"ClipMorph","type":"klassExtensionDef","startIndex":6754,"stopIndex":6990,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9451}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9452}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9451":{"name":"invalidRect","type":"propertyDef","startIndex":6798,"stopIndex":6984,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9452},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":9450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9452":{"name":"default category","type":"categoryDef","startIndex":6775,"stopIndex":6987,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9451}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9453":{"name":null,"type":"comment","startIndex":6991,"stopIndex":6991,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9454":{"name":"WorldMorph","type":"klassExtensionDef","startIndex":6992,"stopIndex":9560,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9455},{"__isSmartRef__":true,"id":9457},{"__isSmartRef__":true,"id":9458},{"__isSmartRef__":true,"id":9459},{"__isSmartRef__":true,"id":9460}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9456}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9455":{"name":"invalidRect","type":"propertyDef","startIndex":7027,"stopIndex":7175,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9456},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9456":{"name":"default category","type":"categoryDef","startIndex":7014,"stopIndex":9557,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9455},{"__isSmartRef__":true,"id":9457},{"__isSmartRef__":true,"id":9458},{"__isSmartRef__":true,"id":9459},{"__isSmartRef__":true,"id":9460}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9457":{"name":"fullDrawOn","type":"propertyDef","startIndex":7178,"stopIndex":7363,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9456},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9458":{"name":"repaintCanvas","type":"propertyDef","startIndex":7367,"stopIndex":9122,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9456},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9459":{"name":"displayOnCanvas","type":"propertyDef","startIndex":9126,"stopIndex":9423,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9456},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9460":{"name":"doOneCycle","type":"propertyDef","startIndex":9427,"stopIndex":9555,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9456},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9461":{"name":null,"type":"comment","startIndex":9561,"stopIndex":9561,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9462":{"name":"HandMorph","type":"klassExtensionDef","startIndex":9562,"stopIndex":10501,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9463},{"__isSmartRef__":true,"id":9465},{"__isSmartRef__":true,"id":9466}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9464}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9463":{"name":"registerForEvents","type":"propertyDef","startIndex":9609,"stopIndex":9940,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9464},"className":"HandMorph","_owner":{"__isSmartRef__":true,"id":9462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9464":{"name":"default category","type":"categoryDef","startIndex":9583,"stopIndex":10498,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9463},{"__isSmartRef__":true,"id":9465},{"__isSmartRef__":true,"id":9466}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9465":{"name":"unregisterForEvents","type":"propertyDef","startIndex":9943,"stopIndex":10305,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9464},"className":"HandMorph","_owner":{"__isSmartRef__":true,"id":9462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9466":{"name":"handleEvent","type":"propertyDef","startIndex":10308,"stopIndex":10494,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9464},"className":"HandMorph","_owner":{"__isSmartRef__":true,"id":9462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9467":{"name":null,"type":"comment","startIndex":10502,"stopIndex":10502,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9468":{"name":"DamageManager","type":"klassDef","startIndex":10503,"stopIndex":11311,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9469},{"__isSmartRef__":true,"id":9471},{"__isSmartRef__":true,"id":9472}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9470}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9469":{"name":"initialize","type":"propertyDef","startIndex":10557,"stopIndex":10611,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9470},"className":"DamageManager","_owner":{"__isSmartRef__":true,"id":9468},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9470":{"name":"default category","type":"categoryDef","startIndex":10536,"stopIndex":11308,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9469},{"__isSmartRef__":true,"id":9471},{"__isSmartRef__":true,"id":9472}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9471":{"name":"recordInvalidRect","type":"propertyDef","startIndex":10614,"stopIndex":11217,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9470},"className":"DamageManager","_owner":{"__isSmartRef__":true,"id":9468},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9472":{"name":"resetInvalidRects","type":"propertyDef","startIndex":11250,"stopIndex":11307,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9470},"className":"DamageManager","_owner":{"__isSmartRef__":true,"id":9468},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9473":{"name":null,"type":"comment","startIndex":11312,"stopIndex":11312,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9474":{"name":"lively.scene.Shape","type":"klassExtensionDef","startIndex":11313,"stopIndex":13537,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9475},{"__isSmartRef__":true,"id":9477},{"__isSmartRef__":true,"id":9478},{"__isSmartRef__":true,"id":9479},{"__isSmartRef__":true,"id":9480}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9476}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9475":{"name":"drawOn","type":"propertyDef","startIndex":11365,"stopIndex":12105,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9476},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":9474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9476":{"name":"default category","type":"categoryDef","startIndex":11343,"stopIndex":13534,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9475},{"__isSmartRef__":true,"id":9477},{"__isSmartRef__":true,"id":9478},{"__isSmartRef__":true,"id":9479},{"__isSmartRef__":true,"id":9480}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9477":{"name":"drawFillOn","type":"propertyDef","startIndex":12108,"stopIndex":12219,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9476},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":9474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9478":{"name":"drawStrokeOn","type":"propertyDef","startIndex":12222,"stopIndex":12360,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9476},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":9474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9479":{"name":"canvasFillFor","type":"propertyDef","startIndex":12363,"stopIndex":13194,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9476},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":9474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9480":{"name":"setPath","type":"propertyDef","startIndex":13201,"stopIndex":13530,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9476},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":9474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9481":{"name":null,"type":"comment","startIndex":13538,"stopIndex":13538,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9482":{"name":"lively.scene.Rectangle","type":"klassExtensionDef","startIndex":13539,"stopIndex":15098,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9483},{"__isSmartRef__":true,"id":9485},{"__isSmartRef__":true,"id":9486},{"__isSmartRef__":true,"id":9487}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9484}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9483":{"name":"initialize","type":"propertyDef","startIndex":13595,"stopIndex":13760,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9484},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":9482},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9484":{"name":"default category","type":"categoryDef","startIndex":13573,"stopIndex":15095,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9483},{"__isSmartRef__":true,"id":9485},{"__isSmartRef__":true,"id":9486},{"__isSmartRef__":true,"id":9487}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9485":{"name":"drawFillOn","type":"propertyDef","startIndex":13763,"stopIndex":13955,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9484},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":9482},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9486":{"name":"drawStrokeOn","type":"propertyDef","startIndex":13958,"stopIndex":14163,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9484},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":9482},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9487":{"name":"setPath","type":"propertyDef","startIndex":14166,"stopIndex":15092,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9484},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":9482},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9488":{"name":null,"type":"comment","startIndex":15099,"stopIndex":15099,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9489":{"name":"lively.scene.Polygon","type":"klassExtensionDef","startIndex":15100,"stopIndex":15484,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9490}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9491}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9490":{"name":"setPath","type":"propertyDef","startIndex":15133,"stopIndex":15479,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9491},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":9489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9491":{"name":"default category","type":"categoryDef","startIndex":15132,"stopIndex":15481,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9490}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9492":{"name":null,"type":"comment","startIndex":15485,"stopIndex":15485,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9493":{"name":"lively.scene.Polyline","type":"klassExtensionDef","startIndex":15486,"stopIndex":15795,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9494}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9495}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9494":{"name":"setPath","type":"propertyDef","startIndex":15542,"stopIndex":15788,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9495},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":9493},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9495":{"name":"default category","type":"categoryDef","startIndex":15519,"stopIndex":15792,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9494}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9496":{"name":null,"type":"comment","startIndex":15796,"stopIndex":15796,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9497":{"name":"lively.scene.Ellipse","type":"klassExtensionDef","startIndex":15797,"stopIndex":16487,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9498}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9499}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9498":{"name":"setPath","type":"propertyDef","startIndex":15830,"stopIndex":16482,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9499},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":9497},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9499":{"name":"default category","type":"categoryDef","startIndex":15829,"stopIndex":16484,"fileName":"lively/CanvasExpt.js","_subElements":[{"__isSmartRef__":true,"id":9498}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9500":{"name":null,"type":"comment","startIndex":16488,"stopIndex":16552,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9501":{"name":"useTransformAPI","type":"propertyDef","startIndex":16553,"stopIndex":16584,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9502":{"name":"useGetTransformToElement","type":"propertyDef","startIndex":16585,"stopIndex":16625,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9503":{"name":"loadSerializedSubworlds","type":"propertyDef","startIndex":16626,"stopIndex":16716,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9504":{"name":null,"type":"unknown","startIndex":16717,"stopIndex":16756,"fileName":"lively/CanvasExpt.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9505":{"target":{"__isSmartRef__":true,"id":9506},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/CanvasExptCoreFixes.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9506":{"name":"lively.CanvasExptCoreFixes","type":"moduleDef","startIndex":0,"stopIndex":1840,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[{"__isSmartRef__":true,"id":9507},{"__isSmartRef__":true,"id":9508},{"__isSmartRef__":true,"id":9509},{"__isSmartRef__":true,"id":9510},{"__isSmartRef__":true,"id":9515},{"__isSmartRef__":true,"id":9516},{"__isSmartRef__":true,"id":9520}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9507":{"name":null,"type":"comment","startIndex":80,"stopIndex":80,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9508":{"name":"create","type":"propertyDef","startIndex":81,"stopIndex":349,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"NodeFactory","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9509":{"name":null,"type":"unknown","startIndex":350,"stopIndex":360,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9510":{"name":"WorldMorph","type":"klassExtensionDef","startIndex":361,"stopIndex":1480,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[{"__isSmartRef__":true,"id":9511},{"__isSmartRef__":true,"id":9513},{"__isSmartRef__":true,"id":9514}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9512}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9511":{"name":"setChangeSet","type":"propertyDef","startIndex":385,"stopIndex":500,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9512},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9512":{"name":"default category","type":"categoryDef","startIndex":383,"stopIndex":1477,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[{"__isSmartRef__":true,"id":9511},{"__isSmartRef__":true,"id":9513},{"__isSmartRef__":true,"id":9514}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9513":{"name":"displayOnCanvas","type":"propertyDef","startIndex":503,"stopIndex":826,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9512},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9514":{"name":"addHand","type":"propertyDef","startIndex":829,"stopIndex":1476,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9512},"className":"WorldMorph","_owner":{"__isSmartRef__":true,"id":9510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9515":{"name":null,"type":"comment","startIndex":1481,"stopIndex":1483,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9516":{"name":"lively.data.Wrapper","type":"klassExtensionDef","startIndex":1484,"stopIndex":1820,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[{"__isSmartRef__":true,"id":9517},{"__isSmartRef__":true,"id":9519}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9518}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9517":{"name":"reference","type":"propertyDef","startIndex":1517,"stopIndex":1775,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9518},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":9516},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9518":{"name":"default category","type":"categoryDef","startIndex":1515,"stopIndex":1817,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[{"__isSmartRef__":true,"id":9517},{"__isSmartRef__":true,"id":9519}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9519":{"name":"ensureInDictionary","type":"propertyDef","startIndex":1777,"stopIndex":1816,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9518},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":9516},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9520":{"name":null,"type":"comment","startIndex":1821,"stopIndex":1821,"fileName":"lively/CanvasExptCoreFixes.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9521":{"target":{"__isSmartRef__":true,"id":9522},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/ChangeSet.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9522":{"name":"lively.ChangeSet","type":"moduleDef","startIndex":1187,"stopIndex":25277,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9523},{"__isSmartRef__":true,"id":9524},{"__isSmartRef__":true,"id":9571},{"__isSmartRef__":true,"id":9576},{"__isSmartRef__":true,"id":9577},{"__isSmartRef__":true,"id":9611},{"__isSmartRef__":true,"id":9617},{"__isSmartRef__":true,"id":9618},{"__isSmartRef__":true,"id":9633},{"__isSmartRef__":true,"id":9634},{"__isSmartRef__":true,"id":9638},{"__isSmartRef__":true,"id":9639},{"__isSmartRef__":true,"id":9649},{"__isSmartRef__":true,"id":9650},{"__isSmartRef__":true,"id":9654},{"__isSmartRef__":true,"id":9655},{"__isSmartRef__":true,"id":9665},{"__isSmartRef__":true,"id":9666},{"__isSmartRef__":true,"id":9670},{"__isSmartRef__":true,"id":9688},{"__isSmartRef__":true,"id":9692},{"__isSmartRef__":true,"id":9693},{"__isSmartRef__":true,"id":9700},{"__isSmartRef__":true,"id":9701},{"__isSmartRef__":true,"id":9705},{"__isSmartRef__":true,"id":9706},{"__isSmartRef__":true,"id":9715},{"__isSmartRef__":true,"id":9718}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9523":{"name":null,"type":"comment","startIndex":1267,"stopIndex":1462,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9524":{"name":"Change","type":"klassDef","startIndex":1463,"stopIndex":6957,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9525},{"__isSmartRef__":true,"id":9527},{"__isSmartRef__":true,"id":9529},{"__isSmartRef__":true,"id":9531},{"__isSmartRef__":true,"id":9533},{"__isSmartRef__":true,"id":9534},{"__isSmartRef__":true,"id":9535},{"__isSmartRef__":true,"id":9537},{"__isSmartRef__":true,"id":9538},{"__isSmartRef__":true,"id":9539},{"__isSmartRef__":true,"id":9540},{"__isSmartRef__":true,"id":9541},{"__isSmartRef__":true,"id":9542},{"__isSmartRef__":true,"id":9543},{"__isSmartRef__":true,"id":9544},{"__isSmartRef__":true,"id":9545},{"__isSmartRef__":true,"id":9546},{"__isSmartRef__":true,"id":9547},{"__isSmartRef__":true,"id":9548},{"__isSmartRef__":true,"id":9549},{"__isSmartRef__":true,"id":9550},{"__isSmartRef__":true,"id":9551},{"__isSmartRef__":true,"id":9553},{"__isSmartRef__":true,"id":9554},{"__isSmartRef__":true,"id":9555},{"__isSmartRef__":true,"id":9556},{"__isSmartRef__":true,"id":9558},{"__isSmartRef__":true,"id":9560},{"__isSmartRef__":true,"id":9562},{"__isSmartRef__":true,"id":9563},{"__isSmartRef__":true,"id":9565},{"__isSmartRef__":true,"id":9566},{"__isSmartRef__":true,"id":9567},{"__isSmartRef__":true,"id":9568},{"__isSmartRef__":true,"id":9569},{"__isSmartRef__":true,"id":9570}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9526},{"__isSmartRef__":true,"id":9528},{"__isSmartRef__":true,"id":9530},{"__isSmartRef__":true,"id":9532},{"__isSmartRef__":true,"id":9536},{"__isSmartRef__":true,"id":9552},{"__isSmartRef__":true,"id":9557},{"__isSmartRef__":true,"id":9559},{"__isSmartRef__":true,"id":9561},{"__isSmartRef__":true,"id":9564}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9525":{"name":"documentation","type":"propertyDef","startIndex":1508,"stopIndex":1581,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9526},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9526":{"name":"documentation","type":"categoryDef","startIndex":1489,"stopIndex":1584,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9525}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9527":{"name":"doNotSerialize","type":"propertyDef","startIndex":1600,"stopIndex":1631,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9528},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9528":{"name":"settings","type":"categoryDef","startIndex":1586,"stopIndex":1634,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9527}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9529":{"name":"initialize","type":"propertyDef","startIndex":1656,"stopIndex":1726,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9530},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9530":{"name":"initialization","type":"categoryDef","startIndex":1636,"stopIndex":1729,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9529}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9531":{"name":"isInitializer","type":"propertyDef","startIndex":1744,"stopIndex":1775,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9532},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9532":{"name":"testing","type":"categoryDef","startIndex":1731,"stopIndex":2035,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9531},{"__isSmartRef__":true,"id":9533},{"__isSmartRef__":true,"id":9534}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9533":{"name":"isWorldRequirementsList","type":"propertyDef","startIndex":1777,"stopIndex":1818,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9532},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9534":{"name":"eq","type":"propertyDef","startIndex":1820,"stopIndex":2032,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9532},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9535":{"name":"getXMLElement","type":"propertyDef","startIndex":2052,"stopIndex":2105,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9536":{"name":"accessing","type":"categoryDef","startIndex":2037,"stopIndex":4471,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9535},{"__isSmartRef__":true,"id":9537},{"__isSmartRef__":true,"id":9538},{"__isSmartRef__":true,"id":9539},{"__isSmartRef__":true,"id":9540},{"__isSmartRef__":true,"id":9541},{"__isSmartRef__":true,"id":9542},{"__isSmartRef__":true,"id":9543},{"__isSmartRef__":true,"id":9544},{"__isSmartRef__":true,"id":9545},{"__isSmartRef__":true,"id":9546},{"__isSmartRef__":true,"id":9547},{"__isSmartRef__":true,"id":9548},{"__isSmartRef__":true,"id":9549},{"__isSmartRef__":true,"id":9550}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9537":{"name":"setXMLElement","type":"propertyDef","startIndex":2109,"stopIndex":2430,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9538":{"name":"getParser","type":"propertyDef","startIndex":2433,"stopIndex":2499,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9539":{"name":"getAttributeNamed","type":"propertyDef","startIndex":2502,"stopIndex":2796,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9540":{"name":"setAttributeNamed","type":"propertyDef","startIndex":2799,"stopIndex":2923,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9541":{"name":"getName","type":"propertyDef","startIndex":2926,"stopIndex":2988,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9542":{"name":"setName","type":"propertyDef","startIndex":2991,"stopIndex":3085,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9543":{"name":"getDefinition","type":"propertyDef","startIndex":3088,"stopIndex":3153,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9544":{"name":"setDefinition","type":"propertyDef","startIndex":3156,"stopIndex":3346,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9545":{"name":"getOrCreateCDATANode","type":"propertyDef","startIndex":3349,"stopIndex":3677,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9546":{"name":"addSubElement","type":"propertyDef","startIndex":3680,"stopIndex":4072,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9547":{"name":"addSubElements","type":"propertyDef","startIndex":4075,"stopIndex":4172,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9548":{"name":"subElements","type":"propertyDef","startIndex":4175,"stopIndex":4217,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9549":{"name":"subElementNamed","type":"propertyDef","startIndex":4220,"stopIndex":4384,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9550":{"name":"parent","type":"propertyDef","startIndex":4387,"stopIndex":4467,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9536},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9551":{"name":"disableAutomaticEval","type":"propertyDef","startIndex":4489,"stopIndex":4598,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9552},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9552":{"name":"evaluation","type":"categoryDef","startIndex":4473,"stopIndex":4882,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9551},{"__isSmartRef__":true,"id":9553},{"__isSmartRef__":true,"id":9554},{"__isSmartRef__":true,"id":9555}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9553":{"name":"enableAutomaticEval","type":"propertyDef","startIndex":4600,"stopIndex":4707,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9552},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9554":{"name":"automaticEvalEnabled","type":"propertyDef","startIndex":4709,"stopIndex":4808,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9552},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9555":{"name":"evaluate","type":"propertyDef","startIndex":4811,"stopIndex":4879,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9552},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9556":{"name":"remove","type":"propertyDef","startIndex":4898,"stopIndex":5021,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9557},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9557":{"name":"removing","type":"categoryDef","startIndex":4884,"stopIndex":5024,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9556}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9558":{"name":"asJs","type":"propertyDef","startIndex":5042,"stopIndex":5157,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9559},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9559":{"name":"conversion","type":"categoryDef","startIndex":5026,"stopIndex":5160,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9558}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9560":{"name":"toString","type":"propertyDef","startIndex":5177,"stopIndex":5351,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9561},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9561":{"name":"debugging","type":"categoryDef","startIndex":5162,"stopIndex":5476,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9560},{"__isSmartRef__":true,"id":9562}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9562":{"name":"inspect","type":"propertyDef","startIndex":5354,"stopIndex":5473,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9561},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9563":{"name":"flattened","type":"propertyDef","startIndex":5511,"stopIndex":5648,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9564},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9564":{"name":"file fragment compatibility","type":"categoryDef","startIndex":5478,"stopIndex":6954,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9563},{"__isSmartRef__":true,"id":9565},{"__isSmartRef__":true,"id":9566},{"__isSmartRef__":true,"id":9567},{"__isSmartRef__":true,"id":9568},{"__isSmartRef__":true,"id":9569},{"__isSmartRef__":true,"id":9570}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9565":{"name":"getSourceCode","type":"propertyDef","startIndex":5650,"stopIndex":5708,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9564},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9566":{"name":"getSourceCodeWithoutSubElements","type":"propertyDef","startIndex":5710,"stopIndex":6124,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9564},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9567":{"name":"putSourceCode","type":"propertyDef","startIndex":6126,"stopIndex":6191,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9564},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9568":{"name":"getSourceControl","type":"propertyDef","startIndex":6193,"stopIndex":6263,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9564},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9569":{"name":"sourceCodeWithout","type":"propertyDef","startIndex":6265,"stopIndex":6885,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9564},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9570":{"name":"getFileString","type":"propertyDef","startIndex":6887,"stopIndex":6952,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9564},"className":"Change","_owner":{"__isSmartRef__":true,"id":9524},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9571":{"name":"Change","type":"klassExtensionDef","startIndex":6958,"stopIndex":7147,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9572},{"__isSmartRef__":true,"id":9574},{"__isSmartRef__":true,"id":9575}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9573}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9572":{"name":"initializerName","type":"propertyDef","startIndex":6982,"stopIndex":7013,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9573},"className":"Change","_owner":{"__isSmartRef__":true,"id":9571},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9573":{"name":"default category","type":"categoryDef","startIndex":6980,"stopIndex":7144,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9572},{"__isSmartRef__":true,"id":9574},{"__isSmartRef__":true,"id":9575}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9574":{"name":"worldRequirementsListName","type":"propertyDef","startIndex":7015,"stopIndex":7063,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9573},"className":"Change","_owner":{"__isSmartRef__":true,"id":9571},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9575":{"name":"fromJS","type":"propertyDef","startIndex":7065,"stopIndex":7142,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9573},"className":"Change","_owner":{"__isSmartRef__":true,"id":9571},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9576":{"name":null,"type":"comment","startIndex":7148,"stopIndex":7204,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9577":{"name":"ChangeSet","type":"klassDef","startIndex":7205,"stopIndex":14657,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9578},{"__isSmartRef__":true,"id":9580},{"__isSmartRef__":true,"id":9581},{"__isSmartRef__":true,"id":9582},{"__isSmartRef__":true,"id":9583},{"__isSmartRef__":true,"id":9584},{"__isSmartRef__":true,"id":9585},{"__isSmartRef__":true,"id":9586},{"__isSmartRef__":true,"id":9587},{"__isSmartRef__":true,"id":9589},{"__isSmartRef__":true,"id":9590},{"__isSmartRef__":true,"id":9591},{"__isSmartRef__":true,"id":9592},{"__isSmartRef__":true,"id":9593},{"__isSmartRef__":true,"id":9594},{"__isSmartRef__":true,"id":9596},{"__isSmartRef__":true,"id":9598},{"__isSmartRef__":true,"id":9600},{"__isSmartRef__":true,"id":9601},{"__isSmartRef__":true,"id":9602},{"__isSmartRef__":true,"id":9603},{"__isSmartRef__":true,"id":9604},{"__isSmartRef__":true,"id":9605},{"__isSmartRef__":true,"id":9606},{"__isSmartRef__":true,"id":9607},{"__isSmartRef__":true,"id":9608},{"__isSmartRef__":true,"id":9609},{"__isSmartRef__":true,"id":9610}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Change","categories":[{"__isSmartRef__":true,"id":9579},{"__isSmartRef__":true,"id":9588},{"__isSmartRef__":true,"id":9595},{"__isSmartRef__":true,"id":9597},{"__isSmartRef__":true,"id":9599}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9578":{"name":"initialize","type":"propertyDef","startIndex":7253,"stopIndex":7389,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9579":{"name":"initializing","type":"categoryDef","startIndex":7234,"stopIndex":10517,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9578},{"__isSmartRef__":true,"id":9580},{"__isSmartRef__":true,"id":9581},{"__isSmartRef__":true,"id":9582},{"__isSmartRef__":true,"id":9583},{"__isSmartRef__":true,"id":9584},{"__isSmartRef__":true,"id":9585},{"__isSmartRef__":true,"id":9586}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9580":{"name":"initializeFromWorldNode","type":"propertyDef","startIndex":7392,"stopIndex":7633,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9581":{"name":"initializeFromNode","type":"propertyDef","startIndex":7636,"stopIndex":7751,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9582":{"name":"initializeFromFile","type":"propertyDef","startIndex":7754,"stopIndex":8035,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9583":{"name":"initializeFromString","type":"propertyDef","startIndex":8038,"stopIndex":8259,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9584":{"name":"reconstructFrom","type":"propertyDef","startIndex":8262,"stopIndex":8613,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9585":{"name":"addHookTo","type":"propertyDef","startIndex":8616,"stopIndex":9231,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9586":{"name":"findOrCreateDefNodeOfWorld","type":"propertyDef","startIndex":9235,"stopIndex":10513,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9579},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9587":{"name":"addChange","type":"propertyDef","startIndex":10537,"stopIndex":10600,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9588},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9588":{"name":"subelements","type":"categoryDef","startIndex":10519,"stopIndex":11445,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9587},{"__isSmartRef__":true,"id":9589},{"__isSmartRef__":true,"id":9590},{"__isSmartRef__":true,"id":9591},{"__isSmartRef__":true,"id":9592},{"__isSmartRef__":true,"id":9593}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9589":{"name":"subElements","type":"propertyDef","startIndex":10603,"stopIndex":10856,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9588},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9590":{"name":"removeChangeNamed","type":"propertyDef","startIndex":10859,"stopIndex":11005,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9588},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9591":{"name":"removeChangeAt","type":"propertyDef","startIndex":11008,"stopIndex":11176,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9588},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9592":{"name":"remove","type":"propertyDef","startIndex":11179,"stopIndex":11242,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9588},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9593":{"name":"addOrChangeElementNamed","type":"propertyDef","startIndex":11245,"stopIndex":11441,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9588},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9594":{"name":"evaluate","type":"propertyDef","startIndex":11464,"stopIndex":11556,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9595},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9595":{"name":"evaluation","type":"categoryDef","startIndex":11447,"stopIndex":11560,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9594}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9596":{"name":"logChange","type":"propertyDef","startIndex":11589,"stopIndex":11690,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9597},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9597":{"name":"SimpleBrowser support","type":"categoryDef","startIndex":11562,"stopIndex":11693,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9596}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9598":{"name":"getInitializer","type":"propertyDef","startIndex":11753,"stopIndex":11910,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9599":{"name":"system startup, initializer and world requirements","type":"categoryDef","startIndex":11695,"stopIndex":14654,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9598},{"__isSmartRef__":true,"id":9600},{"__isSmartRef__":true,"id":9601},{"__isSmartRef__":true,"id":9602},{"__isSmartRef__":true,"id":9603},{"__isSmartRef__":true,"id":9604},{"__isSmartRef__":true,"id":9605},{"__isSmartRef__":true,"id":9606},{"__isSmartRef__":true,"id":9607},{"__isSmartRef__":true,"id":9608},{"__isSmartRef__":true,"id":9609},{"__isSmartRef__":true,"id":9610}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9600":{"name":"getWorldRequirementsList","type":"propertyDef","startIndex":11914,"stopIndex":12091,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9601":{"name":"ensureHasInitializeScript","type":"propertyDef","startIndex":12095,"stopIndex":12301,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9602":{"name":"ensureHasWorldRequirements","type":"propertyDef","startIndex":12305,"stopIndex":12619,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9603":{"name":"evaluateAllButInitializer","type":"propertyDef","startIndex":12623,"stopIndex":12913,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9604":{"name":"evaluateInitializer","type":"propertyDef","startIndex":12917,"stopIndex":13052,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9605":{"name":"evaluateWorldRequirements","type":"propertyDef","startIndex":13056,"stopIndex":13339,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9606":{"name":"ensureCompatibility","type":"propertyDef","startIndex":13343,"stopIndex":13484,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9607":{"name":"addWorldRequirement","type":"propertyDef","startIndex":13488,"stopIndex":13721,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9608":{"name":"removeWorldRequirement","type":"propertyDef","startIndex":13724,"stopIndex":14002,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9609":{"name":"hasWorldRequirement","type":"propertyDef","startIndex":14004,"stopIndex":14160,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9610":{"name":"moduleNamesInNamespace","type":"propertyDef","startIndex":14163,"stopIndex":14653,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9599},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9577},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9611":{"name":"ChangeSet","type":"klassExtensionDef","startIndex":14658,"stopIndex":15581,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9612},{"__isSmartRef__":true,"id":9614},{"__isSmartRef__":true,"id":9615},{"__isSmartRef__":true,"id":9616}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9613}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9612":{"name":"fromWorld","type":"propertyDef","startIndex":14686,"stopIndex":15130,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9613},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9613":{"name":"default category","type":"categoryDef","startIndex":14683,"stopIndex":15578,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9612},{"__isSmartRef__":true,"id":9614},{"__isSmartRef__":true,"id":9615},{"__isSmartRef__":true,"id":9616}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9614":{"name":"fromNode","type":"propertyDef","startIndex":15133,"stopIndex":15226,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9613},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9615":{"name":"fromFile","type":"propertyDef","startIndex":15229,"stopIndex":15350,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9613},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9616":{"name":"current","type":"propertyDef","startIndex":15353,"stopIndex":15575,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9613},"className":"ChangeSet","_owner":{"__isSmartRef__":true,"id":9611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9617":{"name":null,"type":"comment","startIndex":15582,"stopIndex":15583,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9618":{"name":"ClassChange","type":"klassDef","startIndex":15584,"stopIndex":17907,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9619},{"__isSmartRef__":true,"id":9621},{"__isSmartRef__":true,"id":9623},{"__isSmartRef__":true,"id":9624},{"__isSmartRef__":true,"id":9625},{"__isSmartRef__":true,"id":9626},{"__isSmartRef__":true,"id":9627},{"__isSmartRef__":true,"id":9628},{"__isSmartRef__":true,"id":9629},{"__isSmartRef__":true,"id":9631}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Change","categories":[{"__isSmartRef__":true,"id":9620},{"__isSmartRef__":true,"id":9622},{"__isSmartRef__":true,"id":9630},{"__isSmartRef__":true,"id":9632}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9619":{"name":"isClassChange","type":"propertyDef","startIndex":15628,"stopIndex":15648,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9620},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9620":{"name":"testing","type":"categoryDef","startIndex":15615,"stopIndex":15651,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9619}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9621":{"name":"getSuperclassName","type":"propertyDef","startIndex":15668,"stopIndex":15745,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9622},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9622":{"name":"accessing","type":"categoryDef","startIndex":15653,"stopIndex":17041,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9621},{"__isSmartRef__":true,"id":9623},{"__isSmartRef__":true,"id":9624},{"__isSmartRef__":true,"id":9625},{"__isSmartRef__":true,"id":9626},{"__isSmartRef__":true,"id":9627},{"__isSmartRef__":true,"id":9628}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9623":{"name":"subElements","type":"propertyDef","startIndex":15747,"stopIndex":16014,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9622},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9624":{"name":"getProtoChanges","type":"propertyDef","startIndex":16018,"stopIndex":16129,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9622},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9625":{"name":"getStaticChanges","type":"propertyDef","startIndex":16131,"stopIndex":16244,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9622},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9626":{"name":"getCategories","type":"propertyDef","startIndex":16246,"stopIndex":16483,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9622},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9627":{"name":"definitionWithNewCategory","type":"propertyDef","startIndex":16485,"stopIndex":16858,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9622},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9628":{"name":"getDefinitionWithBody","type":"propertyDef","startIndex":16860,"stopIndex":17036,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9622},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9629":{"name":"evaluate","type":"propertyDef","startIndex":17059,"stopIndex":17680,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9630},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9630":{"name":"evaluation","type":"categoryDef","startIndex":17043,"stopIndex":17683,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9629}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9631":{"name":"asJs","type":"propertyDef","startIndex":17701,"stopIndex":17902,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9632},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9618},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9632":{"name":"conversion","type":"categoryDef","startIndex":17685,"stopIndex":17904,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9631}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9633":{"name":null,"type":"comment","startIndex":17908,"stopIndex":17908,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9634":{"name":"ClassChange","type":"klassExtensionDef","startIndex":17909,"stopIndex":18310,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9635},{"__isSmartRef__":true,"id":9637}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9636}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9635":{"name":"isResponsibleFor","type":"propertyDef","startIndex":17939,"stopIndex":18022,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9636},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9634},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9636":{"name":"default category","type":"categoryDef","startIndex":17936,"stopIndex":18307,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9635},{"__isSmartRef__":true,"id":9637}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9637":{"name":"create","type":"propertyDef","startIndex":18025,"stopIndex":18304,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9636},"className":"ClassChange","_owner":{"__isSmartRef__":true,"id":9634},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9638":{"name":null,"type":"comment","startIndex":18311,"stopIndex":18311,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9639":{"name":"ProtoChange","type":"klassDef","startIndex":18312,"stopIndex":19319,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9640},{"__isSmartRef__":true,"id":9642},{"__isSmartRef__":true,"id":9644},{"__isSmartRef__":true,"id":9645},{"__isSmartRef__":true,"id":9647}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Change","categories":[{"__isSmartRef__":true,"id":9641},{"__isSmartRef__":true,"id":9643},{"__isSmartRef__":true,"id":9646},{"__isSmartRef__":true,"id":9648}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9640":{"name":"isProtoChange","type":"propertyDef","startIndex":18356,"stopIndex":18376,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9641},"className":"ProtoChange","_owner":{"__isSmartRef__":true,"id":9639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9641":{"name":"testing","type":"categoryDef","startIndex":18343,"stopIndex":18379,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9640}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9642":{"name":"getClassName","type":"propertyDef","startIndex":18396,"stopIndex":18537,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9643},"className":"ProtoChange","_owner":{"__isSmartRef__":true,"id":9639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9643":{"name":"accessing","type":"categoryDef","startIndex":18381,"stopIndex":18642,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9642},{"__isSmartRef__":true,"id":9644}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9644":{"name":"getCategoryName","type":"propertyDef","startIndex":18539,"stopIndex":18639,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9643},"className":"ProtoChange","_owner":{"__isSmartRef__":true,"id":9639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9645":{"name":"evaluate","type":"propertyDef","startIndex":18660,"stopIndex":19073,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9646},"className":"ProtoChange","_owner":{"__isSmartRef__":true,"id":9639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9646":{"name":"evaluation","type":"categoryDef","startIndex":18644,"stopIndex":19076,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9645}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9647":{"name":"asJs","type":"propertyDef","startIndex":19094,"stopIndex":19314,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9648},"className":"ProtoChange","_owner":{"__isSmartRef__":true,"id":9639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9648":{"name":"conversion","type":"categoryDef","startIndex":19078,"stopIndex":19316,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9647}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9649":{"name":null,"type":"comment","startIndex":19320,"stopIndex":19321,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9650":{"name":"ProtoChange","type":"klassExtensionDef","startIndex":19322,"stopIndex":19865,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9651},{"__isSmartRef__":true,"id":9653}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9652}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9651":{"name":"isResponsibleFor","type":"propertyDef","startIndex":19352,"stopIndex":19435,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9652},"className":"ProtoChange","_owner":{"__isSmartRef__":true,"id":9650},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9652":{"name":"default category","type":"categoryDef","startIndex":19349,"stopIndex":19862,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9651},{"__isSmartRef__":true,"id":9653}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9653":{"name":"create","type":"propertyDef","startIndex":19438,"stopIndex":19859,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9652},"className":"ProtoChange","_owner":{"__isSmartRef__":true,"id":9650},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9654":{"name":null,"type":"comment","startIndex":19866,"stopIndex":19866,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9655":{"name":"StaticChange","type":"klassDef","startIndex":19867,"stopIndex":20827,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9656},{"__isSmartRef__":true,"id":9658},{"__isSmartRef__":true,"id":9660},{"__isSmartRef__":true,"id":9661},{"__isSmartRef__":true,"id":9663}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Change","categories":[{"__isSmartRef__":true,"id":9657},{"__isSmartRef__":true,"id":9659},{"__isSmartRef__":true,"id":9662},{"__isSmartRef__":true,"id":9664}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9656":{"name":"isStaticChange","type":"propertyDef","startIndex":19912,"stopIndex":19933,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9657},"className":"StaticChange","_owner":{"__isSmartRef__":true,"id":9655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9657":{"name":"testing","type":"categoryDef","startIndex":19899,"stopIndex":19936,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9656}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9658":{"name":"getClassName","type":"propertyDef","startIndex":19953,"stopIndex":20084,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9659},"className":"StaticChange","_owner":{"__isSmartRef__":true,"id":9655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9659":{"name":"accessing","type":"categoryDef","startIndex":19938,"stopIndex":20144,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9658},{"__isSmartRef__":true,"id":9660}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9660":{"name":"getCategoryName","type":"propertyDef","startIndex":20086,"stopIndex":20141,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9659},"className":"StaticChange","_owner":{"__isSmartRef__":true,"id":9655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9661":{"name":"evaluate","type":"propertyDef","startIndex":20162,"stopIndex":20581,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9662},"className":"StaticChange","_owner":{"__isSmartRef__":true,"id":9655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9662":{"name":"evaluation","type":"categoryDef","startIndex":20146,"stopIndex":20584,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9661}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9663":{"name":"asJs","type":"propertyDef","startIndex":20603,"stopIndex":20822,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9664},"className":"StaticChange","_owner":{"__isSmartRef__":true,"id":9655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9664":{"name":"conversion","type":"categoryDef","startIndex":20586,"stopIndex":20824,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9663}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9665":{"name":null,"type":"comment","startIndex":20828,"stopIndex":20828,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9666":{"name":"StaticChange","type":"klassExtensionDef","startIndex":20829,"stopIndex":21398,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9667},{"__isSmartRef__":true,"id":9669}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9668}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9667":{"name":"isResponsibleFor","type":"propertyDef","startIndex":20860,"stopIndex":20944,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9668},"className":"StaticChange","_owner":{"__isSmartRef__":true,"id":9666},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9668":{"name":"default category","type":"categoryDef","startIndex":20857,"stopIndex":21395,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9667},{"__isSmartRef__":true,"id":9669}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9669":{"name":"create","type":"propertyDef","startIndex":20947,"stopIndex":21392,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9668},"className":"StaticChange","_owner":{"__isSmartRef__":true,"id":9666},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9670":{"name":"MethodCategoryChange","type":"klassDef","startIndex":21399,"stopIndex":22994,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9671},{"__isSmartRef__":true,"id":9673},{"__isSmartRef__":true,"id":9675},{"__isSmartRef__":true,"id":9677},{"__isSmartRef__":true,"id":9678},{"__isSmartRef__":true,"id":9679},{"__isSmartRef__":true,"id":9680},{"__isSmartRef__":true,"id":9681},{"__isSmartRef__":true,"id":9682},{"__isSmartRef__":true,"id":9684},{"__isSmartRef__":true,"id":9686}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Change","categories":[{"__isSmartRef__":true,"id":9672},{"__isSmartRef__":true,"id":9674},{"__isSmartRef__":true,"id":9676},{"__isSmartRef__":true,"id":9683},{"__isSmartRef__":true,"id":9685},{"__isSmartRef__":true,"id":9687}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9671":{"name":"initialize","type":"propertyDef","startIndex":21457,"stopIndex":21585,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9672},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9672":{"name":"initializing","type":"categoryDef","startIndex":21439,"stopIndex":21588,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9671}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9673":{"name":"eq","type":"propertyDef","startIndex":21605,"stopIndex":21695,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9674},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9674":{"name":"comparing","type":"categoryDef","startIndex":21590,"stopIndex":21698,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9673}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9675":{"name":"getClassChange","type":"propertyDef","startIndex":21715,"stopIndex":21791,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9676},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9676":{"name":"accessing","type":"categoryDef","startIndex":21700,"stopIndex":22755,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9675},{"__isSmartRef__":true,"id":9677},{"__isSmartRef__":true,"id":9678},{"__isSmartRef__":true,"id":9679},{"__isSmartRef__":true,"id":9680},{"__isSmartRef__":true,"id":9681}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9677":{"name":"getName","type":"propertyDef","startIndex":21793,"stopIndex":21842,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9676},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9678":{"name":"setName","type":"propertyDef","startIndex":21844,"stopIndex":21897,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9676},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9679":{"name":"subElements","type":"propertyDef","startIndex":21899,"stopIndex":22058,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9676},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9680":{"name":"getDefinition","type":"propertyDef","startIndex":22060,"stopIndex":22264,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9676},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9681":{"name":"setDefinition","type":"propertyDef","startIndex":22266,"stopIndex":22752,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9676},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9682":{"name":"evaluate","type":"propertyDef","startIndex":22773,"stopIndex":22831,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9683},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9683":{"name":"evaluation","type":"categoryDef","startIndex":22757,"stopIndex":22834,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9682}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9684":{"name":"remove","type":"propertyDef","startIndex":22850,"stopIndex":22909,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9685},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9685":{"name":"removing","type":"categoryDef","startIndex":22836,"stopIndex":22912,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9684}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9686":{"name":"asJs","type":"propertyDef","startIndex":22930,"stopIndex":22989,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9687},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9670},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9687":{"name":"conversion","type":"categoryDef","startIndex":22914,"stopIndex":22991,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9688":{"name":"MethodCategoryChange","type":"klassExtensionDef","startIndex":22995,"stopIndex":23196,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9689},{"__isSmartRef__":true,"id":9691}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9690}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9689":{"name":"isResponsibleFor","type":"propertyDef","startIndex":23033,"stopIndex":23079,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9690},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9690":{"name":"default category","type":"categoryDef","startIndex":23031,"stopIndex":23193,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9689},{"__isSmartRef__":true,"id":9691}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9691":{"name":"createFromClassChange","type":"propertyDef","startIndex":23081,"stopIndex":23191,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9690},"className":"MethodCategoryChange","_owner":{"__isSmartRef__":true,"id":9688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9692":{"name":null,"type":"comment","startIndex":23197,"stopIndex":23197,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9693":{"name":"DoitChange","type":"klassDef","startIndex":23198,"stopIndex":23687,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9694},{"__isSmartRef__":true,"id":9696},{"__isSmartRef__":true,"id":9697},{"__isSmartRef__":true,"id":9698}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Change","categories":[{"__isSmartRef__":true,"id":9695},{"__isSmartRef__":true,"id":9699}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9694":{"name":"isDoitChange","type":"propertyDef","startIndex":23241,"stopIndex":23260,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9695},"className":"DoitChange","_owner":{"__isSmartRef__":true,"id":9693},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9695":{"name":"testing","type":"categoryDef","startIndex":23228,"stopIndex":23446,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9694},{"__isSmartRef__":true,"id":9696},{"__isSmartRef__":true,"id":9697}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9696":{"name":"isInitializer","type":"propertyDef","startIndex":23262,"stopIndex":23341,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9695},"className":"DoitChange","_owner":{"__isSmartRef__":true,"id":9693},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9697":{"name":"isWorldRequirementsList","type":"propertyDef","startIndex":23343,"stopIndex":23443,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9695},"className":"DoitChange","_owner":{"__isSmartRef__":true,"id":9693},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9698":{"name":"evaluate","type":"propertyDef","startIndex":23464,"stopIndex":23682,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9699},"className":"DoitChange","_owner":{"__isSmartRef__":true,"id":9693},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9699":{"name":"evaluation","type":"categoryDef","startIndex":23448,"stopIndex":23684,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9698}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9700":{"name":null,"type":"comment","startIndex":23688,"stopIndex":23688,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9701":{"name":"DoitChange","type":"klassExtensionDef","startIndex":23689,"stopIndex":24068,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9702},{"__isSmartRef__":true,"id":9704}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9703}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9702":{"name":"isResponsibleFor","type":"propertyDef","startIndex":23718,"stopIndex":23800,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9703},"className":"DoitChange","_owner":{"__isSmartRef__":true,"id":9701},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9703":{"name":"default category","type":"categoryDef","startIndex":23715,"stopIndex":24065,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9702},{"__isSmartRef__":true,"id":9704}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9704":{"name":"create","type":"propertyDef","startIndex":23803,"stopIndex":24062,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9703},"className":"DoitChange","_owner":{"__isSmartRef__":true,"id":9701},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9705":{"name":null,"type":"comment","startIndex":24069,"stopIndex":24069,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9706":{"name":"AnotherCodeMarkupParser","type":"klassDef","startIndex":24070,"stopIndex":25122,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9707},{"__isSmartRef__":true,"id":9709},{"__isSmartRef__":true,"id":9711},{"__isSmartRef__":true,"id":9713}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9708},{"__isSmartRef__":true,"id":9710},{"__isSmartRef__":true,"id":9712},{"__isSmartRef__":true,"id":9714}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9707":{"name":"changeClasses","type":"propertyDef","startIndex":24127,"stopIndex":24184,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9708},"className":"AnotherCodeMarkupParser","_owner":{"__isSmartRef__":true,"id":9706},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9708":{"name":"settings","type":"categoryDef","startIndex":24113,"stopIndex":24187,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9707}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9709":{"name":"initialize","type":"propertyDef","startIndex":24209,"stopIndex":24256,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9710},"className":"AnotherCodeMarkupParser","_owner":{"__isSmartRef__":true,"id":9706},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9710":{"name":"initialization","type":"categoryDef","startIndex":24189,"stopIndex":24259,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9709}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9711":{"name":"createChange","type":"propertyDef","startIndex":24282,"stopIndex":24789,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9712},"className":"AnotherCodeMarkupParser","_owner":{"__isSmartRef__":true,"id":9706},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9712":{"name":"change creation","type":"categoryDef","startIndex":24261,"stopIndex":24792,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9711}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9713":{"name":"getDocumentOf","type":"propertyDef","startIndex":24806,"stopIndex":25117,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9714},"className":"AnotherCodeMarkupParser","_owner":{"__isSmartRef__":true,"id":9706},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9714":{"name":"helper","type":"categoryDef","startIndex":24794,"stopIndex":25119,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9713}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9715":{"name":"AnotherCodeMarkupParser","type":"klassExtensionDef","startIndex":25123,"stopIndex":25209,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9716}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9717}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9716":{"name":"instance","type":"propertyDef","startIndex":25164,"stopIndex":25204,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9717},"className":"AnotherCodeMarkupParser","_owner":{"__isSmartRef__":true,"id":9715},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9717":{"name":"default category","type":"categoryDef","startIndex":25162,"stopIndex":25206,"fileName":"lively/ChangeSet.js","_subElements":[{"__isSmartRef__":true,"id":9716}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9718":{"name":null,"type":"comment","startIndex":25210,"stopIndex":25256,"fileName":"lively/ChangeSet.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9719":{"target":{"__isSmartRef__":true,"id":9720},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Connector.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9720":{"name":"lively.Connector","type":"moduleDef","startIndex":1136,"stopIndex":9761,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9721},{"__isSmartRef__":true,"id":9722},{"__isSmartRef__":true,"id":9728},{"__isSmartRef__":true,"id":9729},{"__isSmartRef__":true,"id":9740},{"__isSmartRef__":true,"id":9741},{"__isSmartRef__":true,"id":9745},{"__isSmartRef__":true,"id":9746},{"__isSmartRef__":true,"id":9752},{"__isSmartRef__":true,"id":9753},{"__isSmartRef__":true,"id":9756},{"__isSmartRef__":true,"id":9757},{"__isSmartRef__":true,"id":9783}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9721":{"name":null,"type":"comment","startIndex":1266,"stopIndex":1266,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9722":{"name":"NodeMorphLayer","type":"copDef","startIndex":1267,"stopIndex":1830,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9723}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9723":{"name":"Morph","type":"copSubElement","startIndex":1296,"stopIndex":1828,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9724},{"__isSmartRef__":true,"id":9726},{"__isSmartRef__":true,"id":9727}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":9722},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9724":{"name":"getConnectorMorphs","type":"propertyDef","startIndex":1318,"stopIndex":1584,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9725},"_owner":{"__isSmartRef__":true,"id":9723},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9725":{"name":"default category","type":"categoryDef","startIndex":49,"stopIndex":560,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9724},{"__isSmartRef__":true,"id":9726},{"__isSmartRef__":true,"id":9727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9726":{"name":"connectLineMorph","type":"propertyDef","startIndex":1586,"stopIndex":1701,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9725},"_owner":{"__isSmartRef__":true,"id":9723},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9727":{"name":"deconnectLineMorph","type":"propertyDef","startIndex":1703,"stopIndex":1825,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9725},"_owner":{"__isSmartRef__":true,"id":9723},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9728":{"name":null,"type":"comment","startIndex":1831,"stopIndex":1832,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9729":{"name":"ConnectorMorphLayer","type":"copDef","startIndex":1833,"stopIndex":3967,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9730}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9730":{"name":"HandleMorph","type":"copSubElement","startIndex":1866,"stopIndex":3965,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9731},{"__isSmartRef__":true,"id":9733},{"__isSmartRef__":true,"id":9734},{"__isSmartRef__":true,"id":9735},{"__isSmartRef__":true,"id":9736},{"__isSmartRef__":true,"id":9737},{"__isSmartRef__":true,"id":9738},{"__isSmartRef__":true,"id":9739}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":9729},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9731":{"name":"onMouseUp","type":"propertyDef","startIndex":1895,"stopIndex":2228,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9732":{"name":"default category","type":"categoryDef","startIndex":59,"stopIndex":2131,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9731},{"__isSmartRef__":true,"id":9733},{"__isSmartRef__":true,"id":9734},{"__isSmartRef__":true,"id":9735},{"__isSmartRef__":true,"id":9736},{"__isSmartRef__":true,"id":9737},{"__isSmartRef__":true,"id":9738},{"__isSmartRef__":true,"id":9739}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9733":{"name":"onMouseMove","type":"propertyDef","startIndex":2231,"stopIndex":2501,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9734":{"name":"connectToMorph","type":"propertyDef","startIndex":2504,"stopIndex":3285,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9735":{"name":"isStartHandle","type":"propertyDef","startIndex":3288,"stopIndex":3348,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9736":{"name":"isEndHandle","type":"propertyDef","startIndex":3351,"stopIndex":3448,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9737":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":3451,"stopIndex":3497,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9738":{"name":"findMorphUnderMe","type":"propertyDef","startIndex":3500,"stopIndex":3807,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9739":{"name":"getGlobalPosition","type":"propertyDef","startIndex":3810,"stopIndex":3962,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9732},"_owner":{"__isSmartRef__":true,"id":9730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9740":{"name":null,"type":"comment","startIndex":3968,"stopIndex":4184,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9741":{"name":"FindMorphLayer","type":"copDef","startIndex":4185,"stopIndex":4289,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9742}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9742":{"name":"TextMorph","type":"copSubElement","startIndex":4213,"stopIndex":4287,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9743}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":9741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9743":{"name":"acceptsDropping","type":"propertyDef","startIndex":4239,"stopIndex":4285,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9744},"_owner":{"__isSmartRef__":true,"id":9742},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9744":{"name":"default category","type":"categoryDef","startIndex":52,"stopIndex":101,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9743}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9745":{"name":null,"type":"comment","startIndex":4290,"stopIndex":4290,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9746":{"name":"UpdateConnectorLayer","type":"copDef","startIndex":4291,"stopIndex":5118,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9747},{"__isSmartRef__":true,"id":9748}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9747":{"name":"beGlobal()","type":"copSubElement","startIndex":4326,"stopIndex":4336,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":9746},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9748":{"name":"WorldMorph","type":"copSubElement","startIndex":4337,"stopIndex":5116,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9749},{"__isSmartRef__":true,"id":9751}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":9746},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9749":{"name":"migrateConnectorMorphs","type":"propertyDef","startIndex":4367,"stopIndex":4944,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9750},"_owner":{"__isSmartRef__":true,"id":9748},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9750":{"name":"default category","type":"categoryDef","startIndex":72,"stopIndex":824,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":9749},{"__isSmartRef__":true,"id":9751}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9751":{"name":"debuggingSubMenuItems","type":"propertyDef","startIndex":4947,"stopIndex":5113,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9750},"_owner":{"__isSmartRef__":true,"id":9748},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9752":{"name":null,"type":"comment","startIndex":5119,"stopIndex":5120,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9753":{"name":"Morph","type":"klassExtensionDef","startIndex":5121,"stopIndex":5541,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9754}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9755}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9754":{"name":"makeConnector","type":"propertyDef","startIndex":5144,"stopIndex":5537,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9755},"className":"Morph","_owner":{"__isSmartRef__":true,"id":9753},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9755":{"name":"default category","type":"categoryDef","startIndex":5142,"stopIndex":5538,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9754}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9756":{"name":null,"type":"comment","startIndex":5542,"stopIndex":5542,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9757":{"name":"lively.Connector.ConnectorMorph","type":"klassDef","startIndex":5543,"stopIndex":9734,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9758},{"__isSmartRef__":true,"id":9760},{"__isSmartRef__":true,"id":9762},{"__isSmartRef__":true,"id":9763},{"__isSmartRef__":true,"id":9765},{"__isSmartRef__":true,"id":9767},{"__isSmartRef__":true,"id":9768},{"__isSmartRef__":true,"id":9769},{"__isSmartRef__":true,"id":9770},{"__isSmartRef__":true,"id":9771},{"__isSmartRef__":true,"id":9772},{"__isSmartRef__":true,"id":9773},{"__isSmartRef__":true,"id":9774},{"__isSmartRef__":true,"id":9776},{"__isSmartRef__":true,"id":9777},{"__isSmartRef__":true,"id":9778},{"__isSmartRef__":true,"id":9779},{"__isSmartRef__":true,"id":9781},{"__isSmartRef__":true,"id":9782}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PathMorph","categories":[{"__isSmartRef__":true,"id":9759},{"__isSmartRef__":true,"id":9761},{"__isSmartRef__":true,"id":9764},{"__isSmartRef__":true,"id":9766},{"__isSmartRef__":true,"id":9775},{"__isSmartRef__":true,"id":9780}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9758":{"name":"suppressGrabbing","type":"propertyDef","startIndex":5611,"stopIndex":5634,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9759},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9759":{"name":"settings","type":"categoryDef","startIndex":5597,"stopIndex":5637,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9758}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9760":{"name":"initialize","type":"propertyDef","startIndex":5657,"stopIndex":5986,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9761},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9761":{"name":"initializing","type":"categoryDef","startIndex":5639,"stopIndex":6172,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9760},{"__isSmartRef__":true,"id":9762}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9762":{"name":"setupConnector","type":"propertyDef","startIndex":5988,"stopIndex":6169,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9761},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9763":{"name":"remove","type":"propertyDef","startIndex":6188,"stopIndex":6264,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9764},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9764":{"name":"morphic","type":"categoryDef","startIndex":6174,"stopIndex":6266,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9763}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9765":{"name":"getStartPos","type":"propertyDef","startIndex":6283,"stopIndex":6348,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9766":{"name":"accessing","type":"categoryDef","startIndex":6268,"stopIndex":6927,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9765},{"__isSmartRef__":true,"id":9767},{"__isSmartRef__":true,"id":9768},{"__isSmartRef__":true,"id":9769},{"__isSmartRef__":true,"id":9770},{"__isSmartRef__":true,"id":9771},{"__isSmartRef__":true,"id":9772},{"__isSmartRef__":true,"id":9773}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9767":{"name":"getEndPos","type":"propertyDef","startIndex":6350,"stopIndex":6412,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9768":{"name":"setStartPos","type":"propertyDef","startIndex":6416,"stopIndex":6516,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9769":{"name":"setEndPos","type":"propertyDef","startIndex":6520,"stopIndex":6627,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9770":{"name":"setGlobalStartPos","type":"propertyDef","startIndex":6630,"stopIndex":6700,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9771":{"name":"setGlobalEndPos","type":"propertyDef","startIndex":6702,"stopIndex":6768,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9772":{"name":"getGlobalStartPos","type":"propertyDef","startIndex":6770,"stopIndex":6848,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9773":{"name":"getGlobalEndPos","type":"propertyDef","startIndex":6850,"stopIndex":6924,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9766},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9774":{"name":"updateArrow","type":"propertyDef","startIndex":6943,"stopIndex":7227,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9775},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9775":{"name":"updating","type":"categoryDef","startIndex":6929,"stopIndex":8726,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9774},{"__isSmartRef__":true,"id":9776},{"__isSmartRef__":true,"id":9777},{"__isSmartRef__":true,"id":9778}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9776":{"name":"updateConnection","type":"propertyDef","startIndex":7229,"stopIndex":8139,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9775},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9777":{"name":"updatePath","type":"propertyDef","startIndex":8141,"stopIndex":8648,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9775},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9778":{"name":"toggleLineStyle","type":"propertyDef","startIndex":8650,"stopIndex":8723,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9775},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9779":{"name":"connectMorphs","type":"propertyDef","startIndex":8744,"stopIndex":9240,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9780},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9780":{"name":"connecting","type":"categoryDef","startIndex":8728,"stopIndex":9731,"fileName":"lively/Connector.js","_subElements":[{"__isSmartRef__":true,"id":9779},{"__isSmartRef__":true,"id":9781},{"__isSmartRef__":true,"id":9782}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9781":{"name":"connectEndMorph","type":"propertyDef","startIndex":9242,"stopIndex":9511,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9780},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9782":{"name":"disconnectMorphs","type":"propertyDef","startIndex":9514,"stopIndex":9728,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9780},"className":"lively.Connector.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":9757},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9783":{"name":null,"type":"comment","startIndex":9735,"stopIndex":9737,"fileName":"lively/Connector.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9784":{"target":{"__isSmartRef__":true,"id":9785},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Core.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9785":{"name":"lively.Core","type":"moduleDef","startIndex":1186,"stopIndex":2159,"fileName":"lively/Core.js","_subElements":[{"__isSmartRef__":true,"id":9786},{"__isSmartRef__":true,"id":9787},{"__isSmartRef__":true,"id":9788},{"__isSmartRef__":true,"id":9791},{"__isSmartRef__":true,"id":9792},{"__isSmartRef__":true,"id":9793},{"__isSmartRef__":true,"id":9794},{"__isSmartRef__":true,"id":9795}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9786":{"name":null,"type":"comment","startIndex":1394,"stopIndex":1394,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9787":{"name":null,"type":"unknown","startIndex":1395,"stopIndex":1520,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9788":{"name":"Global","type":"klassExtensionDef","startIndex":1521,"stopIndex":1588,"fileName":"lively/Core.js","_subElements":[{"__isSmartRef__":true,"id":9789}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9790}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9789":{"name":"Loader","type":"propertyDef","startIndex":1545,"stopIndex":1583,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9790},"className":"Global","_owner":{"__isSmartRef__":true,"id":9788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9790":{"name":"default category","type":"categoryDef","startIndex":1543,"stopIndex":1585,"fileName":"lively/Core.js","_subElements":[{"__isSmartRef__":true,"id":9789}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9791":{"name":null,"type":"comment","startIndex":1589,"stopIndex":1636,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9792":{"name":"testModuleLoad","type":"functionDef","startIndex":1637,"stopIndex":2106,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9793":{"name":null,"type":"comment","startIndex":2107,"stopIndex":2107,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9794":{"name":null,"type":"unknown","startIndex":2108,"stopIndex":2138,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9795":{"name":null,"type":"comment","startIndex":2139,"stopIndex":2139,"fileName":"lively/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9796":{"target":{"__isSmartRef__":true,"id":9797},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/CrayonColors.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9797":{"name":"lively.CrayonColors","type":"moduleDef","startIndex":0,"stopIndex":2546,"fileName":"lively/CrayonColors.js","_subElements":[{"__isSmartRef__":true,"id":9798},{"__isSmartRef__":true,"id":9799},{"__isSmartRef__":true,"id":9800},{"__isSmartRef__":true,"id":9852}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9798":{"name":null,"type":"comment","startIndex":60,"stopIndex":60,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9799":{"name":"CrayonColors","type":"klassDef","startIndex":61,"stopIndex":93,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9800":{"name":"CrayonColors","type":"klassExtensionDef","startIndex":94,"stopIndex":2525,"fileName":"lively/CrayonColors.js","_subElements":[{"__isSmartRef__":true,"id":9801},{"__isSmartRef__":true,"id":9803},{"__isSmartRef__":true,"id":9804},{"__isSmartRef__":true,"id":9805},{"__isSmartRef__":true,"id":9806},{"__isSmartRef__":true,"id":9807},{"__isSmartRef__":true,"id":9808},{"__isSmartRef__":true,"id":9809},{"__isSmartRef__":true,"id":9810},{"__isSmartRef__":true,"id":9811},{"__isSmartRef__":true,"id":9812},{"__isSmartRef__":true,"id":9813},{"__isSmartRef__":true,"id":9814},{"__isSmartRef__":true,"id":9815},{"__isSmartRef__":true,"id":9816},{"__isSmartRef__":true,"id":9817},{"__isSmartRef__":true,"id":9818},{"__isSmartRef__":true,"id":9819},{"__isSmartRef__":true,"id":9820},{"__isSmartRef__":true,"id":9821},{"__isSmartRef__":true,"id":9822},{"__isSmartRef__":true,"id":9823},{"__isSmartRef__":true,"id":9824},{"__isSmartRef__":true,"id":9825},{"__isSmartRef__":true,"id":9826},{"__isSmartRef__":true,"id":9827},{"__isSmartRef__":true,"id":9828},{"__isSmartRef__":true,"id":9829},{"__isSmartRef__":true,"id":9830},{"__isSmartRef__":true,"id":9831},{"__isSmartRef__":true,"id":9832},{"__isSmartRef__":true,"id":9833},{"__isSmartRef__":true,"id":9834},{"__isSmartRef__":true,"id":9835},{"__isSmartRef__":true,"id":9836},{"__isSmartRef__":true,"id":9837},{"__isSmartRef__":true,"id":9838},{"__isSmartRef__":true,"id":9839},{"__isSmartRef__":true,"id":9840},{"__isSmartRef__":true,"id":9841},{"__isSmartRef__":true,"id":9842},{"__isSmartRef__":true,"id":9843},{"__isSmartRef__":true,"id":9844},{"__isSmartRef__":true,"id":9845},{"__isSmartRef__":true,"id":9846},{"__isSmartRef__":true,"id":9847},{"__isSmartRef__":true,"id":9848},{"__isSmartRef__":true,"id":9849},{"__isSmartRef__":true,"id":9850},{"__isSmartRef__":true,"id":9851}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9802}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9801":{"name":"colorTableNames","type":"propertyDef","startIndex":124,"stopIndex":557,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9802":{"name":"default category","type":"categoryDef","startIndex":122,"stopIndex":2522,"fileName":"lively/CrayonColors.js","_subElements":[{"__isSmartRef__":true,"id":9801},{"__isSmartRef__":true,"id":9803},{"__isSmartRef__":true,"id":9804},{"__isSmartRef__":true,"id":9805},{"__isSmartRef__":true,"id":9806},{"__isSmartRef__":true,"id":9807},{"__isSmartRef__":true,"id":9808},{"__isSmartRef__":true,"id":9809},{"__isSmartRef__":true,"id":9810},{"__isSmartRef__":true,"id":9811},{"__isSmartRef__":true,"id":9812},{"__isSmartRef__":true,"id":9813},{"__isSmartRef__":true,"id":9814},{"__isSmartRef__":true,"id":9815},{"__isSmartRef__":true,"id":9816},{"__isSmartRef__":true,"id":9817},{"__isSmartRef__":true,"id":9818},{"__isSmartRef__":true,"id":9819},{"__isSmartRef__":true,"id":9820},{"__isSmartRef__":true,"id":9821},{"__isSmartRef__":true,"id":9822},{"__isSmartRef__":true,"id":9823},{"__isSmartRef__":true,"id":9824},{"__isSmartRef__":true,"id":9825},{"__isSmartRef__":true,"id":9826},{"__isSmartRef__":true,"id":9827},{"__isSmartRef__":true,"id":9828},{"__isSmartRef__":true,"id":9829},{"__isSmartRef__":true,"id":9830},{"__isSmartRef__":true,"id":9831},{"__isSmartRef__":true,"id":9832},{"__isSmartRef__":true,"id":9833},{"__isSmartRef__":true,"id":9834},{"__isSmartRef__":true,"id":9835},{"__isSmartRef__":true,"id":9836},{"__isSmartRef__":true,"id":9837},{"__isSmartRef__":true,"id":9838},{"__isSmartRef__":true,"id":9839},{"__isSmartRef__":true,"id":9840},{"__isSmartRef__":true,"id":9841},{"__isSmartRef__":true,"id":9842},{"__isSmartRef__":true,"id":9843},{"__isSmartRef__":true,"id":9844},{"__isSmartRef__":true,"id":9845},{"__isSmartRef__":true,"id":9846},{"__isSmartRef__":true,"id":9847},{"__isSmartRef__":true,"id":9848},{"__isSmartRef__":true,"id":9849},{"__isSmartRef__":true,"id":9850},{"__isSmartRef__":true,"id":9851}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9803":{"name":"colorNames","type":"propertyDef","startIndex":559,"stopIndex":641,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9804":{"name":"aluminum","type":"propertyDef","startIndex":644,"stopIndex":685,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9805":{"name":"aqua","type":"propertyDef","startIndex":687,"stopIndex":721,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9806":{"name":"asparagus","type":"propertyDef","startIndex":723,"stopIndex":764,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9807":{"name":"banana","type":"propertyDef","startIndex":766,"stopIndex":804,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9808":{"name":"blueberry","type":"propertyDef","startIndex":806,"stopIndex":845,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9809":{"name":"bubblegum","type":"propertyDef","startIndex":847,"stopIndex":886,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9810":{"name":"cantaloupe","type":"propertyDef","startIndex":888,"stopIndex":928,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9811":{"name":"carnation","type":"propertyDef","startIndex":930,"stopIndex":971,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9812":{"name":"cayenne","type":"propertyDef","startIndex":973,"stopIndex":1010,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9813":{"name":"clover","type":"propertyDef","startIndex":1012,"stopIndex":1048,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9814":{"name":"eggplant","type":"propertyDef","startIndex":1050,"stopIndex":1090,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9815":{"name":"fern","type":"propertyDef","startIndex":1092,"stopIndex":1128,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9816":{"name":"flora","type":"propertyDef","startIndex":1130,"stopIndex":1167,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9817":{"name":"grape","type":"propertyDef","startIndex":1169,"stopIndex":1203,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9818":{"name":"honeydew","type":"propertyDef","startIndex":1205,"stopIndex":1245,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9819":{"name":"ice","type":"propertyDef","startIndex":1247,"stopIndex":1279,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9820":{"name":"iron","type":"propertyDef","startIndex":1281,"stopIndex":1319,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9821":{"name":"lavender","type":"propertyDef","startIndex":1321,"stopIndex":1361,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9822":{"name":"lead","type":"propertyDef","startIndex":1363,"stopIndex":1401,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9823":{"name":"lemon","type":"propertyDef","startIndex":1403,"stopIndex":1438,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9824":{"name":"licorice","type":"propertyDef","startIndex":1440,"stopIndex":1470,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9825":{"name":"lime","type":"propertyDef","startIndex":1472,"stopIndex":1506,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9826":{"name":"magenta","type":"propertyDef","startIndex":1508,"stopIndex":1541,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9827":{"name":"magnesium","type":"propertyDef","startIndex":1543,"stopIndex":1586,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9828":{"name":"maraschino","type":"propertyDef","startIndex":1588,"stopIndex":1622,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9829":{"name":"maroon","type":"propertyDef","startIndex":1624,"stopIndex":1662,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9830":{"name":"mercury","type":"propertyDef","startIndex":1664,"stopIndex":1705,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9831":{"name":"midnight","type":"propertyDef","startIndex":1707,"stopIndex":1747,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9832":{"name":"mocha","type":"propertyDef","startIndex":1749,"stopIndex":1786,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9833":{"name":"moss","type":"propertyDef","startIndex":1788,"stopIndex":1824,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9834":{"name":"nickel","type":"propertyDef","startIndex":1826,"stopIndex":1866,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9835":{"name":"ocean","type":"propertyDef","startIndex":1868,"stopIndex":1905,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9836":{"name":"orchid","type":"propertyDef","startIndex":1907,"stopIndex":1945,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9837":{"name":"plum","type":"propertyDef","startIndex":1947,"stopIndex":1983,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9838":{"name":"salmon","type":"propertyDef","startIndex":1985,"stopIndex":2023,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9839":{"name":"seafoam","type":"propertyDef","startIndex":2025,"stopIndex":2062,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9840":{"name":"silver","type":"propertyDef","startIndex":2064,"stopIndex":2104,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9841":{"name":"sky","type":"propertyDef","startIndex":2106,"stopIndex":2141,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9842":{"name":"snow","type":"propertyDef","startIndex":2143,"stopIndex":2175,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9843":{"name":"spindrift","type":"propertyDef","startIndex":2177,"stopIndex":2218,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9844":{"name":"spring","type":"propertyDef","startIndex":2220,"stopIndex":2241,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9845":{"name":"steel","type":"propertyDef","startIndex":2243,"stopIndex":2282,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9846":{"name":"strawberry","type":"propertyDef","startIndex":2284,"stopIndex":2323,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9847":{"name":"tangerine","type":"propertyDef","startIndex":2325,"stopIndex":2363,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9848":{"name":"teal","type":"propertyDef","startIndex":2365,"stopIndex":2400,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9849":{"name":"tin","type":"propertyDef","startIndex":2402,"stopIndex":2439,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9850":{"name":"tungsten","type":"propertyDef","startIndex":2441,"stopIndex":2483,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9851":{"name":"turquoise","type":"propertyDef","startIndex":2485,"stopIndex":2520,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9802},"className":"CrayonColors","_owner":{"__isSmartRef__":true,"id":9800},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9852":{"name":null,"type":"comment","startIndex":2526,"stopIndex":2527,"fileName":"lively/CrayonColors.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9853":{"target":{"__isSmartRef__":true,"id":9854},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Data.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9854":{"name":"lively.Data","type":"moduleDef","startIndex":1240,"stopIndex":6142,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9855},{"__isSmartRef__":true,"id":9856},{"__isSmartRef__":true,"id":9857},{"__isSmartRef__":true,"id":9862},{"__isSmartRef__":true,"id":9863},{"__isSmartRef__":true,"id":9867},{"__isSmartRef__":true,"id":9868},{"__isSmartRef__":true,"id":9869},{"__isSmartRef__":true,"id":9870},{"__isSmartRef__":true,"id":9882},{"__isSmartRef__":true,"id":9886}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9855":{"name":null,"type":"comment","startIndex":1319,"stopIndex":1335,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9856":{"name":null,"type":"unknown","startIndex":1336,"stopIndex":1798,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9857":{"name":"XPathEmulator","type":"klassDef","startIndex":1799,"stopIndex":2917,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9858},{"__isSmartRef__":true,"id":9860},{"__isSmartRef__":true,"id":9861}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9859}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9858":{"name":"initialize","type":"propertyDef","startIndex":1834,"stopIndex":1980,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9859},"className":"XPathEmulator","_owner":{"__isSmartRef__":true,"id":9857},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9859":{"name":"default category","type":"categoryDef","startIndex":1832,"stopIndex":2914,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9858},{"__isSmartRef__":true,"id":9860},{"__isSmartRef__":true,"id":9861}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9860":{"name":"evaluate","type":"propertyDef","startIndex":1983,"stopIndex":2724,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9859},"className":"XPathEmulator","_owner":{"__isSmartRef__":true,"id":9857},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9861":{"name":"createNSResolver","type":"propertyDef","startIndex":2727,"stopIndex":2912,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9859},"className":"XPathEmulator","_owner":{"__isSmartRef__":true,"id":9857},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9862":{"name":null,"type":"comment","startIndex":2918,"stopIndex":2934,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9863":{"name":"XPathEmulatorResult","type":"klassDef","startIndex":2935,"stopIndex":3975,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9864},{"__isSmartRef__":true,"id":9866}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":9865}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9864":{"name":"initialize","type":"propertyDef","startIndex":2976,"stopIndex":3158,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9865},"className":"XPathEmulatorResult","_owner":{"__isSmartRef__":true,"id":9863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9865":{"name":"default category","type":"categoryDef","startIndex":2974,"stopIndex":3972,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9864},{"__isSmartRef__":true,"id":9866}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9866":{"name":"iterateNext","type":"propertyDef","startIndex":3161,"stopIndex":3970,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9865},"className":"XPathEmulatorResult","_owner":{"__isSmartRef__":true,"id":9863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9867":{"name":null,"type":"comment","startIndex":3976,"stopIndex":3976,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9868":{"name":null,"type":"unknown","startIndex":3977,"stopIndex":4019,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9869":{"name":null,"type":"comment","startIndex":4020,"stopIndex":4020,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9870":{"name":"Query","type":"klassDef","startIndex":4021,"stopIndex":5911,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9871},{"__isSmartRef__":true,"id":9873},{"__isSmartRef__":true,"id":9874},{"__isSmartRef__":true,"id":9875},{"__isSmartRef__":true,"id":9876},{"__isSmartRef__":true,"id":9877},{"__isSmartRef__":true,"id":9878},{"__isSmartRef__":true,"id":9879},{"__isSmartRef__":true,"id":9880},{"__isSmartRef__":true,"id":9881}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"View","categories":[{"__isSmartRef__":true,"id":9872}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9871":{"name":"documentation","type":"propertyDef","startIndex":4047,"stopIndex":4099,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9872":{"name":"default category","type":"categoryDef","startIndex":4045,"stopIndex":5908,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9871},{"__isSmartRef__":true,"id":9873},{"__isSmartRef__":true,"id":9874},{"__isSmartRef__":true,"id":9875},{"__isSmartRef__":true,"id":9876},{"__isSmartRef__":true,"id":9877},{"__isSmartRef__":true,"id":9878},{"__isSmartRef__":true,"id":9879},{"__isSmartRef__":true,"id":9880},{"__isSmartRef__":true,"id":9881}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9873":{"name":"xpe","type":"propertyDef","startIndex":4102,"stopIndex":4231,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9874":{"name":"formals","type":"propertyDef","startIndex":4238,"stopIndex":4315,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9875":{"name":"initialize","type":"propertyDef","startIndex":4318,"stopIndex":4526,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9876":{"name":"establishContext","type":"propertyDef","startIndex":4529,"stopIndex":4808,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9877":{"name":"manualNSLookup","type":"propertyDef","startIndex":4811,"stopIndex":4951,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9878":{"name":"updateView","type":"propertyDef","startIndex":4955,"stopIndex":5157,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9879":{"name":"onContextNodeUpdate","type":"propertyDef","startIndex":5164,"stopIndex":5334,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9880":{"name":"findAll","type":"propertyDef","startIndex":5337,"stopIndex":5707,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9881":{"name":"findFirst","type":"propertyDef","startIndex":5710,"stopIndex":5905,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":9872},"className":"Query","_owner":{"__isSmartRef__":true,"id":9870},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9882":{"name":"Query","type":"klassExtensionDef","startIndex":5912,"stopIndex":6120,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9883},{"__isSmartRef__":true,"id":9885}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9884}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9883":{"name":"find","type":"propertyDef","startIndex":5935,"stopIndex":6023,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9884},"className":"Query","_owner":{"__isSmartRef__":true,"id":9882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9884":{"name":"default category","type":"categoryDef","startIndex":5933,"stopIndex":6117,"fileName":"lively/Data.js","_subElements":[{"__isSmartRef__":true,"id":9883},{"__isSmartRef__":true,"id":9885}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9885":{"name":"findAll","type":"propertyDef","startIndex":6026,"stopIndex":6115,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9884},"className":"Query","_owner":{"__isSmartRef__":true,"id":9882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9886":{"name":null,"type":"comment","startIndex":6121,"stopIndex":6122,"fileName":"lively/Data.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9887":{"target":{"__isSmartRef__":true,"id":9888},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/defaultconfig.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"9888":{"name":"lively/defaultconfig.js","type":"completeFileDef","startIndex":0,"stopIndex":16002,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9889},{"__isSmartRef__":true,"id":9890},{"__isSmartRef__":true,"id":9891},{"__isSmartRef__":true,"id":9892},{"__isSmartRef__":true,"id":9893},{"__isSmartRef__":true,"id":9894},{"__isSmartRef__":true,"id":9935},{"__isSmartRef__":true,"id":9936},{"__isSmartRef__":true,"id":9937},{"__isSmartRef__":true,"id":9938},{"__isSmartRef__":true,"id":9939},{"__isSmartRef__":true,"id":9940},{"__isSmartRef__":true,"id":9941},{"__isSmartRef__":true,"id":9942},{"__isSmartRef__":true,"id":9943},{"__isSmartRef__":true,"id":9944},{"__isSmartRef__":true,"id":9945},{"__isSmartRef__":true,"id":9946},{"__isSmartRef__":true,"id":9947},{"__isSmartRef__":true,"id":9948},{"__isSmartRef__":true,"id":9949},{"__isSmartRef__":true,"id":9950},{"__isSmartRef__":true,"id":9951},{"__isSmartRef__":true,"id":9968},{"__isSmartRef__":true,"id":9969},{"__isSmartRef__":true,"id":9972},{"__isSmartRef__":true,"id":9973},{"__isSmartRef__":true,"id":9992},{"__isSmartRef__":true,"id":9993},{"__isSmartRef__":true,"id":9994},{"__isSmartRef__":true,"id":9995},{"__isSmartRef__":true,"id":9996},{"__isSmartRef__":true,"id":9997},{"__isSmartRef__":true,"id":9998},{"__isSmartRef__":true,"id":9999},{"__isSmartRef__":true,"id":10000},{"__isSmartRef__":true,"id":10001},{"__isSmartRef__":true,"id":10002},{"__isSmartRef__":true,"id":10003},{"__isSmartRef__":true,"id":10004},{"__isSmartRef__":true,"id":10005},{"__isSmartRef__":true,"id":10006},{"__isSmartRef__":true,"id":10007},{"__isSmartRef__":true,"id":10008},{"__isSmartRef__":true,"id":10009},{"__isSmartRef__":true,"id":10010},{"__isSmartRef__":true,"id":10011},{"__isSmartRef__":true,"id":10012},{"__isSmartRef__":true,"id":10013},{"__isSmartRef__":true,"id":10014},{"__isSmartRef__":true,"id":10015},{"__isSmartRef__":true,"id":10016},{"__isSmartRef__":true,"id":10017},{"__isSmartRef__":true,"id":10018},{"__isSmartRef__":true,"id":10019},{"__isSmartRef__":true,"id":10020},{"__isSmartRef__":true,"id":10021},{"__isSmartRef__":true,"id":10022},{"__isSmartRef__":true,"id":10023},{"__isSmartRef__":true,"id":10024},{"__isSmartRef__":true,"id":10025},{"__isSmartRef__":true,"id":10026},{"__isSmartRef__":true,"id":10027},{"__isSmartRef__":true,"id":10028},{"__isSmartRef__":true,"id":10029},{"__isSmartRef__":true,"id":10030},{"__isSmartRef__":true,"id":10031}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9889":{"name":null,"type":"comment","startIndex":0,"stopIndex":1357,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9890":{"name":null,"type":"unknown","startIndex":1358,"stopIndex":3574,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9891":{"name":null,"type":"comment","startIndex":3575,"stopIndex":6474,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9892":{"name":null,"type":"unknown","startIndex":6475,"stopIndex":6523,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9893":{"name":"Config","type":"objectDef","startIndex":6524,"stopIndex":6540,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9894":{"name":"Config","type":"klassExtensionDef","startIndex":6541,"stopIndex":10360,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9895},{"__isSmartRef__":true,"id":9897},{"__isSmartRef__":true,"id":9898},{"__isSmartRef__":true,"id":9899},{"__isSmartRef__":true,"id":9900},{"__isSmartRef__":true,"id":9901},{"__isSmartRef__":true,"id":9902},{"__isSmartRef__":true,"id":9903},{"__isSmartRef__":true,"id":9904},{"__isSmartRef__":true,"id":9905},{"__isSmartRef__":true,"id":9906},{"__isSmartRef__":true,"id":9907},{"__isSmartRef__":true,"id":9908},{"__isSmartRef__":true,"id":9909},{"__isSmartRef__":true,"id":9910},{"__isSmartRef__":true,"id":9911},{"__isSmartRef__":true,"id":9912},{"__isSmartRef__":true,"id":9913},{"__isSmartRef__":true,"id":9914},{"__isSmartRef__":true,"id":9915},{"__isSmartRef__":true,"id":9916},{"__isSmartRef__":true,"id":9917},{"__isSmartRef__":true,"id":9918},{"__isSmartRef__":true,"id":9919},{"__isSmartRef__":true,"id":9920},{"__isSmartRef__":true,"id":9921},{"__isSmartRef__":true,"id":9922},{"__isSmartRef__":true,"id":9923},{"__isSmartRef__":true,"id":9924},{"__isSmartRef__":true,"id":9925},{"__isSmartRef__":true,"id":9926},{"__isSmartRef__":true,"id":9927},{"__isSmartRef__":true,"id":9928},{"__isSmartRef__":true,"id":9929},{"__isSmartRef__":true,"id":9930},{"__isSmartRef__":true,"id":9931},{"__isSmartRef__":true,"id":9932},{"__isSmartRef__":true,"id":9933},{"__isSmartRef__":true,"id":9934}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9896}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9895":{"name":"shiftDragForDup","type":"propertyDef","startIndex":6566,"stopIndex":6649,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9896":{"name":"default category","type":"categoryDef","startIndex":6563,"stopIndex":10357,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9895},{"__isSmartRef__":true,"id":9897},{"__isSmartRef__":true,"id":9898},{"__isSmartRef__":true,"id":9899},{"__isSmartRef__":true,"id":9900},{"__isSmartRef__":true,"id":9901},{"__isSmartRef__":true,"id":9902},{"__isSmartRef__":true,"id":9903},{"__isSmartRef__":true,"id":9904},{"__isSmartRef__":true,"id":9905},{"__isSmartRef__":true,"id":9906},{"__isSmartRef__":true,"id":9907},{"__isSmartRef__":true,"id":9908},{"__isSmartRef__":true,"id":9909},{"__isSmartRef__":true,"id":9910},{"__isSmartRef__":true,"id":9911},{"__isSmartRef__":true,"id":9912},{"__isSmartRef__":true,"id":9913},{"__isSmartRef__":true,"id":9914},{"__isSmartRef__":true,"id":9915},{"__isSmartRef__":true,"id":9916},{"__isSmartRef__":true,"id":9917},{"__isSmartRef__":true,"id":9918},{"__isSmartRef__":true,"id":9919},{"__isSmartRef__":true,"id":9920},{"__isSmartRef__":true,"id":9921},{"__isSmartRef__":true,"id":9922},{"__isSmartRef__":true,"id":9923},{"__isSmartRef__":true,"id":9924},{"__isSmartRef__":true,"id":9925},{"__isSmartRef__":true,"id":9926},{"__isSmartRef__":true,"id":9927},{"__isSmartRef__":true,"id":9928},{"__isSmartRef__":true,"id":9929},{"__isSmartRef__":true,"id":9930},{"__isSmartRef__":true,"id":9931},{"__isSmartRef__":true,"id":9932},{"__isSmartRef__":true,"id":9933},{"__isSmartRef__":true,"id":9934}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9897":{"name":"proxyURL","type":"propertyDef","startIndex":6656,"stopIndex":6730,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9898":{"name":"createNewWorld","type":"propertyDef","startIndex":6733,"stopIndex":6872,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9899":{"name":"skipMostExamples","type":"propertyDef","startIndex":6875,"stopIndex":6943,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9900":{"name":"skipAllExamples","type":"propertyDef","startIndex":6945,"stopIndex":6972,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9901":{"name":"showCurveExample","type":"propertyDef","startIndex":6974,"stopIndex":7001,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9902":{"name":"showGridDemo","type":"propertyDef","startIndex":7003,"stopIndex":7026,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9903":{"name":"showThumbnail","type":"propertyDef","startIndex":7033,"stopIndex":7103,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9904":{"name":"suppressBalloonHelp","type":"propertyDef","startIndex":7105,"stopIndex":7134,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9905":{"name":"usePieMenus","type":"propertyDef","startIndex":7136,"stopIndex":7170,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9906":{"name":"showNetworkExamples","type":"propertyDef","startIndex":7177,"stopIndex":7280,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9907":{"name":"ignoreAdvice","type":"propertyDef","startIndex":7283,"stopIndex":7440,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9908":{"name":"fontMetricsFromHTML","type":"propertyDef","startIndex":7443,"stopIndex":7539,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9909":{"name":"fontMetricsFromSVG","type":"propertyDef","startIndex":7542,"stopIndex":7607,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9910":{"name":"fakeFontMetrics","type":"propertyDef","startIndex":7610,"stopIndex":7772,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9911":{"name":"useTransformAPI","type":"propertyDef","startIndex":7775,"stopIndex":7891,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9912":{"name":"useGetTransformToElement","type":"propertyDef","startIndex":7895,"stopIndex":8160,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9913":{"name":"useDropShadow","type":"propertyDef","startIndex":8163,"stopIndex":8285,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9914":{"name":"suspendScriptsOnWorldExit","type":"propertyDef","startIndex":8288,"stopIndex":8551,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9915":{"name":"nullMoveAfterTicks","type":"propertyDef","startIndex":8554,"stopIndex":8807,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9916":{"name":"showLivelyConsole","type":"propertyDef","startIndex":8810,"stopIndex":8865,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9917":{"name":"suppressWebStoreCaching","type":"propertyDef","startIndex":8868,"stopIndex":8946,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9918":{"name":"showMostTyping","type":"propertyDef","startIndex":8949,"stopIndex":9040,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9919":{"name":"showAllTyping","type":"propertyDef","startIndex":9043,"stopIndex":9112,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9920":{"name":"useMetaAsCommand","type":"propertyDef","startIndex":9141,"stopIndex":9241,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9921":{"name":"askBeforeQuit","type":"propertyDef","startIndex":9244,"stopIndex":9312,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9922":{"name":"debugExtras","type":"propertyDef","startIndex":9319,"stopIndex":9382,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9923":{"name":"showGrabHalo","type":"propertyDef","startIndex":9385,"stopIndex":9480,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9924":{"name":"useShadowMorphs","type":"propertyDef","startIndex":9482,"stopIndex":9507,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9925":{"name":"loadSerializedSubworlds","type":"propertyDef","startIndex":9510,"stopIndex":9615,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9926":{"name":"personalServerPort","type":"propertyDef","startIndex":9658,"stopIndex":9804,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9927":{"name":"mainDelay","type":"propertyDef","startIndex":9807,"stopIndex":9870,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9928":{"name":"useStyling","type":"propertyDef","startIndex":9873,"stopIndex":9944,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9929":{"name":"verboseImport","type":"propertyDef","startIndex":9947,"stopIndex":9971,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9930":{"name":"selfConnect","type":"propertyDef","startIndex":9974,"stopIndex":10118,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9931":{"name":"suppressClipboardHack","type":"propertyDef","startIndex":10120,"stopIndex":10152,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9932":{"name":"suppressDefaultMouseBehavior","type":"propertyDef","startIndex":10155,"stopIndex":10275,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9933":{"name":"resizeScreenToWorldBounds","type":"propertyDef","startIndex":10278,"stopIndex":10314,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9934":{"name":"changeLocationOnSaveWorldAs","type":"propertyDef","startIndex":10317,"stopIndex":10355,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9896},"className":"Config","_owner":{"__isSmartRef__":true,"id":9894},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9935":{"name":null,"type":"comment","startIndex":10361,"stopIndex":10547,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9936":{"name":"showClock","type":"propertyDef","startIndex":10548,"stopIndex":10572,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9937":{"name":"showStar","type":"propertyDef","startIndex":10573,"stopIndex":10596,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9938":{"name":"spinningStar","type":"propertyDef","startIndex":10597,"stopIndex":10624,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9939":{"name":"showHilbertFun","type":"propertyDef","startIndex":10625,"stopIndex":10654,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9940":{"name":"showPenScript","type":"propertyDef","startIndex":10655,"stopIndex":10683,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9941":{"name":"showTester","type":"propertyDef","startIndex":10684,"stopIndex":10709,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9942":{"name":"showBitmap","type":"propertyDef","startIndex":10710,"stopIndex":10736,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9943":{"name":"showMap","type":"propertyDef","startIndex":10737,"stopIndex":10801,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9944":{"name":"showKaleidoscope","type":"propertyDef","startIndex":10802,"stopIndex":10875,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9945":{"name":"showSampleMorphs","type":"propertyDef","startIndex":10876,"stopIndex":10907,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9946":{"name":"showTextSamples","type":"propertyDef","startIndex":10908,"stopIndex":10938,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9947":{"name":"showSystemBrowser","type":"propertyDef","startIndex":10939,"stopIndex":10972,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9948":{"name":null,"type":"comment","startIndex":10973,"stopIndex":11091,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9949":{"name":"random","type":"propertyDef","startIndex":11092,"stopIndex":11145,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9950":{"name":null,"type":"comment","startIndex":11146,"stopIndex":11168,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9951":{"name":"Config","type":"klassExtensionDef","startIndex":11169,"stopIndex":12238,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9952},{"__isSmartRef__":true,"id":9954},{"__isSmartRef__":true,"id":9955},{"__isSmartRef__":true,"id":9956},{"__isSmartRef__":true,"id":9957},{"__isSmartRef__":true,"id":9958},{"__isSmartRef__":true,"id":9959},{"__isSmartRef__":true,"id":9960},{"__isSmartRef__":true,"id":9961},{"__isSmartRef__":true,"id":9962},{"__isSmartRef__":true,"id":9963},{"__isSmartRef__":true,"id":9964},{"__isSmartRef__":true,"id":9965},{"__isSmartRef__":true,"id":9966},{"__isSmartRef__":true,"id":9967}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9953}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9952":{"name":"showClipMorph","type":"propertyDef","startIndex":11193,"stopIndex":11257,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9953":{"name":"default category","type":"categoryDef","startIndex":11191,"stopIndex":12235,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9952},{"__isSmartRef__":true,"id":9954},{"__isSmartRef__":true,"id":9955},{"__isSmartRef__":true,"id":9956},{"__isSmartRef__":true,"id":9957},{"__isSmartRef__":true,"id":9958},{"__isSmartRef__":true,"id":9959},{"__isSmartRef__":true,"id":9960},{"__isSmartRef__":true,"id":9961},{"__isSmartRef__":true,"id":9962},{"__isSmartRef__":true,"id":9963},{"__isSmartRef__":true,"id":9964},{"__isSmartRef__":true,"id":9965},{"__isSmartRef__":true,"id":9966},{"__isSmartRef__":true,"id":9967}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9954":{"name":"show3DLogo","type":"propertyDef","startIndex":11259,"stopIndex":11320,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9955":{"name":"showAsteroids","type":"propertyDef","startIndex":11322,"stopIndex":11408,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9956":{"name":"showEngine","type":"propertyDef","startIndex":11410,"stopIndex":11471,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9957":{"name":"showIcon","type":"propertyDef","startIndex":11473,"stopIndex":11532,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9958":{"name":"showWeather","type":"propertyDef","startIndex":11534,"stopIndex":11596,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9959":{"name":"showStocks","type":"propertyDef","startIndex":11598,"stopIndex":11659,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9960":{"name":"showCanvasScape","type":"propertyDef","startIndex":11661,"stopIndex":11749,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9961":{"name":"showRSSReader","type":"propertyDef","startIndex":11751,"stopIndex":11815,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9962":{"name":"showSquiggle","type":"propertyDef","startIndex":11817,"stopIndex":11880,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9963":{"name":"showWebStore","type":"propertyDef","startIndex":11882,"stopIndex":11969,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9964":{"name":"showVideo","type":"propertyDef","startIndex":11971,"stopIndex":12053,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9965":{"name":"showInnerWorld","type":"propertyDef","startIndex":12055,"stopIndex":12093,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9966":{"name":"showSlideWorld","type":"propertyDef","startIndex":12094,"stopIndex":12147,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9967":{"name":"showDeveloperWorld","type":"propertyDef","startIndex":12148,"stopIndex":12205,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9953},"className":"Config","_owner":{"__isSmartRef__":true,"id":9951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9968":{"name":null,"type":"comment","startIndex":12239,"stopIndex":12239,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9969":{"name":"Config","type":"klassExtensionDef","startIndex":12240,"stopIndex":12404,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9970}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9971}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9970":{"name":"getDocumentDirectory","type":"propertyDef","startIndex":12264,"stopIndex":12399,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9971},"className":"Config","_owner":{"__isSmartRef__":true,"id":9969},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9971":{"name":"default category","type":"categoryDef","startIndex":12262,"stopIndex":12401,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9970}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9972":{"name":null,"type":"comment","startIndex":12405,"stopIndex":12405,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9973":{"name":"Config","type":"klassExtensionDef","startIndex":12406,"stopIndex":13492,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9974},{"__isSmartRef__":true,"id":9976},{"__isSmartRef__":true,"id":9977},{"__isSmartRef__":true,"id":9978},{"__isSmartRef__":true,"id":9979},{"__isSmartRef__":true,"id":9980},{"__isSmartRef__":true,"id":9981},{"__isSmartRef__":true,"id":9982},{"__isSmartRef__":true,"id":9983},{"__isSmartRef__":true,"id":9984},{"__isSmartRef__":true,"id":9985},{"__isSmartRef__":true,"id":9986},{"__isSmartRef__":true,"id":9987},{"__isSmartRef__":true,"id":9988},{"__isSmartRef__":true,"id":9989},{"__isSmartRef__":true,"id":9990},{"__isSmartRef__":true,"id":9991}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":9975}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9974":{"name":"alignToGridSpace","type":"propertyDef","startIndex":12430,"stopIndex":12469,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9975":{"name":"default category","type":"categoryDef","startIndex":12428,"stopIndex":13489,"fileName":"lively/defaultconfig.js","_subElements":[{"__isSmartRef__":true,"id":9974},{"__isSmartRef__":true,"id":9976},{"__isSmartRef__":true,"id":9977},{"__isSmartRef__":true,"id":9978},{"__isSmartRef__":true,"id":9979},{"__isSmartRef__":true,"id":9980},{"__isSmartRef__":true,"id":9981},{"__isSmartRef__":true,"id":9982},{"__isSmartRef__":true,"id":9983},{"__isSmartRef__":true,"id":9984},{"__isSmartRef__":true,"id":9985},{"__isSmartRef__":true,"id":9986},{"__isSmartRef__":true,"id":9987},{"__isSmartRef__":true,"id":9988},{"__isSmartRef__":true,"id":9989},{"__isSmartRef__":true,"id":9990},{"__isSmartRef__":true,"id":9991}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9976":{"name":"ballonHelpDelay","type":"propertyDef","startIndex":12470,"stopIndex":12564,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9977":{"name":"silentFailOnWrapperClassNotFound","type":"propertyDef","startIndex":12566,"stopIndex":12608,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9978":{"name":"showFabrikComponentBox","type":"propertyDef","startIndex":12610,"stopIndex":12657,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9979":{"name":"showFahrenheitCelsiusExample","type":"propertyDef","startIndex":12659,"stopIndex":12698,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9980":{"name":"showTextListExample","type":"propertyDef","startIndex":12700,"stopIndex":12730,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9981":{"name":"openFabrikBrowserExample","type":"propertyDef","startIndex":12732,"stopIndex":12767,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9982":{"name":"showWikiNavigator","type":"propertyDef","startIndex":12769,"stopIndex":12808,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9983":{"name":"loadTests","type":"propertyDef","startIndex":12810,"stopIndex":12840,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9984":{"name":"showTesterRunner","type":"propertyDef","startIndex":12841,"stopIndex":12982,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9985":{"name":"modulesBeforeChanges","type":"propertyDef","startIndex":12984,"stopIndex":13045,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9986":{"name":"modulesBeforeWorldLoad","type":"propertyDef","startIndex":13046,"stopIndex":13150,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9987":{"name":"modulesOnWorldLoad","type":"propertyDef","startIndex":13151,"stopIndex":13210,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9988":{"name":"codeBase","type":"propertyDef","startIndex":13211,"stopIndex":13347,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9989":{"name":"disableScriptCaching","type":"propertyDef","startIndex":13349,"stopIndex":13380,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9990":{"name":"defaultDisplayTheme","type":"propertyDef","startIndex":13382,"stopIndex":13415,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9991":{"name":"hideSystemCursor","type":"propertyDef","startIndex":13417,"stopIndex":13487,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":9975},"className":"Config","_owner":{"__isSmartRef__":true,"id":9973},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9992":{"name":null,"type":"comment","startIndex":13493,"stopIndex":13493,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9993":{"name":"onWindowResizeUpdateWorldBounds","type":"propertyDef","startIndex":13494,"stopIndex":13540,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9994":{"name":"disableNoConsoleWarning","type":"propertyDef","startIndex":13541,"stopIndex":13580,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9995":{"name":null,"type":"comment","startIndex":13581,"stopIndex":13927,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9996":{"name":null,"type":"unknown","startIndex":13928,"stopIndex":14204,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9997":{"name":"confirmNavigation","type":"propertyDef","startIndex":14205,"stopIndex":14295,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9998":{"name":"useAltAsCommand","type":"propertyDef","startIndex":14296,"stopIndex":14403,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"9999":{"name":"pageNavigationName","type":"propertyDef","startIndex":14404,"stopIndex":14441,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10000":{"name":"pageNavigationWithKeys","type":"propertyDef","startIndex":14442,"stopIndex":14502,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10001":{"name":"showPageNumber","type":"propertyDef","startIndex":14503,"stopIndex":14532,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10002":{"name":null,"type":"comment","startIndex":14533,"stopIndex":14533,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10003":{"name":"ignoreLoadingErrors","type":"propertyDef","startIndex":14534,"stopIndex":14568,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10004":{"name":"touchBeMouse","type":"propertyDef","startIndex":14569,"stopIndex":14609,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10005":{"name":"useFlattenedHTMLRenderingLayer","type":"propertyDef","startIndex":14610,"stopIndex":14654,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10006":{"name":"useDelayedHTMLRendering","type":"propertyDef","startIndex":14655,"stopIndex":14749,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10007":{"name":"couchDBURL","type":"propertyDef","startIndex":14750,"stopIndex":14842,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10008":{"name":"defaultCodeDB","type":"propertyDef","startIndex":14843,"stopIndex":14876,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10009":{"name":"wikiRepoUrl","type":"propertyDef","startIndex":14877,"stopIndex":14903,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10010":{"name":null,"type":"comment","startIndex":14904,"stopIndex":15010,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10011":{"name":"serverInvokedTest","type":"propertyDef","startIndex":15011,"stopIndex":15044,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10012":{"name":null,"type":"comment","startIndex":15045,"stopIndex":15045,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10013":{"name":"ignoreClassNotFound","type":"propertyDef","startIndex":15046,"stopIndex":15194,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10014":{"name":"forceHTML","type":"propertyDef","startIndex":15195,"stopIndex":15220,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10015":{"name":null,"type":"comment","startIndex":15221,"stopIndex":15221,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10016":{"name":"loadUserConfig","type":"propertyDef","startIndex":15222,"stopIndex":15354,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10017":{"name":"keepSerializerIds","type":"propertyDef","startIndex":15355,"stopIndex":15388,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10018":{"name":"useOfflineStorage","type":"propertyDef","startIndex":15389,"stopIndex":15422,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10019":{"name":null,"type":"comment","startIndex":15423,"stopIndex":15423,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10020":{"name":"showModuleDefStack","type":"propertyDef","startIndex":15424,"stopIndex":15507,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10021":{"name":"debugConnect","type":"propertyDef","startIndex":15508,"stopIndex":15607,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10022":{"name":"userNameURL","type":"propertyDef","startIndex":15608,"stopIndex":15705,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10023":{"name":null,"type":"comment","startIndex":15706,"stopIndex":15706,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10024":{"name":"clickOnLineHack","type":"propertyDef","startIndex":15707,"stopIndex":15737,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10025":{"name":"useSoftTabs","type":"propertyDef","startIndex":15738,"stopIndex":15764,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10026":{"name":"disableSyntaxHighlighting","type":"propertyDef","startIndex":15765,"stopIndex":15806,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10027":{"name":null,"type":"comment","startIndex":15807,"stopIndex":15807,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10028":{"name":"handleOnCapture","type":"propertyDef","startIndex":15808,"stopIndex":15838,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10029":{"name":null,"type":"comment","startIndex":15839,"stopIndex":15909,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10030":{"name":"copDynamicInlining","type":"propertyDef","startIndex":15910,"stopIndex":15944,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10031":{"name":null,"type":"unknown","startIndex":15945,"stopIndex":16002,"fileName":"lively/defaultconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10032":{"target":{"__isSmartRef__":true,"id":10033},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/demofx.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"10033":{"name":"lively/demofx.js","type":"completeFileDef","startIndex":0,"stopIndex":29369,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10034}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10034":{"name":").module('lively.demofx'","type":"usingDef","startIndex":0,"stopIndex":null,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10035},{"__isSmartRef__":true,"id":10036},{"__isSmartRef__":true,"id":10040},{"__isSmartRef__":true,"id":10041},{"__isSmartRef__":true,"id":10050},{"__isSmartRef__":true,"id":10051},{"__isSmartRef__":true,"id":10072},{"__isSmartRef__":true,"id":10073},{"__isSmartRef__":true,"id":10078},{"__isSmartRef__":true,"id":10079},{"__isSmartRef__":true,"id":10082},{"__isSmartRef__":true,"id":10083},{"__isSmartRef__":true,"id":10084},{"__isSmartRef__":true,"id":10085},{"__isSmartRef__":true,"id":10086},{"__isSmartRef__":true,"id":10087},{"__isSmartRef__":true,"id":10088},{"__isSmartRef__":true,"id":10093},{"__isSmartRef__":true,"id":10094},{"__isSmartRef__":true,"id":10110},{"__isSmartRef__":true,"id":10111},{"__isSmartRef__":true,"id":10128},{"__isSmartRef__":true,"id":10129},{"__isSmartRef__":true,"id":10130},{"__isSmartRef__":true,"id":10131}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10035":{"name":null,"type":"comment","startIndex":50,"stopIndex":54,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10036":{"name":"lively.demofx.FXMorph","type":"klassDef","startIndex":55,"stopIndex":415,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10037},{"__isSmartRef__":true,"id":10039}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10038}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10037":{"name":"content","type":"propertyDef","startIndex":97,"stopIndex":109,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10038},"className":"lively.demofx.FXMorph","_owner":{"__isSmartRef__":true,"id":10036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10038":{"name":"default category","type":"categoryDef","startIndex":95,"stopIndex":412,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10037},{"__isSmartRef__":true,"id":10039}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10039":{"name":"initialize","type":"propertyDef","startIndex":111,"stopIndex":411,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10038},"className":"lively.demofx.FXMorph","_owner":{"__isSmartRef__":true,"id":10036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10040":{"name":null,"type":"comment","startIndex":416,"stopIndex":420,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10041":{"name":"","type":"usingDef","startIndex":421,"stopIndex":1776,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10042},{"__isSmartRef__":true,"id":10043},{"__isSmartRef__":true,"id":10044}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10042":{"name":null,"type":"unknown","startIndex":450,"stopIndex":465,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10043":{"name":null,"type":"comment","startIndex":466,"stopIndex":471,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10044":{"name":"lively.demofx.CloseButton","type":"klassDef","startIndex":472,"stopIndex":1768,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10045},{"__isSmartRef__":true,"id":10047},{"__isSmartRef__":true,"id":10048},{"__isSmartRef__":true,"id":10049}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.demofx.FXMorph","categories":[{"__isSmartRef__":true,"id":10046}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10045":{"name":"formals","type":"propertyDef","startIndex":534,"stopIndex":554,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10046},"className":"lively.demofx.CloseButton","_owner":{"__isSmartRef__":true,"id":10044},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10046":{"name":"default category","type":"categoryDef","startIndex":532,"stopIndex":1765,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10045},{"__isSmartRef__":true,"id":10047},{"__isSmartRef__":true,"id":10048},{"__isSmartRef__":true,"id":10049}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10047":{"name":"content","type":"propertyDef","startIndex":556,"stopIndex":1613,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10046},"className":"lively.demofx.CloseButton","_owner":{"__isSmartRef__":true,"id":10044},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10048":{"name":"onMouseOver","type":"propertyDef","startIndex":1617,"stopIndex":1680,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10046},"className":"lively.demofx.CloseButton","_owner":{"__isSmartRef__":true,"id":10044},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10049":{"name":"onMouseOut","type":"propertyDef","startIndex":1683,"stopIndex":1764,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10046},"className":"lively.demofx.CloseButton","_owner":{"__isSmartRef__":true,"id":10044},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10050":{"name":null,"type":"comment","startIndex":1777,"stopIndex":1781,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10051":{"name":"","type":"usingDef","startIndex":1782,"stopIndex":4581,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10052},{"__isSmartRef__":true,"id":10053},{"__isSmartRef__":true,"id":10054},{"__isSmartRef__":true,"id":10055},{"__isSmartRef__":true,"id":10056},{"__isSmartRef__":true,"id":10057},{"__isSmartRef__":true,"id":10058},{"__isSmartRef__":true,"id":10059},{"__isSmartRef__":true,"id":10060}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10052":{"name":null,"type":"unknown","startIndex":1823,"stopIndex":1843,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10053":{"name":null,"type":"comment","startIndex":1844,"stopIndex":1847,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10054":{"name":null,"type":"unknown","startIndex":1848,"stopIndex":1869,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10055":{"name":null,"type":"comment","startIndex":1870,"stopIndex":1873,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10056":{"name":null,"type":"unknown","startIndex":1874,"stopIndex":1894,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10057":{"name":null,"type":"comment","startIndex":1895,"stopIndex":1898,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10058":{"name":null,"type":"unknown","startIndex":1899,"stopIndex":1919,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10059":{"name":null,"type":"comment","startIndex":1920,"stopIndex":1924,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10060":{"name":"lively.demofx.SliderThumb","type":"klassDef","startIndex":1925,"stopIndex":4573,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10061},{"__isSmartRef__":true,"id":10063},{"__isSmartRef__":true,"id":10064},{"__isSmartRef__":true,"id":10065},{"__isSmartRef__":true,"id":10066},{"__isSmartRef__":true,"id":10067},{"__isSmartRef__":true,"id":10068},{"__isSmartRef__":true,"id":10069},{"__isSmartRef__":true,"id":10070},{"__isSmartRef__":true,"id":10071}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.demofx.FXMorph","categories":[{"__isSmartRef__":true,"id":10062}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10061":{"name":"formals","type":"propertyDef","startIndex":1987,"stopIndex":2073,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10062":{"name":"default category","type":"categoryDef","startIndex":1985,"stopIndex":4570,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10061},{"__isSmartRef__":true,"id":10063},{"__isSmartRef__":true,"id":10064},{"__isSmartRef__":true,"id":10065},{"__isSmartRef__":true,"id":10066},{"__isSmartRef__":true,"id":10067},{"__isSmartRef__":true,"id":10068},{"__isSmartRef__":true,"id":10069},{"__isSmartRef__":true,"id":10070},{"__isSmartRef__":true,"id":10071}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10063":{"name":"content","type":"propertyDef","startIndex":2077,"stopIndex":3174,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10064":{"name":"initialize","type":"propertyDef","startIndex":3178,"stopIndex":3300,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10065":{"name":"handlesMouseDown","type":"propertyDef","startIndex":3304,"stopIndex":3337,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10066":{"name":"onMouseDown","type":"propertyDef","startIndex":3342,"stopIndex":3466,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10067":{"name":"onMouseMove","type":"propertyDef","startIndex":3470,"stopIndex":4039,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10068":{"name":"on_ValueUpdate","type":"propertyDef","startIndex":4042,"stopIndex":4219,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10069":{"name":"onAdjValueUpdate","type":"propertyDef","startIndex":4222,"stopIndex":4367,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10070":{"name":"onWidthUpdate","type":"propertyDef","startIndex":4371,"stopIndex":4476,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10071":{"name":"on_ThumbValueUpdate","type":"propertyDef","startIndex":4479,"stopIndex":4569,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10062},"className":"lively.demofx.SliderThumb","_owner":{"__isSmartRef__":true,"id":10060},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10072":{"name":null,"type":"comment","startIndex":4582,"stopIndex":4586,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10073":{"name":"lively.demofx.Slider","type":"klassDef","startIndex":4587,"stopIndex":5828,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10074},{"__isSmartRef__":true,"id":10076},{"__isSmartRef__":true,"id":10077}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10075}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10074":{"name":"formals","type":"propertyDef","startIndex":4628,"stopIndex":4647,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10075},"className":"lively.demofx.Slider","_owner":{"__isSmartRef__":true,"id":10073},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10075":{"name":"default category","type":"categoryDef","startIndex":4626,"stopIndex":5825,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10074},{"__isSmartRef__":true,"id":10076},{"__isSmartRef__":true,"id":10077}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10076":{"name":"content","type":"propertyDef","startIndex":4649,"stopIndex":5493,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10075},"className":"lively.demofx.Slider","_owner":{"__isSmartRef__":true,"id":10073},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10077":{"name":"initialize","type":"propertyDef","startIndex":5495,"stopIndex":5824,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10075},"className":"lively.demofx.Slider","_owner":{"__isSmartRef__":true,"id":10073},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10078":{"name":null,"type":"comment","startIndex":5829,"stopIndex":5833,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10079":{"name":"lively.demofx.Slider","type":"klassExtensionDef","startIndex":5834,"stopIndex":6074,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10080}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":10081}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10080":{"name":"fromLiteral","type":"propertyDef","startIndex":5872,"stopIndex":6070,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10081},"className":"lively.demofx.Slider","_owner":{"__isSmartRef__":true,"id":10079},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10081":{"name":"default category","type":"categoryDef","startIndex":5870,"stopIndex":6071,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10080}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10082":{"name":null,"type":"comment","startIndex":6075,"stopIndex":6084,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10083":{"name":null,"type":"unknown","startIndex":6085,"stopIndex":6139,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10084":{"name":null,"type":"unknown","startIndex":6140,"stopIndex":6169,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10085":{"name":null,"type":"comment","startIndex":6170,"stopIndex":6173,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10086":{"name":null,"type":"unknown","startIndex":6174,"stopIndex":6204,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10087":{"name":null,"type":"comment","startIndex":6205,"stopIndex":6213,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10088":{"name":"lively.demofx.Canvas","type":"klassDef","startIndex":6214,"stopIndex":8358,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10089},{"__isSmartRef__":true,"id":10091},{"__isSmartRef__":true,"id":10092}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.demofx.FXMorph","categories":[{"__isSmartRef__":true,"id":10090}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10089":{"name":"formals","type":"propertyDef","startIndex":6271,"stopIndex":6437,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10090},"className":"lively.demofx.Canvas","_owner":{"__isSmartRef__":true,"id":10088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10090":{"name":"default category","type":"categoryDef","startIndex":6269,"stopIndex":8355,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10089},{"__isSmartRef__":true,"id":10091},{"__isSmartRef__":true,"id":10092}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10091":{"name":"content","type":"propertyDef","startIndex":6439,"stopIndex":7962,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10090},"className":"lively.demofx.Canvas","_owner":{"__isSmartRef__":true,"id":10088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10092":{"name":"onImageUpdate","type":"propertyDef","startIndex":7965,"stopIndex":8354,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10090},"className":"lively.demofx.Canvas","_owner":{"__isSmartRef__":true,"id":10088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10093":{"name":null,"type":"comment","startIndex":8359,"stopIndex":8363,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10094":{"name":"","type":"usingDef","startIndex":8364,"stopIndex":10836,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10095},{"__isSmartRef__":true,"id":10096},{"__isSmartRef__":true,"id":10097},{"__isSmartRef__":true,"id":10098},{"__isSmartRef__":true,"id":10099},{"__isSmartRef__":true,"id":10100},{"__isSmartRef__":true,"id":10101}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10095":{"name":null,"type":"unknown","startIndex":8393,"stopIndex":8414,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10096":{"name":null,"type":"comment","startIndex":8415,"stopIndex":8418,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10097":{"name":null,"type":"unknown","startIndex":8419,"stopIndex":8439,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10098":{"name":null,"type":"comment","startIndex":8440,"stopIndex":8443,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10099":{"name":null,"type":"unknown","startIndex":8444,"stopIndex":8464,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10100":{"name":null,"type":"comment","startIndex":8465,"stopIndex":8469,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10101":{"name":"lively.demofx.Knob","type":"klassDef","startIndex":8470,"stopIndex":10828,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10102},{"__isSmartRef__":true,"id":10104},{"__isSmartRef__":true,"id":10105},{"__isSmartRef__":true,"id":10106},{"__isSmartRef__":true,"id":10107},{"__isSmartRef__":true,"id":10108},{"__isSmartRef__":true,"id":10109}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.demofx.FXMorph","categories":[{"__isSmartRef__":true,"id":10103}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10102":{"name":"formals","type":"propertyDef","startIndex":8526,"stopIndex":8648,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10103},"className":"lively.demofx.Knob","_owner":{"__isSmartRef__":true,"id":10101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10103":{"name":"default category","type":"categoryDef","startIndex":8524,"stopIndex":10825,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10102},{"__isSmartRef__":true,"id":10104},{"__isSmartRef__":true,"id":10105},{"__isSmartRef__":true,"id":10106},{"__isSmartRef__":true,"id":10107},{"__isSmartRef__":true,"id":10108},{"__isSmartRef__":true,"id":10109}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10104":{"name":"content","type":"propertyDef","startIndex":8650,"stopIndex":9786,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10103},"className":"lively.demofx.Knob","_owner":{"__isSmartRef__":true,"id":10101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10105":{"name":"handlesMouseDown","type":"propertyDef","startIndex":9789,"stopIndex":9822,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10103},"className":"lively.demofx.Knob","_owner":{"__isSmartRef__":true,"id":10101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10106":{"name":"onMouseDown","type":"propertyDef","startIndex":9826,"stopIndex":9954,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10103},"className":"lively.demofx.Knob","_owner":{"__isSmartRef__":true,"id":10101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10107":{"name":"onMouseMove","type":"propertyDef","startIndex":9958,"stopIndex":10648,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10103},"className":"lively.demofx.Knob","_owner":{"__isSmartRef__":true,"id":10101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10108":{"name":"onImageRotationUpdate","type":"propertyDef","startIndex":10651,"stopIndex":10731,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10103},"className":"lively.demofx.Knob","_owner":{"__isSmartRef__":true,"id":10101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10109":{"name":"onKnobWidthUpdate","type":"propertyDef","startIndex":10734,"stopIndex":10824,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10103},"className":"lively.demofx.Knob","_owner":{"__isSmartRef__":true,"id":10101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10110":{"name":null,"type":"comment","startIndex":10837,"stopIndex":10847,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10111":{"name":"","type":"usingDef","startIndex":10848,"stopIndex":13266,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10112},{"__isSmartRef__":true,"id":10113},{"__isSmartRef__":true,"id":10114},{"__isSmartRef__":true,"id":10115},{"__isSmartRef__":true,"id":10116},{"__isSmartRef__":true,"id":10127}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10112":{"name":null,"type":"unknown","startIndex":10877,"stopIndex":10892,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10113":{"name":null,"type":"comment","startIndex":10893,"stopIndex":10893,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10114":{"name":null,"type":"unknown","startIndex":10894,"stopIndex":10912,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10115":{"name":null,"type":"comment","startIndex":10913,"stopIndex":10917,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10116":{"name":"lively.demofx.Button","type":"klassDef","startIndex":10918,"stopIndex":13254,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10117},{"__isSmartRef__":true,"id":10119},{"__isSmartRef__":true,"id":10120},{"__isSmartRef__":true,"id":10121},{"__isSmartRef__":true,"id":10122},{"__isSmartRef__":true,"id":10123},{"__isSmartRef__":true,"id":10124},{"__isSmartRef__":true,"id":10125},{"__isSmartRef__":true,"id":10126}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.demofx.FXMorph","categories":[{"__isSmartRef__":true,"id":10118}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10117":{"name":"formals","type":"propertyDef","startIndex":10976,"stopIndex":11024,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10118":{"name":"default category","type":"categoryDef","startIndex":10974,"stopIndex":13251,"fileName":"lively/demofx.js","_subElements":[{"__isSmartRef__":true,"id":10117},{"__isSmartRef__":true,"id":10119},{"__isSmartRef__":true,"id":10120},{"__isSmartRef__":true,"id":10121},{"__isSmartRef__":true,"id":10122},{"__isSmartRef__":true,"id":10123},{"__isSmartRef__":true,"id":10124},{"__isSmartRef__":true,"id":10125},{"__isSmartRef__":true,"id":10126}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10119":{"name":"content","type":"propertyDef","startIndex":11026,"stopIndex":12415,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10120":{"name":"handlesMouseDown","type":"propertyDef","startIndex":12419,"stopIndex":12452,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10121":{"name":"suppressHandles","type":"propertyDef","startIndex":12454,"stopIndex":12476,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10122":{"name":"onMouseUp","type":"propertyDef","startIndex":12479,"stopIndex":12617,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10123":{"name":"onMouseOver","type":"propertyDef","startIndex":12620,"stopIndex":12735,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10124":{"name":"onMouseOut","type":"propertyDef","startIndex":12738,"stopIndex":12832,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10125":{"name":"initialize","type":"propertyDef","startIndex":12836,"stopIndex":13209,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10126":{"name":"onActionUpdate","type":"propertyDef","startIndex":13212,"stopIndex":13243,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10118},"className":"lively.demofx.Button","_owner":{"__isSmartRef__":true,"id":10116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10127":{"name":null,"type":"comment","startIndex":13255,"stopIndex":13259,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10128":{"name":null,"type":"comment","startIndex":13267,"stopIndex":13269,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10129":{"name":null,"type":"unknown","startIndex":13270,"stopIndex":13409,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10130":{"name":null,"type":"comment","startIndex":13410,"stopIndex":13414,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10131":{"name":null,"type":"unknown","startIndex":13415,"stopIndex":29369,"fileName":"lively/demofx.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10132":{"target":{"__isSmartRef__":true,"id":10133},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/DOMAbstraction.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"10133":{"name":"lively.DOMAbstraction","type":"moduleDef","startIndex":0,"stopIndex":16715,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10134},{"__isSmartRef__":true,"id":10135},{"__isSmartRef__":true,"id":10147},{"__isSmartRef__":true,"id":10148},{"__isSmartRef__":true,"id":10164},{"__isSmartRef__":true,"id":10165},{"__isSmartRef__":true,"id":10179},{"__isSmartRef__":true,"id":10180},{"__isSmartRef__":true,"id":10185},{"__isSmartRef__":true,"id":10186},{"__isSmartRef__":true,"id":10195},{"__isSmartRef__":true,"id":10196},{"__isSmartRef__":true,"id":10205},{"__isSmartRef__":true,"id":10206},{"__isSmartRef__":true,"id":10209},{"__isSmartRef__":true,"id":10210},{"__isSmartRef__":true,"id":10213},{"__isSmartRef__":true,"id":10214},{"__isSmartRef__":true,"id":10220},{"__isSmartRef__":true,"id":10221},{"__isSmartRef__":true,"id":10236},{"__isSmartRef__":true,"id":10237}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10134":{"name":null,"type":"comment","startIndex":62,"stopIndex":276,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10135":{"name":"Global.Namespace","type":"objectDef","startIndex":277,"stopIndex":824,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10136},{"__isSmartRef__":true,"id":10138},{"__isSmartRef__":true,"id":10139},{"__isSmartRef__":true,"id":10140},{"__isSmartRef__":true,"id":10141},{"__isSmartRef__":true,"id":10142},{"__isSmartRef__":true,"id":10143},{"__isSmartRef__":true,"id":10144},{"__isSmartRef__":true,"id":10145},{"__isSmartRef__":true,"id":10146}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10136":{"name":"SVG","type":"propertyDef","startIndex":298,"stopIndex":334,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10137":{"name":"default category","type":"categoryDef","startIndex":19,"stopIndex":545,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10136},{"__isSmartRef__":true,"id":10138},{"__isSmartRef__":true,"id":10139},{"__isSmartRef__":true,"id":10140},{"__isSmartRef__":true,"id":10141},{"__isSmartRef__":true,"id":10142},{"__isSmartRef__":true,"id":10143},{"__isSmartRef__":true,"id":10144},{"__isSmartRef__":true,"id":10145},{"__isSmartRef__":true,"id":10146}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10138":{"name":"LIVELY","type":"propertyDef","startIndex":337,"stopIndex":438,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10139":{"name":"XLINK","type":"propertyDef","startIndex":441,"stopIndex":481,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10140":{"name":"XHTML","type":"propertyDef","startIndex":484,"stopIndex":524,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10141":{"name":"ATOM","type":"propertyDef","startIndex":526,"stopIndex":564,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10142":{"name":"OPENSEARCH","type":"propertyDef","startIndex":567,"stopIndex":643,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10143":{"name":"GBS","type":"propertyDef","startIndex":645,"stopIndex":691,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10144":{"name":"DC","type":"propertyDef","startIndex":693,"stopIndex":726,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10145":{"name":"BATCH","type":"propertyDef","startIndex":728,"stopIndex":777,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10146":{"name":"GD","type":"propertyDef","startIndex":779,"stopIndex":820,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10137},"_owner":{"__isSmartRef__":true,"id":10135},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10147":{"name":null,"type":"comment","startIndex":825,"stopIndex":825,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10148":{"name":"Global.Converter","type":"objectDef","startIndex":826,"stopIndex":7316,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10149},{"__isSmartRef__":true,"id":10151},{"__isSmartRef__":true,"id":10152},{"__isSmartRef__":true,"id":10153},{"__isSmartRef__":true,"id":10154},{"__isSmartRef__":true,"id":10155},{"__isSmartRef__":true,"id":10156},{"__isSmartRef__":true,"id":10157},{"__isSmartRef__":true,"id":10158},{"__isSmartRef__":true,"id":10159},{"__isSmartRef__":true,"id":10160},{"__isSmartRef__":true,"id":10161},{"__isSmartRef__":true,"id":10162},{"__isSmartRef__":true,"id":10163}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10149":{"name":"documentation","type":"propertyDef","startIndex":847,"stopIndex":927,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10150":{"name":"default category","type":"categoryDef","startIndex":19,"stopIndex":6488,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10149},{"__isSmartRef__":true,"id":10151},{"__isSmartRef__":true,"id":10152},{"__isSmartRef__":true,"id":10153},{"__isSmartRef__":true,"id":10154},{"__isSmartRef__":true,"id":10155},{"__isSmartRef__":true,"id":10156},{"__isSmartRef__":true,"id":10157},{"__isSmartRef__":true,"id":10158},{"__isSmartRef__":true,"id":10159},{"__isSmartRef__":true,"id":10160},{"__isSmartRef__":true,"id":10161},{"__isSmartRef__":true,"id":10162},{"__isSmartRef__":true,"id":10163}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10151":{"name":"toBoolean","type":"propertyDef","startIndex":930,"stopIndex":1016,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10152":{"name":"fromBoolean","type":"propertyDef","startIndex":1019,"stopIndex":1239,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10153":{"name":"parseInset","type":"propertyDef","startIndex":1242,"stopIndex":2156,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10154":{"name":"wrapperAndNodeEncodeFilter","type":"propertyDef","startIndex":2159,"stopIndex":2477,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10155":{"name":"wrapperAndNodeDecodeFilter","type":"propertyDef","startIndex":2480,"stopIndex":3048,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10156":{"name":"nodeEncodeFilter","type":"propertyDef","startIndex":3051,"stopIndex":3462,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10157":{"name":"toJSONAttribute","type":"propertyDef","startIndex":3469,"stopIndex":3598,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10158":{"name":"nodeDecodeFilter","type":"propertyDef","startIndex":3601,"stopIndex":4158,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10159":{"name":"fromJSONAttribute","type":"propertyDef","startIndex":4161,"stopIndex":4289,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10160":{"name":"needsJSONEncoding","type":"propertyDef","startIndex":4296,"stopIndex":4575,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10161":{"name":"quoteCDATAEndSequence","type":"propertyDef","startIndex":4578,"stopIndex":4848,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10162":{"name":"encodeProperty","type":"propertyDef","startIndex":4851,"stopIndex":6744,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10163":{"name":"isJSONConformant","type":"propertyDef","startIndex":6751,"stopIndex":7311,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10150},"_owner":{"__isSmartRef__":true,"id":10148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10164":{"name":null,"type":"comment","startIndex":7317,"stopIndex":7318,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10165":{"name":"Global.NodeFactory","type":"objectDef","startIndex":7319,"stopIndex":8785,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10166},{"__isSmartRef__":true,"id":10168},{"__isSmartRef__":true,"id":10169},{"__isSmartRef__":true,"id":10170},{"__isSmartRef__":true,"id":10171},{"__isSmartRef__":true,"id":10172},{"__isSmartRef__":true,"id":10173},{"__isSmartRef__":true,"id":10174},{"__isSmartRef__":true,"id":10175},{"__isSmartRef__":true,"id":10176},{"__isSmartRef__":true,"id":10177},{"__isSmartRef__":true,"id":10178}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10166":{"name":"remove","type":"propertyDef","startIndex":7343,"stopIndex":7444,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10167":{"name":"default category","type":"categoryDef","startIndex":21,"stopIndex":1464,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10166},{"__isSmartRef__":true,"id":10168},{"__isSmartRef__":true,"id":10169},{"__isSmartRef__":true,"id":10170},{"__isSmartRef__":true,"id":10171},{"__isSmartRef__":true,"id":10172},{"__isSmartRef__":true,"id":10173},{"__isSmartRef__":true,"id":10174},{"__isSmartRef__":true,"id":10175},{"__isSmartRef__":true,"id":10176},{"__isSmartRef__":true,"id":10177},{"__isSmartRef__":true,"id":10178}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10168":{"name":"createNS","type":"propertyDef","startIndex":7447,"stopIndex":7612,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10169":{"name":"create","type":"propertyDef","startIndex":7615,"stopIndex":7860,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10170":{"name":"extend","type":"propertyDef","startIndex":7863,"stopIndex":8102,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10171":{"name":"createText","type":"propertyDef","startIndex":8105,"stopIndex":8193,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10172":{"name":"createNL","type":"propertyDef","startIndex":8200,"stopIndex":8284,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10173":{"name":"createCDATA","type":"propertyDef","startIndex":8287,"stopIndex":8380,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10174":{"name":"CDATAType","type":"propertyDef","startIndex":8383,"stopIndex":8455,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10175":{"name":"TextType","type":"propertyDef","startIndex":8459,"stopIndex":8521,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10176":{"name":"FragmentType","type":"propertyDef","startIndex":8523,"stopIndex":8602,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10177":{"name":"isTextNode","type":"propertyDef","startIndex":8604,"stopIndex":8684,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10178":{"name":"isFragmentNode","type":"propertyDef","startIndex":8686,"stopIndex":8781,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10167},"_owner":{"__isSmartRef__":true,"id":10165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10179":{"name":null,"type":"comment","startIndex":8786,"stopIndex":8786,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10180":{"name":"Global.XLinkNS","type":"objectDef","startIndex":8787,"stopIndex":9270,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10181},{"__isSmartRef__":true,"id":10183},{"__isSmartRef__":true,"id":10184}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10181":{"name":"create","type":"propertyDef","startIndex":8806,"stopIndex":9068,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10182},"_owner":{"__isSmartRef__":true,"id":10180},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10182":{"name":"default category","type":"categoryDef","startIndex":17,"stopIndex":481,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10181},{"__isSmartRef__":true,"id":10183},{"__isSmartRef__":true,"id":10184}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10183":{"name":"setHref","type":"propertyDef","startIndex":9070,"stopIndex":9171,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10182},"_owner":{"__isSmartRef__":true,"id":10180},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10184":{"name":"getHref","type":"propertyDef","startIndex":9178,"stopIndex":9267,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10182},"_owner":{"__isSmartRef__":true,"id":10180},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10185":{"name":null,"type":"comment","startIndex":9271,"stopIndex":9271,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10186":{"name":"Global.LivelyNS","type":"objectDef","startIndex":9272,"stopIndex":10213,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10187},{"__isSmartRef__":true,"id":10189},{"__isSmartRef__":true,"id":10190},{"__isSmartRef__":true,"id":10191},{"__isSmartRef__":true,"id":10192},{"__isSmartRef__":true,"id":10193},{"__isSmartRef__":true,"id":10194}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10187":{"name":"prefix","type":"propertyDef","startIndex":9293,"stopIndex":9311,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10188},"_owner":{"__isSmartRef__":true,"id":10186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10188":{"name":"default category","type":"categoryDef","startIndex":18,"stopIndex":939,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10187},{"__isSmartRef__":true,"id":10189},{"__isSmartRef__":true,"id":10190},{"__isSmartRef__":true,"id":10191},{"__isSmartRef__":true,"id":10192},{"__isSmartRef__":true,"id":10193},{"__isSmartRef__":true,"id":10194}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10189":{"name":"create","type":"propertyDef","startIndex":9314,"stopIndex":9465,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10188},"_owner":{"__isSmartRef__":true,"id":10186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10190":{"name":"getAttribute","type":"propertyDef","startIndex":9468,"stopIndex":9700,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10188},"_owner":{"__isSmartRef__":true,"id":10186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10191":{"name":"removeAttribute","type":"propertyDef","startIndex":9703,"stopIndex":9832,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10188},"_owner":{"__isSmartRef__":true,"id":10186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10192":{"name":"setAttribute","type":"propertyDef","startIndex":9835,"stopIndex":9980,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10188},"_owner":{"__isSmartRef__":true,"id":10186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10193":{"name":"getType","type":"propertyDef","startIndex":9983,"stopIndex":10097,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10188},"_owner":{"__isSmartRef__":true,"id":10186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10194":{"name":"setType","type":"propertyDef","startIndex":10100,"stopIndex":10209,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10188},"_owner":{"__isSmartRef__":true,"id":10186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10195":{"name":null,"type":"comment","startIndex":10214,"stopIndex":10214,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10196":{"name":"Global.XHTMLNS","type":"objectDef","startIndex":10215,"stopIndex":11124,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10197},{"__isSmartRef__":true,"id":10199},{"__isSmartRef__":true,"id":10200},{"__isSmartRef__":true,"id":10201},{"__isSmartRef__":true,"id":10202},{"__isSmartRef__":true,"id":10203},{"__isSmartRef__":true,"id":10204}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10197":{"name":"create","type":"propertyDef","startIndex":10235,"stopIndex":10341,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10198},"_owner":{"__isSmartRef__":true,"id":10196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10198":{"name":"default category","type":"categoryDef","startIndex":17,"stopIndex":907,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10197},{"__isSmartRef__":true,"id":10199},{"__isSmartRef__":true,"id":10200},{"__isSmartRef__":true,"id":10201},{"__isSmartRef__":true,"id":10202},{"__isSmartRef__":true,"id":10203},{"__isSmartRef__":true,"id":10204}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10199":{"name":"getAttribute","type":"propertyDef","startIndex":10344,"stopIndex":10506,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10198},"_owner":{"__isSmartRef__":true,"id":10196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10200":{"name":"removeAttribute","type":"propertyDef","startIndex":10509,"stopIndex":10597,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10198},"_owner":{"__isSmartRef__":true,"id":10196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10201":{"name":"setAttribute","type":"propertyDef","startIndex":10600,"stopIndex":10689,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10198},"_owner":{"__isSmartRef__":true,"id":10196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10202":{"name":"getType","type":"propertyDef","startIndex":10692,"stopIndex":10777,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10198},"_owner":{"__isSmartRef__":true,"id":10196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10203":{"name":"setType","type":"propertyDef","startIndex":10780,"stopIndex":10874,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10198},"_owner":{"__isSmartRef__":true,"id":10196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10204":{"name":"newFragment","type":"propertyDef","startIndex":10877,"stopIndex":11120,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10198},"_owner":{"__isSmartRef__":true,"id":10196},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10205":{"name":"Exporter","type":"klassDef","startIndex":11125,"stopIndex":11153,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10206":{"name":"Exporter","type":"klassExtensionDef","startIndex":11154,"stopIndex":11284,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10207}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":10208}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10207":{"name":"stringify","type":"propertyDef","startIndex":11180,"stopIndex":11279,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10208},"className":"Exporter","_owner":{"__isSmartRef__":true,"id":10206},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10208":{"name":"default category","type":"categoryDef","startIndex":11178,"stopIndex":11281,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10207}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10209":{"name":null,"type":"comment","startIndex":11285,"stopIndex":11285,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10210":{"name":"Copier","type":"klassDef","startIndex":11286,"stopIndex":11334,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10211}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":10212}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10211":{"name":"isCopier","type":"propertyDef","startIndex":11314,"stopIndex":11329,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10212},"className":"Copier","_owner":{"__isSmartRef__":true,"id":10210},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10212":{"name":"default category","type":"categoryDef","startIndex":11312,"stopIndex":11331,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10211}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10213":{"name":null,"type":"comment","startIndex":11335,"stopIndex":11335,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10214":{"name":"Importer","type":"klassDef","startIndex":11336,"stopIndex":12810,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10215},{"__isSmartRef__":true,"id":10217},{"__isSmartRef__":true,"id":10218},{"__isSmartRef__":true,"id":10219}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Copier","categories":[{"__isSmartRef__":true,"id":10216}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10215":{"name":"isImporter","type":"propertyDef","startIndex":11366,"stopIndex":11383,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10216},"className":"Importer","_owner":{"__isSmartRef__":true,"id":10214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10216":{"name":"default category","type":"categoryDef","startIndex":11364,"stopIndex":12807,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10215},{"__isSmartRef__":true,"id":10217},{"__isSmartRef__":true,"id":10218},{"__isSmartRef__":true,"id":10219}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10217":{"name":"canvas","type":"propertyDef","startIndex":11386,"stopIndex":11504,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10216},"className":"Importer","_owner":{"__isSmartRef__":true,"id":10214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10218":{"name":"getBaseDocument","type":"propertyDef","startIndex":11507,"stopIndex":12551,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10216},"className":"Importer","_owner":{"__isSmartRef__":true,"id":10214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10219":{"name":"clearCanvas","type":"propertyDef","startIndex":12554,"stopIndex":12804,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10216},"className":"Importer","_owner":{"__isSmartRef__":true,"id":10214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10220":{"name":null,"type":"comment","startIndex":12811,"stopIndex":12811,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10221":{"name":"DocLinkConverter","type":"klassDef","startIndex":12812,"stopIndex":16546,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10222},{"__isSmartRef__":true,"id":10224},{"__isSmartRef__":true,"id":10225},{"__isSmartRef__":true,"id":10226},{"__isSmartRef__":true,"id":10227},{"__isSmartRef__":true,"id":10228},{"__isSmartRef__":true,"id":10229},{"__isSmartRef__":true,"id":10230},{"__isSmartRef__":true,"id":10231},{"__isSmartRef__":true,"id":10232},{"__isSmartRef__":true,"id":10233},{"__isSmartRef__":true,"id":10234},{"__isSmartRef__":true,"id":10235}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":10223}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10222":{"name":"initialize","type":"propertyDef","startIndex":12851,"stopIndex":13141,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10223":{"name":"default category","type":"categoryDef","startIndex":12848,"stopIndex":16543,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10222},{"__isSmartRef__":true,"id":10224},{"__isSmartRef__":true,"id":10225},{"__isSmartRef__":true,"id":10226},{"__isSmartRef__":true,"id":10227},{"__isSmartRef__":true,"id":10228},{"__isSmartRef__":true,"id":10229},{"__isSmartRef__":true,"id":10230},{"__isSmartRef__":true,"id":10231},{"__isSmartRef__":true,"id":10232},{"__isSmartRef__":true,"id":10233},{"__isSmartRef__":true,"id":10234},{"__isSmartRef__":true,"id":10235}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10224":{"name":"convert","type":"propertyDef","startIndex":13144,"stopIndex":13465,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10225":{"name":"convertAndRemoveCodeBaseDefs","type":"propertyDef","startIndex":13468,"stopIndex":14493,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10226":{"name":"convertLinks","type":"propertyDef","startIndex":14496,"stopIndex":14765,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10227":{"name":"convertPath","type":"propertyDef","startIndex":14768,"stopIndex":14978,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10228":{"name":"codeBaseFrom","type":"propertyDef","startIndex":14981,"stopIndex":15324,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10229":{"name":"relativeCodeBaseFrom","type":"propertyDef","startIndex":15327,"stopIndex":15774,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10230":{"name":"relativeLivelyPathFrom","type":"propertyDef","startIndex":15777,"stopIndex":15889,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10231":{"name":"extractFilename","type":"propertyDef","startIndex":15892,"stopIndex":15990,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10232":{"name":"createCodeBaseDef","type":"propertyDef","startIndex":15993,"stopIndex":16125,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10233":{"name":"findScriptEndingWith","type":"propertyDef","startIndex":16128,"stopIndex":16302,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10234":{"name":"getURLFrom","type":"propertyDef","startIndex":16305,"stopIndex":16400,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10235":{"name":"setURLTo","type":"propertyDef","startIndex":16403,"stopIndex":16540,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10223},"className":"DocLinkConverter","_owner":{"__isSmartRef__":true,"id":10221},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10236":{"name":null,"type":"comment","startIndex":16547,"stopIndex":16547,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10237":{"name":"Global","type":"klassExtensionDef","startIndex":16548,"stopIndex":16694,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10238}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":10239}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10238":{"name":"stringToXML","type":"propertyDef","startIndex":16572,"stopIndex":16689,"fileName":"lively/DOMAbstraction.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10239},"className":"Global","_owner":{"__isSmartRef__":true,"id":10237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10239":{"name":"default category","type":"categoryDef","startIndex":16570,"stopIndex":16691,"fileName":"lively/DOMAbstraction.js","_subElements":[{"__isSmartRef__":true,"id":10238}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10240":{"target":{"__isSmartRef__":true,"id":10241},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/EmuDom.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"10241":{"name":"lively/EmuDom.js","type":"completeFileDef","startIndex":0,"stopIndex":49332,"fileName":"lively/EmuDom.js","_subElements":[{"__isSmartRef__":true,"id":10242},{"__isSmartRef__":true,"id":10243},{"__isSmartRef__":true,"id":10244},{"__isSmartRef__":true,"id":10245}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10242":{"name":null,"type":"comment","startIndex":0,"stopIndex":1395,"fileName":"lively/EmuDom.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10243":{"name":"emudom","type":"propertyDef","startIndex":1396,"stopIndex":49286,"fileName":"lively/EmuDom.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Global","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10244":{"name":null,"type":"comment","startIndex":49287,"stopIndex":49295,"fileName":"lively/EmuDom.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10245":{"name":null,"type":"unknown","startIndex":49296,"stopIndex":49332,"fileName":"lively/EmuDom.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10246":{"target":{"__isSmartRef__":true,"id":10247},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Examples.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"10247":{"name":"lively.Examples","type":"moduleDef","startIndex":1325,"stopIndex":160883,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10248},{"__isSmartRef__":true,"id":10249},{"__isSmartRef__":true,"id":10254},{"__isSmartRef__":true,"id":10255},{"__isSmartRef__":true,"id":10266},{"__isSmartRef__":true,"id":10267},{"__isSmartRef__":true,"id":10275},{"__isSmartRef__":true,"id":10276},{"__isSmartRef__":true,"id":10285},{"__isSmartRef__":true,"id":10286},{"__isSmartRef__":true,"id":10291},{"__isSmartRef__":true,"id":10292},{"__isSmartRef__":true,"id":10299},{"__isSmartRef__":true,"id":10300},{"__isSmartRef__":true,"id":10310},{"__isSmartRef__":true,"id":10311},{"__isSmartRef__":true,"id":10322},{"__isSmartRef__":true,"id":10323},{"__isSmartRef__":true,"id":10342},{"__isSmartRef__":true,"id":10343},{"__isSmartRef__":true,"id":10354},{"__isSmartRef__":true,"id":10355},{"__isSmartRef__":true,"id":10383},{"__isSmartRef__":true,"id":10384},{"__isSmartRef__":true,"id":10580},{"__isSmartRef__":true,"id":10581},{"__isSmartRef__":true,"id":10593},{"__isSmartRef__":true,"id":10594},{"__isSmartRef__":true,"id":10611},{"__isSmartRef__":true,"id":10612},{"__isSmartRef__":true,"id":10613},{"__isSmartRef__":true,"id":10650},{"__isSmartRef__":true,"id":10651},{"__isSmartRef__":true,"id":10673},{"__isSmartRef__":true,"id":10674},{"__isSmartRef__":true,"id":10675},{"__isSmartRef__":true,"id":10687},{"__isSmartRef__":true,"id":10688},{"__isSmartRef__":true,"id":10695}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10248":{"name":null,"type":"comment","startIndex":1407,"stopIndex":1596,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10249":{"name":"TestWidget","type":"klassDef","startIndex":1597,"stopIndex":4975,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10250},{"__isSmartRef__":true,"id":10252},{"__isSmartRef__":true,"id":10253}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":10251}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10250":{"name":"documentation","type":"propertyDef","startIndex":1630,"stopIndex":1717,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10251},"className":"TestWidget","_owner":{"__isSmartRef__":true,"id":10249},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10251":{"name":"default category","type":"categoryDef","startIndex":1627,"stopIndex":4972,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10250},{"__isSmartRef__":true,"id":10252},{"__isSmartRef__":true,"id":10253}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10252":{"name":"openIn","type":"propertyDef","startIndex":1720,"stopIndex":1882,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10251},"className":"TestWidget","_owner":{"__isSmartRef__":true,"id":10249},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10253":{"name":"buildView","type":"propertyDef","startIndex":1889,"stopIndex":4971,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10251},"className":"TestWidget","_owner":{"__isSmartRef__":true,"id":10249},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10254":{"name":null,"type":"comment","startIndex":4976,"stopIndex":5156,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10255":{"name":"ClockMorph","type":"klassDef","startIndex":5157,"stopIndex":7774,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10256},{"__isSmartRef__":true,"id":10258},{"__isSmartRef__":true,"id":10259},{"__isSmartRef__":true,"id":10260},{"__isSmartRef__":true,"id":10261},{"__isSmartRef__":true,"id":10262},{"__isSmartRef__":true,"id":10263},{"__isSmartRef__":true,"id":10264},{"__isSmartRef__":true,"id":10265}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10257}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10256":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":5189,"stopIndex":5215,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10257":{"name":"default category","type":"categoryDef","startIndex":5186,"stopIndex":7771,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10256},{"__isSmartRef__":true,"id":10258},{"__isSmartRef__":true,"id":10259},{"__isSmartRef__":true,"id":10260},{"__isSmartRef__":true,"id":10261},{"__isSmartRef__":true,"id":10262},{"__isSmartRef__":true,"id":10263},{"__isSmartRef__":true,"id":10264},{"__isSmartRef__":true,"id":10265}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10258":{"name":"styleClass","type":"propertyDef","startIndex":5217,"stopIndex":5255,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10259":{"name":"connectionSources","type":"propertyDef","startIndex":5257,"stopIndex":5289,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10260":{"name":"initialize","type":"propertyDef","startIndex":5292,"stopIndex":5643,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10261":{"name":"makeNewFace","type":"propertyDef","startIndex":5646,"stopIndex":6899,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10262":{"name":"angleForHour","type":"propertyDef","startIndex":6901,"stopIndex":7092,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10263":{"name":"reshape","type":"propertyDef","startIndex":7095,"stopIndex":7122,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10264":{"name":"startSteppingScripts","type":"propertyDef","startIndex":7129,"stopIndex":7238,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10265":{"name":"setHands","type":"propertyDef","startIndex":7241,"stopIndex":7770,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10257},"className":"ClockMorph","_owner":{"__isSmartRef__":true,"id":10255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10266":{"name":null,"type":"comment","startIndex":7775,"stopIndex":7776,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10267":{"name":"SymmetryMorph","type":"klassDef","startIndex":7777,"stopIndex":10485,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10268},{"__isSmartRef__":true,"id":10270},{"__isSmartRef__":true,"id":10271},{"__isSmartRef__":true,"id":10272},{"__isSmartRef__":true,"id":10273},{"__isSmartRef__":true,"id":10274}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10269}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10268":{"name":"initialize","type":"propertyDef","startIndex":7812,"stopIndex":8344,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10269},"className":"SymmetryMorph","_owner":{"__isSmartRef__":true,"id":10267},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10269":{"name":"default category","type":"categoryDef","startIndex":7809,"stopIndex":10482,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10268},{"__isSmartRef__":true,"id":10270},{"__isSmartRef__":true,"id":10271},{"__isSmartRef__":true,"id":10272},{"__isSmartRef__":true,"id":10273},{"__isSmartRef__":true,"id":10274}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10270":{"name":"layoutChanged","type":"propertyDef","startIndex":8346,"stopIndex":8494,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10269},"className":"SymmetryMorph","_owner":{"__isSmartRef__":true,"id":10267},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10271":{"name":"updateIfNeeded","type":"propertyDef","startIndex":8497,"stopIndex":8650,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10269},"className":"SymmetryMorph","_owner":{"__isSmartRef__":true,"id":10267},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10272":{"name":"startUp","type":"propertyDef","startIndex":8652,"stopIndex":8720,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10269},"className":"SymmetryMorph","_owner":{"__isSmartRef__":true,"id":10267},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10273":{"name":"setNFold","type":"propertyDef","startIndex":8722,"stopIndex":8892,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10269},"className":"SymmetryMorph","_owner":{"__isSmartRef__":true,"id":10267},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10274":{"name":"updateDisplayMorph","type":"propertyDef","startIndex":8894,"stopIndex":10481,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10269},"className":"SymmetryMorph","_owner":{"__isSmartRef__":true,"id":10267},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10275":{"name":null,"type":"comment","startIndex":10486,"stopIndex":10663,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10276":{"name":"PianoKeyboard","type":"klassDef","startIndex":10664,"stopIndex":14439,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10277},{"__isSmartRef__":true,"id":10279},{"__isSmartRef__":true,"id":10280},{"__isSmartRef__":true,"id":10281},{"__isSmartRef__":true,"id":10282},{"__isSmartRef__":true,"id":10283},{"__isSmartRef__":true,"id":10284}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":10278}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10277":{"name":"click","type":"propertyDef","startIndex":10702,"stopIndex":11601,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10278},"className":"PianoKeyboard","_owner":{"__isSmartRef__":true,"id":10276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10278":{"name":"default category","type":"categoryDef","startIndex":10699,"stopIndex":14436,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10277},{"__isSmartRef__":true,"id":10279},{"__isSmartRef__":true,"id":10280},{"__isSmartRef__":true,"id":10281},{"__isSmartRef__":true,"id":10282},{"__isSmartRef__":true,"id":10283},{"__isSmartRef__":true,"id":10284}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10279":{"name":"initialize","type":"propertyDef","startIndex":11606,"stopIndex":13008,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10278},"className":"PianoKeyboard","_owner":{"__isSmartRef__":true,"id":10276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10280":{"name":"initializeTransientState","type":"propertyDef","startIndex":13011,"stopIndex":13264,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10278},"className":"PianoKeyboard","_owner":{"__isSmartRef__":true,"id":10276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10281":{"name":"deserialize","type":"propertyDef","startIndex":13271,"stopIndex":13506,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10278},"className":"PianoKeyboard","_owner":{"__isSmartRef__":true,"id":10276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10282":{"name":"pianoKeyDown","type":"propertyDef","startIndex":13510,"stopIndex":13752,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10278},"className":"PianoKeyboard","_owner":{"__isSmartRef__":true,"id":10276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10283":{"name":"pianoKeyUp","type":"propertyDef","startIndex":13754,"stopIndex":13978,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10278},"className":"PianoKeyboard","_owner":{"__isSmartRef__":true,"id":10276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10284":{"name":"pianoKeyMove","type":"propertyDef","startIndex":13980,"stopIndex":14435,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10278},"className":"PianoKeyboard","_owner":{"__isSmartRef__":true,"id":10276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10285":{"name":null,"type":"comment","startIndex":14440,"stopIndex":14692,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10286":{"name":"XPathQueryMorph","type":"klassDef","startIndex":14693,"stopIndex":15105,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10287},{"__isSmartRef__":true,"id":10289},{"__isSmartRef__":true,"id":10290}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":10288}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10287":{"name":"documentation","type":"propertyDef","startIndex":14733,"stopIndex":14836,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10288},"className":"XPathQueryMorph","_owner":{"__isSmartRef__":true,"id":10286},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10288":{"name":"default category","type":"categoryDef","startIndex":14731,"stopIndex":15102,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10287},{"__isSmartRef__":true,"id":10289},{"__isSmartRef__":true,"id":10290}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10289":{"name":"initialize","type":"propertyDef","startIndex":14843,"stopIndex":14958,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10288},"className":"XPathQueryMorph","_owner":{"__isSmartRef__":true,"id":10286},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10290":{"name":"boundEval","type":"propertyDef","startIndex":14961,"stopIndex":15101,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10288},"className":"XPathQueryMorph","_owner":{"__isSmartRef__":true,"id":10286},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10291":{"name":null,"type":"comment","startIndex":15106,"stopIndex":15149,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10292":{"name":"FeedChannel","type":"klassDef","startIndex":15150,"stopIndex":15739,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10293},{"__isSmartRef__":true,"id":10295},{"__isSmartRef__":true,"id":10296},{"__isSmartRef__":true,"id":10297},{"__isSmartRef__":true,"id":10298}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":10294}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10293":{"name":"documentation","type":"propertyDef","startIndex":15196,"stopIndex":15270,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10294},"className":"FeedChannel","_owner":{"__isSmartRef__":true,"id":10292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10294":{"name":"default category","type":"categoryDef","startIndex":15194,"stopIndex":15736,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10293},{"__isSmartRef__":true,"id":10295},{"__isSmartRef__":true,"id":10296},{"__isSmartRef__":true,"id":10297},{"__isSmartRef__":true,"id":10298}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10295":{"name":"titleQ","type":"propertyDef","startIndex":15273,"stopIndex":15303,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10294},"className":"FeedChannel","_owner":{"__isSmartRef__":true,"id":10292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10296":{"name":"itemQ","type":"propertyDef","startIndex":15305,"stopIndex":15333,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10294},"className":"FeedChannel","_owner":{"__isSmartRef__":true,"id":10292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10297":{"name":"initialize","type":"propertyDef","startIndex":15336,"stopIndex":15596,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10294},"className":"FeedChannel","_owner":{"__isSmartRef__":true,"id":10292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10298":{"name":"title","type":"propertyDef","startIndex":15599,"stopIndex":15729,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10294},"className":"FeedChannel","_owner":{"__isSmartRef__":true,"id":10292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10299":{"name":null,"type":"comment","startIndex":15740,"stopIndex":15740,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10300":{"name":"FeedItem","type":"klassDef","startIndex":15741,"stopIndex":16433,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10301},{"__isSmartRef__":true,"id":10303},{"__isSmartRef__":true,"id":10304},{"__isSmartRef__":true,"id":10305},{"__isSmartRef__":true,"id":10306},{"__isSmartRef__":true,"id":10307},{"__isSmartRef__":true,"id":10308},{"__isSmartRef__":true,"id":10309}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":10302}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10301":{"name":"documentation","type":"propertyDef","startIndex":15784,"stopIndex":15854,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10302":{"name":"default category","type":"categoryDef","startIndex":15782,"stopIndex":16430,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10301},{"__isSmartRef__":true,"id":10303},{"__isSmartRef__":true,"id":10304},{"__isSmartRef__":true,"id":10305},{"__isSmartRef__":true,"id":10306},{"__isSmartRef__":true,"id":10307},{"__isSmartRef__":true,"id":10308},{"__isSmartRef__":true,"id":10309}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10303":{"name":"titleQ","type":"propertyDef","startIndex":15856,"stopIndex":15883,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10304":{"name":"descriptionQ","type":"propertyDef","startIndex":15885,"stopIndex":15924,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10305":{"name":"linkQ","type":"propertyDef","startIndex":15926,"stopIndex":15951,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10306":{"name":"initialize","type":"propertyDef","startIndex":15954,"stopIndex":16015,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10307":{"name":"title","type":"propertyDef","startIndex":16018,"stopIndex":16148,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10308":{"name":"description","type":"propertyDef","startIndex":16151,"stopIndex":16293,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10309":{"name":"link","type":"propertyDef","startIndex":16296,"stopIndex":16427,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10302},"className":"FeedItem","_owner":{"__isSmartRef__":true,"id":10300},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10310":{"name":null,"type":"comment","startIndex":16434,"stopIndex":16434,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10311":{"name":"Feed","type":"klassDef","startIndex":16435,"stopIndex":17888,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10312},{"__isSmartRef__":true,"id":10314},{"__isSmartRef__":true,"id":10315},{"__isSmartRef__":true,"id":10316},{"__isSmartRef__":true,"id":10317},{"__isSmartRef__":true,"id":10318},{"__isSmartRef__":true,"id":10319},{"__isSmartRef__":true,"id":10320},{"__isSmartRef__":true,"id":10321}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["NetRequestReporterTrait"],"superclassName":"View","categories":[{"__isSmartRef__":true,"id":10313}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10312":{"name":"formals","type":"propertyDef","startIndex":16485,"stopIndex":16556,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10313":{"name":"default category","type":"categoryDef","startIndex":16482,"stopIndex":17885,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10312},{"__isSmartRef__":true,"id":10314},{"__isSmartRef__":true,"id":10315},{"__isSmartRef__":true,"id":10316},{"__isSmartRef__":true,"id":10317},{"__isSmartRef__":true,"id":10318},{"__isSmartRef__":true,"id":10319},{"__isSmartRef__":true,"id":10320},{"__isSmartRef__":true,"id":10321}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10314":{"name":"channelQuery","type":"propertyDef","startIndex":16558,"stopIndex":16601,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10315":{"name":"updateView","type":"propertyDef","startIndex":16604,"stopIndex":16817,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10316":{"name":"onURLChange","type":"propertyDef","startIndex":16820,"stopIndex":16879,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10317":{"name":"deserialize","type":"propertyDef","startIndex":16882,"stopIndex":16911,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10318":{"name":"kickstart","type":"propertyDef","startIndex":16914,"stopIndex":17071,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10319":{"name":"setRawFeedContents","type":"propertyDef","startIndex":17074,"stopIndex":17178,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10320":{"name":"request","type":"propertyDef","startIndex":17181,"stopIndex":17667,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10321":{"name":"parseChannels","type":"propertyDef","startIndex":17670,"stopIndex":17882,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10313},"className":"Feed","_owner":{"__isSmartRef__":true,"id":10311},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10322":{"name":null,"type":"comment","startIndex":17889,"stopIndex":17889,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10323":{"name":"FeedWidget","type":"klassDef","startIndex":17890,"stopIndex":22089,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10324},{"__isSmartRef__":true,"id":10326},{"__isSmartRef__":true,"id":10327},{"__isSmartRef__":true,"id":10328},{"__isSmartRef__":true,"id":10329},{"__isSmartRef__":true,"id":10330},{"__isSmartRef__":true,"id":10331},{"__isSmartRef__":true,"id":10332},{"__isSmartRef__":true,"id":10333},{"__isSmartRef__":true,"id":10334},{"__isSmartRef__":true,"id":10335},{"__isSmartRef__":true,"id":10336},{"__isSmartRef__":true,"id":10337},{"__isSmartRef__":true,"id":10338},{"__isSmartRef__":true,"id":10339},{"__isSmartRef__":true,"id":10340},{"__isSmartRef__":true,"id":10341}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":10325}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10324":{"name":"documentation","type":"propertyDef","startIndex":17922,"stopIndex":17958,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10325":{"name":"default category","type":"categoryDef","startIndex":17920,"stopIndex":22086,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10324},{"__isSmartRef__":true,"id":10326},{"__isSmartRef__":true,"id":10327},{"__isSmartRef__":true,"id":10328},{"__isSmartRef__":true,"id":10329},{"__isSmartRef__":true,"id":10330},{"__isSmartRef__":true,"id":10331},{"__isSmartRef__":true,"id":10332},{"__isSmartRef__":true,"id":10333},{"__isSmartRef__":true,"id":10334},{"__isSmartRef__":true,"id":10335},{"__isSmartRef__":true,"id":10336},{"__isSmartRef__":true,"id":10337},{"__isSmartRef__":true,"id":10338},{"__isSmartRef__":true,"id":10339},{"__isSmartRef__":true,"id":10340},{"__isSmartRef__":true,"id":10341}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10326":{"name":"initialViewExtent","type":"propertyDef","startIndex":17961,"stopIndex":17996,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10327":{"name":"pins","type":"propertyDef","startIndex":17998,"stopIndex":18103,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10328":{"name":"initialize","type":"propertyDef","startIndex":18110,"stopIndex":18653,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10329":{"name":"onDeserialize","type":"propertyDef","startIndex":18656,"stopIndex":18727,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10330":{"name":"getURL","type":"propertyDef","startIndex":18730,"stopIndex":18807,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10331":{"name":"setURL","type":"propertyDef","startIndex":18810,"stopIndex":18926,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10332":{"name":"initializeTransientState","type":"propertyDef","startIndex":18929,"stopIndex":19427,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10333":{"name":"openLink","type":"propertyDef","startIndex":19431,"stopIndex":19622,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10334":{"name":"makeSourcePane","type":"propertyDef","startIndex":19625,"stopIndex":19985,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10335":{"name":"pvtSetFeedChannels","type":"propertyDef","startIndex":19988,"stopIndex":20276,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10336":{"name":"updateView","type":"propertyDef","startIndex":20283,"stopIndex":20699,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10337":{"name":"extractItemList","type":"propertyDef","startIndex":20706,"stopIndex":20796,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10338":{"name":"getEntry","type":"propertyDef","startIndex":20799,"stopIndex":21045,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10339":{"name":"getSelectedItemDescription","type":"propertyDef","startIndex":21052,"stopIndex":21213,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10340":{"name":"buildView","type":"propertyDef","startIndex":21216,"stopIndex":21847,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10341":{"name":"getViewTitle","type":"propertyDef","startIndex":21854,"stopIndex":22085,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10325},"className":"FeedWidget","_owner":{"__isSmartRef__":true,"id":10323},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10342":{"name":null,"type":"comment","startIndex":22090,"stopIndex":22279,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10343":{"name":"SquiggleMorph","type":"klassDef","startIndex":22280,"stopIndex":24736,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10344},{"__isSmartRef__":true,"id":10346},{"__isSmartRef__":true,"id":10347},{"__isSmartRef__":true,"id":10348},{"__isSmartRef__":true,"id":10349},{"__isSmartRef__":true,"id":10350},{"__isSmartRef__":true,"id":10351},{"__isSmartRef__":true,"id":10352},{"__isSmartRef__":true,"id":10353}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PanelMorph","categories":[{"__isSmartRef__":true,"id":10345}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10344":{"name":"documentation","type":"propertyDef","startIndex":22320,"stopIndex":22372,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10345":{"name":"default category","type":"categoryDef","startIndex":22317,"stopIndex":24733,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10344},{"__isSmartRef__":true,"id":10346},{"__isSmartRef__":true,"id":10347},{"__isSmartRef__":true,"id":10348},{"__isSmartRef__":true,"id":10349},{"__isSmartRef__":true,"id":10350},{"__isSmartRef__":true,"id":10351},{"__isSmartRef__":true,"id":10352},{"__isSmartRef__":true,"id":10353}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10346":{"name":"drawingHandColor","type":"propertyDef","startIndex":22374,"stopIndex":22408,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10347":{"name":"style","type":"propertyDef","startIndex":22410,"stopIndex":22683,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10348":{"name":"penStyle","type":"propertyDef","startIndex":22690,"stopIndex":22763,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10349":{"name":"initialize","type":"propertyDef","startIndex":22770,"stopIndex":23132,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10350":{"name":"onMouseDown","type":"propertyDef","startIndex":23139,"stopIndex":24015,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10351":{"name":"onMouseMove","type":"propertyDef","startIndex":24018,"stopIndex":24537,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10352":{"name":"onMouseUp","type":"propertyDef","startIndex":24540,"stopIndex":24684,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10353":{"name":"handlesMouseDown","type":"propertyDef","startIndex":24687,"stopIndex":24732,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10345},"className":"SquiggleMorph","_owner":{"__isSmartRef__":true,"id":10343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10354":{"name":null,"type":"comment","startIndex":24737,"stopIndex":25222,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10355":{"name":"namespace('threedee', thisModule)","type":"usingDef","startIndex":25223,"stopIndex":37173,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10356},{"__isSmartRef__":true,"id":10357},{"__isSmartRef__":true,"id":10358},{"__isSmartRef__":true,"id":10359},{"__isSmartRef__":true,"id":10360},{"__isSmartRef__":true,"id":10361},{"__isSmartRef__":true,"id":10362},{"__isSmartRef__":true,"id":10363},{"__isSmartRef__":true,"id":10364},{"__isSmartRef__":true,"id":10365},{"__isSmartRef__":true,"id":10366},{"__isSmartRef__":true,"id":10367},{"__isSmartRef__":true,"id":10368},{"__isSmartRef__":true,"id":10369},{"__isSmartRef__":true,"id":10370},{"__isSmartRef__":true,"id":10377},{"__isSmartRef__":true,"id":10382}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10356":{"name":null,"type":"comment","startIndex":25289,"stopIndex":25558,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10357":{"name":null,"type":"unknown","startIndex":25559,"stopIndex":26204,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10358":{"name":null,"type":"unknown","startIndex":26205,"stopIndex":26878,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10359":{"name":null,"type":"comment","startIndex":26879,"stopIndex":26883,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10360":{"name":"rapidSin90","type":"functionDef","startIndex":26884,"stopIndex":26998,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10361":{"name":"rapidSin","type":"functionDef","startIndex":26999,"stopIndex":27364,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10362":{"name":"rapidCos","type":"functionDef","startIndex":27365,"stopIndex":27753,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10363":{"name":null,"type":"unknown","startIndex":27754,"stopIndex":27910,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10364":{"name":null,"type":"unknown","startIndex":27911,"stopIndex":27932,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10365":{"name":null,"type":"comment","startIndex":27933,"stopIndex":28002,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10366":{"name":null,"type":"unknown","startIndex":28003,"stopIndex":28025,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10367":{"name":null,"type":"comment","startIndex":28026,"stopIndex":28354,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10368":{"name":null,"type":"unknown","startIndex":28355,"stopIndex":31120,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10369":{"name":null,"type":"comment","startIndex":31121,"stopIndex":31319,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10370":{"name":"lively.Examples.threedee.WireObject","type":"klassDef","startIndex":31320,"stopIndex":35943,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10371},{"__isSmartRef__":true,"id":10373},{"__isSmartRef__":true,"id":10374},{"__isSmartRef__":true,"id":10375},{"__isSmartRef__":true,"id":10376}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":10372}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10371":{"name":"initialize","type":"propertyDef","startIndex":31377,"stopIndex":32124,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10372},"className":"lively.Examples.threedee.WireObject","_owner":{"__isSmartRef__":true,"id":10370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10372":{"name":"default category","type":"categoryDef","startIndex":31375,"stopIndex":35938,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10371},{"__isSmartRef__":true,"id":10373},{"__isSmartRef__":true,"id":10374},{"__isSmartRef__":true,"id":10375},{"__isSmartRef__":true,"id":10376}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10373":{"name":"rotate","type":"propertyDef","startIndex":32361,"stopIndex":33624,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10372},"className":"lively.Examples.threedee.WireObject","_owner":{"__isSmartRef__":true,"id":10370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10374":{"name":"project","type":"propertyDef","startIndex":33633,"stopIndex":34482,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10372},"className":"lively.Examples.threedee.WireObject","_owner":{"__isSmartRef__":true,"id":10370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10375":{"name":"display","type":"propertyDef","startIndex":34485,"stopIndex":35713,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10372},"className":"lively.Examples.threedee.WireObject","_owner":{"__isSmartRef__":true,"id":10370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10376":{"name":"paint","type":"propertyDef","startIndex":35716,"stopIndex":35937,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10372},"className":"lively.Examples.threedee.WireObject","_owner":{"__isSmartRef__":true,"id":10370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10377":{"name":"lively.Examples.Sun3DMorph","type":"klassDef","startIndex":35944,"stopIndex":37139,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10378},{"__isSmartRef__":true,"id":10380},{"__isSmartRef__":true,"id":10381}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PanelMorph","categories":[{"__isSmartRef__":true,"id":10379}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10378":{"name":"documentation","type":"propertyDef","startIndex":35996,"stopIndex":36040,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10379},"className":"lively.Examples.Sun3DMorph","_owner":{"__isSmartRef__":true,"id":10377},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10379":{"name":"default category","type":"categoryDef","startIndex":35994,"stopIndex":37136,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10378},{"__isSmartRef__":true,"id":10380},{"__isSmartRef__":true,"id":10381}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10380":{"name":"initialize","type":"propertyDef","startIndex":36043,"stopIndex":36854,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10379},"className":"lively.Examples.Sun3DMorph","_owner":{"__isSmartRef__":true,"id":10377},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10381":{"name":"onMouseMove","type":"propertyDef","startIndex":36857,"stopIndex":37135,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10379},"className":"lively.Examples.Sun3DMorph","_owner":{"__isSmartRef__":true,"id":10377},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10382":{"name":null,"type":"comment","startIndex":37140,"stopIndex":37140,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10383":{"name":null,"type":"comment","startIndex":37174,"stopIndex":38367,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10384":{"name":"namespace('asteroids', thisModule)","type":"usingDef","startIndex":38368,"stopIndex":76096,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10385},{"__isSmartRef__":true,"id":10386},{"__isSmartRef__":true,"id":10387},{"__isSmartRef__":true,"id":10388},{"__isSmartRef__":true,"id":10389},{"__isSmartRef__":true,"id":10390},{"__isSmartRef__":true,"id":10391},{"__isSmartRef__":true,"id":10409},{"__isSmartRef__":true,"id":10410},{"__isSmartRef__":true,"id":10411},{"__isSmartRef__":true,"id":10412},{"__isSmartRef__":true,"id":10413},{"__isSmartRef__":true,"id":10414},{"__isSmartRef__":true,"id":10415},{"__isSmartRef__":true,"id":10416},{"__isSmartRef__":true,"id":10417},{"__isSmartRef__":true,"id":10418},{"__isSmartRef__":true,"id":10419},{"__isSmartRef__":true,"id":10420},{"__isSmartRef__":true,"id":10421},{"__isSmartRef__":true,"id":10422},{"__isSmartRef__":true,"id":10423},{"__isSmartRef__":true,"id":10424},{"__isSmartRef__":true,"id":10425},{"__isSmartRef__":true,"id":10426},{"__isSmartRef__":true,"id":10427},{"__isSmartRef__":true,"id":10428},{"__isSmartRef__":true,"id":10429},{"__isSmartRef__":true,"id":10430},{"__isSmartRef__":true,"id":10431},{"__isSmartRef__":true,"id":10432},{"__isSmartRef__":true,"id":10433},{"__isSmartRef__":true,"id":10434},{"__isSmartRef__":true,"id":10435},{"__isSmartRef__":true,"id":10436},{"__isSmartRef__":true,"id":10437},{"__isSmartRef__":true,"id":10438},{"__isSmartRef__":true,"id":10439},{"__isSmartRef__":true,"id":10440},{"__isSmartRef__":true,"id":10441},{"__isSmartRef__":true,"id":10442},{"__isSmartRef__":true,"id":10443},{"__isSmartRef__":true,"id":10444},{"__isSmartRef__":true,"id":10445},{"__isSmartRef__":true,"id":10446},{"__isSmartRef__":true,"id":10447},{"__isSmartRef__":true,"id":10448},{"__isSmartRef__":true,"id":10449},{"__isSmartRef__":true,"id":10450},{"__isSmartRef__":true,"id":10451},{"__isSmartRef__":true,"id":10452},{"__isSmartRef__":true,"id":10453},{"__isSmartRef__":true,"id":10454},{"__isSmartRef__":true,"id":10455},{"__isSmartRef__":true,"id":10456},{"__isSmartRef__":true,"id":10457},{"__isSmartRef__":true,"id":10458},{"__isSmartRef__":true,"id":10459},{"__isSmartRef__":true,"id":10460},{"__isSmartRef__":true,"id":10461},{"__isSmartRef__":true,"id":10462},{"__isSmartRef__":true,"id":10463},{"__isSmartRef__":true,"id":10464},{"__isSmartRef__":true,"id":10465},{"__isSmartRef__":true,"id":10466},{"__isSmartRef__":true,"id":10467},{"__isSmartRef__":true,"id":10468},{"__isSmartRef__":true,"id":10469},{"__isSmartRef__":true,"id":10470},{"__isSmartRef__":true,"id":10471},{"__isSmartRef__":true,"id":10472},{"__isSmartRef__":true,"id":10473},{"__isSmartRef__":true,"id":10474},{"__isSmartRef__":true,"id":10475},{"__isSmartRef__":true,"id":10476},{"__isSmartRef__":true,"id":10477},{"__isSmartRef__":true,"id":10478},{"__isSmartRef__":true,"id":10479},{"__isSmartRef__":true,"id":10480},{"__isSmartRef__":true,"id":10481},{"__isSmartRef__":true,"id":10482},{"__isSmartRef__":true,"id":10483},{"__isSmartRef__":true,"id":10484},{"__isSmartRef__":true,"id":10485},{"__isSmartRef__":true,"id":10486},{"__isSmartRef__":true,"id":10487},{"__isSmartRef__":true,"id":10488},{"__isSmartRef__":true,"id":10489},{"__isSmartRef__":true,"id":10490},{"__isSmartRef__":true,"id":10491},{"__isSmartRef__":true,"id":10492},{"__isSmartRef__":true,"id":10493},{"__isSmartRef__":true,"id":10494},{"__isSmartRef__":true,"id":10495},{"__isSmartRef__":true,"id":10496},{"__isSmartRef__":true,"id":10497},{"__isSmartRef__":true,"id":10498},{"__isSmartRef__":true,"id":10499},{"__isSmartRef__":true,"id":10500},{"__isSmartRef__":true,"id":10501},{"__isSmartRef__":true,"id":10502},{"__isSmartRef__":true,"id":10503},{"__isSmartRef__":true,"id":10504},{"__isSmartRef__":true,"id":10505},{"__isSmartRef__":true,"id":10506},{"__isSmartRef__":true,"id":10507},{"__isSmartRef__":true,"id":10508},{"__isSmartRef__":true,"id":10509},{"__isSmartRef__":true,"id":10510},{"__isSmartRef__":true,"id":10511},{"__isSmartRef__":true,"id":10512},{"__isSmartRef__":true,"id":10513},{"__isSmartRef__":true,"id":10514},{"__isSmartRef__":true,"id":10515},{"__isSmartRef__":true,"id":10516},{"__isSmartRef__":true,"id":10517},{"__isSmartRef__":true,"id":10518},{"__isSmartRef__":true,"id":10519},{"__isSmartRef__":true,"id":10520},{"__isSmartRef__":true,"id":10521},{"__isSmartRef__":true,"id":10522},{"__isSmartRef__":true,"id":10523},{"__isSmartRef__":true,"id":10524},{"__isSmartRef__":true,"id":10525},{"__isSmartRef__":true,"id":10526},{"__isSmartRef__":true,"id":10527},{"__isSmartRef__":true,"id":10528},{"__isSmartRef__":true,"id":10529},{"__isSmartRef__":true,"id":10530},{"__isSmartRef__":true,"id":10531},{"__isSmartRef__":true,"id":10532},{"__isSmartRef__":true,"id":10533},{"__isSmartRef__":true,"id":10534},{"__isSmartRef__":true,"id":10535},{"__isSmartRef__":true,"id":10536},{"__isSmartRef__":true,"id":10537},{"__isSmartRef__":true,"id":10538},{"__isSmartRef__":true,"id":10539},{"__isSmartRef__":true,"id":10540},{"__isSmartRef__":true,"id":10541},{"__isSmartRef__":true,"id":10542},{"__isSmartRef__":true,"id":10543},{"__isSmartRef__":true,"id":10546},{"__isSmartRef__":true,"id":10547},{"__isSmartRef__":true,"id":10548},{"__isSmartRef__":true,"id":10549},{"__isSmartRef__":true,"id":10550},{"__isSmartRef__":true,"id":10551},{"__isSmartRef__":true,"id":10552},{"__isSmartRef__":true,"id":10553},{"__isSmartRef__":true,"id":10554},{"__isSmartRef__":true,"id":10555},{"__isSmartRef__":true,"id":10556},{"__isSmartRef__":true,"id":10557},{"__isSmartRef__":true,"id":10558},{"__isSmartRef__":true,"id":10559},{"__isSmartRef__":true,"id":10560},{"__isSmartRef__":true,"id":10561},{"__isSmartRef__":true,"id":10562},{"__isSmartRef__":true,"id":10563},{"__isSmartRef__":true,"id":10564},{"__isSmartRef__":true,"id":10565},{"__isSmartRef__":true,"id":10566},{"__isSmartRef__":true,"id":10567},{"__isSmartRef__":true,"id":10568},{"__isSmartRef__":true,"id":10578},{"__isSmartRef__":true,"id":10579}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10385":{"name":null,"type":"comment","startIndex":38433,"stopIndex":38454,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10386":{"name":null,"type":"unknown","startIndex":38455,"stopIndex":38476,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10387":{"name":null,"type":"comment","startIndex":38477,"stopIndex":38587,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10388":{"name":null,"type":"unknown","startIndex":38588,"stopIndex":38609,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10389":{"name":null,"type":"unknown","startIndex":38610,"stopIndex":38631,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10390":{"name":null,"type":"comment","startIndex":38632,"stopIndex":38982,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10391":{"name":"lively.Examples.asteroids.AsteroidsSprite","type":"klassDef","startIndex":38983,"stopIndex":42630,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10392},{"__isSmartRef__":true,"id":10394},{"__isSmartRef__":true,"id":10395},{"__isSmartRef__":true,"id":10396},{"__isSmartRef__":true,"id":10397},{"__isSmartRef__":true,"id":10398},{"__isSmartRef__":true,"id":10399},{"__isSmartRef__":true,"id":10400},{"__isSmartRef__":true,"id":10401},{"__isSmartRef__":true,"id":10402},{"__isSmartRef__":true,"id":10403},{"__isSmartRef__":true,"id":10404},{"__isSmartRef__":true,"id":10405},{"__isSmartRef__":true,"id":10406},{"__isSmartRef__":true,"id":10407},{"__isSmartRef__":true,"id":10408}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":10393}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10392":{"name":"active","type":"propertyDef","startIndex":39047,"stopIndex":39078,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10393":{"name":"default category","type":"categoryDef","startIndex":39044,"stopIndex":42627,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10392},{"__isSmartRef__":true,"id":10394},{"__isSmartRef__":true,"id":10395},{"__isSmartRef__":true,"id":10396},{"__isSmartRef__":true,"id":10397},{"__isSmartRef__":true,"id":10398},{"__isSmartRef__":true,"id":10399},{"__isSmartRef__":true,"id":10400},{"__isSmartRef__":true,"id":10401},{"__isSmartRef__":true,"id":10402},{"__isSmartRef__":true,"id":10403},{"__isSmartRef__":true,"id":10404},{"__isSmartRef__":true,"id":10405},{"__isSmartRef__":true,"id":10406},{"__isSmartRef__":true,"id":10407},{"__isSmartRef__":true,"id":10408}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10394":{"name":"angle","type":"propertyDef","startIndex":39079,"stopIndex":39125,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10395":{"name":"deltaAngle","type":"propertyDef","startIndex":39126,"stopIndex":39197,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10396":{"name":"currentX","type":"propertyDef","startIndex":39198,"stopIndex":39270,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10397":{"name":"currentY","type":"propertyDef","startIndex":39271,"stopIndex":39337,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10398":{"name":"deltaX","type":"propertyDef","startIndex":39339,"stopIndex":39366,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10399":{"name":"deltaY","type":"propertyDef","startIndex":39367,"stopIndex":39443,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10400":{"name":"shape","type":"propertyDef","startIndex":39445,"stopIndex":39474,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10401":{"name":"sprite","type":"propertyDef","startIndex":39475,"stopIndex":39575,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10402":{"name":"morph","type":"propertyDef","startIndex":39576,"stopIndex":39788,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10403":{"name":"morphShape","type":"propertyDef","startIndex":39790,"stopIndex":39810,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10404":{"name":"initialize","type":"propertyDef","startIndex":39813,"stopIndex":40043,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10405":{"name":"advance","type":"propertyDef","startIndex":40067,"stopIndex":40880,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10406":{"name":"render","type":"propertyDef","startIndex":40887,"stopIndex":41381,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10407":{"name":"isColliding","type":"propertyDef","startIndex":41388,"stopIndex":41934,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10408":{"name":"createMorph","type":"propertyDef","startIndex":41937,"stopIndex":42626,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10393},"className":"lively.Examples.asteroids.AsteroidsSprite","_owner":{"__isSmartRef__":true,"id":10391},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10409":{"name":null,"type":"comment","startIndex":42631,"stopIndex":42921,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10410":{"name":null,"type":"unknown","startIndex":42922,"stopIndex":43015,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10411":{"name":null,"type":"unknown","startIndex":43016,"stopIndex":43113,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10412":{"name":null,"type":"unknown","startIndex":43114,"stopIndex":43209,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10413":{"name":null,"type":"unknown","startIndex":43210,"stopIndex":43302,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10414":{"name":null,"type":"unknown","startIndex":43303,"stopIndex":43398,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10415":{"name":null,"type":"unknown","startIndex":43399,"stopIndex":43481,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10416":{"name":null,"type":"unknown","startIndex":43482,"stopIndex":43501,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10417":{"name":null,"type":"comment","startIndex":43502,"stopIndex":43527,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10418":{"name":null,"type":"unknown","startIndex":43528,"stopIndex":43609,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10419":{"name":null,"type":"unknown","startIndex":43610,"stopIndex":43631,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10420":{"name":null,"type":"comment","startIndex":43632,"stopIndex":43656,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10421":{"name":null,"type":"unknown","startIndex":43657,"stopIndex":43678,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10422":{"name":null,"type":"comment","startIndex":43679,"stopIndex":43703,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10423":{"name":null,"type":"unknown","startIndex":43704,"stopIndex":43725,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10424":{"name":null,"type":"comment","startIndex":43726,"stopIndex":43751,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10425":{"name":null,"type":"unknown","startIndex":43752,"stopIndex":43840,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10426":{"name":null,"type":"unknown","startIndex":43841,"stopIndex":43865,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10427":{"name":null,"type":"comment","startIndex":43866,"stopIndex":43890,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10428":{"name":null,"type":"unknown","startIndex":43891,"stopIndex":43961,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10429":{"name":null,"type":"unknown","startIndex":43962,"stopIndex":44032,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10430":{"name":null,"type":"unknown","startIndex":44033,"stopIndex":44057,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10431":{"name":null,"type":"comment","startIndex":44058,"stopIndex":44082,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10432":{"name":null,"type":"unknown","startIndex":44083,"stopIndex":44107,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10433":{"name":null,"type":"comment","startIndex":44108,"stopIndex":44133,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10434":{"name":null,"type":"unknown","startIndex":44134,"stopIndex":44229,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10435":{"name":null,"type":"unknown","startIndex":44230,"stopIndex":44254,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10436":{"name":null,"type":"comment","startIndex":44255,"stopIndex":44279,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10437":{"name":null,"type":"unknown","startIndex":44280,"stopIndex":44304,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10438":{"name":null,"type":"comment","startIndex":44305,"stopIndex":44329,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10439":{"name":null,"type":"unknown","startIndex":44330,"stopIndex":44355,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10440":{"name":null,"type":"comment","startIndex":44356,"stopIndex":44381,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10441":{"name":null,"type":"unknown","startIndex":44382,"stopIndex":44482,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10442":{"name":null,"type":"unknown","startIndex":44483,"stopIndex":44592,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10443":{"name":null,"type":"unknown","startIndex":44593,"stopIndex":44610,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10444":{"name":null,"type":"comment","startIndex":44611,"stopIndex":44626,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10445":{"name":null,"type":"unknown","startIndex":44627,"stopIndex":44638,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10446":{"name":null,"type":"comment","startIndex":44639,"stopIndex":44668,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10447":{"name":null,"type":"unknown","startIndex":44669,"stopIndex":44683,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10448":{"name":null,"type":"comment","startIndex":44684,"stopIndex":44695,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10449":{"name":null,"type":"unknown","startIndex":44696,"stopIndex":44714,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10450":{"name":null,"type":"comment","startIndex":44715,"stopIndex":44726,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10451":{"name":null,"type":"unknown","startIndex":44727,"stopIndex":44748,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10452":{"name":null,"type":"comment","startIndex":44749,"stopIndex":44760,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10453":{"name":null,"type":"unknown","startIndex":44761,"stopIndex":44781,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10454":{"name":null,"type":"comment","startIndex":44782,"stopIndex":44798,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10455":{"name":null,"type":"unknown","startIndex":44799,"stopIndex":44818,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10456":{"name":null,"type":"comment","startIndex":44819,"stopIndex":44834,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10457":{"name":null,"type":"unknown","startIndex":44835,"stopIndex":44854,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10458":{"name":null,"type":"comment","startIndex":44855,"stopIndex":44870,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10459":{"name":null,"type":"unknown","startIndex":44871,"stopIndex":44891,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10460":{"name":null,"type":"comment","startIndex":44892,"stopIndex":44907,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10461":{"name":null,"type":"unknown","startIndex":44908,"stopIndex":44926,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10462":{"name":null,"type":"comment","startIndex":44927,"stopIndex":44942,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10463":{"name":null,"type":"unknown","startIndex":44943,"stopIndex":44962,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10464":{"name":null,"type":"comment","startIndex":44963,"stopIndex":44996,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10465":{"name":null,"type":"unknown","startIndex":44997,"stopIndex":45015,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10466":{"name":null,"type":"comment","startIndex":45016,"stopIndex":45031,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10467":{"name":null,"type":"unknown","startIndex":45032,"stopIndex":45050,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10468":{"name":null,"type":"comment","startIndex":45051,"stopIndex":45066,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10469":{"name":null,"type":"unknown","startIndex":45067,"stopIndex":45085,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10470":{"name":null,"type":"comment","startIndex":45086,"stopIndex":45101,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10471":{"name":null,"type":"unknown","startIndex":45102,"stopIndex":45120,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10472":{"name":null,"type":"comment","startIndex":45121,"stopIndex":45169,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10473":{"name":null,"type":"unknown","startIndex":45170,"stopIndex":45186,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10474":{"name":null,"type":"comment","startIndex":45187,"stopIndex":45212,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10475":{"name":null,"type":"unknown","startIndex":45213,"stopIndex":45228,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10476":{"name":null,"type":"comment","startIndex":45229,"stopIndex":45254,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10477":{"name":null,"type":"unknown","startIndex":45255,"stopIndex":45274,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10478":{"name":null,"type":"comment","startIndex":45275,"stopIndex":45300,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10479":{"name":null,"type":"unknown","startIndex":45301,"stopIndex":45385,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10480":{"name":null,"type":"unknown","startIndex":45386,"stopIndex":45470,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10481":{"name":null,"type":"unknown","startIndex":45471,"stopIndex":45559,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10482":{"name":null,"type":"unknown","startIndex":45560,"stopIndex":45652,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10483":{"name":null,"type":"unknown","startIndex":45653,"stopIndex":45725,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10484":{"name":null,"type":"unknown","startIndex":45726,"stopIndex":45816,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10485":{"name":null,"type":"unknown","startIndex":45817,"stopIndex":45918,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10486":{"name":null,"type":"unknown","startIndex":45919,"stopIndex":46040,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10487":{"name":null,"type":"unknown","startIndex":46041,"stopIndex":46113,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10488":{"name":null,"type":"unknown","startIndex":46114,"stopIndex":46203,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10489":{"name":null,"type":"unknown","startIndex":46204,"stopIndex":46301,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10490":{"name":null,"type":"unknown","startIndex":46302,"stopIndex":46353,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10491":{"name":null,"type":"unknown","startIndex":46354,"stopIndex":46397,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10492":{"name":null,"type":"unknown","startIndex":46398,"stopIndex":46493,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10493":{"name":null,"type":"unknown","startIndex":46494,"stopIndex":46585,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10494":{"name":null,"type":"unknown","startIndex":46586,"stopIndex":46708,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10495":{"name":null,"type":"unknown","startIndex":46709,"stopIndex":46808,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10496":{"name":null,"type":"unknown","startIndex":46809,"stopIndex":46998,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10497":{"name":null,"type":"unknown","startIndex":46999,"stopIndex":47021,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10498":{"name":null,"type":"comment","startIndex":47022,"stopIndex":47039,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10499":{"name":null,"type":"unknown","startIndex":47040,"stopIndex":47066,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10500":{"name":null,"type":"comment","startIndex":47067,"stopIndex":47084,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10501":{"name":null,"type":"unknown","startIndex":47085,"stopIndex":47106,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10502":{"name":null,"type":"comment","startIndex":47107,"stopIndex":47124,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10503":{"name":null,"type":"unknown","startIndex":47125,"stopIndex":47149,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10504":{"name":null,"type":"comment","startIndex":47150,"stopIndex":47167,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10505":{"name":null,"type":"unknown","startIndex":47168,"stopIndex":47191,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10506":{"name":null,"type":"comment","startIndex":47192,"stopIndex":47209,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10507":{"name":null,"type":"unknown","startIndex":47210,"stopIndex":47236,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10508":{"name":null,"type":"comment","startIndex":47237,"stopIndex":47254,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10509":{"name":null,"type":"unknown","startIndex":47255,"stopIndex":47276,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10510":{"name":null,"type":"comment","startIndex":47277,"stopIndex":47330,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10511":{"name":null,"type":"unknown","startIndex":47331,"stopIndex":47360,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10512":{"name":null,"type":"comment","startIndex":47361,"stopIndex":47376,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10513":{"name":null,"type":"unknown","startIndex":47377,"stopIndex":47403,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10514":{"name":null,"type":"comment","startIndex":47404,"stopIndex":47419,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10515":{"name":null,"type":"unknown","startIndex":47420,"stopIndex":47447,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10516":{"name":null,"type":"comment","startIndex":47448,"stopIndex":47504,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10517":{"name":null,"type":"unknown","startIndex":47505,"stopIndex":47529,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10518":{"name":null,"type":"comment","startIndex":47530,"stopIndex":47547,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10519":{"name":null,"type":"unknown","startIndex":47548,"stopIndex":47568,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10520":{"name":null,"type":"comment","startIndex":47569,"stopIndex":47586,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10521":{"name":null,"type":"unknown","startIndex":47587,"stopIndex":47610,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10522":{"name":null,"type":"comment","startIndex":47611,"stopIndex":47772,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10523":{"name":null,"type":"unknown","startIndex":47773,"stopIndex":47795,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10524":{"name":null,"type":"comment","startIndex":47796,"stopIndex":47797,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10525":{"name":null,"type":"unknown","startIndex":47798,"stopIndex":47820,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10526":{"name":null,"type":"comment","startIndex":47821,"stopIndex":47822,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10527":{"name":null,"type":"unknown","startIndex":47823,"stopIndex":47845,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10528":{"name":null,"type":"comment","startIndex":47846,"stopIndex":47847,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10529":{"name":null,"type":"unknown","startIndex":47848,"stopIndex":47870,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10530":{"name":null,"type":"comment","startIndex":47871,"stopIndex":47872,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10531":{"name":null,"type":"unknown","startIndex":47873,"stopIndex":47895,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10532":{"name":null,"type":"comment","startIndex":47896,"stopIndex":47900,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10533":{"name":null,"type":"unknown","startIndex":47901,"stopIndex":47920,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10534":{"name":null,"type":"comment","startIndex":47921,"stopIndex":47922,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10535":{"name":null,"type":"unknown","startIndex":47923,"stopIndex":48237,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10536":{"name":"initialize","type":"propertyDef","startIndex":48238,"stopIndex":49762,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"module","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10537":{"name":"initGame","type":"functionDef","startIndex":49763,"stopIndex":50136,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10538":{"name":"endGame","type":"functionDef","startIndex":50137,"stopIndex":50342,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10539":{"name":"initBackground","type":"functionDef","startIndex":50343,"stopIndex":50800,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10540":{"name":null,"type":"unknown","startIndex":50801,"stopIndex":50862,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10541":{"name":null,"type":"comment","startIndex":50863,"stopIndex":50865,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10542":{"name":"showTextStrings","type":"functionDef","startIndex":50866,"stopIndex":52514,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10543":{"name":"lively.Examples.asteroids.GameMorph","type":"klassDef","startIndex":52515,"stopIndex":54598,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10544}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ClipMorph","categories":[{"__isSmartRef__":true,"id":10545}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10544":{"name":"runAsteroidsGame","type":"propertyDef","startIndex":52580,"stopIndex":54594,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10545},"className":"lively.Examples.asteroids.GameMorph","_owner":{"__isSmartRef__":true,"id":10543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10545":{"name":"default category","type":"categoryDef","startIndex":52573,"stopIndex":54595,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10544}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10546":{"name":null,"type":"comment","startIndex":54599,"stopIndex":54601,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10547":{"name":"loadSounds","type":"functionDef","startIndex":54602,"stopIndex":55689,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10548":{"name":"initShip","type":"functionDef","startIndex":55690,"stopIndex":56009,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10549":{"name":"updateShip","type":"functionDef","startIndex":56010,"stopIndex":57955,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10550":{"name":"stopShip","type":"functionDef","startIndex":57956,"stopIndex":58252,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10551":{"name":"initPhotons","type":"functionDef","startIndex":58253,"stopIndex":58528,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10552":{"name":"updatePhotons","type":"functionDef","startIndex":58529,"stopIndex":59020,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10553":{"name":"initUfo","type":"functionDef","startIndex":59021,"stopIndex":59765,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10554":{"name":"updateUfo","type":"functionDef","startIndex":59766,"stopIndex":60778,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10555":{"name":"stopUfo","type":"functionDef","startIndex":60779,"stopIndex":61030,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10556":{"name":"initMissile","type":"functionDef","startIndex":61031,"stopIndex":61440,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10557":{"name":"updateMissile","type":"functionDef","startIndex":61441,"stopIndex":62484,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10558":{"name":"guideMissile","type":"functionDef","startIndex":62485,"stopIndex":63349,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10559":{"name":"stopMissile","type":"functionDef","startIndex":63350,"stopIndex":63604,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10560":{"name":"initAsteroids","type":"functionDef","startIndex":63605,"stopIndex":65591,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10561":{"name":"initSmallAsteroids","type":"functionDef","startIndex":65592,"stopIndex":67235,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10562":{"name":"updateAsteroids","type":"functionDef","startIndex":67236,"stopIndex":68795,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10563":{"name":"initExplosions","type":"functionDef","startIndex":68796,"stopIndex":69123,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10564":{"name":"explode","type":"functionDef","startIndex":69124,"stopIndex":70582,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10565":{"name":"updateExplosions","type":"functionDef","startIndex":70583,"stopIndex":71436,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10566":{"name":"keyDown","type":"functionDef","startIndex":71437,"stopIndex":74403,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10567":{"name":"keyUp","type":"functionDef","startIndex":74404,"stopIndex":74871,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10568":{"name":"module.GameMorph","type":"klassExtensionDef","startIndex":74872,"stopIndex":75936,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10569},{"__isSmartRef__":true,"id":10571},{"__isSmartRef__":true,"id":10572},{"__isSmartRef__":true,"id":10573},{"__isSmartRef__":true,"id":10574},{"__isSmartRef__":true,"id":10575},{"__isSmartRef__":true,"id":10576},{"__isSmartRef__":true,"id":10577}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":10570}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10569":{"name":"initialize","type":"propertyDef","startIndex":74907,"stopIndex":75113,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10570":{"name":"default category","type":"categoryDef","startIndex":74900,"stopIndex":75933,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10569},{"__isSmartRef__":true,"id":10571},{"__isSmartRef__":true,"id":10572},{"__isSmartRef__":true,"id":10573},{"__isSmartRef__":true,"id":10574},{"__isSmartRef__":true,"id":10575},{"__isSmartRef__":true,"id":10576},{"__isSmartRef__":true,"id":10577}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10571":{"name":"handlesMouseDown","type":"propertyDef","startIndex":75120,"stopIndex":75156,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10572":{"name":"onMouseDown","type":"propertyDef","startIndex":75167,"stopIndex":75272,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10573":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":75275,"stopIndex":75356,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10574":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":75363,"stopIndex":75401,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10575":{"name":"onKeyDown","type":"propertyDef","startIndex":75404,"stopIndex":75632,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10576":{"name":"onKeyUp","type":"propertyDef","startIndex":75635,"stopIndex":75732,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10577":{"name":"shutdown","type":"propertyDef","startIndex":75735,"stopIndex":75932,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10570},"className":"module.GameMorph","_owner":{"__isSmartRef__":true,"id":10568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10578":{"name":null,"type":"comment","startIndex":75937,"stopIndex":75941,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10579":{"name":"makeGameMorph","type":"propertyDef","startIndex":75942,"stopIndex":76057,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"module","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10580":{"name":null,"type":"comment","startIndex":76097,"stopIndex":76507,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10581":{"name":"WeatherWidget","type":"klassDef","startIndex":76508,"stopIndex":82414,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10582},{"__isSmartRef__":true,"id":10584},{"__isSmartRef__":true,"id":10585},{"__isSmartRef__":true,"id":10586},{"__isSmartRef__":true,"id":10587},{"__isSmartRef__":true,"id":10588},{"__isSmartRef__":true,"id":10589},{"__isSmartRef__":true,"id":10590},{"__isSmartRef__":true,"id":10591},{"__isSmartRef__":true,"id":10592}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["NetRequestReporterTrait"],"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":10583}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10582":{"name":"description","type":"propertyDef","startIndex":76569,"stopIndex":76649,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10583":{"name":"default category","type":"categoryDef","startIndex":76566,"stopIndex":82411,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10582},{"__isSmartRef__":true,"id":10584},{"__isSmartRef__":true,"id":10585},{"__isSmartRef__":true,"id":10586},{"__isSmartRef__":true,"id":10587},{"__isSmartRef__":true,"id":10588},{"__isSmartRef__":true,"id":10589},{"__isSmartRef__":true,"id":10590},{"__isSmartRef__":true,"id":10591},{"__isSmartRef__":true,"id":10592}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10584":{"name":"imagepath","type":"propertyDef","startIndex":76651,"stopIndex":76724,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10585":{"name":"viewTitle","type":"propertyDef","startIndex":76726,"stopIndex":76757,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10586":{"name":"initialViewExtent","type":"propertyDef","startIndex":76759,"stopIndex":76794,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10587":{"name":"initialize","type":"propertyDef","startIndex":76802,"stopIndex":77399,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10588":{"name":"onDeserialize","type":"propertyDef","startIndex":77406,"stopIndex":77477,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10589":{"name":"initializeTransientState","type":"propertyDef","startIndex":77484,"stopIndex":77635,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10590":{"name":"parseChannels","type":"propertyDef","startIndex":77642,"stopIndex":78425,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10591":{"name":"onLocaleUpdate","type":"propertyDef","startIndex":78428,"stopIndex":78941,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10592":{"name":"buildView","type":"propertyDef","startIndex":78949,"stopIndex":82410,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10583},"className":"WeatherWidget","_owner":{"__isSmartRef__":true,"id":10581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10593":{"name":null,"type":"comment","startIndex":82415,"stopIndex":82603,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10594":{"name":"StockWidget","type":"klassDef","startIndex":82604,"stopIndex":88692,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10595},{"__isSmartRef__":true,"id":10597},{"__isSmartRef__":true,"id":10598},{"__isSmartRef__":true,"id":10599},{"__isSmartRef__":true,"id":10600},{"__isSmartRef__":true,"id":10601},{"__isSmartRef__":true,"id":10602},{"__isSmartRef__":true,"id":10603},{"__isSmartRef__":true,"id":10604},{"__isSmartRef__":true,"id":10605},{"__isSmartRef__":true,"id":10606},{"__isSmartRef__":true,"id":10607},{"__isSmartRef__":true,"id":10608},{"__isSmartRef__":true,"id":10609},{"__isSmartRef__":true,"id":10610}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["NetRequestReporterTrait"],"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":10596}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10595":{"name":"viewTitle","type":"propertyDef","startIndex":82663,"stopIndex":82692,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10596":{"name":"default category","type":"categoryDef","startIndex":82660,"stopIndex":88689,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10595},{"__isSmartRef__":true,"id":10597},{"__isSmartRef__":true,"id":10598},{"__isSmartRef__":true,"id":10599},{"__isSmartRef__":true,"id":10600},{"__isSmartRef__":true,"id":10601},{"__isSmartRef__":true,"id":10602},{"__isSmartRef__":true,"id":10603},{"__isSmartRef__":true,"id":10604},{"__isSmartRef__":true,"id":10605},{"__isSmartRef__":true,"id":10606},{"__isSmartRef__":true,"id":10607},{"__isSmartRef__":true,"id":10608},{"__isSmartRef__":true,"id":10609},{"__isSmartRef__":true,"id":10610}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10597":{"name":"initialViewExtent","type":"propertyDef","startIndex":82694,"stopIndex":82729,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10598":{"name":"pins","type":"propertyDef","startIndex":82731,"stopIndex":82805,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10599":{"name":"initialize","type":"propertyDef","startIndex":82808,"stopIndex":83018,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10600":{"name":"initializeTransientState","type":"propertyDef","startIndex":83021,"stopIndex":83177,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10601":{"name":"onDeserialize","type":"propertyDef","startIndex":83180,"stopIndex":83251,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10602":{"name":"updateView","type":"propertyDef","startIndex":83258,"stopIndex":83722,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10603":{"name":"openIn","type":"propertyDef","startIndex":83725,"stopIndex":83895,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10604":{"name":"makeNewsURL","type":"propertyDef","startIndex":83898,"stopIndex":84125,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10605":{"name":"config","type":"propertyDef","startIndex":84128,"stopIndex":84924,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10606":{"name":"requestQuote","type":"propertyDef","startIndex":84934,"stopIndex":85384,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10607":{"name":"buildView","type":"propertyDef","startIndex":85391,"stopIndex":87808,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10608":{"name":"startSteppingRefreshCharts","type":"propertyDef","startIndex":87815,"stopIndex":87917,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10609":{"name":"formatQuote","type":"propertyDef","startIndex":87924,"stopIndex":88456,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10610":{"name":"extractNewsHeaders","type":"propertyDef","startIndex":88459,"stopIndex":88688,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10596},"className":"StockWidget","_owner":{"__isSmartRef__":true,"id":10594},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10611":{"name":null,"type":"comment","startIndex":88693,"stopIndex":88878,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10612":{"name":"maps","type":"propertyDef","startIndex":88879,"stopIndex":121578,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"thisModule","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10613":{"name":"namespace('canvascape', thisModule)","type":"usingDef","startIndex":121579,"stopIndex":145698,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10614},{"__isSmartRef__":true,"id":10615},{"__isSmartRef__":true,"id":10620},{"__isSmartRef__":true,"id":10621},{"__isSmartRef__":true,"id":10649}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10614":{"name":null,"type":"comment","startIndex":121646,"stopIndex":122052,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10615":{"name":"lively.Examples.canvascape.MiniMapMorph","type":"klassDef","startIndex":122053,"stopIndex":123201,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10616},{"__isSmartRef__":true,"id":10618},{"__isSmartRef__":true,"id":10619}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10617}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10616":{"name":"initialize","type":"propertyDef","startIndex":122118,"stopIndex":122740,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10617},"className":"lively.Examples.canvascape.MiniMapMorph","_owner":{"__isSmartRef__":true,"id":10615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10617":{"name":"default category","type":"categoryDef","startIndex":122111,"stopIndex":123198,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10616},{"__isSmartRef__":true,"id":10618},{"__isSmartRef__":true,"id":10619}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10618":{"name":"updatePlayerLocation","type":"propertyDef","startIndex":122748,"stopIndex":123118,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10617},"className":"lively.Examples.canvascape.MiniMapMorph","_owner":{"__isSmartRef__":true,"id":10615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10619":{"name":"getPlayerLocation","type":"propertyDef","startIndex":123126,"stopIndex":123197,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10617},"className":"lively.Examples.canvascape.MiniMapMorph","_owner":{"__isSmartRef__":true,"id":10615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10620":{"name":null,"type":"comment","startIndex":123202,"stopIndex":123261,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10621":{"name":"lively.Examples.canvascape.CanvasScapeMorph","type":"klassDef","startIndex":123262,"stopIndex":145675,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10622},{"__isSmartRef__":true,"id":10624},{"__isSmartRef__":true,"id":10625},{"__isSmartRef__":true,"id":10626},{"__isSmartRef__":true,"id":10627},{"__isSmartRef__":true,"id":10628},{"__isSmartRef__":true,"id":10629},{"__isSmartRef__":true,"id":10630},{"__isSmartRef__":true,"id":10631},{"__isSmartRef__":true,"id":10632},{"__isSmartRef__":true,"id":10633},{"__isSmartRef__":true,"id":10634},{"__isSmartRef__":true,"id":10635},{"__isSmartRef__":true,"id":10636},{"__isSmartRef__":true,"id":10637},{"__isSmartRef__":true,"id":10638},{"__isSmartRef__":true,"id":10639},{"__isSmartRef__":true,"id":10640},{"__isSmartRef__":true,"id":10641},{"__isSmartRef__":true,"id":10642},{"__isSmartRef__":true,"id":10643},{"__isSmartRef__":true,"id":10644},{"__isSmartRef__":true,"id":10645},{"__isSmartRef__":true,"id":10646},{"__isSmartRef__":true,"id":10647},{"__isSmartRef__":true,"id":10648}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ClipMorph","categories":[{"__isSmartRef__":true,"id":10623}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10622":{"name":"initialize","type":"propertyDef","startIndex":123335,"stopIndex":123614,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10623":{"name":"default category","type":"categoryDef","startIndex":123328,"stopIndex":145672,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10622},{"__isSmartRef__":true,"id":10624},{"__isSmartRef__":true,"id":10625},{"__isSmartRef__":true,"id":10626},{"__isSmartRef__":true,"id":10627},{"__isSmartRef__":true,"id":10628},{"__isSmartRef__":true,"id":10629},{"__isSmartRef__":true,"id":10630},{"__isSmartRef__":true,"id":10631},{"__isSmartRef__":true,"id":10632},{"__isSmartRef__":true,"id":10633},{"__isSmartRef__":true,"id":10634},{"__isSmartRef__":true,"id":10635},{"__isSmartRef__":true,"id":10636},{"__isSmartRef__":true,"id":10637},{"__isSmartRef__":true,"id":10638},{"__isSmartRef__":true,"id":10639},{"__isSmartRef__":true,"id":10640},{"__isSmartRef__":true,"id":10641},{"__isSmartRef__":true,"id":10642},{"__isSmartRef__":true,"id":10643},{"__isSmartRef__":true,"id":10644},{"__isSmartRef__":true,"id":10645},{"__isSmartRef__":true,"id":10646},{"__isSmartRef__":true,"id":10647},{"__isSmartRef__":true,"id":10648}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10624":{"name":"initGame","type":"propertyDef","startIndex":123622,"stopIndex":124208,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10625":{"name":"handlesMouseDown","type":"propertyDef","startIndex":124215,"stopIndex":124276,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10626":{"name":"onMouseDown","type":"propertyDef","startIndex":124279,"stopIndex":124384,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10627":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":124390,"stopIndex":124471,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10628":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":124478,"stopIndex":124516,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10629":{"name":"onKeyDown","type":"propertyDef","startIndex":124520,"stopIndex":124606,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10630":{"name":"onKeyUp","type":"propertyDef","startIndex":124609,"stopIndex":124691,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10631":{"name":"initParameters","type":"propertyDef","startIndex":124694,"stopIndex":127008,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10632":{"name":"wallDistance","type":"propertyDef","startIndex":127016,"stopIndex":130496,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10633":{"name":"drawCanvas","type":"propertyDef","startIndex":130504,"stopIndex":134541,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10634":{"name":"nearWall","type":"propertyDef","startIndex":134549,"stopIndex":135200,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10635":{"name":"wobbleGun","type":"propertyDef","startIndex":135203,"stopIndex":135422,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10636":{"name":"update","type":"propertyDef","startIndex":135429,"stopIndex":137194,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10637":{"name":"initUnderMap","type":"propertyDef","startIndex":137198,"stopIndex":138170,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10638":{"name":"calculateMaxObjects","type":"propertyDef","startIndex":138173,"stopIndex":138494,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10639":{"name":"endLevel","type":"propertyDef","startIndex":138501,"stopIndex":139108,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10640":{"name":"changeKey","type":"propertyDef","startIndex":139111,"stopIndex":139615,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10641":{"name":"keyDown","type":"propertyDef","startIndex":139618,"stopIndex":140171,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10642":{"name":"keyUp","type":"propertyDef","startIndex":140180,"stopIndex":140620,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10643":{"name":"loadLevel","type":"propertyDef","startIndex":140623,"stopIndex":144241,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10644":{"name":"stopGame","type":"propertyDef","startIndex":144244,"stopIndex":144535,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10645":{"name":"doUpdate","type":"propertyDef","startIndex":144538,"stopIndex":144823,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10646":{"name":"startGame","type":"propertyDef","startIndex":144826,"stopIndex":145162,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10647":{"name":"setDifficulty","type":"propertyDef","startIndex":145166,"stopIndex":145262,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10648":{"name":"morphMenu","type":"propertyDef","startIndex":145265,"stopIndex":145671,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10623},"className":"lively.Examples.canvascape.CanvasScapeMorph","_owner":{"__isSmartRef__":true,"id":10621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10649":{"name":null,"type":"comment","startIndex":145676,"stopIndex":145676,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10650":{"name":null,"type":"comment","startIndex":145699,"stopIndex":145893,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10651":{"name":"EngineMorph","type":"klassDef","startIndex":145894,"stopIndex":156208,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10652},{"__isSmartRef__":true,"id":10654},{"__isSmartRef__":true,"id":10655},{"__isSmartRef__":true,"id":10656},{"__isSmartRef__":true,"id":10657},{"__isSmartRef__":true,"id":10658},{"__isSmartRef__":true,"id":10659},{"__isSmartRef__":true,"id":10660},{"__isSmartRef__":true,"id":10661},{"__isSmartRef__":true,"id":10662},{"__isSmartRef__":true,"id":10663},{"__isSmartRef__":true,"id":10664},{"__isSmartRef__":true,"id":10665},{"__isSmartRef__":true,"id":10666},{"__isSmartRef__":true,"id":10667},{"__isSmartRef__":true,"id":10668},{"__isSmartRef__":true,"id":10669},{"__isSmartRef__":true,"id":10670},{"__isSmartRef__":true,"id":10671},{"__isSmartRef__":true,"id":10672}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":10653}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10652":{"name":"documentation","type":"propertyDef","startIndex":145930,"stopIndex":145973,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10653":{"name":"default category","type":"categoryDef","startIndex":145927,"stopIndex":156205,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10652},{"__isSmartRef__":true,"id":10654},{"__isSmartRef__":true,"id":10655},{"__isSmartRef__":true,"id":10656},{"__isSmartRef__":true,"id":10657},{"__isSmartRef__":true,"id":10658},{"__isSmartRef__":true,"id":10659},{"__isSmartRef__":true,"id":10660},{"__isSmartRef__":true,"id":10661},{"__isSmartRef__":true,"id":10662},{"__isSmartRef__":true,"id":10663},{"__isSmartRef__":true,"id":10664},{"__isSmartRef__":true,"id":10665},{"__isSmartRef__":true,"id":10666},{"__isSmartRef__":true,"id":10667},{"__isSmartRef__":true,"id":10668},{"__isSmartRef__":true,"id":10669},{"__isSmartRef__":true,"id":10670},{"__isSmartRef__":true,"id":10671},{"__isSmartRef__":true,"id":10672}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10654":{"name":"style","type":"propertyDef","startIndex":145975,"stopIndex":146248,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10655":{"name":"styleClass","type":"propertyDef","startIndex":146251,"stopIndex":146283,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10656":{"name":"pistonStyle","type":"propertyDef","startIndex":146286,"stopIndex":146628,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10657":{"name":"crankPinStyle","type":"propertyDef","startIndex":146635,"stopIndex":146868,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10658":{"name":"initialize","type":"propertyDef","startIndex":146874,"stopIndex":147127,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10659":{"name":"initializeTransientState","type":"propertyDef","startIndex":147130,"stopIndex":147582,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10660":{"name":"makeLayout","type":"propertyDef","startIndex":147585,"stopIndex":149338,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10661":{"name":"addRunMenu","type":"propertyDef","startIndex":149341,"stopIndex":149902,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10662":{"name":"makeCylinders","type":"propertyDef","startIndex":149905,"stopIndex":153070,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10663":{"name":"movePiston","type":"propertyDef","startIndex":153073,"stopIndex":154050,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10664":{"name":"setRunning","type":"propertyDef","startIndex":154053,"stopIndex":154161,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10665":{"name":"nextStep","type":"propertyDef","startIndex":154164,"stopIndex":154415,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10666":{"name":"doStep","type":"propertyDef","startIndex":154418,"stopIndex":155357,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10667":{"name":"setAlternateTiming","type":"propertyDef","startIndex":155360,"stopIndex":155604,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10668":{"name":"rebuild","type":"propertyDef","startIndex":155607,"stopIndex":155734,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10669":{"name":"setStepTime","type":"propertyDef","startIndex":155737,"stopIndex":155901,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10670":{"name":"onMouseMove","type":"propertyDef","startIndex":155904,"stopIndex":156079,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10671":{"name":"startSteppingScripts","type":"propertyDef","startIndex":156082,"stopIndex":156158,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10672":{"name":"layoutOnSubmorphLayout","type":"propertyDef","startIndex":156161,"stopIndex":156204,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10653},"className":"EngineMorph","_owner":{"__isSmartRef__":true,"id":10651},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10673":{"name":null,"type":"comment","startIndex":156209,"stopIndex":156209,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10674":{"name":"makeEngine","type":"propertyDef","startIndex":156210,"stopIndex":156810,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"EngineMorph","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10675":{"name":"AnimMorph","type":"klassDef","startIndex":156811,"stopIndex":159847,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10676},{"__isSmartRef__":true,"id":10678},{"__isSmartRef__":true,"id":10679},{"__isSmartRef__":true,"id":10680},{"__isSmartRef__":true,"id":10681},{"__isSmartRef__":true,"id":10682},{"__isSmartRef__":true,"id":10683},{"__isSmartRef__":true,"id":10684},{"__isSmartRef__":true,"id":10685},{"__isSmartRef__":true,"id":10686}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10677}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10676":{"name":"initialize","type":"propertyDef","startIndex":156846,"stopIndex":156978,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10677":{"name":"default category","type":"categoryDef","startIndex":156839,"stopIndex":159844,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10676},{"__isSmartRef__":true,"id":10678},{"__isSmartRef__":true,"id":10679},{"__isSmartRef__":true,"id":10680},{"__isSmartRef__":true,"id":10681},{"__isSmartRef__":true,"id":10682},{"__isSmartRef__":true,"id":10683},{"__isSmartRef__":true,"id":10684},{"__isSmartRef__":true,"id":10685},{"__isSmartRef__":true,"id":10686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10678":{"name":"startup","type":"propertyDef","startIndex":156981,"stopIndex":158400,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10679":{"name":"loadURL","type":"propertyDef","startIndex":158407,"stopIndex":158855,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10680":{"name":"reload","type":"propertyDef","startIndex":158858,"stopIndex":158958,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10681":{"name":"nextFrame","type":"propertyDef","startIndex":158973,"stopIndex":159072,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10682":{"name":"showNext","type":"propertyDef","startIndex":159079,"stopIndex":159354,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10683":{"name":"handlesMouseDown","type":"propertyDef","startIndex":159357,"stopIndex":159418,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10684":{"name":"onMouseOver","type":"propertyDef","startIndex":159425,"stopIndex":159600,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10685":{"name":"onMouseOut","type":"propertyDef","startIndex":159607,"stopIndex":159688,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10686":{"name":"onMouseDown","type":"propertyDef","startIndex":159695,"stopIndex":159843,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10677},"className":"AnimMorph","_owner":{"__isSmartRef__":true,"id":10675},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10687":{"name":null,"type":"comment","startIndex":159848,"stopIndex":159924,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10688":{"name":"PlayerMorph","type":"klassDef","startIndex":159925,"stopIndex":160852,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10689},{"__isSmartRef__":true,"id":10691},{"__isSmartRef__":true,"id":10692},{"__isSmartRef__":true,"id":10693},{"__isSmartRef__":true,"id":10694}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":10690}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10689":{"name":"initialize","type":"propertyDef","startIndex":159962,"stopIndex":160452,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10690},"className":"PlayerMorph","_owner":{"__isSmartRef__":true,"id":10688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10690":{"name":"default category","type":"categoryDef","startIndex":159959,"stopIndex":160849,"fileName":"lively/Examples.js","_subElements":[{"__isSmartRef__":true,"id":10689},{"__isSmartRef__":true,"id":10691},{"__isSmartRef__":true,"id":10692},{"__isSmartRef__":true,"id":10693},{"__isSmartRef__":true,"id":10694}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10691":{"name":"start","type":"propertyDef","startIndex":160459,"stopIndex":160524,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10690},"className":"PlayerMorph","_owner":{"__isSmartRef__":true,"id":10688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10692":{"name":"stop","type":"propertyDef","startIndex":160531,"stopIndex":160596,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10690},"className":"PlayerMorph","_owner":{"__isSmartRef__":true,"id":10688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10693":{"name":"openIn","type":"propertyDef","startIndex":160603,"stopIndex":160743,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10690},"className":"PlayerMorph","_owner":{"__isSmartRef__":true,"id":10688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10694":{"name":"startAnimation","type":"propertyDef","startIndex":160750,"stopIndex":160848,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10690},"className":"PlayerMorph","_owner":{"__isSmartRef__":true,"id":10688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10695":{"name":null,"type":"comment","startIndex":160853,"stopIndex":160854,"fileName":"lively/Examples.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10696":{"target":{"__isSmartRef__":true,"id":10697},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Fabrik.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"10697":{"name":"lively.Fabrik","type":"moduleDef","startIndex":1636,"stopIndex":115860,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10698},{"__isSmartRef__":true,"id":10699},{"__isSmartRef__":true,"id":10723},{"__isSmartRef__":true,"id":10724},{"__isSmartRef__":true,"id":10754},{"__isSmartRef__":true,"id":10755},{"__isSmartRef__":true,"id":10777},{"__isSmartRef__":true,"id":10778},{"__isSmartRef__":true,"id":10781},{"__isSmartRef__":true,"id":10782},{"__isSmartRef__":true,"id":10817},{"__isSmartRef__":true,"id":10818},{"__isSmartRef__":true,"id":10830},{"__isSmartRef__":true,"id":10831},{"__isSmartRef__":true,"id":10880},{"__isSmartRef__":true,"id":10881},{"__isSmartRef__":true,"id":10908},{"__isSmartRef__":true,"id":10909},{"__isSmartRef__":true,"id":10919},{"__isSmartRef__":true,"id":10920},{"__isSmartRef__":true,"id":10948},{"__isSmartRef__":true,"id":10949},{"__isSmartRef__":true,"id":10965},{"__isSmartRef__":true,"id":10966},{"__isSmartRef__":true,"id":10969},{"__isSmartRef__":true,"id":10970},{"__isSmartRef__":true,"id":10973},{"__isSmartRef__":true,"id":10974},{"__isSmartRef__":true,"id":10979},{"__isSmartRef__":true,"id":10980},{"__isSmartRef__":true,"id":10985},{"__isSmartRef__":true,"id":10986},{"__isSmartRef__":true,"id":10992},{"__isSmartRef__":true,"id":10996},{"__isSmartRef__":true,"id":10997},{"__isSmartRef__":true,"id":11005},{"__isSmartRef__":true,"id":11006},{"__isSmartRef__":true,"id":11030},{"__isSmartRef__":true,"id":11031},{"__isSmartRef__":true,"id":11039},{"__isSmartRef__":true,"id":11040},{"__isSmartRef__":true,"id":11046},{"__isSmartRef__":true,"id":11047},{"__isSmartRef__":true,"id":11053},{"__isSmartRef__":true,"id":11054},{"__isSmartRef__":true,"id":11064},{"__isSmartRef__":true,"id":11065},{"__isSmartRef__":true,"id":11073},{"__isSmartRef__":true,"id":11074},{"__isSmartRef__":true,"id":11080},{"__isSmartRef__":true,"id":11081},{"__isSmartRef__":true,"id":11087},{"__isSmartRef__":true,"id":11088},{"__isSmartRef__":true,"id":11092},{"__isSmartRef__":true,"id":11093},{"__isSmartRef__":true,"id":11098},{"__isSmartRef__":true,"id":11099},{"__isSmartRef__":true,"id":11103},{"__isSmartRef__":true,"id":11104},{"__isSmartRef__":true,"id":11118},{"__isSmartRef__":true,"id":11126},{"__isSmartRef__":true,"id":11127},{"__isSmartRef__":true,"id":11128},{"__isSmartRef__":true,"id":11129},{"__isSmartRef__":true,"id":11130},{"__isSmartRef__":true,"id":11131},{"__isSmartRef__":true,"id":11132},{"__isSmartRef__":true,"id":11133},{"__isSmartRef__":true,"id":11134},{"__isSmartRef__":true,"id":11135}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10698":{"name":null,"type":"comment","startIndex":1738,"stopIndex":1785,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10699":{"name":"Global.Fabrik","type":"objectDef","startIndex":1786,"stopIndex":20434,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10700},{"__isSmartRef__":true,"id":10702},{"__isSmartRef__":true,"id":10703},{"__isSmartRef__":true,"id":10704},{"__isSmartRef__":true,"id":10705},{"__isSmartRef__":true,"id":10706},{"__isSmartRef__":true,"id":10707},{"__isSmartRef__":true,"id":10708},{"__isSmartRef__":true,"id":10709},{"__isSmartRef__":true,"id":10710},{"__isSmartRef__":true,"id":10711},{"__isSmartRef__":true,"id":10712},{"__isSmartRef__":true,"id":10713},{"__isSmartRef__":true,"id":10714},{"__isSmartRef__":true,"id":10715},{"__isSmartRef__":true,"id":10716},{"__isSmartRef__":true,"id":10717},{"__isSmartRef__":true,"id":10718},{"__isSmartRef__":true,"id":10719},{"__isSmartRef__":true,"id":10720},{"__isSmartRef__":true,"id":10721},{"__isSmartRef__":true,"id":10722}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10700":{"name":"positionComponentRelativeToOther","type":"propertyDef","startIndex":1806,"stopIndex":1950,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10701":{"name":"default category","type":"categoryDef","startIndex":16,"stopIndex":18646,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10700},{"__isSmartRef__":true,"id":10702},{"__isSmartRef__":true,"id":10703},{"__isSmartRef__":true,"id":10704},{"__isSmartRef__":true,"id":10705},{"__isSmartRef__":true,"id":10706},{"__isSmartRef__":true,"id":10707},{"__isSmartRef__":true,"id":10708},{"__isSmartRef__":true,"id":10709},{"__isSmartRef__":true,"id":10710},{"__isSmartRef__":true,"id":10711},{"__isSmartRef__":true,"id":10712},{"__isSmartRef__":true,"id":10713},{"__isSmartRef__":true,"id":10714},{"__isSmartRef__":true,"id":10715},{"__isSmartRef__":true,"id":10716},{"__isSmartRef__":true,"id":10717},{"__isSmartRef__":true,"id":10718},{"__isSmartRef__":true,"id":10719},{"__isSmartRef__":true,"id":10720},{"__isSmartRef__":true,"id":10721},{"__isSmartRef__":true,"id":10722}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10702":{"name":"setPositionRel","type":"propertyDef","startIndex":1953,"stopIndex":2105,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10703":{"name":"addTextComponent","type":"propertyDef","startIndex":2109,"stopIndex":2225,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10704":{"name":"addFunctionComponent","type":"propertyDef","startIndex":2228,"stopIndex":2349,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10705":{"name":"addFunctionComponent2Inputs","type":"propertyDef","startIndex":2352,"stopIndex":2516,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10706":{"name":"addTextListComponent","type":"propertyDef","startIndex":2519,"stopIndex":2640,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10707":{"name":"addWebRequestComponent","type":"propertyDef","startIndex":2643,"stopIndex":2801,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10708":{"name":"addFabrikComponent","type":"propertyDef","startIndex":2805,"stopIndex":2988,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10709":{"name":"openComponentBox","type":"propertyDef","startIndex":2992,"stopIndex":3178,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10710":{"name":"openFabrikComponent","type":"propertyDef","startIndex":3181,"stopIndex":3554,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10711":{"name":"openFabrikComponentExample","type":"propertyDef","startIndex":3557,"stopIndex":4055,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10712":{"name":"openFabrikTextListExample","type":"propertyDef","startIndex":4058,"stopIndex":4515,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10713":{"name":"openConnectorMorphExample","type":"propertyDef","startIndex":4519,"stopIndex":5131,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10714":{"name":"openFabrikFunctionComponentExample","type":"propertyDef","startIndex":5134,"stopIndex":5562,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10715":{"name":"addConvenienceFunctions","type":"propertyDef","startIndex":5689,"stopIndex":6562,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10716":{"name":"openFabrikBrowserExample","type":"propertyDef","startIndex":6566,"stopIndex":8721,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10717":{"name":"openFabrikWebRequestExample","type":"propertyDef","startIndex":8724,"stopIndex":9196,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10718":{"name":"openFabrikWeatherWidgetExample","type":"propertyDef","startIndex":9200,"stopIndex":15414,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10719":{"name":"openCurrencyConverterExample","type":"propertyDef","startIndex":15418,"stopIndex":16971,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10720":{"name":"openFahrenheitCelsiusExample","type":"propertyDef","startIndex":16975,"stopIndex":18439,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10721":{"name":"openFahrenheitCelsiusExampleSimple","type":"propertyDef","startIndex":18445,"stopIndex":19915,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10722":{"name":"openFabrikFunctionComponentExample2","type":"propertyDef","startIndex":19919,"stopIndex":20431,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10701},"_owner":{"__isSmartRef__":true,"id":10699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10723":{"name":null,"type":"comment","startIndex":20435,"stopIndex":20994,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10724":{"name":"PinMorph","type":"klassDef","startIndex":20995,"stopIndex":28700,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10725},{"__isSmartRef__":true,"id":10727},{"__isSmartRef__":true,"id":10728},{"__isSmartRef__":true,"id":10729},{"__isSmartRef__":true,"id":10730},{"__isSmartRef__":true,"id":10731},{"__isSmartRef__":true,"id":10732},{"__isSmartRef__":true,"id":10733},{"__isSmartRef__":true,"id":10734},{"__isSmartRef__":true,"id":10735},{"__isSmartRef__":true,"id":10736},{"__isSmartRef__":true,"id":10737},{"__isSmartRef__":true,"id":10738},{"__isSmartRef__":true,"id":10739},{"__isSmartRef__":true,"id":10740},{"__isSmartRef__":true,"id":10741},{"__isSmartRef__":true,"id":10742},{"__isSmartRef__":true,"id":10743},{"__isSmartRef__":true,"id":10744},{"__isSmartRef__":true,"id":10745},{"__isSmartRef__":true,"id":10746},{"__isSmartRef__":true,"id":10747},{"__isSmartRef__":true,"id":10748},{"__isSmartRef__":true,"id":10749},{"__isSmartRef__":true,"id":10750},{"__isSmartRef__":true,"id":10751},{"__isSmartRef__":true,"id":10752},{"__isSmartRef__":true,"id":10753}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10726}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10725":{"name":"isPinMorph","type":"propertyDef","startIndex":21026,"stopIndex":21043,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10726":{"name":"default category","type":"categoryDef","startIndex":21022,"stopIndex":28697,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10725},{"__isSmartRef__":true,"id":10727},{"__isSmartRef__":true,"id":10728},{"__isSmartRef__":true,"id":10729},{"__isSmartRef__":true,"id":10730},{"__isSmartRef__":true,"id":10731},{"__isSmartRef__":true,"id":10732},{"__isSmartRef__":true,"id":10733},{"__isSmartRef__":true,"id":10734},{"__isSmartRef__":true,"id":10735},{"__isSmartRef__":true,"id":10736},{"__isSmartRef__":true,"id":10737},{"__isSmartRef__":true,"id":10738},{"__isSmartRef__":true,"id":10739},{"__isSmartRef__":true,"id":10740},{"__isSmartRef__":true,"id":10741},{"__isSmartRef__":true,"id":10742},{"__isSmartRef__":true,"id":10743},{"__isSmartRef__":true,"id":10744},{"__isSmartRef__":true,"id":10745},{"__isSmartRef__":true,"id":10746},{"__isSmartRef__":true,"id":10747},{"__isSmartRef__":true,"id":10748},{"__isSmartRef__":true,"id":10749},{"__isSmartRef__":true,"id":10750},{"__isSmartRef__":true,"id":10751},{"__isSmartRef__":true,"id":10752},{"__isSmartRef__":true,"id":10753}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10727":{"name":"style","type":"propertyDef","startIndex":21045,"stopIndex":21128,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10728":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":21130,"stopIndex":21217,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10729":{"name":"initialize","type":"propertyDef","startIndex":21221,"stopIndex":21482,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10730":{"name":"handlesMouseDown","type":"propertyDef","startIndex":21485,"stopIndex":21518,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10731":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":21520,"stopIndex":21552,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10732":{"name":"setPinHandle","type":"propertyDef","startIndex":21556,"stopIndex":21702,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10733":{"name":"copyFrom","type":"propertyDef","startIndex":21706,"stopIndex":21943,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10734":{"name":"addMorph","type":"propertyDef","startIndex":21977,"stopIndex":22443,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10735":{"name":"onMouseOut","type":"propertyDef","startIndex":22447,"stopIndex":22862,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10736":{"name":"setupInputMorphStyle","type":"propertyDef","startIndex":22866,"stopIndex":23282,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10737":{"name":"changed","type":"propertyDef","startIndex":23286,"stopIndex":23449,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10738":{"name":"getLocalPinPosition","type":"propertyDef","startIndex":23452,"stopIndex":23529,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10739":{"name":"getGlobalPinPosition","type":"propertyDef","startIndex":23533,"stopIndex":23650,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10740":{"name":"dropMeOnMorph","type":"propertyDef","startIndex":23654,"stopIndex":24353,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10741":{"name":"getPinPosition","type":"propertyDef","startIndex":24356,"stopIndex":24816,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10742":{"name":"updatePosition","type":"propertyDef","startIndex":24819,"stopIndex":25046,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10743":{"name":"snapToPointInside","type":"propertyDef","startIndex":25050,"stopIndex":25278,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10744":{"name":"onMouseMove","type":"propertyDef","startIndex":25282,"stopIndex":25437,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10745":{"name":"onMouseDown","type":"propertyDef","startIndex":25440,"stopIndex":26386,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10746":{"name":"getHelpText","type":"propertyDef","startIndex":26389,"stopIndex":26625,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10747":{"name":"prettyPrintObject","type":"propertyDef","startIndex":26628,"stopIndex":26826,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10748":{"name":"acceptsDropping","type":"propertyDef","startIndex":26829,"stopIndex":26894,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10749":{"name":"getFakeConnectorMorph","type":"propertyDef","startIndex":26898,"stopIndex":26987,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10750":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":26990,"stopIndex":27022,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10751":{"name":"startSnapping","type":"propertyDef","startIndex":27026,"stopIndex":27852,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10752":{"name":"adoptToBoundsChange","type":"propertyDef","startIndex":27856,"stopIndex":28326,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10753":{"name":"morphMenu","type":"propertyDef","startIndex":28329,"stopIndex":28696,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10726},"className":"PinMorph","_owner":{"__isSmartRef__":true,"id":10724},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10754":{"name":null,"type":"comment","startIndex":28701,"stopIndex":28748,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10755":{"name":"PinHandle","type":"klassDef","startIndex":28749,"stopIndex":35176,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10756},{"__isSmartRef__":true,"id":10758},{"__isSmartRef__":true,"id":10759},{"__isSmartRef__":true,"id":10760},{"__isSmartRef__":true,"id":10761},{"__isSmartRef__":true,"id":10762},{"__isSmartRef__":true,"id":10763},{"__isSmartRef__":true,"id":10764},{"__isSmartRef__":true,"id":10765},{"__isSmartRef__":true,"id":10766},{"__isSmartRef__":true,"id":10767},{"__isSmartRef__":true,"id":10768},{"__isSmartRef__":true,"id":10769},{"__isSmartRef__":true,"id":10770},{"__isSmartRef__":true,"id":10771},{"__isSmartRef__":true,"id":10772},{"__isSmartRef__":true,"id":10773},{"__isSmartRef__":true,"id":10774},{"__isSmartRef__":true,"id":10775},{"__isSmartRef__":true,"id":10776}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":10757}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10756":{"name":"isPinHandle","type":"propertyDef","startIndex":28782,"stopIndex":28800,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10757":{"name":"default category","type":"categoryDef","startIndex":28778,"stopIndex":35173,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10756},{"__isSmartRef__":true,"id":10758},{"__isSmartRef__":true,"id":10759},{"__isSmartRef__":true,"id":10760},{"__isSmartRef__":true,"id":10761},{"__isSmartRef__":true,"id":10762},{"__isSmartRef__":true,"id":10763},{"__isSmartRef__":true,"id":10764},{"__isSmartRef__":true,"id":10765},{"__isSmartRef__":true,"id":10766},{"__isSmartRef__":true,"id":10767},{"__isSmartRef__":true,"id":10768},{"__isSmartRef__":true,"id":10769},{"__isSmartRef__":true,"id":10770},{"__isSmartRef__":true,"id":10771},{"__isSmartRef__":true,"id":10772},{"__isSmartRef__":true,"id":10773},{"__isSmartRef__":true,"id":10774},{"__isSmartRef__":true,"id":10775},{"__isSmartRef__":true,"id":10776}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10758":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":28803,"stopIndex":28901,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10759":{"name":"initialize","type":"propertyDef","startIndex":28904,"stopIndex":29334,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10760":{"name":"copyFrom","type":"propertyDef","startIndex":29337,"stopIndex":29588,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10761":{"name":"getName","type":"propertyDef","startIndex":29594,"stopIndex":29677,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10762":{"name":"isInputPin","type":"propertyDef","startIndex":29681,"stopIndex":29798,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10763":{"name":"becomeInputPin","type":"propertyDef","startIndex":29802,"stopIndex":29952,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10764":{"name":"buildView","type":"propertyDef","startIndex":29955,"stopIndex":30160,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10765":{"name":"deleteView","type":"propertyDef","startIndex":30164,"stopIndex":30195,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10766":{"name":"setValue","type":"propertyDef","startIndex":30199,"stopIndex":30291,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10767":{"name":"getValue","type":"propertyDef","startIndex":30295,"stopIndex":30384,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10768":{"name":"reachablePins","type":"propertyDef","startIndex":30387,"stopIndex":31582,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10769":{"name":"isConnectableTo","type":"propertyDef","startIndex":31586,"stopIndex":32100,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10770":{"name":"connectTo","type":"propertyDef","startIndex":32104,"stopIndex":33710,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10771":{"name":"connectBidirectionalTo","type":"propertyDef","startIndex":33714,"stopIndex":33843,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10772":{"name":"isConnectedTo","type":"propertyDef","startIndex":33847,"stopIndex":34018,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10773":{"name":"detectConnectorWith","type":"propertyDef","startIndex":34022,"stopIndex":34158,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10774":{"name":"connectFromFakeHandle","type":"propertyDef","startIndex":34161,"stopIndex":34563,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10775":{"name":"createFakePinHandle","type":"propertyDef","startIndex":34566,"stopIndex":35049,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10776":{"name":"remove","type":"propertyDef","startIndex":35053,"stopIndex":35172,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10757},"className":"PinHandle","_owner":{"__isSmartRef__":true,"id":10755},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10777":{"name":null,"type":"comment","startIndex":35177,"stopIndex":35177,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10778":{"name":"ComponentModel","type":"objectDef","startIndex":35178,"stopIndex":35338,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10779}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10779":{"name":"newModel","type":"propertyDef","startIndex":35197,"stopIndex":35335,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":10780},"_owner":{"__isSmartRef__":true,"id":10778},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10780":{"name":"default category","type":"categoryDef","startIndex":17,"stopIndex":158,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10779}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10781":{"name":null,"type":"comment","startIndex":35339,"stopIndex":35723,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10782":{"name":"lively.Fabrik.ConnectorMorph","type":"klassDef","startIndex":35724,"stopIndex":43085,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10783},{"__isSmartRef__":true,"id":10785},{"__isSmartRef__":true,"id":10786},{"__isSmartRef__":true,"id":10787},{"__isSmartRef__":true,"id":10788},{"__isSmartRef__":true,"id":10789},{"__isSmartRef__":true,"id":10790},{"__isSmartRef__":true,"id":10791},{"__isSmartRef__":true,"id":10792},{"__isSmartRef__":true,"id":10793},{"__isSmartRef__":true,"id":10794},{"__isSmartRef__":true,"id":10795},{"__isSmartRef__":true,"id":10796},{"__isSmartRef__":true,"id":10797},{"__isSmartRef__":true,"id":10798},{"__isSmartRef__":true,"id":10799},{"__isSmartRef__":true,"id":10800},{"__isSmartRef__":true,"id":10801},{"__isSmartRef__":true,"id":10802},{"__isSmartRef__":true,"id":10803},{"__isSmartRef__":true,"id":10804},{"__isSmartRef__":true,"id":10805},{"__isSmartRef__":true,"id":10806},{"__isSmartRef__":true,"id":10807},{"__isSmartRef__":true,"id":10808},{"__isSmartRef__":true,"id":10809},{"__isSmartRef__":true,"id":10810},{"__isSmartRef__":true,"id":10811},{"__isSmartRef__":true,"id":10812},{"__isSmartRef__":true,"id":10813},{"__isSmartRef__":true,"id":10814},{"__isSmartRef__":true,"id":10815},{"__isSmartRef__":true,"id":10816}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":10784}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10783":{"name":"isConnectorMorph","type":"propertyDef","startIndex":35775,"stopIndex":35798,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10784":{"name":"default category","type":"categoryDef","startIndex":35771,"stopIndex":43082,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10783},{"__isSmartRef__":true,"id":10785},{"__isSmartRef__":true,"id":10786},{"__isSmartRef__":true,"id":10787},{"__isSmartRef__":true,"id":10788},{"__isSmartRef__":true,"id":10789},{"__isSmartRef__":true,"id":10790},{"__isSmartRef__":true,"id":10791},{"__isSmartRef__":true,"id":10792},{"__isSmartRef__":true,"id":10793},{"__isSmartRef__":true,"id":10794},{"__isSmartRef__":true,"id":10795},{"__isSmartRef__":true,"id":10796},{"__isSmartRef__":true,"id":10797},{"__isSmartRef__":true,"id":10798},{"__isSmartRef__":true,"id":10799},{"__isSmartRef__":true,"id":10800},{"__isSmartRef__":true,"id":10801},{"__isSmartRef__":true,"id":10802},{"__isSmartRef__":true,"id":10803},{"__isSmartRef__":true,"id":10804},{"__isSmartRef__":true,"id":10805},{"__isSmartRef__":true,"id":10806},{"__isSmartRef__":true,"id":10807},{"__isSmartRef__":true,"id":10808},{"__isSmartRef__":true,"id":10809},{"__isSmartRef__":true,"id":10810},{"__isSmartRef__":true,"id":10811},{"__isSmartRef__":true,"id":10812},{"__isSmartRef__":true,"id":10813},{"__isSmartRef__":true,"id":10814},{"__isSmartRef__":true,"id":10815},{"__isSmartRef__":true,"id":10816}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10785":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":35800,"stopIndex":35890,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10786":{"name":"initialize","type":"propertyDef","startIndex":35893,"stopIndex":36621,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10787":{"name":"onDeserialize","type":"propertyDef","startIndex":36646,"stopIndex":36732,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10788":{"name":"copyFrom","type":"propertyDef","startIndex":36735,"stopIndex":36880,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10789":{"name":"handlesMouseDown","type":"propertyDef","startIndex":36884,"stopIndex":36917,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10790":{"name":"setupArrowHeadUpdating","type":"propertyDef","startIndex":36934,"stopIndex":37171,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10791":{"name":"updateArrow","type":"propertyDef","startIndex":37175,"stopIndex":37682,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10792":{"name":"setStartHandle","type":"propertyDef","startIndex":37763,"stopIndex":37836,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10793":{"name":"getStartHandle","type":"propertyDef","startIndex":37839,"stopIndex":37898,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10794":{"name":"setEndHandle","type":"propertyDef","startIndex":37901,"stopIndex":37970,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10795":{"name":"getEndHandle","type":"propertyDef","startIndex":37974,"stopIndex":38029,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10796":{"name":"getStartMorph","type":"propertyDef","startIndex":38093,"stopIndex":38161,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10797":{"name":"getEndMorph","type":"propertyDef","startIndex":38165,"stopIndex":38231,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10798":{"name":"translateBy","type":"propertyDef","startIndex":38260,"stopIndex":38468,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10799":{"name":"remove","type":"propertyDef","startIndex":38472,"stopIndex":38617,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10800":{"name":"fullContainsWorldPoint","type":"propertyDef","startIndex":38620,"stopIndex":39028,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10801":{"name":"customizeShapeBehavior","type":"propertyDef","startIndex":39056,"stopIndex":39399,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10802":{"name":"makeHandle","type":"propertyDef","startIndex":39402,"stopIndex":40011,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10803":{"name":"morphMenu","type":"propertyDef","startIndex":40015,"stopIndex":40433,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10804":{"name":"setStartPoint","type":"propertyDef","startIndex":40460,"stopIndex":40633,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10805":{"name":"setEndPoint","type":"propertyDef","startIndex":40637,"stopIndex":40816,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10806":{"name":"getStartPoint","type":"propertyDef","startIndex":40820,"stopIndex":40891,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10807":{"name":"getEndPoint","type":"propertyDef","startIndex":40895,"stopIndex":40963,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10808":{"name":"getControlPoints","type":"propertyDef","startIndex":40967,"stopIndex":41108,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10809":{"name":"updateView","type":"propertyDef","startIndex":41131,"stopIndex":41471,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10810":{"name":"reshape","type":"propertyDef","startIndex":41474,"stopIndex":41631,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10811":{"name":"layoutOrthogonal","type":"propertyDef","startIndex":41636,"stopIndex":42348,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10812":{"name":"enableOrthogonalLayout","type":"propertyDef","startIndex":42351,"stopIndex":42423,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10813":{"name":"computeNormalizeXYRatio","type":"propertyDef","startIndex":42427,"stopIndex":42677,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10814":{"name":"computeNormalizeXYRatioFromMorph","type":"propertyDef","startIndex":42680,"stopIndex":42854,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10815":{"name":"isStartPointHorizontal","type":"propertyDef","startIndex":42858,"stopIndex":42969,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10816":{"name":"isEndPointHorizontal","type":"propertyDef","startIndex":42973,"stopIndex":43081,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10784},"className":"lively.Fabrik.ConnectorMorph","_owner":{"__isSmartRef__":true,"id":10782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10817":{"name":null,"type":"comment","startIndex":43086,"stopIndex":43087,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10818":{"name":"PinConnector","type":"klassDef","startIndex":43088,"stopIndex":46806,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10819},{"__isSmartRef__":true,"id":10821},{"__isSmartRef__":true,"id":10822},{"__isSmartRef__":true,"id":10823},{"__isSmartRef__":true,"id":10824},{"__isSmartRef__":true,"id":10825},{"__isSmartRef__":true,"id":10826},{"__isSmartRef__":true,"id":10827},{"__isSmartRef__":true,"id":10828},{"__isSmartRef__":true,"id":10829}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":10820}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10819":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":43123,"stopIndex":43207,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10820":{"name":"default category","type":"categoryDef","startIndex":43120,"stopIndex":46803,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10819},{"__isSmartRef__":true,"id":10821},{"__isSmartRef__":true,"id":10822},{"__isSmartRef__":true,"id":10823},{"__isSmartRef__":true,"id":10824},{"__isSmartRef__":true,"id":10825},{"__isSmartRef__":true,"id":10826},{"__isSmartRef__":true,"id":10827},{"__isSmartRef__":true,"id":10828},{"__isSmartRef__":true,"id":10829}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10821":{"name":"initialize","type":"propertyDef","startIndex":43213,"stopIndex":43603,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10822":{"name":"observeFromTo","type":"propertyDef","startIndex":43608,"stopIndex":44158,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10823":{"name":"buildView","type":"propertyDef","startIndex":44163,"stopIndex":44682,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10824":{"name":"deleteView","type":"propertyDef","startIndex":44686,"stopIndex":44717,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10825":{"name":"onDeserialize","type":"propertyDef","startIndex":44720,"stopIndex":44997,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10826":{"name":"copyFrom","type":"propertyDef","startIndex":45000,"stopIndex":45441,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10827":{"name":"updateView","type":"propertyDef","startIndex":45447,"stopIndex":45812,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10828":{"name":"remove","type":"propertyDef","startIndex":45816,"stopIndex":46662,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10829":{"name":"beBidirectional","type":"propertyDef","startIndex":46666,"stopIndex":46801,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10820},"className":"PinConnector","_owner":{"__isSmartRef__":true,"id":10818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10830":{"name":null,"type":"comment","startIndex":46807,"stopIndex":46807,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10831":{"name":"ComponentMorph","type":"klassDef","startIndex":46808,"stopIndex":63370,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10832},{"__isSmartRef__":true,"id":10834},{"__isSmartRef__":true,"id":10835},{"__isSmartRef__":true,"id":10836},{"__isSmartRef__":true,"id":10837},{"__isSmartRef__":true,"id":10838},{"__isSmartRef__":true,"id":10839},{"__isSmartRef__":true,"id":10840},{"__isSmartRef__":true,"id":10841},{"__isSmartRef__":true,"id":10842},{"__isSmartRef__":true,"id":10843},{"__isSmartRef__":true,"id":10844},{"__isSmartRef__":true,"id":10845},{"__isSmartRef__":true,"id":10846},{"__isSmartRef__":true,"id":10847},{"__isSmartRef__":true,"id":10848},{"__isSmartRef__":true,"id":10849},{"__isSmartRef__":true,"id":10850},{"__isSmartRef__":true,"id":10851},{"__isSmartRef__":true,"id":10852},{"__isSmartRef__":true,"id":10853},{"__isSmartRef__":true,"id":10854},{"__isSmartRef__":true,"id":10855},{"__isSmartRef__":true,"id":10856},{"__isSmartRef__":true,"id":10857},{"__isSmartRef__":true,"id":10858},{"__isSmartRef__":true,"id":10859},{"__isSmartRef__":true,"id":10860},{"__isSmartRef__":true,"id":10861},{"__isSmartRef__":true,"id":10862},{"__isSmartRef__":true,"id":10863},{"__isSmartRef__":true,"id":10864},{"__isSmartRef__":true,"id":10865},{"__isSmartRef__":true,"id":10866},{"__isSmartRef__":true,"id":10867},{"__isSmartRef__":true,"id":10868},{"__isSmartRef__":true,"id":10869},{"__isSmartRef__":true,"id":10870},{"__isSmartRef__":true,"id":10871},{"__isSmartRef__":true,"id":10872},{"__isSmartRef__":true,"id":10873},{"__isSmartRef__":true,"id":10874},{"__isSmartRef__":true,"id":10875},{"__isSmartRef__":true,"id":10876},{"__isSmartRef__":true,"id":10877},{"__isSmartRef__":true,"id":10878},{"__isSmartRef__":true,"id":10879}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":10833}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10832":{"name":"padding","type":"propertyDef","startIndex":46848,"stopIndex":46876,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10833":{"name":"default category","type":"categoryDef","startIndex":46844,"stopIndex":63367,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10832},{"__isSmartRef__":true,"id":10834},{"__isSmartRef__":true,"id":10835},{"__isSmartRef__":true,"id":10836},{"__isSmartRef__":true,"id":10837},{"__isSmartRef__":true,"id":10838},{"__isSmartRef__":true,"id":10839},{"__isSmartRef__":true,"id":10840},{"__isSmartRef__":true,"id":10841},{"__isSmartRef__":true,"id":10842},{"__isSmartRef__":true,"id":10843},{"__isSmartRef__":true,"id":10844},{"__isSmartRef__":true,"id":10845},{"__isSmartRef__":true,"id":10846},{"__isSmartRef__":true,"id":10847},{"__isSmartRef__":true,"id":10848},{"__isSmartRef__":true,"id":10849},{"__isSmartRef__":true,"id":10850},{"__isSmartRef__":true,"id":10851},{"__isSmartRef__":true,"id":10852},{"__isSmartRef__":true,"id":10853},{"__isSmartRef__":true,"id":10854},{"__isSmartRef__":true,"id":10855},{"__isSmartRef__":true,"id":10856},{"__isSmartRef__":true,"id":10857},{"__isSmartRef__":true,"id":10858},{"__isSmartRef__":true,"id":10859},{"__isSmartRef__":true,"id":10860},{"__isSmartRef__":true,"id":10861},{"__isSmartRef__":true,"id":10862},{"__isSmartRef__":true,"id":10863},{"__isSmartRef__":true,"id":10864},{"__isSmartRef__":true,"id":10865},{"__isSmartRef__":true,"id":10866},{"__isSmartRef__":true,"id":10867},{"__isSmartRef__":true,"id":10868},{"__isSmartRef__":true,"id":10869},{"__isSmartRef__":true,"id":10870},{"__isSmartRef__":true,"id":10871},{"__isSmartRef__":true,"id":10872},{"__isSmartRef__":true,"id":10873},{"__isSmartRef__":true,"id":10874},{"__isSmartRef__":true,"id":10875},{"__isSmartRef__":true,"id":10876},{"__isSmartRef__":true,"id":10877},{"__isSmartRef__":true,"id":10878},{"__isSmartRef__":true,"id":10879}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10834":{"name":"defaultExtent","type":"propertyDef","startIndex":46878,"stopIndex":46905,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10835":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":46907,"stopIndex":47034,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10836":{"name":"initialize","type":"propertyDef","startIndex":47060,"stopIndex":47415,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10837":{"name":"setComponent","type":"propertyDef","startIndex":47419,"stopIndex":47612,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10838":{"name":"setupWithComponent","type":"propertyDef","startIndex":47616,"stopIndex":47742,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10839":{"name":"onDeserialize","type":"propertyDef","startIndex":47775,"stopIndex":47871,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10840":{"name":"copyFrom","type":"propertyDef","startIndex":47874,"stopIndex":48245,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10841":{"name":"isFramed","type":"propertyDef","startIndex":48268,"stopIndex":48294,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10842":{"name":"isUserMode","type":"propertyDef","startIndex":48298,"stopIndex":48397,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10843":{"name":"allPinMorphs","type":"propertyDef","startIndex":48419,"stopIndex":48518,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10844":{"name":"allConnectors","type":"propertyDef","startIndex":48522,"stopIndex":48663,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10845":{"name":"changed","type":"propertyDef","startIndex":48682,"stopIndex":49086,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10846":{"name":"remove","type":"propertyDef","startIndex":49089,"stopIndex":49216,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10847":{"name":"morphMenu","type":"propertyDef","startIndex":49240,"stopIndex":49521,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10848":{"name":"addMorph","type":"propertyDef","startIndex":49526,"stopIndex":49981,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10849":{"name":"setupMousOverWrappingForHalos","type":"propertyDef","startIndex":49984,"stopIndex":50368,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10850":{"name":"getBoundsAndShrinkIfNecessary","type":"propertyDef","startIndex":50405,"stopIndex":51251,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10851":{"name":"addTextPane","type":"propertyDef","startIndex":51255,"stopIndex":52325,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10852":{"name":"addLabel","type":"propertyDef","startIndex":52328,"stopIndex":52599,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10853":{"name":"addListPane","type":"propertyDef","startIndex":52603,"stopIndex":53353,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10854":{"name":"addLabeledText","type":"propertyDef","startIndex":53357,"stopIndex":54278,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10855":{"name":"addButton","type":"propertyDef","startIndex":54283,"stopIndex":54877,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10856":{"name":"minExtent","type":"propertyDef","startIndex":54896,"stopIndex":54939,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10857":{"name":"reshape","type":"propertyDef","startIndex":55174,"stopIndex":56838,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10858":{"name":"setExtent","type":"propertyDef","startIndex":56842,"stopIndex":57001,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10859":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":57004,"stopIndex":57084,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10860":{"name":"adoptSubmorphsToNewExtent","type":"propertyDef","startIndex":57132,"stopIndex":58177,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10861":{"name":"setupMenu","type":"propertyDef","startIndex":58193,"stopIndex":58526,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10862":{"name":"getMenuItems","type":"propertyDef","startIndex":58530,"stopIndex":58615,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10863":{"name":"openComponentMenu","type":"propertyDef","startIndex":58619,"stopIndex":58880,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10864":{"name":"setupHalos","type":"propertyDef","startIndex":58897,"stopIndex":59480,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10865":{"name":"setupHaloItems","type":"propertyDef","startIndex":59484,"stopIndex":59893,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10866":{"name":"updateHaloItemPositions","type":"propertyDef","startIndex":59897,"stopIndex":60333,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10867":{"name":"showHalos","type":"propertyDef","startIndex":60337,"stopIndex":60907,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10868":{"name":"addHaloItem","type":"propertyDef","startIndex":60912,"stopIndex":61288,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10869":{"name":"addGrabHalo","type":"propertyDef","startIndex":61292,"stopIndex":61964,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10870":{"name":"handlesMouseDown","type":"propertyDef","startIndex":61982,"stopIndex":62015,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10871":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":62017,"stopIndex":62052,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10872":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":62056,"stopIndex":62108,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10873":{"name":"onMouseOver","type":"propertyDef","startIndex":62112,"stopIndex":62161,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10874":{"name":"onMouseDown","type":"propertyDef","startIndex":62165,"stopIndex":62309,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10875":{"name":"onKeyPress","type":"propertyDef","startIndex":62312,"stopIndex":62617,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10876":{"name":"doCopy","type":"propertyDef","startIndex":62637,"stopIndex":62735,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10877":{"name":"doPaste","type":"propertyDef","startIndex":62739,"stopIndex":62765,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10878":{"name":"doCut","type":"propertyDef","startIndex":62769,"stopIndex":62795,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10879":{"name":"copyToHand","type":"propertyDef","startIndex":62798,"stopIndex":63364,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10833},"className":"ComponentMorph","_owner":{"__isSmartRef__":true,"id":10831},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10880":{"name":null,"type":"comment","startIndex":63371,"stopIndex":63557,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10881":{"name":"Component","type":"klassDef","startIndex":63558,"stopIndex":69205,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10882},{"__isSmartRef__":true,"id":10884},{"__isSmartRef__":true,"id":10885},{"__isSmartRef__":true,"id":10886},{"__isSmartRef__":true,"id":10887},{"__isSmartRef__":true,"id":10888},{"__isSmartRef__":true,"id":10889},{"__isSmartRef__":true,"id":10890},{"__isSmartRef__":true,"id":10891},{"__isSmartRef__":true,"id":10892},{"__isSmartRef__":true,"id":10893},{"__isSmartRef__":true,"id":10894},{"__isSmartRef__":true,"id":10895},{"__isSmartRef__":true,"id":10896},{"__isSmartRef__":true,"id":10897},{"__isSmartRef__":true,"id":10898},{"__isSmartRef__":true,"id":10899},{"__isSmartRef__":true,"id":10900},{"__isSmartRef__":true,"id":10901},{"__isSmartRef__":true,"id":10902},{"__isSmartRef__":true,"id":10903},{"__isSmartRef__":true,"id":10904},{"__isSmartRef__":true,"id":10905},{"__isSmartRef__":true,"id":10906},{"__isSmartRef__":true,"id":10907}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":10883}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10882":{"name":"morphClass","type":"propertyDef","startIndex":63591,"stopIndex":63618,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10883":{"name":"default category","type":"categoryDef","startIndex":63587,"stopIndex":69202,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10882},{"__isSmartRef__":true,"id":10884},{"__isSmartRef__":true,"id":10885},{"__isSmartRef__":true,"id":10886},{"__isSmartRef__":true,"id":10887},{"__isSmartRef__":true,"id":10888},{"__isSmartRef__":true,"id":10889},{"__isSmartRef__":true,"id":10890},{"__isSmartRef__":true,"id":10891},{"__isSmartRef__":true,"id":10892},{"__isSmartRef__":true,"id":10893},{"__isSmartRef__":true,"id":10894},{"__isSmartRef__":true,"id":10895},{"__isSmartRef__":true,"id":10896},{"__isSmartRef__":true,"id":10897},{"__isSmartRef__":true,"id":10898},{"__isSmartRef__":true,"id":10899},{"__isSmartRef__":true,"id":10900},{"__isSmartRef__":true,"id":10901},{"__isSmartRef__":true,"id":10902},{"__isSmartRef__":true,"id":10903},{"__isSmartRef__":true,"id":10904},{"__isSmartRef__":true,"id":10905},{"__isSmartRef__":true,"id":10906},{"__isSmartRef__":true,"id":10907}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10884":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":63621,"stopIndex":63718,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10885":{"name":"initialize","type":"propertyDef","startIndex":63721,"stopIndex":63945,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10886":{"name":"getFieldNames","type":"propertyDef","startIndex":63949,"stopIndex":64030,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10887":{"name":"getSmartCopyProperties","type":"propertyDef","startIndex":64034,"stopIndex":64108,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10888":{"name":"createFieldAccessors","type":"propertyDef","startIndex":64112,"stopIndex":64245,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10889":{"name":"onDeserialize","type":"propertyDef","startIndex":64249,"stopIndex":64311,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10890":{"name":"copySelectionAsXMLString","type":"propertyDef","startIndex":64315,"stopIndex":64933,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10891":{"name":"copyFrom","type":"propertyDef","startIndex":64939,"stopIndex":65353,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10892":{"name":"buildView","type":"propertyDef","startIndex":65357,"stopIndex":65654,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10893":{"name":"deleteView","type":"propertyDef","startIndex":65658,"stopIndex":65876,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10894":{"name":"addField","type":"propertyDef","startIndex":65883,"stopIndex":66107,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10895":{"name":"addFieldAndPinHandle","type":"propertyDef","startIndex":66111,"stopIndex":66289,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10896":{"name":"pvtCreateAccessorsForField","type":"propertyDef","startIndex":66293,"stopIndex":66546,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10897":{"name":"addPin","type":"propertyDef","startIndex":66554,"stopIndex":66883,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10898":{"name":"removePin","type":"propertyDef","startIndex":66887,"stopIndex":67076,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10899":{"name":"getPinHandle","type":"propertyDef","startIndex":67080,"stopIndex":67176,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10900":{"name":"getPin","type":"propertyDef","startIndex":67180,"stopIndex":67293,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10901":{"name":"inputPins","type":"propertyDef","startIndex":67296,"stopIndex":67396,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10902":{"name":"toString","type":"propertyDef","startIndex":67399,"stopIndex":67460,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10903":{"name":"setupHandles","type":"propertyDef","startIndex":67463,"stopIndex":67977,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10904":{"name":"setupPinHandle","type":"propertyDef","startIndex":67981,"stopIndex":68109,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10905":{"name":"addTextMorphForFieldNamed","type":"propertyDef","startIndex":68113,"stopIndex":68397,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10906":{"name":"getFieldNamesFromModel","type":"propertyDef","startIndex":68401,"stopIndex":69127,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10907":{"name":"remove","type":"propertyDef","startIndex":69131,"stopIndex":69200,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10883},"className":"Component","_owner":{"__isSmartRef__":true,"id":10881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10908":{"name":null,"type":"comment","startIndex":69206,"stopIndex":69206,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10909":{"name":"UserFrameMorph","type":"klassDef","startIndex":69207,"stopIndex":73725,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10910},{"__isSmartRef__":true,"id":10912},{"__isSmartRef__":true,"id":10913},{"__isSmartRef__":true,"id":10914},{"__isSmartRef__":true,"id":10915},{"__isSmartRef__":true,"id":10916},{"__isSmartRef__":true,"id":10917},{"__isSmartRef__":true,"id":10918}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"SelectionMorph","categories":[{"__isSmartRef__":true,"id":10911}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10910":{"name":"removeWhenEmpty","type":"propertyDef","startIndex":69252,"stopIndex":69275,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10911":{"name":"default category","type":"categoryDef","startIndex":69249,"stopIndex":73722,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10910},{"__isSmartRef__":true,"id":10912},{"__isSmartRef__":true,"id":10913},{"__isSmartRef__":true,"id":10914},{"__isSmartRef__":true,"id":10915},{"__isSmartRef__":true,"id":10916},{"__isSmartRef__":true,"id":10917},{"__isSmartRef__":true,"id":10918}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10912":{"name":"initialize","type":"propertyDef","startIndex":69278,"stopIndex":69435,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10913":{"name":"reshape","type":"propertyDef","startIndex":69439,"stopIndex":71012,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10914":{"name":"remove","type":"propertyDef","startIndex":71047,"stopIndex":71244,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10915":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":71248,"stopIndex":71374,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10916":{"name":"createHandle","type":"propertyDef","startIndex":71381,"stopIndex":71636,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10917":{"name":"handleCollapseFor","type":"propertyDef","startIndex":71640,"stopIndex":73037,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10918":{"name":"handleUncollapseFor","type":"propertyDef","startIndex":73041,"stopIndex":73721,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10911},"className":"UserFrameMorph","_owner":{"__isSmartRef__":true,"id":10909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10919":{"name":null,"type":"comment","startIndex":73726,"stopIndex":73787,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10920":{"name":"FabrikMorph","type":"klassDef","startIndex":73788,"stopIndex":83675,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10921},{"__isSmartRef__":true,"id":10923},{"__isSmartRef__":true,"id":10924},{"__isSmartRef__":true,"id":10925},{"__isSmartRef__":true,"id":10926},{"__isSmartRef__":true,"id":10927},{"__isSmartRef__":true,"id":10928},{"__isSmartRef__":true,"id":10929},{"__isSmartRef__":true,"id":10930},{"__isSmartRef__":true,"id":10931},{"__isSmartRef__":true,"id":10932},{"__isSmartRef__":true,"id":10933},{"__isSmartRef__":true,"id":10934},{"__isSmartRef__":true,"id":10935},{"__isSmartRef__":true,"id":10936},{"__isSmartRef__":true,"id":10937},{"__isSmartRef__":true,"id":10938},{"__isSmartRef__":true,"id":10939},{"__isSmartRef__":true,"id":10940},{"__isSmartRef__":true,"id":10941},{"__isSmartRef__":true,"id":10942},{"__isSmartRef__":true,"id":10943},{"__isSmartRef__":true,"id":10944},{"__isSmartRef__":true,"id":10945},{"__isSmartRef__":true,"id":10946},{"__isSmartRef__":true,"id":10947}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ComponentMorph","categories":[{"__isSmartRef__":true,"id":10922}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10921":{"name":"padding","type":"propertyDef","startIndex":73831,"stopIndex":73859,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10922":{"name":"default category","type":"categoryDef","startIndex":73827,"stopIndex":83672,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10921},{"__isSmartRef__":true,"id":10923},{"__isSmartRef__":true,"id":10924},{"__isSmartRef__":true,"id":10925},{"__isSmartRef__":true,"id":10926},{"__isSmartRef__":true,"id":10927},{"__isSmartRef__":true,"id":10928},{"__isSmartRef__":true,"id":10929},{"__isSmartRef__":true,"id":10930},{"__isSmartRef__":true,"id":10931},{"__isSmartRef__":true,"id":10932},{"__isSmartRef__":true,"id":10933},{"__isSmartRef__":true,"id":10934},{"__isSmartRef__":true,"id":10935},{"__isSmartRef__":true,"id":10936},{"__isSmartRef__":true,"id":10937},{"__isSmartRef__":true,"id":10938},{"__isSmartRef__":true,"id":10939},{"__isSmartRef__":true,"id":10940},{"__isSmartRef__":true,"id":10941},{"__isSmartRef__":true,"id":10942},{"__isSmartRef__":true,"id":10943},{"__isSmartRef__":true,"id":10944},{"__isSmartRef__":true,"id":10945},{"__isSmartRef__":true,"id":10946},{"__isSmartRef__":true,"id":10947}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10923":{"name":"initialize","type":"propertyDef","startIndex":73863,"stopIndex":74029,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10924":{"name":"automaticLayout","type":"propertyDef","startIndex":74033,"stopIndex":74140,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10925":{"name":"setupForFabrik","type":"propertyDef","startIndex":74144,"stopIndex":74529,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10926":{"name":"setupHaloItems","type":"propertyDef","startIndex":74533,"stopIndex":75222,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10927":{"name":"addMorph","type":"propertyDef","startIndex":75226,"stopIndex":75681,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10928":{"name":"addMorphForComponent","type":"propertyDef","startIndex":75686,"stopIndex":75792,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10929":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":75795,"stopIndex":75847,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10930":{"name":"onMouseDown","type":"propertyDef","startIndex":75891,"stopIndex":76103,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10931":{"name":"makeUserFrame","type":"propertyDef","startIndex":76106,"stopIndex":76716,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10932":{"name":"makeSelection","type":"propertyDef","startIndex":76719,"stopIndex":77237,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10933":{"name":"collapseToggle","type":"propertyDef","startIndex":77240,"stopIndex":77447,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10934":{"name":"updateAfterCollapse","type":"propertyDef","startIndex":77451,"stopIndex":77633,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10935":{"name":"collapse","type":"propertyDef","startIndex":77637,"stopIndex":78819,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10936":{"name":"uncollapse","type":"propertyDef","startIndex":78823,"stopIndex":80166,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10937":{"name":"minExtent","type":"propertyDef","startIndex":80170,"stopIndex":80694,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10938":{"name":"getComponentMorphsNearBorders","type":"propertyDef","startIndex":80698,"stopIndex":81531,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10939":{"name":"closeAllToDnD","type":"propertyDef","startIndex":81535,"stopIndex":81602,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10940":{"name":"positionAndExtentChange","type":"propertyDef","startIndex":81606,"stopIndex":81854,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10941":{"name":"isFramed","type":"propertyDef","startIndex":81858,"stopIndex":81928,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10942":{"name":"framed","type":"propertyDef","startIndex":81932,"stopIndex":82181,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10943":{"name":"reshape","type":"propertyDef","startIndex":82184,"stopIndex":82617,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10944":{"name":"unframed","type":"propertyDef","startIndex":82621,"stopIndex":82887,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10945":{"name":"doPaste","type":"propertyDef","startIndex":82890,"stopIndex":83298,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10946":{"name":"disableAllScrollBars","type":"propertyDef","startIndex":83333,"stopIndex":83498,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10947":{"name":"enableAllScrollBars","type":"propertyDef","startIndex":83501,"stopIndex":83671,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10922},"className":"FabrikMorph","_owner":{"__isSmartRef__":true,"id":10920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10948":{"name":null,"type":"comment","startIndex":83676,"stopIndex":83773,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10949":{"name":"FabrikComponent","type":"klassDef","startIndex":83774,"stopIndex":86985,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10950},{"__isSmartRef__":true,"id":10952},{"__isSmartRef__":true,"id":10953},{"__isSmartRef__":true,"id":10954},{"__isSmartRef__":true,"id":10955},{"__isSmartRef__":true,"id":10956},{"__isSmartRef__":true,"id":10957},{"__isSmartRef__":true,"id":10958},{"__isSmartRef__":true,"id":10959},{"__isSmartRef__":true,"id":10960},{"__isSmartRef__":true,"id":10961},{"__isSmartRef__":true,"id":10962},{"__isSmartRef__":true,"id":10963},{"__isSmartRef__":true,"id":10964}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Component","categories":[{"__isSmartRef__":true,"id":10951}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10950":{"name":"morphClass","type":"propertyDef","startIndex":83815,"stopIndex":83839,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10951":{"name":"default category","type":"categoryDef","startIndex":83812,"stopIndex":86982,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10950},{"__isSmartRef__":true,"id":10952},{"__isSmartRef__":true,"id":10953},{"__isSmartRef__":true,"id":10954},{"__isSmartRef__":true,"id":10955},{"__isSmartRef__":true,"id":10956},{"__isSmartRef__":true,"id":10957},{"__isSmartRef__":true,"id":10958},{"__isSmartRef__":true,"id":10959},{"__isSmartRef__":true,"id":10960},{"__isSmartRef__":true,"id":10961},{"__isSmartRef__":true,"id":10962},{"__isSmartRef__":true,"id":10963},{"__isSmartRef__":true,"id":10964}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10952":{"name":"defaultViewExtent","type":"propertyDef","startIndex":83841,"stopIndex":83873,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10953":{"name":"defaultCollapsedExtent","type":"propertyDef","startIndex":83875,"stopIndex":83912,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10954":{"name":"defaultViewTitle","type":"propertyDef","startIndex":83913,"stopIndex":83968,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10955":{"name":"initialize","type":"propertyDef","startIndex":83971,"stopIndex":84084,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10956":{"name":"buildView","type":"propertyDef","startIndex":84088,"stopIndex":84695,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10957":{"name":"deleteView","type":"propertyDef","startIndex":84699,"stopIndex":84856,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10958":{"name":"plugin","type":"propertyDef","startIndex":84860,"stopIndex":85291,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10959":{"name":"unplug","type":"propertyDef","startIndex":85294,"stopIndex":85440,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10960":{"name":"pluginConnector","type":"propertyDef","startIndex":85444,"stopIndex":85968,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10961":{"name":"connectComponents","type":"propertyDef","startIndex":85971,"stopIndex":86140,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10962":{"name":"removeConnector","type":"propertyDef","startIndex":86143,"stopIndex":86505,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10963":{"name":"openIn","type":"propertyDef","startIndex":86509,"stopIndex":86778,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10964":{"name":"pasteComponentFromXMLString","type":"propertyDef","startIndex":86782,"stopIndex":86981,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10951},"className":"FabrikComponent","_owner":{"__isSmartRef__":true,"id":10949},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10965":{"name":null,"type":"comment","startIndex":86986,"stopIndex":87023,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10966":{"name":"ClipboardCopier","type":"klassExtensionDef","startIndex":87024,"stopIndex":88219,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10967}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":10968}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10967":{"name":"pasteComponentFromXMLStringIntoFabrik","type":"propertyDef","startIndex":87053,"stopIndex":88215,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10968},"className":"ClipboardCopier","_owner":{"__isSmartRef__":true,"id":10966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10968":{"name":"default category","type":"categoryDef","startIndex":87051,"stopIndex":88216,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10967}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10969":{"name":null,"type":"comment","startIndex":88220,"stopIndex":88220,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10970":{"name":"PluggableComponentMorph","type":"klassDef","startIndex":88221,"stopIndex":88839,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10971}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ComponentMorph","categories":[{"__isSmartRef__":true,"id":10972}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10971":{"name":"addMorph","type":"propertyDef","startIndex":88275,"stopIndex":88832,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10972},"className":"PluggableComponentMorph","_owner":{"__isSmartRef__":true,"id":10970},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10972":{"name":"default category","type":"categoryDef","startIndex":88272,"stopIndex":88836,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10971}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10973":{"name":null,"type":"comment","startIndex":88840,"stopIndex":88841,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10974":{"name":"PluggableComponent","type":"klassDef","startIndex":88842,"stopIndex":89319,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10975},{"__isSmartRef__":true,"id":10977},{"__isSmartRef__":true,"id":10978}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Component","categories":[{"__isSmartRef__":true,"id":10976}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10975":{"name":"morphClass","type":"propertyDef","startIndex":88887,"stopIndex":88923,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10976},"className":"PluggableComponent","_owner":{"__isSmartRef__":true,"id":10974},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10976":{"name":"default category","type":"categoryDef","startIndex":88883,"stopIndex":89316,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10975},{"__isSmartRef__":true,"id":10977},{"__isSmartRef__":true,"id":10978}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10977":{"name":"buildView","type":"propertyDef","startIndex":88926,"stopIndex":89030,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10976},"className":"PluggableComponent","_owner":{"__isSmartRef__":true,"id":10974},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10978":{"name":"adoptToModel","type":"propertyDef","startIndex":89034,"stopIndex":89314,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10976},"className":"PluggableComponent","_owner":{"__isSmartRef__":true,"id":10974},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10979":{"name":null,"type":"comment","startIndex":89320,"stopIndex":89321,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10980":{"name":"TextComponentMorph","type":"klassDef","startIndex":89322,"stopIndex":89947,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10981},{"__isSmartRef__":true,"id":10983},{"__isSmartRef__":true,"id":10984}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ComponentMorph","categories":[{"__isSmartRef__":true,"id":10982}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10981":{"name":"setupWithComponent","type":"propertyDef","startIndex":89373,"stopIndex":89490,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10982},"className":"TextComponentMorph","_owner":{"__isSmartRef__":true,"id":10980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10982":{"name":"default category","type":"categoryDef","startIndex":89368,"stopIndex":89944,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10981},{"__isSmartRef__":true,"id":10983},{"__isSmartRef__":true,"id":10984}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10983":{"name":"setupHaloItems","type":"propertyDef","startIndex":89494,"stopIndex":89872,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10982},"className":"TextComponentMorph","_owner":{"__isSmartRef__":true,"id":10980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10984":{"name":"onAcceptPressed","type":"propertyDef","startIndex":89880,"stopIndex":89939,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10982},"className":"TextComponentMorph","_owner":{"__isSmartRef__":true,"id":10980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10985":{"name":null,"type":"comment","startIndex":89948,"stopIndex":89950,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10986":{"name":"TextComponent","type":"klassDef","startIndex":89951,"stopIndex":90513,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10987},{"__isSmartRef__":true,"id":10989},{"__isSmartRef__":true,"id":10990},{"__isSmartRef__":true,"id":10991}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Component","categories":[{"__isSmartRef__":true,"id":10988}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10987":{"name":"morphClass","type":"propertyDef","startIndex":89991,"stopIndex":90022,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10988},"className":"TextComponent","_owner":{"__isSmartRef__":true,"id":10986},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10988":{"name":"default category","type":"categoryDef","startIndex":89987,"stopIndex":90510,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10987},{"__isSmartRef__":true,"id":10989},{"__isSmartRef__":true,"id":10990},{"__isSmartRef__":true,"id":10991}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10989":{"name":"initialize","type":"propertyDef","startIndex":90026,"stopIndex":90124,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10988},"className":"TextComponent","_owner":{"__isSmartRef__":true,"id":10986},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10990":{"name":"onDeserialize","type":"propertyDef","startIndex":90127,"stopIndex":90416,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10988},"className":"TextComponent","_owner":{"__isSmartRef__":true,"id":10986},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10991":{"name":"buildView","type":"propertyDef","startIndex":90419,"stopIndex":90508,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10988},"className":"TextComponent","_owner":{"__isSmartRef__":true,"id":10986},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10992":{"name":"FunctionComponentLayer","type":"copDef","startIndex":90514,"stopIndex":90688,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10993}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10993":{"name":"TextMorph","type":"copSubElement","startIndex":90550,"stopIndex":90686,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10994}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":10992},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10994":{"name":"getDoitContext","type":"propertyDef","startIndex":90576,"stopIndex":90683,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10995},"_owner":{"__isSmartRef__":true,"id":10993},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10995":{"name":"default category","type":"categoryDef","startIndex":60,"stopIndex":171,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":10994}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10996":{"name":null,"type":"comment","startIndex":90689,"stopIndex":90689,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10997":{"name":"FunctionComponentMorph","type":"klassDef","startIndex":90690,"stopIndex":92433,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10998},{"__isSmartRef__":true,"id":11000},{"__isSmartRef__":true,"id":11001},{"__isSmartRef__":true,"id":11002},{"__isSmartRef__":true,"id":11003},{"__isSmartRef__":true,"id":11004}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ComponentMorph","categories":[{"__isSmartRef__":true,"id":10999}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10998":{"name":"withLayers","type":"propertyDef","startIndex":90743,"stopIndex":90780,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10999},"className":"FunctionComponentMorph","_owner":{"__isSmartRef__":true,"id":10997},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"10999":{"name":"default category","type":"categoryDef","startIndex":90740,"stopIndex":92430,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":10998},{"__isSmartRef__":true,"id":11000},{"__isSmartRef__":true,"id":11001},{"__isSmartRef__":true,"id":11002},{"__isSmartRef__":true,"id":11003},{"__isSmartRef__":true,"id":11004}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11000":{"name":"smartCopyProperties","type":"propertyDef","startIndex":90783,"stopIndex":90828,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10999},"className":"FunctionComponentMorph","_owner":{"__isSmartRef__":true,"id":10997},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11001":{"name":"setupWithComponent","type":"propertyDef","startIndex":90831,"stopIndex":91222,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10999},"className":"FunctionComponentMorph","_owner":{"__isSmartRef__":true,"id":10997},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11002":{"name":"onDeserialize","type":"propertyDef","startIndex":91225,"stopIndex":91299,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10999},"className":"FunctionComponentMorph","_owner":{"__isSmartRef__":true,"id":10997},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11003":{"name":"setupHaloItems","type":"propertyDef","startIndex":91303,"stopIndex":91902,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10999},"className":"FunctionComponentMorph","_owner":{"__isSmartRef__":true,"id":10997},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11004":{"name":"setupTextField","type":"propertyDef","startIndex":91906,"stopIndex":92426,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":10999},"className":"FunctionComponentMorph","_owner":{"__isSmartRef__":true,"id":10997},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11005":{"name":null,"type":"comment","startIndex":92434,"stopIndex":92434,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11006":{"name":"FunctionComponent","type":"klassDef","startIndex":92435,"stopIndex":97505,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11007},{"__isSmartRef__":true,"id":11009},{"__isSmartRef__":true,"id":11010},{"__isSmartRef__":true,"id":11011},{"__isSmartRef__":true,"id":11012},{"__isSmartRef__":true,"id":11013},{"__isSmartRef__":true,"id":11014},{"__isSmartRef__":true,"id":11015},{"__isSmartRef__":true,"id":11016},{"__isSmartRef__":true,"id":11017},{"__isSmartRef__":true,"id":11018},{"__isSmartRef__":true,"id":11019},{"__isSmartRef__":true,"id":11020},{"__isSmartRef__":true,"id":11021},{"__isSmartRef__":true,"id":11022},{"__isSmartRef__":true,"id":11023},{"__isSmartRef__":true,"id":11024},{"__isSmartRef__":true,"id":11025},{"__isSmartRef__":true,"id":11026},{"__isSmartRef__":true,"id":11027},{"__isSmartRef__":true,"id":11028},{"__isSmartRef__":true,"id":11029}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Component","categories":[{"__isSmartRef__":true,"id":11008}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11007":{"name":"morphClass","type":"propertyDef","startIndex":92478,"stopIndex":92513,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11008":{"name":"default category","type":"categoryDef","startIndex":92475,"stopIndex":97502,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11007},{"__isSmartRef__":true,"id":11009},{"__isSmartRef__":true,"id":11010},{"__isSmartRef__":true,"id":11011},{"__isSmartRef__":true,"id":11012},{"__isSmartRef__":true,"id":11013},{"__isSmartRef__":true,"id":11014},{"__isSmartRef__":true,"id":11015},{"__isSmartRef__":true,"id":11016},{"__isSmartRef__":true,"id":11017},{"__isSmartRef__":true,"id":11018},{"__isSmartRef__":true,"id":11019},{"__isSmartRef__":true,"id":11020},{"__isSmartRef__":true,"id":11021},{"__isSmartRef__":true,"id":11022},{"__isSmartRef__":true,"id":11023},{"__isSmartRef__":true,"id":11024},{"__isSmartRef__":true,"id":11025},{"__isSmartRef__":true,"id":11026},{"__isSmartRef__":true,"id":11027},{"__isSmartRef__":true,"id":11028},{"__isSmartRef__":true,"id":11029}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11009":{"name":"initialize","type":"propertyDef","startIndex":92516,"stopIndex":92756,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11010":{"name":"onDeserialize","type":"propertyDef","startIndex":92761,"stopIndex":92844,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11011":{"name":"copyFrom","type":"propertyDef","startIndex":92847,"stopIndex":92969,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11012":{"name":"setupTransitendBehavior","type":"propertyDef","startIndex":92972,"stopIndex":93277,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11013":{"name":"buildView","type":"propertyDef","startIndex":93280,"stopIndex":93838,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11014":{"name":"guessNewInputFieldName","type":"propertyDef","startIndex":93841,"stopIndex":93930,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11015":{"name":"evalButtonPressed","type":"propertyDef","startIndex":93934,"stopIndex":94029,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11016":{"name":"interactiveAndNewInputField","type":"propertyDef","startIndex":94033,"stopIndex":94285,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11017":{"name":"addInputFieldAndPin","type":"propertyDef","startIndex":94289,"stopIndex":94486,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11018":{"name":"saveAndExecute","type":"propertyDef","startIndex":94490,"stopIndex":94563,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11019":{"name":"setupAutomaticExecution","type":"propertyDef","startIndex":94566,"stopIndex":94753,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11020":{"name":"removePin","type":"propertyDef","startIndex":94756,"stopIndex":94842,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11021":{"name":"generateInputPinObserverFor","type":"propertyDef","startIndex":94845,"stopIndex":95043,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11022":{"name":"parameterNames","type":"propertyDef","startIndex":95046,"stopIndex":95162,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11023":{"name":"parameterValues","type":"propertyDef","startIndex":95167,"stopIndex":95272,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11024":{"name":"functionHeader","type":"propertyDef","startIndex":95277,"stopIndex":95374,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11025":{"name":"updateFunctionHeader","type":"propertyDef","startIndex":95377,"stopIndex":95476,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11026":{"name":"pvtGetFunction","type":"propertyDef","startIndex":95479,"stopIndex":95669,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11027":{"name":"composeFunction","type":"propertyDef","startIndex":95673,"stopIndex":96571,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11028":{"name":"fixObjectLiterals","type":"propertyDef","startIndex":96574,"stopIndex":96916,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11029":{"name":"execute","type":"propertyDef","startIndex":96920,"stopIndex":97500,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11008},"className":"FunctionComponent","_owner":{"__isSmartRef__":true,"id":11006},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11030":{"name":null,"type":"comment","startIndex":97506,"stopIndex":97506,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11031":{"name":"WebRequestComponent","type":"klassDef","startIndex":97507,"stopIndex":99838,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11032},{"__isSmartRef__":true,"id":11034},{"__isSmartRef__":true,"id":11035},{"__isSmartRef__":true,"id":11036},{"__isSmartRef__":true,"id":11037},{"__isSmartRef__":true,"id":11038}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Component","categories":[{"__isSmartRef__":true,"id":11033}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11032":{"name":"initialize","type":"propertyDef","startIndex":97553,"stopIndex":97837,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11033},"className":"WebRequestComponent","_owner":{"__isSmartRef__":true,"id":11031},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11033":{"name":"default category","type":"categoryDef","startIndex":97549,"stopIndex":99835,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11032},{"__isSmartRef__":true,"id":11034},{"__isSmartRef__":true,"id":11035},{"__isSmartRef__":true,"id":11036},{"__isSmartRef__":true,"id":11037},{"__isSmartRef__":true,"id":11038}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11034":{"name":"setupObserver","type":"propertyDef","startIndex":97840,"stopIndex":98085,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11033},"className":"WebRequestComponent","_owner":{"__isSmartRef__":true,"id":11031},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11035":{"name":"onDeserialize","type":"propertyDef","startIndex":98088,"stopIndex":98224,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11033},"className":"WebRequestComponent","_owner":{"__isSmartRef__":true,"id":11031},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11036":{"name":"buildView","type":"propertyDef","startIndex":98227,"stopIndex":98535,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11033},"className":"WebRequestComponent","_owner":{"__isSmartRef__":true,"id":11031},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11037":{"name":"setupHandles","type":"propertyDef","startIndex":98539,"stopIndex":99134,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11033},"className":"WebRequestComponent","_owner":{"__isSmartRef__":true,"id":11031},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11038":{"name":"makeRequest","type":"propertyDef","startIndex":99138,"stopIndex":99834,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11033},"className":"WebRequestComponent","_owner":{"__isSmartRef__":true,"id":11031},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11039":{"name":null,"type":"comment","startIndex":99839,"stopIndex":99839,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11040":{"name":"ImageComponent","type":"klassDef","startIndex":99840,"stopIndex":100940,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11041},{"__isSmartRef__":true,"id":11043},{"__isSmartRef__":true,"id":11044},{"__isSmartRef__":true,"id":11045}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Component","categories":[{"__isSmartRef__":true,"id":11042}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11041":{"name":"initialize","type":"propertyDef","startIndex":99881,"stopIndex":99964,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11042},"className":"ImageComponent","_owner":{"__isSmartRef__":true,"id":11040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11042":{"name":"default category","type":"categoryDef","startIndex":99877,"stopIndex":100937,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11041},{"__isSmartRef__":true,"id":11043},{"__isSmartRef__":true,"id":11044},{"__isSmartRef__":true,"id":11045}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11043":{"name":"onDeserialize","type":"propertyDef","startIndex":99968,"stopIndex":100046,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11042},"className":"ImageComponent","_owner":{"__isSmartRef__":true,"id":11040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11044":{"name":"buildView","type":"propertyDef","startIndex":100049,"stopIndex":100554,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11042},"className":"ImageComponent","_owner":{"__isSmartRef__":true,"id":11040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11045":{"name":"setupTransientView","type":"propertyDef","startIndex":100558,"stopIndex":100934,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11042},"className":"ImageComponent","_owner":{"__isSmartRef__":true,"id":11040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11046":{"name":null,"type":"comment","startIndex":100941,"stopIndex":100941,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11047":{"name":"TextListComponent","type":"klassDef","startIndex":100942,"stopIndex":102252,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11048},{"__isSmartRef__":true,"id":11050},{"__isSmartRef__":true,"id":11051},{"__isSmartRef__":true,"id":11052}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Component","categories":[{"__isSmartRef__":true,"id":11049}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11048":{"name":"initialize","type":"propertyDef","startIndex":100985,"stopIndex":101197,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11049},"className":"TextListComponent","_owner":{"__isSmartRef__":true,"id":11047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11049":{"name":"default category","type":"categoryDef","startIndex":100982,"stopIndex":102249,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11048},{"__isSmartRef__":true,"id":11050},{"__isSmartRef__":true,"id":11051},{"__isSmartRef__":true,"id":11052}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11050":{"name":"onDeserialize","type":"propertyDef","startIndex":101200,"stopIndex":101280,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11049},"className":"TextListComponent","_owner":{"__isSmartRef__":true,"id":11047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11051":{"name":"buildView","type":"propertyDef","startIndex":101283,"stopIndex":101540,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11049},"className":"TextListComponent","_owner":{"__isSmartRef__":true,"id":11047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11052":{"name":"setupListEnhancement","type":"propertyDef","startIndex":101544,"stopIndex":102248,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11049},"className":"TextListComponent","_owner":{"__isSmartRef__":true,"id":11047},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11053":{"name":null,"type":"comment","startIndex":102253,"stopIndex":102253,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11054":{"name":"ComponentContainerMorph","type":"klassDef","startIndex":102254,"stopIndex":103381,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11055},{"__isSmartRef__":true,"id":11057},{"__isSmartRef__":true,"id":11058},{"__isSmartRef__":true,"id":11059},{"__isSmartRef__":true,"id":11060},{"__isSmartRef__":true,"id":11061},{"__isSmartRef__":true,"id":11062},{"__isSmartRef__":true,"id":11063}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":11056}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11055":{"name":"initialize","type":"propertyDef","startIndex":102299,"stopIndex":102432,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11056":{"name":"default category","type":"categoryDef","startIndex":102296,"stopIndex":103378,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11055},{"__isSmartRef__":true,"id":11057},{"__isSmartRef__":true,"id":11058},{"__isSmartRef__":true,"id":11059},{"__isSmartRef__":true,"id":11060},{"__isSmartRef__":true,"id":11061},{"__isSmartRef__":true,"id":11062},{"__isSmartRef__":true,"id":11063}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11057":{"name":"suppressHandles","type":"propertyDef","startIndex":102436,"stopIndex":102458,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11058":{"name":"morphToGrabOrReceive","type":"propertyDef","startIndex":102462,"stopIndex":102609,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11059":{"name":"captureMouseEvent","type":"propertyDef","startIndex":102613,"stopIndex":103025,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11060":{"name":"createMorph","type":"propertyDef","startIndex":103029,"stopIndex":103221,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11061":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":103225,"stopIndex":103272,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11062":{"name":"handlesMouseDown","type":"propertyDef","startIndex":103275,"stopIndex":103308,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11063":{"name":"onMouseDown","type":"propertyDef","startIndex":103313,"stopIndex":103377,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11056},"className":"ComponentContainerMorph","_owner":{"__isSmartRef__":true,"id":11054},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11064":{"name":null,"type":"comment","startIndex":103382,"stopIndex":103382,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11065":{"name":"ComponentBoxMorph","type":"klassDef","startIndex":103383,"stopIndex":105601,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11066},{"__isSmartRef__":true,"id":11068},{"__isSmartRef__":true,"id":11069},{"__isSmartRef__":true,"id":11070},{"__isSmartRef__":true,"id":11071},{"__isSmartRef__":true,"id":11072}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":11067}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11066":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":103422,"stopIndex":103448,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11067},"className":"ComponentBoxMorph","_owner":{"__isSmartRef__":true,"id":11065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11067":{"name":"default category","type":"categoryDef","startIndex":103419,"stopIndex":105598,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11066},{"__isSmartRef__":true,"id":11068},{"__isSmartRef__":true,"id":11069},{"__isSmartRef__":true,"id":11070},{"__isSmartRef__":true,"id":11071},{"__isSmartRef__":true,"id":11072}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11068":{"name":"suppressHandles","type":"propertyDef","startIndex":103450,"stopIndex":103473,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11067},"className":"ComponentBoxMorph","_owner":{"__isSmartRef__":true,"id":11065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11069":{"name":"initialize","type":"propertyDef","startIndex":103476,"stopIndex":103699,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11067},"className":"ComponentBoxMorph","_owner":{"__isSmartRef__":true,"id":11065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11070":{"name":"onDeserialize","type":"propertyDef","startIndex":103702,"stopIndex":103815,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11067},"className":"ComponentBoxMorph","_owner":{"__isSmartRef__":true,"id":11065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11071":{"name":"addMorphOfComponent","type":"propertyDef","startIndex":103818,"stopIndex":104418,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11067},"className":"ComponentBoxMorph","_owner":{"__isSmartRef__":true,"id":11065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11072":{"name":"buildContent","type":"propertyDef","startIndex":104421,"stopIndex":105593,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11067},"className":"ComponentBoxMorph","_owner":{"__isSmartRef__":true,"id":11065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11073":{"name":null,"type":"comment","startIndex":105602,"stopIndex":105756,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11074":{"name":"PointSnapper","type":"klassDef","startIndex":105757,"stopIndex":106999,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11075},{"__isSmartRef__":true,"id":11077},{"__isSmartRef__":true,"id":11078},{"__isSmartRef__":true,"id":11079}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11076}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11075":{"name":"initialize","type":"propertyDef","startIndex":105792,"stopIndex":106002,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11076},"className":"PointSnapper","_owner":{"__isSmartRef__":true,"id":11074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11076":{"name":"default category","type":"categoryDef","startIndex":105789,"stopIndex":106996,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11075},{"__isSmartRef__":true,"id":11077},{"__isSmartRef__":true,"id":11078},{"__isSmartRef__":true,"id":11079}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11077":{"name":"updatePosition","type":"propertyDef","startIndex":106005,"stopIndex":106193,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11076},"className":"PointSnapper","_owner":{"__isSmartRef__":true,"id":11074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11078":{"name":"snap","type":"propertyDef","startIndex":106196,"stopIndex":106659,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11076},"className":"PointSnapper","_owner":{"__isSmartRef__":true,"id":11074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11079":{"name":"detectPointNear","type":"propertyDef","startIndex":106662,"stopIndex":106994,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11076},"className":"PointSnapper","_owner":{"__isSmartRef__":true,"id":11074},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11080":{"name":null,"type":"comment","startIndex":107000,"stopIndex":107088,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11081":{"name":"FlowLayout","type":"klassDef","startIndex":107089,"stopIndex":108394,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11082},{"__isSmartRef__":true,"id":11084},{"__isSmartRef__":true,"id":11085},{"__isSmartRef__":true,"id":11086}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11083}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11082":{"name":"initialize","type":"propertyDef","startIndex":107236,"stopIndex":107454,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11083},"className":"FlowLayout","_owner":{"__isSmartRef__":true,"id":11081},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11083":{"name":"default category","type":"categoryDef","startIndex":107119,"stopIndex":108391,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11082},{"__isSmartRef__":true,"id":11084},{"__isSmartRef__":true,"id":11085},{"__isSmartRef__":true,"id":11086}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11084":{"name":"layoutSubmorphsInMorph","type":"propertyDef","startIndex":107458,"stopIndex":107592,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11083},"className":"FlowLayout","_owner":{"__isSmartRef__":true,"id":11081},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11085":{"name":"layoutElementsInMorph","type":"propertyDef","startIndex":107596,"stopIndex":107755,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11083},"className":"FlowLayout","_owner":{"__isSmartRef__":true,"id":11081},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11086":{"name":"setPositionFor","type":"propertyDef","startIndex":107759,"stopIndex":108390,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11083},"className":"FlowLayout","_owner":{"__isSmartRef__":true,"id":11081},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11087":{"name":null,"type":"comment","startIndex":108395,"stopIndex":108486,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11088":{"name":"AdoptToBoundsChangeFunctions","type":"klassDef","startIndex":108487,"stopIndex":108910,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11089},{"__isSmartRef__":true,"id":11091}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11090}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11089":{"name":"layoutRelativeExtent","type":"propertyDef","startIndex":108537,"stopIndex":108680,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11090},"className":"AdoptToBoundsChangeFunctions","_owner":{"__isSmartRef__":true,"id":11088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11090":{"name":"default category","type":"categoryDef","startIndex":108535,"stopIndex":108907,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11089},{"__isSmartRef__":true,"id":11091}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11091":{"name":"layoutRelativeExtentAndPosition","type":"propertyDef","startIndex":108684,"stopIndex":108906,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11090},"className":"AdoptToBoundsChangeFunctions","_owner":{"__isSmartRef__":true,"id":11088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11092":{"name":null,"type":"comment","startIndex":108911,"stopIndex":108943,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11093":{"name":"Global.FabrikConverter","type":"objectDef","startIndex":108944,"stopIndex":110492,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11094},{"__isSmartRef__":true,"id":11096},{"__isSmartRef__":true,"id":11097}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11094":{"name":"basicToJs","type":"propertyDef","startIndex":108975,"stopIndex":109204,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11095},"_owner":{"__isSmartRef__":true,"id":11093},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11095":{"name":"default category","type":"categoryDef","startIndex":25,"stopIndex":1546,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":11094},{"__isSmartRef__":true,"id":11096},{"__isSmartRef__":true,"id":11097}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11096":{"name":"xmlToJs","type":"propertyDef","startIndex":109208,"stopIndex":109559,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11095},"_owner":{"__isSmartRef__":true,"id":11093},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11097":{"name":"xmlToStringArray","type":"propertyDef","startIndex":109563,"stopIndex":110489,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11095},"_owner":{"__isSmartRef__":true,"id":11093},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11098":{"name":null,"type":"comment","startIndex":110493,"stopIndex":110548,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11099":{"name":"FabrikClockWidget","type":"klassDef","startIndex":110549,"stopIndex":110926,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11100},{"__isSmartRef__":true,"id":11102}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":11101}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11100":{"name":"initialize","type":"propertyDef","startIndex":110590,"stopIndex":110761,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11101},"className":"FabrikClockWidget","_owner":{"__isSmartRef__":true,"id":11099},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11101":{"name":"default category","type":"categoryDef","startIndex":110586,"stopIndex":110923,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11100},{"__isSmartRef__":true,"id":11102}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11102":{"name":"buildView","type":"propertyDef","startIndex":110765,"stopIndex":110922,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11101},"className":"FabrikClockWidget","_owner":{"__isSmartRef__":true,"id":11099},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11103":{"name":null,"type":"comment","startIndex":110927,"stopIndex":110927,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11104":{"name":"FabrikClockMorph","type":"klassDef","startIndex":110928,"stopIndex":113776,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11105},{"__isSmartRef__":true,"id":11107},{"__isSmartRef__":true,"id":11108},{"__isSmartRef__":true,"id":11109},{"__isSmartRef__":true,"id":11110},{"__isSmartRef__":true,"id":11111},{"__isSmartRef__":true,"id":11112},{"__isSmartRef__":true,"id":11113},{"__isSmartRef__":true,"id":11114},{"__isSmartRef__":true,"id":11115},{"__isSmartRef__":true,"id":11116},{"__isSmartRef__":true,"id":11117}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":11106}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11105":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":110965,"stopIndex":110991,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11106":{"name":"default category","type":"categoryDef","startIndex":110963,"stopIndex":113773,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11105},{"__isSmartRef__":true,"id":11107},{"__isSmartRef__":true,"id":11108},{"__isSmartRef__":true,"id":11109},{"__isSmartRef__":true,"id":11110},{"__isSmartRef__":true,"id":11111},{"__isSmartRef__":true,"id":11112},{"__isSmartRef__":true,"id":11113},{"__isSmartRef__":true,"id":11114},{"__isSmartRef__":true,"id":11115},{"__isSmartRef__":true,"id":11116},{"__isSmartRef__":true,"id":11117}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11107":{"name":"styleClass","type":"propertyDef","startIndex":110993,"stopIndex":111031,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11108":{"name":"fomals","type":"propertyDef","startIndex":111033,"stopIndex":111073,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11109":{"name":"initialize","type":"propertyDef","startIndex":111076,"stopIndex":111695,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11110":{"name":"onMinutesUpdate","type":"propertyDef","startIndex":111698,"stopIndex":111730,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11111":{"name":"onSecondsUpdate","type":"propertyDef","startIndex":111732,"stopIndex":111764,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11112":{"name":"onHoursUpdate","type":"propertyDef","startIndex":111766,"stopIndex":111796,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11113":{"name":"makeNewFace","type":"propertyDef","startIndex":111799,"stopIndex":112880,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11114":{"name":"reshape","type":"propertyDef","startIndex":112883,"stopIndex":112907,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11115":{"name":"startSteppingScripts","type":"propertyDef","startIndex":112910,"stopIndex":113010,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11116":{"name":"updateHands","type":"propertyDef","startIndex":113013,"stopIndex":113458,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11117":{"name":"setHands","type":"propertyDef","startIndex":113461,"stopIndex":113772,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11106},"className":"FabrikClockMorph","_owner":{"__isSmartRef__":true,"id":11104},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11118":{"name":"HandPositionObserver","type":"klassDef","startIndex":113777,"stopIndex":114524,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11119},{"__isSmartRef__":true,"id":11121},{"__isSmartRef__":true,"id":11122},{"__isSmartRef__":true,"id":11123},{"__isSmartRef__":true,"id":11124},{"__isSmartRef__":true,"id":11125}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11120}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11119":{"name":"documentation","type":"propertyDef","startIndex":113820,"stopIndex":113902,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11120},"className":"HandPositionObserver","_owner":{"__isSmartRef__":true,"id":11118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11120":{"name":"default category","type":"categoryDef","startIndex":113817,"stopIndex":114521,"fileName":"lively/Fabrik.js","_subElements":[{"__isSmartRef__":true,"id":11119},{"__isSmartRef__":true,"id":11121},{"__isSmartRef__":true,"id":11122},{"__isSmartRef__":true,"id":11123},{"__isSmartRef__":true,"id":11124},{"__isSmartRef__":true,"id":11125}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11121":{"name":"initialize","type":"propertyDef","startIndex":113909,"stopIndex":114027,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11120},"className":"HandPositionObserver","_owner":{"__isSmartRef__":true,"id":11118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11122":{"name":"onGlobalPositionUpdate","type":"propertyDef","startIndex":114030,"stopIndex":114132,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11120},"className":"HandPositionObserver","_owner":{"__isSmartRef__":true,"id":11118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11123":{"name":"start","type":"propertyDef","startIndex":114135,"stopIndex":114237,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11120},"className":"HandPositionObserver","_owner":{"__isSmartRef__":true,"id":11118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11124":{"name":"stop","type":"propertyDef","startIndex":114240,"stopIndex":114344,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11120},"className":"HandPositionObserver","_owner":{"__isSmartRef__":true,"id":11118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11125":{"name":"hand","type":"propertyDef","startIndex":114348,"stopIndex":114518,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11120},"className":"HandPositionObserver","_owner":{"__isSmartRef__":true,"id":11118},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11126":{"name":null,"type":"comment","startIndex":114525,"stopIndex":114619,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11127":{"name":"addMorphFrontOrBack","type":"propertyDef","startIndex":114620,"stopIndex":115080,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"WorldMorph","_isStatic":false,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11128":{"name":"emptyString","type":"functionDef","startIndex":115081,"stopIndex":115173,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11129":{"name":null,"type":"comment","startIndex":115174,"stopIndex":115174,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11130":{"name":"logTransformChain","type":"functionDef","startIndex":115175,"stopIndex":115485,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11131":{"name":null,"type":"comment","startIndex":115486,"stopIndex":115487,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11132":{"name":"debugFunction","type":"functionDef","startIndex":115488,"stopIndex":115803,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11133":{"name":null,"type":"comment","startIndex":115804,"stopIndex":115804,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11134":{"name":null,"type":"unknown","startIndex":115805,"stopIndex":115837,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11135":{"name":null,"type":"comment","startIndex":115838,"stopIndex":115838,"fileName":"lively/Fabrik.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11136":{"target":{"__isSmartRef__":true,"id":11137},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/FileUploadWidget.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11137":{"name":"lively.FileUploadWidget","type":"moduleDef","startIndex":0,"stopIndex":9622,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11138},{"__isSmartRef__":true,"id":11139},{"__isSmartRef__":true,"id":11147},{"__isSmartRef__":true,"id":11148},{"__isSmartRef__":true,"id":11156},{"__isSmartRef__":true,"id":11169}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11138":{"name":null,"type":"comment","startIndex":63,"stopIndex":234,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11139":{"name":"FileUploadHelper","type":"klassDef","startIndex":235,"stopIndex":2893,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11140},{"__isSmartRef__":true,"id":11142},{"__isSmartRef__":true,"id":11143},{"__isSmartRef__":true,"id":11144},{"__isSmartRef__":true,"id":11145},{"__isSmartRef__":true,"id":11146}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11141}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11140":{"name":"uploadFileMaxSize","type":"propertyDef","startIndex":273,"stopIndex":305,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11141},"className":"FileUploadHelper","_owner":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11141":{"name":"default category","type":"categoryDef","startIndex":271,"stopIndex":2890,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11140},{"__isSmartRef__":true,"id":11142},{"__isSmartRef__":true,"id":11143},{"__isSmartRef__":true,"id":11144},{"__isSmartRef__":true,"id":11145},{"__isSmartRef__":true,"id":11146}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11142":{"name":"initialize","type":"propertyDef","startIndex":308,"stopIndex":355,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11141},"className":"FileUploadHelper","_owner":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11143":{"name":"sendFile","type":"propertyDef","startIndex":358,"stopIndex":1685,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11141},"className":"FileUploadHelper","_owner":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11144":{"name":"sendMultipleFiles","type":"propertyDef","startIndex":1688,"stopIndex":2609,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11141},"className":"FileUploadHelper","_owner":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11145":{"name":"urlForFileName","type":"propertyDef","startIndex":2612,"stopIndex":2676,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11141},"className":"FileUploadHelper","_owner":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11146":{"name":"parseServerResponse","type":"propertyDef","startIndex":2679,"stopIndex":2889,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11141},"className":"FileUploadHelper","_owner":{"__isSmartRef__":true,"id":11139},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11147":{"name":null,"type":"comment","startIndex":2894,"stopIndex":2895,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11148":{"name":"FileUploadMorph","type":"klassDef","startIndex":2896,"stopIndex":5373,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11149},{"__isSmartRef__":true,"id":11151},{"__isSmartRef__":true,"id":11153},{"__isSmartRef__":true,"id":11154}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":11150},{"__isSmartRef__":true,"id":11152},{"__isSmartRef__":true,"id":11155}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11149":{"name":"initialize","type":"propertyDef","startIndex":2975,"stopIndex":3937,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11150},"className":"FileUploadMorph","_owner":{"__isSmartRef__":true,"id":11148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11150":{"name":"initializing","type":"categoryDef","startIndex":2930,"stopIndex":3940,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11149}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11151":{"name":"addOpenButtonForFiles","type":"propertyDef","startIndex":3955,"stopIndex":4276,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11152},"className":"FileUploadMorph","_owner":{"__isSmartRef__":true,"id":11148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11152":{"name":"opening","type":"categoryDef","startIndex":3942,"stopIndex":4468,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11151},{"__isSmartRef__":true,"id":11153}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11153":{"name":"openImages","type":"propertyDef","startIndex":4278,"stopIndex":4465,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11152},"className":"FileUploadMorph","_owner":{"__isSmartRef__":true,"id":11148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11154":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":4483,"stopIndex":5368,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11155},"className":"FileUploadMorph","_owner":{"__isSmartRef__":true,"id":11148},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11155":{"name":"layout","type":"categoryDef","startIndex":4470,"stopIndex":5370,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11154}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11156":{"name":"FileUploadXenoMorph","type":"klassDef","startIndex":5374,"stopIndex":9365,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11157},{"__isSmartRef__":true,"id":11159},{"__isSmartRef__":true,"id":11160},{"__isSmartRef__":true,"id":11161},{"__isSmartRef__":true,"id":11162},{"__isSmartRef__":true,"id":11163},{"__isSmartRef__":true,"id":11164},{"__isSmartRef__":true,"id":11165},{"__isSmartRef__":true,"id":11166},{"__isSmartRef__":true,"id":11167},{"__isSmartRef__":true,"id":11168}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":11158}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11157":{"name":"initialize","type":"propertyDef","startIndex":5418,"stopIndex":5535,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11158":{"name":"default category","type":"categoryDef","startIndex":5415,"stopIndex":9362,"fileName":"lively/FileUploadWidget.js","_subElements":[{"__isSmartRef__":true,"id":11157},{"__isSmartRef__":true,"id":11159},{"__isSmartRef__":true,"id":11160},{"__isSmartRef__":true,"id":11161},{"__isSmartRef__":true,"id":11162},{"__isSmartRef__":true,"id":11163},{"__isSmartRef__":true,"id":11164},{"__isSmartRef__":true,"id":11165},{"__isSmartRef__":true,"id":11166},{"__isSmartRef__":true,"id":11167},{"__isSmartRef__":true,"id":11168}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11159":{"name":"setupForeignObject","type":"propertyDef","startIndex":5538,"stopIndex":5821,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11160":{"name":"onrestore","type":"propertyDef","startIndex":5825,"stopIndex":5926,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11161":{"name":"handlesMouseDown","type":"propertyDef","startIndex":5929,"stopIndex":5972,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11162":{"name":"onMouseDown","type":"propertyDef","startIndex":5974,"stopIndex":6013,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11163":{"name":"onMouseMove","type":"propertyDef","startIndex":6015,"stopIndex":6054,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11164":{"name":"setBounds","type":"propertyDef","startIndex":6057,"stopIndex":6199,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11165":{"name":"updateFoObject","type":"propertyDef","startIndex":6203,"stopIndex":6441,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11166":{"name":"onDeserialize","type":"propertyDef","startIndex":6444,"stopIndex":6870,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11167":{"name":"startUpload","type":"propertyDef","startIndex":6873,"stopIndex":8885,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11168":{"name":"setupHTMLContent","type":"propertyDef","startIndex":8888,"stopIndex":9360,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11158},"className":"FileUploadXenoMorph","_owner":{"__isSmartRef__":true,"id":11156},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11169":{"name":"openSample","type":"propertyDef","startIndex":9366,"stopIndex":9619,"fileName":"lively/FileUploadWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"FileUploadMorph","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11170":{"target":{"__isSmartRef__":true,"id":11171},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/GeometryEvents.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11171":{"name":"lively.GeometryEvents","type":"moduleDef","startIndex":0,"stopIndex":541,"fileName":"lively/GeometryEvents.js","_subElements":[{"__isSmartRef__":true,"id":11172},{"__isSmartRef__":true,"id":11173}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11172":{"name":null,"type":"comment","startIndex":62,"stopIndex":62,"fileName":"lively/GeometryEvents.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11173":{"name":"Morph","type":"klassExtensionDef","startIndex":63,"stopIndex":522,"fileName":"lively/GeometryEvents.js","_subElements":[{"__isSmartRef__":true,"id":11174},{"__isSmartRef__":true,"id":11176}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11175}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11174":{"name":"signalGeometryChange","type":"propertyDef","startIndex":82,"stopIndex":266,"fileName":"lively/GeometryEvents.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11175},"className":"Morph","_owner":{"__isSmartRef__":true,"id":11173},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11175":{"name":"default category","type":"categoryDef","startIndex":80,"stopIndex":518,"fileName":"lively/GeometryEvents.js","_subElements":[{"__isSmartRef__":true,"id":11174},{"__isSmartRef__":true,"id":11176}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11176":{"name":"enableGeometryChangeEvent","type":"propertyDef","startIndex":269,"stopIndex":516,"fileName":"lively/GeometryEvents.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11175},"className":"Morph","_owner":{"__isSmartRef__":true,"id":11173},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11177":{"target":{"__isSmartRef__":true,"id":11178},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Graffle.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11178":{"name":"lively.Graffle","type":"moduleDef","startIndex":2,"stopIndex":1657,"fileName":"lively/Graffle.js","_subElements":[{"__isSmartRef__":true,"id":11179},{"__isSmartRef__":true,"id":11180},{"__isSmartRef__":true,"id":11190}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11179":{"name":null,"type":"comment","startIndex":117,"stopIndex":118,"fileName":"lively/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11180":{"name":"GraffleLayer","type":"copDef","startIndex":119,"stopIndex":1649,"fileName":"lively/Graffle.js","_subElements":[{"__isSmartRef__":true,"id":11181},{"__isSmartRef__":true,"id":11182},{"__isSmartRef__":true,"id":11186}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11181":{"name":"beGlobal()","type":"copSubElement","startIndex":146,"stopIndex":156,"fileName":"lively/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":11180},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11182":{"name":"PasteUpMorph","type":"copSubElement","startIndex":157,"stopIndex":1275,"fileName":"lively/Graffle.js","_subElements":[{"__isSmartRef__":true,"id":11183},{"__isSmartRef__":true,"id":11185}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":11180},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11183":{"name":"addMorhWithHandleToWorld","type":"propertyDef","startIndex":188,"stopIndex":510,"fileName":"lively/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11184},"_owner":{"__isSmartRef__":true,"id":11182},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11184":{"name":"default category","type":"categoryDef","startIndex":66,"stopIndex":1155,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":11183},{"__isSmartRef__":true,"id":11185}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11185":{"name":"makeSelection","type":"propertyDef","startIndex":513,"stopIndex":1273,"fileName":"lively/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11184},"_owner":{"__isSmartRef__":true,"id":11182},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11186":{"name":"WorldMorph","type":"copSubElement","startIndex":1276,"stopIndex":1647,"fileName":"lively/Graffle.js","_subElements":[{"__isSmartRef__":true,"id":11187},{"__isSmartRef__":true,"id":11189}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":11180},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11187":{"name":"onKeyPress","type":"propertyDef","startIndex":1304,"stopIndex":1535,"fileName":"lively/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11188},"_owner":{"__isSmartRef__":true,"id":11186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11188":{"name":"default category","type":"categoryDef","startIndex":1183,"stopIndex":1527,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":11187},{"__isSmartRef__":true,"id":11189}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11189":{"name":"onKeyUp","type":"propertyDef","startIndex":1538,"stopIndex":1644,"fileName":"lively/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11188},"_owner":{"__isSmartRef__":true,"id":11186},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11190":{"name":null,"type":"comment","startIndex":1650,"stopIndex":1654,"fileName":"lively/Graffle.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11191":{"target":{"__isSmartRef__":true,"id":11192},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/GridLayout.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11192":{"name":"lively/GridLayout.js","type":"completeFileDef","startIndex":0,"stopIndex":20604,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11193},{"__isSmartRef__":true,"id":11194},{"__isSmartRef__":true,"id":11195}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11193":{"name":null,"type":"comment","startIndex":0,"stopIndex":1780,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11194":{"name":null,"type":"unknown","startIndex":1781,"stopIndex":1816,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11195":{"name":"lively.GridLayout","type":"moduleDef","startIndex":1817,"stopIndex":20604,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11196},{"__isSmartRef__":true,"id":11197},{"__isSmartRef__":true,"id":11203},{"__isSmartRef__":true,"id":11204},{"__isSmartRef__":true,"id":11236},{"__isSmartRef__":true,"id":11237},{"__isSmartRef__":true,"id":11247},{"__isSmartRef__":true,"id":11248},{"__isSmartRef__":true,"id":11249},{"__isSmartRef__":true,"id":11250},{"__isSmartRef__":true,"id":11251}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11196":{"name":null,"type":"comment","startIndex":1885,"stopIndex":1885,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11197":{"name":"GridLayoutManager","type":"klassDef","startIndex":1886,"stopIndex":3258,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11198},{"__isSmartRef__":true,"id":11200},{"__isSmartRef__":true,"id":11201},{"__isSmartRef__":true,"id":11202}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"LayoutManager","categories":[{"__isSmartRef__":true,"id":11199}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11198":{"name":"setExtent","type":"propertyDef","startIndex":1932,"stopIndex":2378,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11199},"className":"GridLayoutManager","_owner":{"__isSmartRef__":true,"id":11197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11199":{"name":"default category","type":"categoryDef","startIndex":1930,"stopIndex":3255,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11198},{"__isSmartRef__":true,"id":11200},{"__isSmartRef__":true,"id":11201},{"__isSmartRef__":true,"id":11202}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11200":{"name":"setPosition","type":"propertyDef","startIndex":2385,"stopIndex":2737,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11199},"className":"GridLayoutManager","_owner":{"__isSmartRef__":true,"id":11197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11201":{"name":"setBounds","type":"propertyDef","startIndex":2744,"stopIndex":2869,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11199},"className":"GridLayoutManager","_owner":{"__isSmartRef__":true,"id":11197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11202":{"name":"layoutChanged","type":"propertyDef","startIndex":2872,"stopIndex":3254,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11199},"className":"GridLayoutManager","_owner":{"__isSmartRef__":true,"id":11197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11203":{"name":null,"type":"comment","startIndex":3259,"stopIndex":3261,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11204":{"name":"GridLayoutMorph","type":"klassDef","startIndex":3262,"stopIndex":17248,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11205},{"__isSmartRef__":true,"id":11207},{"__isSmartRef__":true,"id":11208},{"__isSmartRef__":true,"id":11209},{"__isSmartRef__":true,"id":11210},{"__isSmartRef__":true,"id":11211},{"__isSmartRef__":true,"id":11212},{"__isSmartRef__":true,"id":11213},{"__isSmartRef__":true,"id":11214},{"__isSmartRef__":true,"id":11215},{"__isSmartRef__":true,"id":11216},{"__isSmartRef__":true,"id":11217},{"__isSmartRef__":true,"id":11218},{"__isSmartRef__":true,"id":11219},{"__isSmartRef__":true,"id":11220},{"__isSmartRef__":true,"id":11221},{"__isSmartRef__":true,"id":11222},{"__isSmartRef__":true,"id":11223},{"__isSmartRef__":true,"id":11224},{"__isSmartRef__":true,"id":11225},{"__isSmartRef__":true,"id":11226},{"__isSmartRef__":true,"id":11227},{"__isSmartRef__":true,"id":11228},{"__isSmartRef__":true,"id":11229},{"__isSmartRef__":true,"id":11230},{"__isSmartRef__":true,"id":11231},{"__isSmartRef__":true,"id":11232},{"__isSmartRef__":true,"id":11233},{"__isSmartRef__":true,"id":11234},{"__isSmartRef__":true,"id":11235}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":11206}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11205":{"name":"gridLineSpec","type":"propertyDef","startIndex":3306,"stopIndex":3427,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11206":{"name":"default category","type":"categoryDef","startIndex":3299,"stopIndex":17245,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11205},{"__isSmartRef__":true,"id":11207},{"__isSmartRef__":true,"id":11208},{"__isSmartRef__":true,"id":11209},{"__isSmartRef__":true,"id":11210},{"__isSmartRef__":true,"id":11211},{"__isSmartRef__":true,"id":11212},{"__isSmartRef__":true,"id":11213},{"__isSmartRef__":true,"id":11214},{"__isSmartRef__":true,"id":11215},{"__isSmartRef__":true,"id":11216},{"__isSmartRef__":true,"id":11217},{"__isSmartRef__":true,"id":11218},{"__isSmartRef__":true,"id":11219},{"__isSmartRef__":true,"id":11220},{"__isSmartRef__":true,"id":11221},{"__isSmartRef__":true,"id":11222},{"__isSmartRef__":true,"id":11223},{"__isSmartRef__":true,"id":11224},{"__isSmartRef__":true,"id":11225},{"__isSmartRef__":true,"id":11226},{"__isSmartRef__":true,"id":11227},{"__isSmartRef__":true,"id":11228},{"__isSmartRef__":true,"id":11229},{"__isSmartRef__":true,"id":11230},{"__isSmartRef__":true,"id":11231},{"__isSmartRef__":true,"id":11232},{"__isSmartRef__":true,"id":11233},{"__isSmartRef__":true,"id":11234},{"__isSmartRef__":true,"id":11235}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11207":{"name":"style","type":"propertyDef","startIndex":3434,"stopIndex":3507,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11208":{"name":"layoutManager","type":"propertyDef","startIndex":3514,"stopIndex":3556,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11209":{"name":"initialize","type":"propertyDef","startIndex":3559,"stopIndex":3918,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11210":{"name":"addMorph","type":"propertyDef","startIndex":3964,"stopIndex":5510,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11211":{"name":"layoutChanged","type":"propertyDef","startIndex":5517,"stopIndex":5659,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11212":{"name":"removeMorph","type":"propertyDef","startIndex":5667,"stopIndex":6189,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11213":{"name":"validateConstraints","type":"propertyDef","startIndex":6249,"stopIndex":6875,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11214":{"name":"moveMorph","type":"propertyDef","startIndex":6954,"stopIndex":7084,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11215":{"name":"setRow","type":"propertyDef","startIndex":7134,"stopIndex":7221,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11216":{"name":"scheduleUpdate","type":"propertyDef","startIndex":7332,"stopIndex":7622,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11217":{"name":"update","type":"propertyDef","startIndex":7629,"stopIndex":7952,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11218":{"name":"computeGrid","type":"propertyDef","startIndex":8112,"stopIndex":10634,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11219":{"name":"doLayout","type":"propertyDef","startIndex":10681,"stopIndex":11336,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11220":{"name":"adjustRect","type":"propertyDef","startIndex":11524,"stopIndex":12296,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11221":{"name":"getCell","type":"propertyDef","startIndex":12426,"stopIndex":12789,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11222":{"name":"morphAt","type":"propertyDef","startIndex":12849,"stopIndex":13146,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11223":{"name":"toggleGridLines","type":"propertyDef","startIndex":13153,"stopIndex":13243,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11224":{"name":"toggleMinCells","type":"propertyDef","startIndex":13250,"stopIndex":13496,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11225":{"name":"showGridLines","type":"propertyDef","startIndex":13503,"stopIndex":13970,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11226":{"name":"makeGridLines","type":"propertyDef","startIndex":13977,"stopIndex":14623,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11227":{"name":"insertRowBefore","type":"propertyDef","startIndex":14679,"stopIndex":14980,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11228":{"name":"insertColBefore","type":"propertyDef","startIndex":14987,"stopIndex":15288,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11229":{"name":"deleteRow","type":"propertyDef","startIndex":15295,"stopIndex":15644,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11230":{"name":"deleteCol","type":"propertyDef","startIndex":15651,"stopIndex":16000,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11231":{"name":"toggleAlign","type":"propertyDef","startIndex":16112,"stopIndex":16475,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11232":{"name":"align2Bits","type":"propertyDef","startIndex":16537,"stopIndex":16699,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11233":{"name":"alignMap","type":"propertyDef","startIndex":16702,"stopIndex":16813,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11234":{"name":"bits2Align","type":"propertyDef","startIndex":16816,"stopIndex":16908,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11235":{"name":"morphMenu","type":"propertyDef","startIndex":16911,"stopIndex":17244,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11206},"className":"GridLayoutMorph","_owner":{"__isSmartRef__":true,"id":11204},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11236":{"name":null,"type":"comment","startIndex":17249,"stopIndex":17286,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11237":{"name":"GridLineMorph","type":"klassDef","startIndex":17287,"stopIndex":18510,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11238},{"__isSmartRef__":true,"id":11240},{"__isSmartRef__":true,"id":11241},{"__isSmartRef__":true,"id":11242},{"__isSmartRef__":true,"id":11243},{"__isSmartRef__":true,"id":11244},{"__isSmartRef__":true,"id":11245},{"__isSmartRef__":true,"id":11246}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":11239}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11238":{"name":"style","type":"propertyDef","startIndex":17324,"stopIndex":17351,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11239":{"name":"default category","type":"categoryDef","startIndex":17322,"stopIndex":18507,"fileName":"lively/GridLayout.js","_subElements":[{"__isSmartRef__":true,"id":11238},{"__isSmartRef__":true,"id":11240},{"__isSmartRef__":true,"id":11241},{"__isSmartRef__":true,"id":11242},{"__isSmartRef__":true,"id":11243},{"__isSmartRef__":true,"id":11244},{"__isSmartRef__":true,"id":11245},{"__isSmartRef__":true,"id":11246}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11240":{"name":"initialize","type":"propertyDef","startIndex":17353,"stopIndex":17617,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11241":{"name":"handlesMouseDown","type":"propertyDef","startIndex":17624,"stopIndex":17676,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11242":{"name":"onMouseOver","type":"propertyDef","startIndex":17683,"stopIndex":17798,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11243":{"name":"onMouseOut","type":"propertyDef","startIndex":17805,"stopIndex":17869,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11244":{"name":"morphMenu","type":"propertyDef","startIndex":17876,"stopIndex":18180,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11245":{"name":"addCell","type":"propertyDef","startIndex":18233,"stopIndex":18374,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11246":{"name":"rmCell","type":"propertyDef","startIndex":18382,"stopIndex":18506,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11239},"className":"GridLineMorph","_owner":{"__isSmartRef__":true,"id":11237},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11247":{"name":null,"type":"comment","startIndex":18511,"stopIndex":18512,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11248":{"name":null,"type":"unknown","startIndex":18513,"stopIndex":18546,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11249":{"name":null,"type":"comment","startIndex":18547,"stopIndex":18548,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11250":{"name":"demo","type":"propertyDef","startIndex":18549,"stopIndex":20572,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"GridLayoutMorph","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11251":{"name":null,"type":"unknown","startIndex":20573,"stopIndex":20601,"fileName":"lively/GridLayout.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11252":{"target":{"__isSmartRef__":true,"id":11253},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Helper.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11253":{"name":"lively.Helper","type":"moduleDef","startIndex":1187,"stopIndex":7966,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11254},{"__isSmartRef__":true,"id":11255},{"__isSmartRef__":true,"id":11258},{"__isSmartRef__":true,"id":11259},{"__isSmartRef__":true,"id":11262},{"__isSmartRef__":true,"id":11263},{"__isSmartRef__":true,"id":11271},{"__isSmartRef__":true,"id":11272},{"__isSmartRef__":true,"id":11281},{"__isSmartRef__":true,"id":11282},{"__isSmartRef__":true,"id":11283}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11254":{"name":null,"type":"comment","startIndex":1259,"stopIndex":1259,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11255":{"name":"Global","type":"klassExtensionDef","startIndex":1260,"stopIndex":1326,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11256}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11257}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11256":{"name":"range","type":"propertyDef","startIndex":1284,"stopIndex":1321,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11257},"className":"Global","_owner":{"__isSmartRef__":true,"id":11255},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11257":{"name":"default category","type":"categoryDef","startIndex":1282,"stopIndex":1323,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11256}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11258":{"name":null,"type":"comment","startIndex":1327,"stopIndex":1327,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11259":{"name":"Global","type":"klassExtensionDef","startIndex":1328,"stopIndex":1644,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11260}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11261}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11260":{"name":"newFakeMouseEvent","type":"propertyDef","startIndex":1352,"stopIndex":1639,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11261},"className":"Global","_owner":{"__isSmartRef__":true,"id":11259},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11261":{"name":"default category","type":"categoryDef","startIndex":1350,"stopIndex":1641,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11260}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11262":{"name":null,"type":"comment","startIndex":1645,"stopIndex":1646,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11263":{"name":"lively.Helper.XMLConverter","type":"klassDef","startIndex":1647,"stopIndex":4819,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11264},{"__isSmartRef__":true,"id":11266},{"__isSmartRef__":true,"id":11267},{"__isSmartRef__":true,"id":11268},{"__isSmartRef__":true,"id":11269},{"__isSmartRef__":true,"id":11270}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11265}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11264":{"name":"documentation","type":"propertyDef","startIndex":1696,"stopIndex":1804,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11265},"className":"lively.Helper.XMLConverter","_owner":{"__isSmartRef__":true,"id":11263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11265":{"name":"default category","type":"categoryDef","startIndex":1693,"stopIndex":4816,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11264},{"__isSmartRef__":true,"id":11266},{"__isSmartRef__":true,"id":11267},{"__isSmartRef__":true,"id":11268},{"__isSmartRef__":true,"id":11269},{"__isSmartRef__":true,"id":11270}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11266":{"name":"convertToJSON","type":"propertyDef","startIndex":1808,"stopIndex":1883,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11265},"className":"lively.Helper.XMLConverter","_owner":{"__isSmartRef__":true,"id":11263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11267":{"name":"storeXMLDataInto","type":"propertyDef","startIndex":1886,"stopIndex":2609,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11265},"className":"lively.Helper.XMLConverter","_owner":{"__isSmartRef__":true,"id":11263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11268":{"name":"toJSONString","type":"propertyDef","startIndex":2612,"stopIndex":3278,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11265},"className":"lively.Helper.XMLConverter","_owner":{"__isSmartRef__":true,"id":11263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11269":{"name":"convertToXML","type":"propertyDef","startIndex":3281,"stopIndex":4660,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11265},"className":"lively.Helper.XMLConverter","_owner":{"__isSmartRef__":true,"id":11263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11270":{"name":"createNodeFromString","type":"propertyDef","startIndex":4663,"stopIndex":4813,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11265},"className":"lively.Helper.XMLConverter","_owner":{"__isSmartRef__":true,"id":11263},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11271":{"name":null,"type":"comment","startIndex":4820,"stopIndex":4820,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11272":{"name":"Global","type":"klassExtensionDef","startIndex":4821,"stopIndex":7925,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11273},{"__isSmartRef__":true,"id":11275},{"__isSmartRef__":true,"id":11276},{"__isSmartRef__":true,"id":11277},{"__isSmartRef__":true,"id":11278},{"__isSmartRef__":true,"id":11279},{"__isSmartRef__":true,"id":11280}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11274}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11273":{"name":"showThenHide","type":"propertyDef","startIndex":4845,"stopIndex":5032,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11274},"className":"Global","_owner":{"__isSmartRef__":true,"id":11272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11274":{"name":"default category","type":"categoryDef","startIndex":4843,"stopIndex":7922,"fileName":"lively/Helper.js","_subElements":[{"__isSmartRef__":true,"id":11273},{"__isSmartRef__":true,"id":11275},{"__isSmartRef__":true,"id":11276},{"__isSmartRef__":true,"id":11277},{"__isSmartRef__":true,"id":11278},{"__isSmartRef__":true,"id":11279},{"__isSmartRef__":true,"id":11280}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11275":{"name":"showPt","type":"propertyDef","startIndex":5035,"stopIndex":5575,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11274},"className":"Global","_owner":{"__isSmartRef__":true,"id":11272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11276":{"name":"showRect","type":"propertyDef","startIndex":5579,"stopIndex":5779,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11274},"className":"Global","_owner":{"__isSmartRef__":true,"id":11272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11277":{"name":"showMorph","type":"propertyDef","startIndex":5782,"stopIndex":5895,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11274},"className":"Global","_owner":{"__isSmartRef__":true,"id":11272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11278":{"name":"showConnection","type":"propertyDef","startIndex":5898,"stopIndex":7586,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11274},"className":"Global","_owner":{"__isSmartRef__":true,"id":11272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11279":{"name":"showConnections","type":"propertyDef","startIndex":7589,"stopIndex":7774,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11274},"className":"Global","_owner":{"__isSmartRef__":true,"id":11272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11280":{"name":"hideAllConnections","type":"propertyDef","startIndex":7776,"stopIndex":7917,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11274},"className":"Global","_owner":{"__isSmartRef__":true,"id":11272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11281":{"name":null,"type":"comment","startIndex":7926,"stopIndex":7926,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11282":{"name":null,"type":"unknown","startIndex":7927,"stopIndex":7962,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11283":{"name":null,"type":"comment","startIndex":7963,"stopIndex":7963,"fileName":"lively/Helper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11284":{"target":{"__isSmartRef__":true,"id":11285},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/ide.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11285":{"name":"lively.ide","type":"moduleDef","startIndex":1187,"stopIndex":9284,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11286},{"__isSmartRef__":true,"id":11287},{"__isSmartRef__":true,"id":11292},{"__isSmartRef__":true,"id":11293},{"__isSmartRef__":true,"id":11298},{"__isSmartRef__":true,"id":11305},{"__isSmartRef__":true,"id":11312},{"__isSmartRef__":true,"id":11325}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11286":{"name":null,"type":"comment","startIndex":1339,"stopIndex":1532,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11287":{"name":"lively.ide.ChromeErrorParser","type":"klassDef","startIndex":1533,"stopIndex":2446,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11288},{"__isSmartRef__":true,"id":11290},{"__isSmartRef__":true,"id":11291}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11289}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11288":{"name":"parseStackLine","type":"propertyDef","startIndex":1592,"stopIndex":1992,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11289},"className":"lively.ide.ChromeErrorParser","_owner":{"__isSmartRef__":true,"id":11287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11289":{"name":"parse","type":"categoryDef","startIndex":1581,"stopIndex":2443,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11288},{"__isSmartRef__":true,"id":11290},{"__isSmartRef__":true,"id":11291}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11290":{"name":"parseErrorStack","type":"propertyDef","startIndex":1995,"stopIndex":2207,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11289},"className":"lively.ide.ChromeErrorParser","_owner":{"__isSmartRef__":true,"id":11287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11291":{"name":"fileFragmentList","type":"propertyDef","startIndex":2210,"stopIndex":2441,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11289},"className":"lively.ide.ChromeErrorParser","_owner":{"__isSmartRef__":true,"id":11287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11292":{"name":null,"type":"comment","startIndex":2447,"stopIndex":2448,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11293":{"name":"lively.ide.ModuleFileParser","type":"klassDef","startIndex":2449,"stopIndex":2945,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11294},{"__isSmartRef__":true,"id":11296},{"__isSmartRef__":true,"id":11297}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11295}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11294":{"name":"charPosOfLine","type":"propertyDef","startIndex":2518,"stopIndex":2684,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11295},"className":"lively.ide.ModuleFileParser","_owner":{"__isSmartRef__":true,"id":11293},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11295":{"name":"default category","type":"categoryDef","startIndex":2496,"stopIndex":2942,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11294},{"__isSmartRef__":true,"id":11296},{"__isSmartRef__":true,"id":11297}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11296":{"name":"lineOfCharPos","type":"propertyDef","startIndex":2686,"stopIndex":2866,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11295},"className":"lively.ide.ModuleFileParser","_owner":{"__isSmartRef__":true,"id":11293},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11297":{"name":"linesOfString","type":"propertyDef","startIndex":2869,"stopIndex":2940,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11295},"className":"lively.ide.ModuleFileParser","_owner":{"__isSmartRef__":true,"id":11293},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11298":{"name":"lively.ide.CombinedModulesFileParser","type":"klassDef","startIndex":2946,"stopIndex":4852,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11299},{"__isSmartRef__":true,"id":11301},{"__isSmartRef__":true,"id":11302},{"__isSmartRef__":true,"id":11303},{"__isSmartRef__":true,"id":11304}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.ide.ModuleFileParser","categories":[{"__isSmartRef__":true,"id":11300}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11299":{"name":"combinedModulesFile","type":"propertyDef","startIndex":3045,"stopIndex":3098,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11300},"className":"lively.ide.CombinedModulesFileParser","_owner":{"__isSmartRef__":true,"id":11298},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11300":{"name":"default category","type":"categoryDef","startIndex":3023,"stopIndex":4849,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11299},{"__isSmartRef__":true,"id":11301},{"__isSmartRef__":true,"id":11302},{"__isSmartRef__":true,"id":11303},{"__isSmartRef__":true,"id":11304}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11301":{"name":"parseCombinedModulesString","type":"propertyDef","startIndex":3101,"stopIndex":3505,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11300},"className":"lively.ide.CombinedModulesFileParser","_owner":{"__isSmartRef__":true,"id":11298},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11302":{"name":"moduleForCombinedLineRef","type":"propertyDef","startIndex":3507,"stopIndex":4034,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11300},"className":"lively.ide.CombinedModulesFileParser","_owner":{"__isSmartRef__":true,"id":11298},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11303":{"name":"getCombinedModulesContent","type":"propertyDef","startIndex":4036,"stopIndex":4274,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11300},"className":"lively.ide.CombinedModulesFileParser","_owner":{"__isSmartRef__":true,"id":11298},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11304":{"name":"transformFileLineAndCharPosReference","type":"propertyDef","startIndex":4276,"stopIndex":4845,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11300},"className":"lively.ide.CombinedModulesFileParser","_owner":{"__isSmartRef__":true,"id":11298},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11305":{"name":"lively.ide.ChromeErrorLine","type":"klassDef","startIndex":4853,"stopIndex":5788,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11306},{"__isSmartRef__":true,"id":11308},{"__isSmartRef__":true,"id":11309},{"__isSmartRef__":true,"id":11310},{"__isSmartRef__":true,"id":11311}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11307}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11306":{"name":"toString","type":"propertyDef","startIndex":4921,"stopIndex":5149,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11307},"className":"lively.ide.ChromeErrorLine","_owner":{"__isSmartRef__":true,"id":11305},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11307":{"name":"default category","type":"categoryDef","startIndex":4899,"stopIndex":5785,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11306},{"__isSmartRef__":true,"id":11308},{"__isSmartRef__":true,"id":11309},{"__isSmartRef__":true,"id":11310},{"__isSmartRef__":true,"id":11311}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11308":{"name":"fileFragment","type":"propertyDef","startIndex":5151,"stopIndex":5399,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11307},"className":"lively.ide.ChromeErrorLine","_owner":{"__isSmartRef__":true,"id":11305},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11309":{"name":"objectPart","type":"propertyDef","startIndex":5402,"stopIndex":5521,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11307},"className":"lively.ide.ChromeErrorLine","_owner":{"__isSmartRef__":true,"id":11305},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11310":{"name":"methodPart","type":"propertyDef","startIndex":5524,"stopIndex":5658,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11307},"className":"lively.ide.ChromeErrorLine","_owner":{"__isSmartRef__":true,"id":11305},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11311":{"name":"path","type":"propertyDef","startIndex":5661,"stopIndex":5781,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11307},"className":"lively.ide.ChromeErrorLine","_owner":{"__isSmartRef__":true,"id":11305},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11312":{"name":"lively.ide.ErrorStackViewer","type":"klassDef","startIndex":5789,"stopIndex":9280,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11313},{"__isSmartRef__":true,"id":11315},{"__isSmartRef__":true,"id":11316},{"__isSmartRef__":true,"id":11318},{"__isSmartRef__":true,"id":11319},{"__isSmartRef__":true,"id":11320},{"__isSmartRef__":true,"id":11322},{"__isSmartRef__":true,"id":11323},{"__isSmartRef__":true,"id":11324}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":11314},{"__isSmartRef__":true,"id":11317},{"__isSmartRef__":true,"id":11321}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11313":{"name":"viewTitle","type":"propertyDef","startIndex":5852,"stopIndex":5884,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11314},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11314":{"name":"settings","type":"categoryDef","startIndex":5836,"stopIndex":5925,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11313},{"__isSmartRef__":true,"id":11315}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11315":{"name":"initialViewExtent","type":"propertyDef","startIndex":5886,"stopIndex":5921,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11314},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11316":{"name":"buildView","type":"propertyDef","startIndex":5946,"stopIndex":7166,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11317},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11317":{"name":"initializing","type":"categoryDef","startIndex":5927,"stopIndex":7873,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11316},{"__isSmartRef__":true,"id":11318},{"__isSmartRef__":true,"id":11319}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11318":{"name":"setErrorStack","type":"propertyDef","startIndex":7170,"stopIndex":7685,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11317},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11319":{"name":"setError","type":"propertyDef","startIndex":7687,"stopIndex":7870,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11317},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11320":{"name":"updateErrorMessage","type":"propertyDef","startIndex":7889,"stopIndex":8063,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11321},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11321":{"name":"actions","type":"categoryDef","startIndex":7876,"stopIndex":9277,"fileName":"lively/ide.js","_subElements":[{"__isSmartRef__":true,"id":11320},{"__isSmartRef__":true,"id":11322},{"__isSmartRef__":true,"id":11323},{"__isSmartRef__":true,"id":11324}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11322":{"name":"updateSourceFromErrorLine","type":"propertyDef","startIndex":8066,"stopIndex":9059,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11321},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11323":{"name":"browseSelection","type":"propertyDef","startIndex":9062,"stopIndex":9193,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11321},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11324":{"name":"selectedErrorLine","type":"propertyDef","startIndex":9196,"stopIndex":9275,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11321},"className":"lively.ide.ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":11312},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11325":{"name":null,"type":"comment","startIndex":9281,"stopIndex":9281,"fileName":"lively/ide.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11326":{"target":{"__isSmartRef__":true,"id":11327},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/JSON.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11327":{"name":"lively/JSON.js","type":"completeFileDef","startIndex":0,"stopIndex":12620,"fileName":"lively/JSON.js","_subElements":[{"__isSmartRef__":true,"id":11328},{"__isSmartRef__":true,"id":11329},{"__isSmartRef__":true,"id":11330},{"__isSmartRef__":true,"id":11331},{"__isSmartRef__":true,"id":11332},{"__isSmartRef__":true,"id":11333},{"__isSmartRef__":true,"id":11334}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11328":{"name":null,"type":"comment","startIndex":0,"stopIndex":4476,"fileName":"lively/JSON.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11329":{"name":"toJSON","type":"propertyDef","startIndex":4477,"stopIndex":4856,"fileName":"lively/JSON.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Date","_isStatic":false,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11330":{"name":null,"type":"comment","startIndex":4857,"stopIndex":4858,"fileName":"lively/JSON.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11331":{"name":null,"type":"unknown","startIndex":4859,"stopIndex":11454,"fileName":"lively/JSON.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11332":{"name":null,"type":"comment","startIndex":11455,"stopIndex":11493,"fileName":"lively/JSON.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11333":{"name":null,"type":"unknown","startIndex":11494,"stopIndex":11708,"fileName":"lively/JSON.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11334":{"name":"prettyPrint","type":"propertyDef","startIndex":11709,"stopIndex":12620,"fileName":"lively/JSON.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"JSON","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11335":{"target":{"__isSmartRef__":true,"id":11336},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/LayerableMorphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11336":{"name":"lively.LayerableMorphs","type":"moduleDef","startIndex":1231,"stopIndex":1491,"fileName":"lively/LayerableMorphs.js","_subElements":[{"__isSmartRef__":true,"id":11337},{"__isSmartRef__":true,"id":11338},{"__isSmartRef__":true,"id":11339},{"__isSmartRef__":true,"id":11340},{"__isSmartRef__":true,"id":11341}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11337":{"name":null,"type":"comment","startIndex":1324,"stopIndex":1324,"fileName":"lively/LayerableMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11338":{"name":null,"type":"unknown","startIndex":1325,"stopIndex":1393,"fileName":"lively/LayerableMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11339":{"name":null,"type":"unknown","startIndex":1394,"stopIndex":1438,"fileName":"lively/LayerableMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11340":{"name":"lookupLayersIn","type":"propertyDef","startIndex":1439,"stopIndex":1487,"fileName":"lively/LayerableMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"morphClass","_isStatic":false,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11341":{"name":null,"type":"comment","startIndex":1488,"stopIndex":1488,"fileName":"lively/LayerableMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11342":{"target":{"__isSmartRef__":true,"id":11343},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/lk-js-parser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11343":{"name":"lively/lk-js-parser.ometa","type":"ometaGrammar","startIndex":0,"stopIndex":2998,"fileName":"lively/lk-js-parser.ometa","_subElements":[{"__isSmartRef__":true,"id":11344},{"__isSmartRef__":true,"id":11367}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11344":{"name":"LKJSParser","type":"ometaDef","startIndex":0,"stopIndex":2987,"fileName":"lively/lk-js-parser.ometa","_subElements":[{"__isSmartRef__":true,"id":11345},{"__isSmartRef__":true,"id":11346},{"__isSmartRef__":true,"id":11347},{"__isSmartRef__":true,"id":11348},{"__isSmartRef__":true,"id":11349},{"__isSmartRef__":true,"id":11350},{"__isSmartRef__":true,"id":11351},{"__isSmartRef__":true,"id":11352},{"__isSmartRef__":true,"id":11353},{"__isSmartRef__":true,"id":11354},{"__isSmartRef__":true,"id":11355},{"__isSmartRef__":true,"id":11356},{"__isSmartRef__":true,"id":11357},{"__isSmartRef__":true,"id":11358},{"__isSmartRef__":true,"id":11359},{"__isSmartRef__":true,"id":11360},{"__isSmartRef__":true,"id":11361},{"__isSmartRef__":true,"id":11362},{"__isSmartRef__":true,"id":11363},{"__isSmartRef__":true,"id":11364},{"__isSmartRef__":true,"id":11365},{"__isSmartRef__":true,"id":11366}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Parser","__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11345":{"name":"isLKParser","type":"ometaRuleDef","startIndex":105,"stopIndex":180,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11346":{"name":"fromTo","type":"ometaRuleDef","startIndex":189,"stopIndex":262,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11347":{"name":"nl","type":"ometaRuleDef","startIndex":268,"stopIndex":343,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11348":{"name":"nameFirst","type":"ometaRuleDef","startIndex":346,"stopIndex":382,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11349":{"name":"nameRest","type":"ometaRuleDef","startIndex":387,"stopIndex":422,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11350":{"name":"iName","type":"ometaRuleDef","startIndex":427,"stopIndex":505,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11351":{"name":"isKeyword","type":"ometaRuleDef","startIndex":510,"stopIndex":553,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11352":{"name":"name","type":"ometaRuleDef","startIndex":558,"stopIndex":609,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11353":{"name":"keyword","type":"ometaRuleDef","startIndex":614,"stopIndex":665,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11354":{"name":"escapeChar","type":"ometaRuleDef","startIndex":670,"stopIndex":768,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11355":{"name":"str","type":"ometaRuleDef","startIndex":773,"stopIndex":972,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11356":{"name":"comment","type":"ometaRuleDef","startIndex":983,"stopIndex":1178,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11357":{"name":"optNl","type":"ometaRuleDef","startIndex":1187,"stopIndex":1359,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11358":{"name":"spacesNoNl","type":"ometaRuleDef","startIndex":1365,"stopIndex":1416,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11359":{"name":"sc","type":"ometaRuleDef","startIndex":1422,"stopIndex":1581,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11360":{"name":"srcElem","type":"ometaRuleDef","startIndex":1587,"stopIndex":1748,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11361":{"name":"funcRest","type":"ometaRuleDef","startIndex":1754,"stopIndex":1936,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11362":{"name":"formal","type":"ometaRuleDef","startIndex":1942,"stopIndex":2011,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11363":{"name":"srcElems","type":"ometaRuleDef","startIndex":2017,"stopIndex":2173,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11364":{"name":"stmt","type":"ometaRuleDef","startIndex":2179,"stopIndex":2258,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11365":{"name":"something","type":"ometaRuleDef","startIndex":2263,"stopIndex":2643,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11366":{"name":"partStmt","type":"ometaRuleDef","startIndex":2646,"stopIndex":2982,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11367":{"name":null,"type":"unknown","startIndex":2988,"stopIndex":2998,"fileName":"lively/lk-js-parser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11368":{"target":{"__isSmartRef__":true,"id":11369},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/LKFileParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11369":{"name":"lively.LKFileParser","type":"moduleDef","startIndex":0,"stopIndex":27514,"fileName":"lively/LKFileParser.js","_subElements":[{"__isSmartRef__":true,"id":11370}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11370":{"name":null,"type":"unknown","startIndex":74,"stopIndex":27511,"fileName":"lively/LKFileParser.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11371":{"target":{"__isSmartRef__":true,"id":11372},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/LKFileParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11372":{"name":"lively/LKFileParser.ometa","type":"ometaGrammar","startIndex":0,"stopIndex":12932,"fileName":"lively/LKFileParser.ometa","_subElements":[{"__isSmartRef__":true,"id":11373},{"__isSmartRef__":true,"id":11449},{"__isSmartRef__":true,"id":11450},{"__isSmartRef__":true,"id":11451},{"__isSmartRef__":true,"id":11452}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11373":{"name":"LKFileParser","type":"ometaDef","startIndex":0,"stopIndex":12527,"fileName":"lively/LKFileParser.ometa","_subElements":[{"__isSmartRef__":true,"id":11374},{"__isSmartRef__":true,"id":11375},{"__isSmartRef__":true,"id":11376},{"__isSmartRef__":true,"id":11377},{"__isSmartRef__":true,"id":11378},{"__isSmartRef__":true,"id":11379},{"__isSmartRef__":true,"id":11380},{"__isSmartRef__":true,"id":11381},{"__isSmartRef__":true,"id":11382},{"__isSmartRef__":true,"id":11383},{"__isSmartRef__":true,"id":11384},{"__isSmartRef__":true,"id":11385},{"__isSmartRef__":true,"id":11386},{"__isSmartRef__":true,"id":11387},{"__isSmartRef__":true,"id":11388},{"__isSmartRef__":true,"id":11389},{"__isSmartRef__":true,"id":11390},{"__isSmartRef__":true,"id":11391},{"__isSmartRef__":true,"id":11392},{"__isSmartRef__":true,"id":11393},{"__isSmartRef__":true,"id":11394},{"__isSmartRef__":true,"id":11395},{"__isSmartRef__":true,"id":11396},{"__isSmartRef__":true,"id":11397},{"__isSmartRef__":true,"id":11398},{"__isSmartRef__":true,"id":11399},{"__isSmartRef__":true,"id":11400},{"__isSmartRef__":true,"id":11401},{"__isSmartRef__":true,"id":11402},{"__isSmartRef__":true,"id":11403},{"__isSmartRef__":true,"id":11404},{"__isSmartRef__":true,"id":11405},{"__isSmartRef__":true,"id":11406},{"__isSmartRef__":true,"id":11407},{"__isSmartRef__":true,"id":11408},{"__isSmartRef__":true,"id":11409},{"__isSmartRef__":true,"id":11410},{"__isSmartRef__":true,"id":11411},{"__isSmartRef__":true,"id":11412},{"__isSmartRef__":true,"id":11413},{"__isSmartRef__":true,"id":11414},{"__isSmartRef__":true,"id":11415},{"__isSmartRef__":true,"id":11416},{"__isSmartRef__":true,"id":11417},{"__isSmartRef__":true,"id":11418},{"__isSmartRef__":true,"id":11419},{"__isSmartRef__":true,"id":11420},{"__isSmartRef__":true,"id":11421},{"__isSmartRef__":true,"id":11422},{"__isSmartRef__":true,"id":11423},{"__isSmartRef__":true,"id":11424},{"__isSmartRef__":true,"id":11425},{"__isSmartRef__":true,"id":11426},{"__isSmartRef__":true,"id":11427},{"__isSmartRef__":true,"id":11428},{"__isSmartRef__":true,"id":11429},{"__isSmartRef__":true,"id":11430},{"__isSmartRef__":true,"id":11431},{"__isSmartRef__":true,"id":11432},{"__isSmartRef__":true,"id":11433},{"__isSmartRef__":true,"id":11434},{"__isSmartRef__":true,"id":11435},{"__isSmartRef__":true,"id":11436},{"__isSmartRef__":true,"id":11437},{"__isSmartRef__":true,"id":11438},{"__isSmartRef__":true,"id":11439},{"__isSmartRef__":true,"id":11440},{"__isSmartRef__":true,"id":11441},{"__isSmartRef__":true,"id":11442},{"__isSmartRef__":true,"id":11443},{"__isSmartRef__":true,"id":11444},{"__isSmartRef__":true,"id":11445},{"__isSmartRef__":true,"id":11446},{"__isSmartRef__":true,"id":11447},{"__isSmartRef__":true,"id":11448}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Parser","__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11374":{"name":"isLKParser","type":"ometaRuleDef","startIndex":1221,"stopIndex":1239,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11375":{"name":"halt","type":"ometaRuleDef","startIndex":1277,"stopIndex":1300,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11376":{"name":"log","type":"ometaRuleDef","startIndex":1306,"stopIndex":1344,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["msg"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11377":{"name":"logPos","type":"ometaRuleDef","startIndex":1350,"stopIndex":1393,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11378":{"name":"emptyLine","type":"ometaRuleDef","startIndex":1396,"stopIndex":1465,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11379":{"name":"emptyLines","type":"ometaRuleDef","startIndex":1468,"stopIndex":1491,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11380":{"name":"whereAreYou","type":"ometaRuleDef","startIndex":1497,"stopIndex":2001,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11381":{"name":"fromTo","type":"ometaRuleDef","startIndex":2007,"stopIndex":2061,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11382":{"name":"stackSize","type":"ometaRuleDef","startIndex":2067,"stopIndex":2101,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11383":{"name":"num","type":"ometaRuleDef","startIndex":2104,"stopIndex":2176,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11384":{"name":"getStack","type":"ometaRuleDef","startIndex":2179,"stopIndex":2213,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11385":{"name":"assignStack","type":"ometaRuleDef","startIndex":2216,"stopIndex":2252,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["s"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11386":{"name":"startTime","type":"ometaRuleDef","startIndex":2255,"stopIndex":2333,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11387":{"name":"stopTime","type":"ometaRuleDef","startIndex":2336,"stopIndex":2420,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["t"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11388":{"name":"open","type":"ometaRuleDef","startIndex":2423,"stopIndex":2447,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11389":{"name":"close","type":"ometaRuleDef","startIndex":2450,"stopIndex":2499,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11390":{"name":"add","type":"ometaRuleDef","startIndex":2502,"stopIndex":2547,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11391":{"name":"remove","type":"ometaRuleDef","startIndex":2550,"stopIndex":2871,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11392":{"name":"everythingBut","type":"ometaRuleDef","startIndex":2874,"stopIndex":2936,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11393":{"name":"nonRecursive","type":"ometaRuleDef","startIndex":2939,"stopIndex":3082,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11394":{"name":"recursive","type":"ometaRuleDef","startIndex":3085,"stopIndex":3247,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11395":{"name":"chunk","type":"ometaRuleDef","startIndex":3250,"stopIndex":3345,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11396":{"name":"somethingRelated","type":"ometaRuleDef","startIndex":3515,"stopIndex":3568,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11397":{"name":"somethingBigRelated","type":"ometaRuleDef","startIndex":3571,"stopIndex":3778,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11398":{"name":"defEnd","type":"ometaRuleDef","startIndex":3781,"stopIndex":3816,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11399":{"name":"classElemDefEnd","type":"ometaRuleDef","startIndex":3819,"stopIndex":3845,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11400":{"name":"space","type":"ometaRuleDef","startIndex":3881,"stopIndex":3945,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11401":{"name":"nl","type":"ometaRuleDef","startIndex":3951,"stopIndex":3975,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11402":{"name":"spacesNoNl","type":"ometaRuleDef","startIndex":3978,"stopIndex":4016,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11403":{"name":"nameFirst","type":"ometaRuleDef","startIndex":4019,"stopIndex":4049,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11404":{"name":"nameRest","type":"ometaRuleDef","startIndex":4054,"stopIndex":4082,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11405":{"name":"iName","type":"ometaRuleDef","startIndex":4087,"stopIndex":4146,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11406":{"name":"isKeyword","type":"ometaRuleDef","startIndex":4151,"stopIndex":4191,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11407":{"name":"name","type":"ometaRuleDef","startIndex":4196,"stopIndex":4233,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11408":{"name":"keyword","type":"ometaRuleDef","startIndex":4238,"stopIndex":4273,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11409":{"name":"namespaceIdSplitted","type":"ometaRuleDef","startIndex":4276,"stopIndex":4444,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11410":{"name":"namespaceId","type":"ometaRuleDef","startIndex":4447,"stopIndex":4505,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11411":{"name":"nsFollowedBy","type":"ometaRuleDef","startIndex":4508,"stopIndex":4614,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11412":{"name":"nsWith","type":"ometaRuleDef","startIndex":4617,"stopIndex":4801,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11413":{"name":"basicFunction","type":"ometaRuleDef","startIndex":4832,"stopIndex":4930,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11414":{"name":"func","type":"ometaRuleDef","startIndex":4936,"stopIndex":5025,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11415":{"name":"functionDef","type":"ometaRuleDef","startIndex":5031,"stopIndex":5164,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11416":{"name":"staticProperty","type":"ometaRuleDef","startIndex":5175,"stopIndex":5466,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11417":{"name":"methodModificationDef","type":"ometaRuleDef","startIndex":5492,"stopIndex":5753,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11418":{"name":"protoDef","type":"ometaRuleDef","startIndex":5789,"stopIndex":6045,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11419":{"name":"getterOrSetter","type":"ometaRuleDef","startIndex":6047,"stopIndex":6262,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11420":{"name":"propertyDef","type":"ometaRuleDef","startIndex":6267,"stopIndex":6395,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11421":{"name":"classElems","type":"ometaRuleDef","startIndex":6458,"stopIndex":6566,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11422":{"name":"categoryDef","type":"ometaRuleDef","startIndex":6568,"stopIndex":6899,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11423":{"name":"category","type":"ometaRuleDef","startIndex":6902,"stopIndex":7003,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11424":{"name":"categoryName","type":"ometaRuleDef","startIndex":7006,"stopIndex":7085,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11425":{"name":"classElemsInCategory","type":"ometaRuleDef","startIndex":7088,"stopIndex":7196,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11426":{"name":"restKlassDef","type":"ometaRuleDef","startIndex":7200,"stopIndex":7640,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11427":{"name":"klass","type":"ometaRuleDef","startIndex":7643,"stopIndex":7675,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11428":{"name":"nameString","type":"ometaRuleDef","startIndex":7678,"stopIndex":7745,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11429":{"name":"klassDef","type":"ometaRuleDef","startIndex":7751,"stopIndex":8195,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11430":{"name":"basicKlassExt","type":"ometaRuleDef","startIndex":8201,"stopIndex":9225,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11431":{"name":"klassExtensionDef","type":"ometaRuleDef","startIndex":9231,"stopIndex":9662,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11432":{"name":"restObjDef","type":"ometaRuleDef","startIndex":9698,"stopIndex":9845,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11433":{"name":"objectDef","type":"ometaRuleDef","startIndex":9851,"stopIndex":10048,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11434":{"name":"ometaParameter","type":"ometaRuleDef","startIndex":10081,"stopIndex":10126,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11435":{"name":"ometaParameters","type":"ometaRuleDef","startIndex":10132,"stopIndex":10166,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11436":{"name":"ometaRuleDef","type":"ometaRuleDef","startIndex":10172,"stopIndex":10468,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11437":{"name":"ometaInherit","type":"ometaRuleDef","startIndex":10474,"stopIndex":10540,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11438":{"name":"ometaDef","type":"ometaRuleDef","startIndex":10546,"stopIndex":10769,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11439":{"name":"comment","type":"ometaRuleDef","startIndex":11004,"stopIndex":11082,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11440":{"name":"blankLine","type":"ometaRuleDef","startIndex":11093,"stopIndex":11214,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11441":{"name":"copDef","type":"ometaRuleDef","startIndex":11216,"stopIndex":11370,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11442":{"name":"copSubElement","type":"ometaRuleDef","startIndex":11372,"stopIndex":11708,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11443":{"name":"copRefinement","type":"ometaRuleDef","startIndex":11710,"stopIndex":11861,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11444":{"name":"traitDef","type":"ometaRuleDef","startIndex":11863,"stopIndex":12060,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11445":{"name":"realTraitReference","type":"ometaRuleDef","startIndex":12062,"stopIndex":12113,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11446":{"name":"traitSubElement","type":"ometaRuleDef","startIndex":12116,"stopIndex":12275,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11447":{"name":"traitApplication","type":"ometaRuleDef","startIndex":12278,"stopIndex":12391,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11448":{"name":"unknown","type":"ometaRuleDef","startIndex":12398,"stopIndex":12521,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":11373},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11449":{"name":null,"type":"unknown","startIndex":12528,"stopIndex":12552,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11450":{"name":null,"type":"unknown","startIndex":12553,"stopIndex":12613,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11451":{"name":null,"type":"unknown","startIndex":12614,"stopIndex":12919,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11452":{"name":null,"type":"unknown","startIndex":12920,"stopIndex":12932,"fileName":"lively/LKFileParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11453":{"target":{"__isSmartRef__":true,"id":11454},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/LKWiki.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11454":{"name":"lively.LKWiki","type":"moduleDef","startIndex":1187,"stopIndex":48562,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11455},{"__isSmartRef__":true,"id":11456},{"__isSmartRef__":true,"id":11457},{"__isSmartRef__":true,"id":11458},{"__isSmartRef__":true,"id":11493},{"__isSmartRef__":true,"id":11494},{"__isSmartRef__":true,"id":11499},{"__isSmartRef__":true,"id":11500},{"__isSmartRef__":true,"id":11509},{"__isSmartRef__":true,"id":11510},{"__isSmartRef__":true,"id":11520},{"__isSmartRef__":true,"id":11521},{"__isSmartRef__":true,"id":11526},{"__isSmartRef__":true,"id":11527},{"__isSmartRef__":true,"id":11546},{"__isSmartRef__":true,"id":11556},{"__isSmartRef__":true,"id":11574},{"__isSmartRef__":true,"id":11575},{"__isSmartRef__":true,"id":11581},{"__isSmartRef__":true,"id":11582},{"__isSmartRef__":true,"id":11590},{"__isSmartRef__":true,"id":11591},{"__isSmartRef__":true,"id":11611},{"__isSmartRef__":true,"id":11612},{"__isSmartRef__":true,"id":11629},{"__isSmartRef__":true,"id":11630},{"__isSmartRef__":true,"id":11634}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11455":{"name":null,"type":"comment","startIndex":1299,"stopIndex":1299,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11456":{"name":"localWiki","type":"propertyDef","startIndex":1300,"stopIndex":1355,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"URL.common","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11457":{"name":null,"type":"comment","startIndex":1356,"stopIndex":1376,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11458":{"name":"WikiNavigator","type":"klassDef","startIndex":1377,"stopIndex":16273,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11459},{"__isSmartRef__":true,"id":11461},{"__isSmartRef__":true,"id":11462},{"__isSmartRef__":true,"id":11463},{"__isSmartRef__":true,"id":11465},{"__isSmartRef__":true,"id":11466},{"__isSmartRef__":true,"id":11467},{"__isSmartRef__":true,"id":11468},{"__isSmartRef__":true,"id":11470},{"__isSmartRef__":true,"id":11471},{"__isSmartRef__":true,"id":11473},{"__isSmartRef__":true,"id":11474},{"__isSmartRef__":true,"id":11475},{"__isSmartRef__":true,"id":11476},{"__isSmartRef__":true,"id":11477},{"__isSmartRef__":true,"id":11478},{"__isSmartRef__":true,"id":11479},{"__isSmartRef__":true,"id":11480},{"__isSmartRef__":true,"id":11481},{"__isSmartRef__":true,"id":11483},{"__isSmartRef__":true,"id":11484},{"__isSmartRef__":true,"id":11485},{"__isSmartRef__":true,"id":11487},{"__isSmartRef__":true,"id":11488},{"__isSmartRef__":true,"id":11489},{"__isSmartRef__":true,"id":11491},{"__isSmartRef__":true,"id":11492}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":11460},{"__isSmartRef__":true,"id":11464},{"__isSmartRef__":true,"id":11469},{"__isSmartRef__":true,"id":11472},{"__isSmartRef__":true,"id":11482},{"__isSmartRef__":true,"id":11486},{"__isSmartRef__":true,"id":11490}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11459":{"name":"initialize","type":"propertyDef","startIndex":1429,"stopIndex":1994,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11460},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11460":{"name":"initializing","type":"categoryDef","startIndex":1410,"stopIndex":4773,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11459},{"__isSmartRef__":true,"id":11461},{"__isSmartRef__":true,"id":11462}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11461":{"name":"buildView","type":"propertyDef","startIndex":1997,"stopIndex":4256,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11460},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11462":{"name":"createWikiNavigatorButton","type":"propertyDef","startIndex":4259,"stopIndex":4770,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11460},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11463":{"name":"repoUrl","type":"propertyDef","startIndex":4795,"stopIndex":5442,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11464},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11464":{"name":"accessing","type":"categoryDef","startIndex":4775,"stopIndex":6220,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11463},{"__isSmartRef__":true,"id":11465},{"__isSmartRef__":true,"id":11466},{"__isSmartRef__":true,"id":11467}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11465":{"name":"initialize","type":"propertyDef","startIndex":5448,"stopIndex":6077,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11464},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11466":{"name":"world","type":"propertyDef","startIndex":6080,"stopIndex":6134,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11464},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11467":{"name":"currentDocumentRevision","type":"propertyDef","startIndex":6136,"stopIndex":6216,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11464},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11468":{"name":"isActive","type":"propertyDef","startIndex":6237,"stopIndex":6412,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11469},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11469":{"name":"testing","type":"categoryDef","startIndex":6223,"stopIndex":6565,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11468},{"__isSmartRef__":true,"id":11470}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11470":{"name":"worldExists","type":"propertyDef","startIndex":6416,"stopIndex":6562,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11469},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11471":{"name":"prepareForSaving","type":"propertyDef","startIndex":6581,"stopIndex":7025,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11472":{"name":"saving","type":"categoryDef","startIndex":6567,"stopIndex":11859,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11471},{"__isSmartRef__":true,"id":11473},{"__isSmartRef__":true,"id":11474},{"__isSmartRef__":true,"id":11475},{"__isSmartRef__":true,"id":11476},{"__isSmartRef__":true,"id":11477},{"__isSmartRef__":true,"id":11478},{"__isSmartRef__":true,"id":11479},{"__isSmartRef__":true,"id":11480}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11473":{"name":"afterSaving","type":"propertyDef","startIndex":7029,"stopIndex":7103,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11474":{"name":"doSave","type":"propertyDef","startIndex":7107,"stopIndex":8017,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11475":{"name":"interactiveSaveWorld","type":"propertyDef","startIndex":8020,"stopIndex":8651,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11476":{"name":"saveWorld","type":"propertyDef","startIndex":8655,"stopIndex":9140,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11477":{"name":"askToOverwrite","type":"propertyDef","startIndex":9144,"stopIndex":9521,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11478":{"name":"askToNavigateToUrl","type":"propertyDef","startIndex":9524,"stopIndex":9765,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11479":{"name":"askToSaveAndNavigateToUrl","type":"propertyDef","startIndex":9769,"stopIndex":11538,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11480":{"name":"navigateToUrl","type":"propertyDef","startIndex":11546,"stopIndex":11855,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11472},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11481":{"name":"onVersionUpdate","type":"propertyDef","startIndex":11876,"stopIndex":12446,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11482},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11482":{"name":"versions","type":"categoryDef","startIndex":11862,"stopIndex":12946,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11481},{"__isSmartRef__":true,"id":11483},{"__isSmartRef__":true,"id":11484}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11483":{"name":"findVersions","type":"propertyDef","startIndex":12450,"stopIndex":12769,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11482},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11484":{"name":"updateDocumentRevision","type":"propertyDef","startIndex":12771,"stopIndex":12942,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11482},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11485":{"name":"openRegisterDialog","type":"propertyDef","startIndex":12965,"stopIndex":13099,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11486},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11486":{"name":"registering","type":"categoryDef","startIndex":12948,"stopIndex":15552,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11485},{"__isSmartRef__":true,"id":11487},{"__isSmartRef__":true,"id":11488}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11487":{"name":"registerUser","type":"propertyDef","startIndex":13103,"stopIndex":15051,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11486},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11488":{"name":"login","type":"propertyDef","startIndex":15054,"stopIndex":15532,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11486},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11489":{"name":"askToDeleteCurrentWorld","type":"propertyDef","startIndex":15568,"stopIndex":15784,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11490},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11490":{"name":"deletion","type":"categoryDef","startIndex":15554,"stopIndex":16270,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11489},{"__isSmartRef__":true,"id":11491},{"__isSmartRef__":true,"id":11492}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11491":{"name":"deleteCurrentWorld","type":"propertyDef","startIndex":15788,"stopIndex":15850,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11490},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11492":{"name":"deleteWorld","type":"propertyDef","startIndex":15854,"stopIndex":16268,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11490},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11493":{"name":null,"type":"comment","startIndex":16274,"stopIndex":16274,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11494":{"name":"WikiNavigator","type":"klassExtensionDef","startIndex":16275,"stopIndex":17272,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11495},{"__isSmartRef__":true,"id":11497},{"__isSmartRef__":true,"id":11498}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11496}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11495":{"name":"enableWikiNavigator","type":"propertyDef","startIndex":16306,"stopIndex":16959,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11496},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11494},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11496":{"name":"default category","type":"categoryDef","startIndex":16304,"stopIndex":17269,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11495},{"__isSmartRef__":true,"id":11497},{"__isSmartRef__":true,"id":11498}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11497":{"name":"fileNameToURL","type":"propertyDef","startIndex":16961,"stopIndex":17139,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11496},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11494},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11498":{"name":"test","type":"propertyDef","startIndex":17141,"stopIndex":17267,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11496},"className":"WikiNavigator","_owner":{"__isSmartRef__":true,"id":11494},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11499":{"name":null,"type":"comment","startIndex":17273,"stopIndex":17273,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11500":{"name":"WikiLinkDialog","type":"klassDef","startIndex":17274,"stopIndex":19170,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11501},{"__isSmartRef__":true,"id":11503},{"__isSmartRef__":true,"id":11504},{"__isSmartRef__":true,"id":11505},{"__isSmartRef__":true,"id":11506},{"__isSmartRef__":true,"id":11507},{"__isSmartRef__":true,"id":11508}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Dialog","categories":[{"__isSmartRef__":true,"id":11502}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11501":{"name":"formals","type":"propertyDef","startIndex":17311,"stopIndex":17394,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11502},"className":"WikiLinkDialog","_owner":{"__isSmartRef__":true,"id":11500},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11502":{"name":"default category","type":"categoryDef","startIndex":17308,"stopIndex":19167,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11501},{"__isSmartRef__":true,"id":11503},{"__isSmartRef__":true,"id":11504},{"__isSmartRef__":true,"id":11505},{"__isSmartRef__":true,"id":11506},{"__isSmartRef__":true,"id":11507},{"__isSmartRef__":true,"id":11508}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11503":{"name":"initialViewExtent","type":"propertyDef","startIndex":17396,"stopIndex":17430,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11502},"className":"WikiLinkDialog","_owner":{"__isSmartRef__":true,"id":11500},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11504":{"name":"openIn","type":"propertyDef","startIndex":17437,"stopIndex":17624,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11502},"className":"WikiLinkDialog","_owner":{"__isSmartRef__":true,"id":11500},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11505":{"name":"cancelled","type":"propertyDef","startIndex":17631,"stopIndex":17708,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11502},"className":"WikiLinkDialog","_owner":{"__isSmartRef__":true,"id":11500},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11506":{"name":"confirmed1","type":"propertyDef","startIndex":17715,"stopIndex":17840,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11502},"className":"WikiLinkDialog","_owner":{"__isSmartRef__":true,"id":11500},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11507":{"name":"confirmed2","type":"propertyDef","startIndex":17847,"stopIndex":17972,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11502},"className":"WikiLinkDialog","_owner":{"__isSmartRef__":true,"id":11500},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11508":{"name":"buildView","type":"propertyDef","startIndex":17979,"stopIndex":19166,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11502},"className":"WikiLinkDialog","_owner":{"__isSmartRef__":true,"id":11500},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11509":{"name":null,"type":"comment","startIndex":19171,"stopIndex":19171,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11510":{"name":"WikiPatcher","type":"klassDef","startIndex":19172,"stopIndex":20842,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11511},{"__isSmartRef__":true,"id":11513},{"__isSmartRef__":true,"id":11514},{"__isSmartRef__":true,"id":11515},{"__isSmartRef__":true,"id":11516},{"__isSmartRef__":true,"id":11517},{"__isSmartRef__":true,"id":11518},{"__isSmartRef__":true,"id":11519}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11512}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11511":{"name":"documentation","type":"propertyDef","startIndex":19210,"stopIndex":19420,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11512":{"name":"default category","type":"categoryDef","startIndex":19203,"stopIndex":20839,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11511},{"__isSmartRef__":true,"id":11513},{"__isSmartRef__":true,"id":11514},{"__isSmartRef__":true,"id":11515},{"__isSmartRef__":true,"id":11516},{"__isSmartRef__":true,"id":11517},{"__isSmartRef__":true,"id":11518},{"__isSmartRef__":true,"id":11519}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11513":{"name":"findLinks","type":"propertyDef","startIndex":19427,"stopIndex":19476,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11514":{"name":"initialize","type":"propertyDef","startIndex":19483,"stopIndex":19556,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11515":{"name":"patchFile","type":"propertyDef","startIndex":19563,"stopIndex":19893,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11516":{"name":"unpatchFile","type":"propertyDef","startIndex":19900,"stopIndex":20143,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11517":{"name":"findFirstRevision","type":"propertyDef","startIndex":20150,"stopIndex":20572,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11518":{"name":"patchSrc","type":"propertyDef","startIndex":20579,"stopIndex":20739,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11519":{"name":"unpatchSrc","type":"propertyDef","startIndex":20746,"stopIndex":20837,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11512},"className":"WikiPatcher","_owner":{"__isSmartRef__":true,"id":11510},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11520":{"name":null,"type":"comment","startIndex":20843,"stopIndex":20843,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11521":{"name":"LatestWikiChangesListPanel","type":"klassDef","startIndex":20844,"stopIndex":21363,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11522},{"__isSmartRef__":true,"id":11524},{"__isSmartRef__":true,"id":11525}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PanelMorph","categories":[{"__isSmartRef__":true,"id":11523}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11522":{"name":"documentation","type":"propertyDef","startIndex":20897,"stopIndex":20954,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11523},"className":"LatestWikiChangesListPanel","_owner":{"__isSmartRef__":true,"id":11521},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11523":{"name":"default category","type":"categoryDef","startIndex":20894,"stopIndex":21360,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11522},{"__isSmartRef__":true,"id":11524},{"__isSmartRef__":true,"id":11525}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11524":{"name":"urlString","type":"propertyDef","startIndex":20957,"stopIndex":21005,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11523},"className":"LatestWikiChangesListPanel","_owner":{"__isSmartRef__":true,"id":11521},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11525":{"name":"onDeserialize","type":"propertyDef","startIndex":21009,"stopIndex":21357,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11523},"className":"LatestWikiChangesListPanel","_owner":{"__isSmartRef__":true,"id":11521},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11526":{"name":null,"type":"comment","startIndex":21364,"stopIndex":21364,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11527":{"name":"LatestWikiChangesList","type":"klassDef","startIndex":21365,"stopIndex":25317,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11528},{"__isSmartRef__":true,"id":11530},{"__isSmartRef__":true,"id":11531},{"__isSmartRef__":true,"id":11532},{"__isSmartRef__":true,"id":11533},{"__isSmartRef__":true,"id":11534},{"__isSmartRef__":true,"id":11535},{"__isSmartRef__":true,"id":11536},{"__isSmartRef__":true,"id":11537},{"__isSmartRef__":true,"id":11538},{"__isSmartRef__":true,"id":11539},{"__isSmartRef__":true,"id":11540},{"__isSmartRef__":true,"id":11541},{"__isSmartRef__":true,"id":11542},{"__isSmartRef__":true,"id":11543},{"__isSmartRef__":true,"id":11544},{"__isSmartRef__":true,"id":11545}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":11529}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11528":{"name":"viewTitle","type":"propertyDef","startIndex":21409,"stopIndex":21440,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11529":{"name":"default category","type":"categoryDef","startIndex":21406,"stopIndex":25314,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11528},{"__isSmartRef__":true,"id":11530},{"__isSmartRef__":true,"id":11531},{"__isSmartRef__":true,"id":11532},{"__isSmartRef__":true,"id":11533},{"__isSmartRef__":true,"id":11534},{"__isSmartRef__":true,"id":11535},{"__isSmartRef__":true,"id":11536},{"__isSmartRef__":true,"id":11537},{"__isSmartRef__":true,"id":11538},{"__isSmartRef__":true,"id":11539},{"__isSmartRef__":true,"id":11540},{"__isSmartRef__":true,"id":11541},{"__isSmartRef__":true,"id":11542},{"__isSmartRef__":true,"id":11543},{"__isSmartRef__":true,"id":11544},{"__isSmartRef__":true,"id":11545}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11530":{"name":"initialViewExtent","type":"propertyDef","startIndex":21443,"stopIndex":21478,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11531":{"name":"formals","type":"propertyDef","startIndex":21481,"stopIndex":21563,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11532":{"name":"defaultFilter","type":"propertyDef","startIndex":21566,"stopIndex":21593,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11533":{"name":"maxListLength","type":"propertyDef","startIndex":21596,"stopIndex":21614,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11534":{"name":"initialize","type":"propertyDef","startIndex":21617,"stopIndex":21955,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11535":{"name":"buildView","type":"propertyDef","startIndex":21958,"stopIndex":22909,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11536":{"name":"notify","type":"propertyDef","startIndex":22912,"stopIndex":23008,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11537":{"name":"versionListHasOnlyNotifications","type":"propertyDef","startIndex":23011,"stopIndex":23197,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11538":{"name":"searchForNewestFiles","type":"propertyDef","startIndex":23200,"stopIndex":23452,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11539":{"name":"onDirectoryContentUpdate","type":"propertyDef","startIndex":23456,"stopIndex":24180,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11540":{"name":"createListItemFor","type":"propertyDef","startIndex":24184,"stopIndex":24515,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11541":{"name":"refresh","type":"propertyDef","startIndex":24519,"stopIndex":24575,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11542":{"name":"filterDialog","type":"propertyDef","startIndex":24579,"stopIndex":25006,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11543":{"name":"onFilterUpdate","type":"propertyDef","startIndex":25009,"stopIndex":25040,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11544":{"name":"onVersionSelectionUpdate","type":"propertyDef","startIndex":25044,"stopIndex":25271,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11545":{"name":"onVersionListUpdate","type":"propertyDef","startIndex":25275,"stopIndex":25311,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11529},"className":"LatestWikiChangesList","_owner":{"__isSmartRef__":true,"id":11527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11546":{"name":"UserRegistrationDialog","type":"klassDef","startIndex":25318,"stopIndex":28445,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11547},{"__isSmartRef__":true,"id":11549},{"__isSmartRef__":true,"id":11550},{"__isSmartRef__":true,"id":11551},{"__isSmartRef__":true,"id":11552},{"__isSmartRef__":true,"id":11553},{"__isSmartRef__":true,"id":11554},{"__isSmartRef__":true,"id":11555}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Dialog","categories":[{"__isSmartRef__":true,"id":11548}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11547":{"name":"formals","type":"propertyDef","startIndex":25363,"stopIndex":25472,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11548":{"name":"default category","type":"categoryDef","startIndex":25360,"stopIndex":28442,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11547},{"__isSmartRef__":true,"id":11549},{"__isSmartRef__":true,"id":11550},{"__isSmartRef__":true,"id":11551},{"__isSmartRef__":true,"id":11552},{"__isSmartRef__":true,"id":11553},{"__isSmartRef__":true,"id":11554},{"__isSmartRef__":true,"id":11555}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11549":{"name":"initialViewExtent","type":"propertyDef","startIndex":25474,"stopIndex":25509,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11550":{"name":"initialize","type":"propertyDef","startIndex":25512,"stopIndex":25843,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11551":{"name":"openIn","type":"propertyDef","startIndex":25846,"stopIndex":26033,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11552":{"name":"buildView","type":"propertyDef","startIndex":26040,"stopIndex":27312,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11553":{"name":"buildLabelAndTextInput","type":"propertyDef","startIndex":27315,"stopIndex":27724,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11554":{"name":"onCancelledUpdate","type":"propertyDef","startIndex":27726,"stopIndex":27816,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11555":{"name":"onConfirmedUpdate","type":"propertyDef","startIndex":27818,"stopIndex":28438,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11548},"className":"UserRegistrationDialog","_owner":{"__isSmartRef__":true,"id":11546},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11556":{"name":"WikiNetworkAnalyzer","type":"klassDef","startIndex":28446,"stopIndex":34417,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11557},{"__isSmartRef__":true,"id":11559},{"__isSmartRef__":true,"id":11560},{"__isSmartRef__":true,"id":11561},{"__isSmartRef__":true,"id":11562},{"__isSmartRef__":true,"id":11563},{"__isSmartRef__":true,"id":11564},{"__isSmartRef__":true,"id":11565},{"__isSmartRef__":true,"id":11566},{"__isSmartRef__":true,"id":11567},{"__isSmartRef__":true,"id":11568},{"__isSmartRef__":true,"id":11569},{"__isSmartRef__":true,"id":11570},{"__isSmartRef__":true,"id":11571},{"__isSmartRef__":true,"id":11572},{"__isSmartRef__":true,"id":11573}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11558}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11557":{"name":"initialize","type":"propertyDef","startIndex":28488,"stopIndex":28599,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11558":{"name":"default category","type":"categoryDef","startIndex":28485,"stopIndex":34414,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11557},{"__isSmartRef__":true,"id":11559},{"__isSmartRef__":true,"id":11560},{"__isSmartRef__":true,"id":11561},{"__isSmartRef__":true,"id":11562},{"__isSmartRef__":true,"id":11563},{"__isSmartRef__":true,"id":11564},{"__isSmartRef__":true,"id":11565},{"__isSmartRef__":true,"id":11566},{"__isSmartRef__":true,"id":11567},{"__isSmartRef__":true,"id":11568},{"__isSmartRef__":true,"id":11569},{"__isSmartRef__":true,"id":11570},{"__isSmartRef__":true,"id":11571},{"__isSmartRef__":true,"id":11572},{"__isSmartRef__":true,"id":11573}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11559":{"name":"getWorldProxies","type":"propertyDef","startIndex":28602,"stopIndex":28658,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11560":{"name":"findOrCreateProxy","type":"propertyDef","startIndex":28661,"stopIndex":29023,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11561":{"name":"makeSVNResource","type":"propertyDef","startIndex":29025,"stopIndex":29180,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11562":{"name":"fetchProxies","type":"propertyDef","startIndex":29183,"stopIndex":30099,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11563":{"name":"scanLogAndCreateProxies","type":"propertyDef","startIndex":30103,"stopIndex":31263,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11564":{"name":"fetchVersionsOfWorld","type":"propertyDef","startIndex":31266,"stopIndex":31691,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11565":{"name":"fetchFileList","type":"propertyDef","startIndex":31694,"stopIndex":32284,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11566":{"name":"extractLinksFromDocument","type":"propertyDef","startIndex":32287,"stopIndex":32447,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11567":{"name":"findOrCreateProxiesForLinksIn","type":"propertyDef","startIndex":32450,"stopIndex":32699,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11568":{"name":"fetchLinksOfWorld","type":"propertyDef","startIndex":32702,"stopIndex":33303,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11569":{"name":"addLinksOfWorld","type":"propertyDef","startIndex":33305,"stopIndex":33505,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11570":{"name":"toExpression","type":"propertyDef","startIndex":33507,"stopIndex":33715,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11571":{"name":"writeStateToFile","type":"propertyDef","startIndex":33717,"stopIndex":33866,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11572":{"name":"readStateFromFile","type":"propertyDef","startIndex":33868,"stopIndex":34166,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11573":{"name":"stopUpdateLoop","type":"propertyDef","startIndex":34168,"stopIndex":34407,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11558},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11556},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11574":{"name":null,"type":"comment","startIndex":34418,"stopIndex":34418,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11575":{"name":"WikiNetworkAnalyzer","type":"klassExtensionDef","startIndex":34419,"stopIndex":36014,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11576},{"__isSmartRef__":true,"id":11578},{"__isSmartRef__":true,"id":11579},{"__isSmartRef__":true,"id":11580}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11577}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11576":{"name":"forRepo","type":"propertyDef","startIndex":34456,"stopIndex":34934,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11577},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11575},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11577":{"name":"default category","type":"categoryDef","startIndex":34454,"stopIndex":36011,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11576},{"__isSmartRef__":true,"id":11578},{"__isSmartRef__":true,"id":11579},{"__isSmartRef__":true,"id":11580}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11578":{"name":"startUp","type":"propertyDef","startIndex":34936,"stopIndex":35270,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11577},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11575},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11579":{"name":"startUpdateLoop","type":"propertyDef","startIndex":35273,"stopIndex":35571,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11577},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11575},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11580":{"name":"updateOnce","type":"propertyDef","startIndex":35575,"stopIndex":36010,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11577},"className":"WikiNetworkAnalyzer","_owner":{"__isSmartRef__":true,"id":11575},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11581":{"name":null,"type":"comment","startIndex":36015,"stopIndex":36015,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11582":{"name":"LinkExtractor","type":"klassDef","startIndex":36016,"stopIndex":37570,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11583},{"__isSmartRef__":true,"id":11585},{"__isSmartRef__":true,"id":11586},{"__isSmartRef__":true,"id":11587},{"__isSmartRef__":true,"id":11588},{"__isSmartRef__":true,"id":11589}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11584}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11583":{"name":"documentation","type":"propertyDef","startIndex":36052,"stopIndex":36104,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11584},"className":"LinkExtractor","_owner":{"__isSmartRef__":true,"id":11582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11584":{"name":"default category","type":"categoryDef","startIndex":36049,"stopIndex":37567,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11583},{"__isSmartRef__":true,"id":11585},{"__isSmartRef__":true,"id":11586},{"__isSmartRef__":true,"id":11587},{"__isSmartRef__":true,"id":11588},{"__isSmartRef__":true,"id":11589}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11585":{"name":"urlQuery","type":"propertyDef","startIndex":36107,"stopIndex":36160,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11584},"className":"LinkExtractor","_owner":{"__isSmartRef__":true,"id":11582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11586":{"name":"attributeQuery","type":"propertyDef","startIndex":36162,"stopIndex":36214,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11584},"className":"LinkExtractor","_owner":{"__isSmartRef__":true,"id":11582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11587":{"name":"extractLinksFromDocument","type":"propertyDef","startIndex":36217,"stopIndex":37074,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11584},"className":"LinkExtractor","_owner":{"__isSmartRef__":true,"id":11582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11588":{"name":"extractLinkFromUrlNode","type":"propertyDef","startIndex":37076,"stopIndex":37207,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11584},"className":"LinkExtractor","_owner":{"__isSmartRef__":true,"id":11582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11589":{"name":"extractLinksFromField","type":"propertyDef","startIndex":37209,"stopIndex":37564,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11584},"className":"LinkExtractor","_owner":{"__isSmartRef__":true,"id":11582},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11590":{"name":null,"type":"comment","startIndex":37571,"stopIndex":37571,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11591":{"name":"WikiWorldProxy","type":"klassDef","startIndex":37572,"stopIndex":40981,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11592},{"__isSmartRef__":true,"id":11594},{"__isSmartRef__":true,"id":11595},{"__isSmartRef__":true,"id":11596},{"__isSmartRef__":true,"id":11597},{"__isSmartRef__":true,"id":11598},{"__isSmartRef__":true,"id":11599},{"__isSmartRef__":true,"id":11600},{"__isSmartRef__":true,"id":11601},{"__isSmartRef__":true,"id":11602},{"__isSmartRef__":true,"id":11603},{"__isSmartRef__":true,"id":11604},{"__isSmartRef__":true,"id":11605},{"__isSmartRef__":true,"id":11606},{"__isSmartRef__":true,"id":11607},{"__isSmartRef__":true,"id":11608},{"__isSmartRef__":true,"id":11609},{"__isSmartRef__":true,"id":11610}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":11593}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11592":{"name":"formals","type":"propertyDef","startIndex":37608,"stopIndex":37668,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11593":{"name":"default category","type":"categoryDef","startIndex":37606,"stopIndex":40978,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11592},{"__isSmartRef__":true,"id":11594},{"__isSmartRef__":true,"id":11595},{"__isSmartRef__":true,"id":11596},{"__isSmartRef__":true,"id":11597},{"__isSmartRef__":true,"id":11598},{"__isSmartRef__":true,"id":11599},{"__isSmartRef__":true,"id":11600},{"__isSmartRef__":true,"id":11601},{"__isSmartRef__":true,"id":11602},{"__isSmartRef__":true,"id":11603},{"__isSmartRef__":true,"id":11604},{"__isSmartRef__":true,"id":11605},{"__isSmartRef__":true,"id":11606},{"__isSmartRef__":true,"id":11607},{"__isSmartRef__":true,"id":11608},{"__isSmartRef__":true,"id":11609},{"__isSmartRef__":true,"id":11610}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11594":{"name":"initialize","type":"propertyDef","startIndex":37670,"stopIndex":37963,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11595":{"name":"makeSVNResource","type":"propertyDef","startIndex":37965,"stopIndex":38172,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11596":{"name":"getDocument","type":"propertyDef","startIndex":38174,"stopIndex":38282,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11597":{"name":"findLinksToOtherWorlds","type":"propertyDef","startIndex":38286,"stopIndex":38423,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11598":{"name":"findVersions","type":"propertyDef","startIndex":38425,"stopIndex":38555,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11599":{"name":"onLinksUpdate","type":"propertyDef","startIndex":38557,"stopIndex":38590,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11600":{"name":"onExistingUpdate","type":"propertyDef","startIndex":38592,"stopIndex":38629,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11601":{"name":"onVersionsUpdate","type":"propertyDef","startIndex":38631,"stopIndex":38670,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11602":{"name":"getNamesOfLinkedWorlds","type":"propertyDef","startIndex":38672,"stopIndex":38795,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11603":{"name":"getChangeSet","type":"propertyDef","startIndex":38797,"stopIndex":39000,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11604":{"name":"getDocumentOfChangeSet","type":"propertyDef","startIndex":39002,"stopIndex":39679,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11605":{"name":"writeChangeSet","type":"propertyDef","startIndex":39682,"stopIndex":39897,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11606":{"name":"isDeleted","type":"propertyDef","startIndex":39900,"stopIndex":40183,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11607":{"name":"localName","type":"propertyDef","startIndex":40186,"stopIndex":40301,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11608":{"name":"toString","type":"propertyDef","startIndex":40303,"stopIndex":40393,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11609":{"name":"id","type":"propertyDef","startIndex":40395,"stopIndex":40447,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11610":{"name":"toExpression","type":"propertyDef","startIndex":40449,"stopIndex":40975,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11593},"className":"WikiWorldProxy","_owner":{"__isSmartRef__":true,"id":11591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11611":{"name":null,"type":"comment","startIndex":40982,"stopIndex":40982,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11612":{"name":"WikiWorldNodeMorph","type":"klassDef","startIndex":40983,"stopIndex":46587,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11613},{"__isSmartRef__":true,"id":11615},{"__isSmartRef__":true,"id":11616},{"__isSmartRef__":true,"id":11617},{"__isSmartRef__":true,"id":11618},{"__isSmartRef__":true,"id":11619},{"__isSmartRef__":true,"id":11620},{"__isSmartRef__":true,"id":11621},{"__isSmartRef__":true,"id":11622},{"__isSmartRef__":true,"id":11623},{"__isSmartRef__":true,"id":11624},{"__isSmartRef__":true,"id":11625},{"__isSmartRef__":true,"id":11626},{"__isSmartRef__":true,"id":11627},{"__isSmartRef__":true,"id":11628}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"NodeMorph","categories":[{"__isSmartRef__":true,"id":11614}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11613":{"name":"initialize","type":"propertyDef","startIndex":41027,"stopIndex":41712,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11614":{"name":"default category","type":"categoryDef","startIndex":41024,"stopIndex":46584,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11613},{"__isSmartRef__":true,"id":11615},{"__isSmartRef__":true,"id":11616},{"__isSmartRef__":true,"id":11617},{"__isSmartRef__":true,"id":11618},{"__isSmartRef__":true,"id":11619},{"__isSmartRef__":true,"id":11620},{"__isSmartRef__":true,"id":11621},{"__isSmartRef__":true,"id":11622},{"__isSmartRef__":true,"id":11623},{"__isSmartRef__":true,"id":11624},{"__isSmartRef__":true,"id":11625},{"__isSmartRef__":true,"id":11626},{"__isSmartRef__":true,"id":11627},{"__isSmartRef__":true,"id":11628}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11615":{"name":"onDeserialize","type":"propertyDef","startIndex":41715,"stopIndex":41792,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11616":{"name":"isSpecialWorld","type":"propertyDef","startIndex":41796,"stopIndex":41883,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11617":{"name":"getWikiWorldProxy","type":"propertyDef","startIndex":41887,"stopIndex":42264,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11618":{"name":"initUpdateLinks","type":"propertyDef","startIndex":42266,"stopIndex":42425,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11619":{"name":"onLinksUpdate","type":"propertyDef","startIndex":42428,"stopIndex":42535,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11620":{"name":"onExistingUpdate","type":"propertyDef","startIndex":42537,"stopIndex":42786,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11621":{"name":"onVersionsUpdate","type":"propertyDef","startIndex":42788,"stopIndex":44361,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11622":{"name":"manuallyUpdateLinks","type":"propertyDef","startIndex":44363,"stopIndex":44456,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11623":{"name":"manuallyUpdateVersions","type":"propertyDef","startIndex":44458,"stopIndex":44560,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11624":{"name":"addNewLinks","type":"propertyDef","startIndex":44564,"stopIndex":44966,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11625":{"name":"removeOldLinks","type":"propertyDef","startIndex":44968,"stopIndex":45276,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11626":{"name":"findNodeForProxy","type":"propertyDef","startIndex":45278,"stopIndex":45437,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11627":{"name":"connectTo","type":"propertyDef","startIndex":45886,"stopIndex":46126,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11628":{"name":"getHelpText","type":"propertyDef","startIndex":46129,"stopIndex":46582,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11614},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11612},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11629":{"name":null,"type":"comment","startIndex":46588,"stopIndex":46588,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11630":{"name":"WikiWorldNodeMorph","type":"klassExtensionDef","startIndex":46589,"stopIndex":48542,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11631},{"__isSmartRef__":true,"id":11633}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11632}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11631":{"name":"create","type":"propertyDef","startIndex":46625,"stopIndex":47109,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11632},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11630},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11632":{"name":"default category","type":"categoryDef","startIndex":46623,"stopIndex":48539,"fileName":"lively/LKWiki.js","_subElements":[{"__isSmartRef__":true,"id":11631},{"__isSmartRef__":true,"id":11633}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11633":{"name":"lookForNewFiles","type":"propertyDef","startIndex":47111,"stopIndex":48537,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11632},"className":"WikiWorldNodeMorph","_owner":{"__isSmartRef__":true,"id":11630},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11634":{"name":null,"type":"comment","startIndex":48543,"stopIndex":48543,"fileName":"lively/LKWiki.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11635":{"target":{"__isSmartRef__":true,"id":11636},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/localconfig.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11636":{"name":"lively/localconfig.js","type":"completeFileDef","startIndex":0,"stopIndex":1807,"fileName":"lively/localconfig.js","_subElements":[{"__isSmartRef__":true,"id":11637},{"__isSmartRef__":true,"id":11638},{"__isSmartRef__":true,"id":11639},{"__isSmartRef__":true,"id":11640},{"__isSmartRef__":true,"id":11641},{"__isSmartRef__":true,"id":11642},{"__isSmartRef__":true,"id":11643},{"__isSmartRef__":true,"id":11644},{"__isSmartRef__":true,"id":11645},{"__isSmartRef__":true,"id":11646},{"__isSmartRef__":true,"id":11647},{"__isSmartRef__":true,"id":11648},{"__isSmartRef__":true,"id":11649},{"__isSmartRef__":true,"id":11650},{"__isSmartRef__":true,"id":11651},{"__isSmartRef__":true,"id":11652},{"__isSmartRef__":true,"id":11653},{"__isSmartRef__":true,"id":11654},{"__isSmartRef__":true,"id":11655},{"__isSmartRef__":true,"id":11656},{"__isSmartRef__":true,"id":11657},{"__isSmartRef__":true,"id":11658},{"__isSmartRef__":true,"id":11659}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11637":{"name":"proxyURL","type":"propertyDef","startIndex":0,"stopIndex":88,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11638":{"name":null,"type":"comment","startIndex":89,"stopIndex":89,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11639":{"name":"wikiRepoUrl","type":"propertyDef","startIndex":90,"stopIndex":287,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11640":{"name":null,"type":"comment","startIndex":288,"stopIndex":288,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11641":{"name":"debugExtras","type":"propertyDef","startIndex":289,"stopIndex":316,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11642":{"name":null,"type":"comment","startIndex":317,"stopIndex":317,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11643":{"name":"showFabrikWeatherWidgetExample","type":"propertyDef","startIndex":318,"stopIndex":364,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11644":{"name":null,"type":"comment","startIndex":365,"stopIndex":431,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11645":{"name":"askBeforeQuit","type":"propertyDef","startIndex":432,"stopIndex":461,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11646":{"name":null,"type":"comment","startIndex":462,"stopIndex":811,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11647":{"name":"modulesOnWorldLoad","type":"propertyDef","startIndex":812,"stopIndex":990,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11648":{"name":"showNetworkExamples","type":"propertyDef","startIndex":991,"stopIndex":1026,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11649":{"name":null,"type":"unknown","startIndex":1027,"stopIndex":1117,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11650":{"name":"testInRealWorld","type":"propertyDef","startIndex":1118,"stopIndex":1148,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11651":{"name":"confirmNavigation","type":"propertyDef","startIndex":1149,"stopIndex":1184,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11652":{"name":"resizeScreenToWorldBounds","type":"propertyDef","startIndex":1185,"stopIndex":1225,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11653":{"name":null,"type":"comment","startIndex":1226,"stopIndex":1227,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11654":{"name":"disableScriptCaching","type":"propertyDef","startIndex":1228,"stopIndex":1263,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11655":{"name":null,"type":"comment","startIndex":1264,"stopIndex":1537,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11656":{"name":"silentFailOnWrapperClassNotFound","type":"propertyDef","startIndex":1538,"stopIndex":1585,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11657":{"name":null,"type":"comment","startIndex":1586,"stopIndex":1586,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11658":{"name":"defaultDisplayTheme","type":"propertyDef","startIndex":1587,"stopIndex":1635,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11659":{"name":null,"type":"errorDef","startIndex":1636,"stopIndex":1807,"fileName":"lively/localconfig.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"fileString":"Config.proxyURL = document.location.protocol + '//' + document.location.host + '/proxy';\n\nConfig.wikiRepoUrl = document.location.protocol + '//' + document.location.host +\n\t(document.URL.include('swa/research') ?\n\t\t'/repository/webwerkstatt/swa/research' :\n\t\t'/repository/webwerkstatt');\n\nConfig.debugExtras = false;\n\nConfig.showFabrikWeatherWidgetExample = false;\n\n// Config.highlightSyntax = true;\n// Config.usePieMenus = false;\n\nConfig.askBeforeQuit = false;\n\n// Config.modulesOnWorldLoad = Config.modulesOnWorldLoad.concat([\"cop/Layers\", \"Tests/LayersTest\"])\n// Config.modulesOnWorldLoad = Config.modulesOnWorldLoad.concat([\"lively.Fabrik\", \"lively.Presentation\", \"cop.Layers\", 'lively.LayerableMorphs', \"cop.Workspace\", \"lively.Graffle\", \"lively.Undo\", \"lively.TabCompletion\", \"lively.SyntaxHighlighting\"])\nConfig.modulesOnWorldLoad = Config.modulesOnWorldLoad.concat([\"lively.Graffle\", \"lively.Undo\", \"lively.ide.AutoCompletion\", \"lively.ide.SyntaxHighlighting\", 'lively.Scripting'])\n\nConfig.showNetworkExamples = true\n\n\nif (!Config.isNewMorphic) {\n\tConfig.modulesOnWorldLoad.push('lively.deprecated.Helper')\n}\n\nConfig.testInRealWorld = true\n\nConfig.confirmNavigation = false; \n\nConfig.resizeScreenToWorldBounds = true;\n \nConfig.disableScriptCaching = true;\n\n// document.body.style.cursor = 'none';\n// document.body.style.cursor = 'url(\"/repository/webwerkstatt/media/nocursor.gif\"), none';\n// new URL(Config.codeBase).withFilename('media/nocursor.gif').withRelativePartsResolved().pathname\n\n// document.body.style.cursor = 'wait'\n\nConfig.silentFailOnWrapperClassNotFound = true;\n\nConfig.defaultDisplayTheme = 'hpi' // 'primitive', 'turquoise', 'hpi', 'lively'\n\nConfig.disableNoConsoleWarning = true;\n\nConfig.ignoreAdvice = false;\n\nConfig.loadUserConfig = true;\nConfig.ChromeSVGRenderingHotfix = true;\n","__LivelyClassName__":"lively.ide.ParseErrorFileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11660":{"target":{"__isSmartRef__":true,"id":11661},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/LogHelper.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11661":{"name":"lively.LogHelper","type":"moduleDef","startIndex":0,"stopIndex":3117,"fileName":"lively/LogHelper.js","_subElements":[{"__isSmartRef__":true,"id":11662},{"__isSmartRef__":true,"id":11663},{"__isSmartRef__":true,"id":11679}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11662":{"name":null,"type":"comment","startIndex":57,"stopIndex":57,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11663":{"name":"Global","type":"klassExtensionDef","startIndex":58,"stopIndex":3113,"fileName":"lively/LogHelper.js","_subElements":[{"__isSmartRef__":true,"id":11664},{"__isSmartRef__":true,"id":11666},{"__isSmartRef__":true,"id":11667},{"__isSmartRef__":true,"id":11668},{"__isSmartRef__":true,"id":11669},{"__isSmartRef__":true,"id":11670},{"__isSmartRef__":true,"id":11671},{"__isSmartRef__":true,"id":11672},{"__isSmartRef__":true,"id":11673},{"__isSmartRef__":true,"id":11674},{"__isSmartRef__":true,"id":11675},{"__isSmartRef__":true,"id":11676},{"__isSmartRef__":true,"id":11677},{"__isSmartRef__":true,"id":11678}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11665}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11664":{"name":"getStack","type":"propertyDef","startIndex":82,"stopIndex":404,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11665":{"name":"default category","type":"categoryDef","startIndex":80,"stopIndex":3110,"fileName":"lively/LogHelper.js","_subElements":[{"__isSmartRef__":true,"id":11664},{"__isSmartRef__":true,"id":11666},{"__isSmartRef__":true,"id":11667},{"__isSmartRef__":true,"id":11668},{"__isSmartRef__":true,"id":11669},{"__isSmartRef__":true,"id":11670},{"__isSmartRef__":true,"id":11671},{"__isSmartRef__":true,"id":11672},{"__isSmartRef__":true,"id":11673},{"__isSmartRef__":true,"id":11674},{"__isSmartRef__":true,"id":11675},{"__isSmartRef__":true,"id":11676},{"__isSmartRef__":true,"id":11677},{"__isSmartRef__":true,"id":11678}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11666":{"name":"printStack","type":"propertyDef","startIndex":407,"stopIndex":1010,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11667":{"name":"logStack","type":"propertyDef","startIndex":1013,"stopIndex":1072,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11668":{"name":"logStackFor","type":"propertyDef","startIndex":1075,"stopIndex":1400,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11669":{"name":"indentForDepth","type":"propertyDef","startIndex":1403,"stopIndex":1507,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11670":{"name":"MyLogDepth","type":"propertyDef","startIndex":1510,"stopIndex":1523,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11671":{"name":"resetLogDepth","type":"propertyDef","startIndex":1525,"stopIndex":1569,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11672":{"name":"logCall","type":"propertyDef","startIndex":1572,"stopIndex":1932,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11673":{"name":"logCallHelper","type":"propertyDef","startIndex":1935,"stopIndex":2186,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11674":{"name":"toExpression","type":"propertyDef","startIndex":2189,"stopIndex":2284,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11675":{"name":"logMethod","type":"propertyDef","startIndex":2288,"stopIndex":2636,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11676":{"name":"printObject","type":"propertyDef","startIndex":2640,"stopIndex":2886,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11677":{"name":"printObjectFull","type":"propertyDef","startIndex":2889,"stopIndex":3043,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11678":{"name":"logObject","type":"propertyDef","startIndex":3046,"stopIndex":3108,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11665},"className":"Global","_owner":{"__isSmartRef__":true,"id":11663},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11679":{"name":null,"type":"comment","startIndex":3114,"stopIndex":3114,"fileName":"lively/LogHelper.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11680":{"target":{"__isSmartRef__":true,"id":11681},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Main.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11681":{"name":"lively.Main","type":"moduleDef","startIndex":1241,"stopIndex":29730,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11682},{"__isSmartRef__":true,"id":11683},{"__isSmartRef__":true,"id":11694},{"__isSmartRef__":true,"id":11697},{"__isSmartRef__":true,"id":11703},{"__isSmartRef__":true,"id":11710},{"__isSmartRef__":true,"id":11714},{"__isSmartRef__":true,"id":11719},{"__isSmartRef__":true,"id":11740},{"__isSmartRef__":true,"id":11743},{"__isSmartRef__":true,"id":11750},{"__isSmartRef__":true,"id":11751},{"__isSmartRef__":true,"id":11772},{"__isSmartRef__":true,"id":11778},{"__isSmartRef__":true,"id":11781}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11682":{"name":null,"type":"comment","startIndex":1344,"stopIndex":1344,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11683":{"name":"lively.Main.WorldDataAccessor","type":"klassDef","startIndex":1345,"stopIndex":2036,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11684},{"__isSmartRef__":true,"id":11686},{"__isSmartRef__":true,"id":11687},{"__isSmartRef__":true,"id":11689},{"__isSmartRef__":true,"id":11690},{"__isSmartRef__":true,"id":11691},{"__isSmartRef__":true,"id":11692},{"__isSmartRef__":true,"id":11693}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11685},{"__isSmartRef__":true,"id":11688}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11684":{"name":"initialize","type":"propertyDef","startIndex":1412,"stopIndex":1470,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11685},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11685":{"name":"initializing","type":"categoryDef","startIndex":1394,"stopIndex":1570,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11684},{"__isSmartRef__":true,"id":11686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11686":{"name":"modulesBeforeDeserialization","type":"propertyDef","startIndex":1472,"stopIndex":1566,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11685},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11687":{"name":"modulesBeforeChanges","type":"propertyDef","startIndex":1600,"stopIndex":1678,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11688},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11688":{"name":"accessing and creation","type":"categoryDef","startIndex":1572,"stopIndex":2033,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11687},{"__isSmartRef__":true,"id":11689},{"__isSmartRef__":true,"id":11690},{"__isSmartRef__":true,"id":11691},{"__isSmartRef__":true,"id":11692},{"__isSmartRef__":true,"id":11693}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11689":{"name":"modulesBeforeWorldLoad","type":"propertyDef","startIndex":1680,"stopIndex":1762,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11688},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11690":{"name":"modulesOnWorldLoad","type":"propertyDef","startIndex":1764,"stopIndex":1838,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11688},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11691":{"name":"getCanvas","type":"propertyDef","startIndex":1840,"stopIndex":1885,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11688},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11692":{"name":"getWorld","type":"propertyDef","startIndex":1887,"stopIndex":1956,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11688},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11693":{"name":"getChangeSet","type":"propertyDef","startIndex":1958,"stopIndex":2031,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11688},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11683},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11694":{"name":"lively.Main.WorldDataAccessor","type":"klassExtensionDef","startIndex":2037,"stopIndex":3698,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11695}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11696}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11695":{"name":"forCanvas","type":"propertyDef","startIndex":2084,"stopIndex":3693,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11696},"className":"lively.Main.WorldDataAccessor","_owner":{"__isSmartRef__":true,"id":11694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11696":{"name":"default category","type":"categoryDef","startIndex":2082,"stopIndex":3695,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11695}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11697":{"name":"lively.Main.XMLWorldData","type":"klassDef","startIndex":3699,"stopIndex":4185,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11698},{"__isSmartRef__":true,"id":11700},{"__isSmartRef__":true,"id":11702}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.Main.WorldDataAccessor","categories":[{"__isSmartRef__":true,"id":11699},{"__isSmartRef__":true,"id":11701}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11698":{"name":"initialize","type":"propertyDef","startIndex":3784,"stopIndex":3926,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11699},"className":"lively.Main.XMLWorldData","_owner":{"__isSmartRef__":true,"id":11697},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11699":{"name":"initializing","type":"categoryDef","startIndex":3766,"stopIndex":3929,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11698}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11700":{"name":"getWorld","type":"propertyDef","startIndex":3959,"stopIndex":4127,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11701},"className":"lively.Main.XMLWorldData","_owner":{"__isSmartRef__":true,"id":11697},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11701":{"name":"accessing and creation","type":"categoryDef","startIndex":3931,"stopIndex":4182,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11700},{"__isSmartRef__":true,"id":11702}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11702":{"name":"getChangeSet","type":"propertyDef","startIndex":4129,"stopIndex":4180,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11701},"className":"lively.Main.XMLWorldData","_owner":{"__isSmartRef__":true,"id":11697},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11703":{"name":"lively.Main.JSONWorldData","type":"klassDef","startIndex":4186,"stopIndex":4994,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11704},{"__isSmartRef__":true,"id":11706},{"__isSmartRef__":true,"id":11708},{"__isSmartRef__":true,"id":11709}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.Main.WorldDataAccessor","categories":[{"__isSmartRef__":true,"id":11705},{"__isSmartRef__":true,"id":11707}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11704":{"name":"initialize","type":"propertyDef","startIndex":4272,"stopIndex":4439,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11705},"className":"lively.Main.JSONWorldData","_owner":{"__isSmartRef__":true,"id":11703},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11705":{"name":"initializing","type":"categoryDef","startIndex":4254,"stopIndex":4442,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11704}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11706":{"name":"modulesBeforeChanges","type":"propertyDef","startIndex":4472,"stopIndex":4773,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11707},"className":"lively.Main.JSONWorldData","_owner":{"__isSmartRef__":true,"id":11703},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11707":{"name":"accessing and creation","type":"categoryDef","startIndex":4444,"stopIndex":4991,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11706},{"__isSmartRef__":true,"id":11708},{"__isSmartRef__":true,"id":11709}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11708":{"name":"getWorld","type":"propertyDef","startIndex":4777,"stopIndex":4936,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11707},"className":"lively.Main.JSONWorldData","_owner":{"__isSmartRef__":true,"id":11703},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11709":{"name":"getChangeSet","type":"propertyDef","startIndex":4938,"stopIndex":4989,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11707},"className":"lively.Main.JSONWorldData","_owner":{"__isSmartRef__":true,"id":11703},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11710":{"name":"lively.Main.NewWorldData","type":"klassDef","startIndex":4995,"stopIndex":5412,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11711},{"__isSmartRef__":true,"id":11713}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.Main.WorldDataAccessor","categories":[{"__isSmartRef__":true,"id":11712}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11711":{"name":"getWorld","type":"propertyDef","startIndex":5090,"stopIndex":5218,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11712},"className":"lively.Main.NewWorldData","_owner":{"__isSmartRef__":true,"id":11710},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11712":{"name":"accessing and creation","type":"categoryDef","startIndex":5062,"stopIndex":5409,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11711},{"__isSmartRef__":true,"id":11713}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11713":{"name":"getChangeSet","type":"propertyDef","startIndex":5220,"stopIndex":5407,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11712},"className":"lively.Main.NewWorldData","_owner":{"__isSmartRef__":true,"id":11710},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11714":{"name":"lively.Main.NewMorphicData","type":"klassDef","startIndex":5413,"stopIndex":6083,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11715},{"__isSmartRef__":true,"id":11717},{"__isSmartRef__":true,"id":11718}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.Main.JSONWorldData","categories":[{"__isSmartRef__":true,"id":11716}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11715":{"name":"getWorld","type":"propertyDef","startIndex":5506,"stopIndex":5869,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11716},"className":"lively.Main.NewMorphicData","_owner":{"__isSmartRef__":true,"id":11714},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11716":{"name":"accessing and creation","type":"categoryDef","startIndex":5478,"stopIndex":6080,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11715},{"__isSmartRef__":true,"id":11717},{"__isSmartRef__":true,"id":11718}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11717":{"name":"modulesBeforeChanges","type":"propertyDef","startIndex":5872,"stopIndex":5969,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11716},"className":"lively.Main.NewMorphicData","_owner":{"__isSmartRef__":true,"id":11714},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11718":{"name":"modulesBeforeDeserialization","type":"propertyDef","startIndex":5971,"stopIndex":6077,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11716},"className":"lively.Main.NewMorphicData","_owner":{"__isSmartRef__":true,"id":11714},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11719":{"name":"lively.Main.Loader","type":"klassDef","startIndex":6084,"stopIndex":9496,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11720},{"__isSmartRef__":true,"id":11722},{"__isSmartRef__":true,"id":11724},{"__isSmartRef__":true,"id":11725},{"__isSmartRef__":true,"id":11727},{"__isSmartRef__":true,"id":11728},{"__isSmartRef__":true,"id":11729},{"__isSmartRef__":true,"id":11730},{"__isSmartRef__":true,"id":11731},{"__isSmartRef__":true,"id":11732},{"__isSmartRef__":true,"id":11733},{"__isSmartRef__":true,"id":11735},{"__isSmartRef__":true,"id":11736},{"__isSmartRef__":true,"id":11737},{"__isSmartRef__":true,"id":11739}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11721},{"__isSmartRef__":true,"id":11723},{"__isSmartRef__":true,"id":11726},{"__isSmartRef__":true,"id":11734},{"__isSmartRef__":true,"id":11738}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11720":{"name":"connections","type":"propertyDef","startIndex":6138,"stopIndex":6169,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11721},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11721":{"name":"properties","type":"categoryDef","startIndex":6122,"stopIndex":6172,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11720}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11722":{"name":"getCanvas","type":"propertyDef","startIndex":6189,"stopIndex":6234,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11723},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11723":{"name":"accessing","type":"categoryDef","startIndex":6174,"stopIndex":6396,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11722},{"__isSmartRef__":true,"id":11724}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11724":{"name":"getWorldData","type":"propertyDef","startIndex":6236,"stopIndex":6393,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11723},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11725":{"name":"prepareForLoading","type":"propertyDef","startIndex":6416,"stopIndex":6697,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11726},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11726":{"name":"preparation","type":"categoryDef","startIndex":6398,"stopIndex":7929,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11725},{"__isSmartRef__":true,"id":11727},{"__isSmartRef__":true,"id":11728},{"__isSmartRef__":true,"id":11729},{"__isSmartRef__":true,"id":11730},{"__isSmartRef__":true,"id":11731},{"__isSmartRef__":true,"id":11732}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11727":{"name":"debuggingExtras","type":"propertyDef","startIndex":6700,"stopIndex":6967,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11726},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11728":{"name":"clipboardHack","type":"propertyDef","startIndex":6970,"stopIndex":7073,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11726},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11729":{"name":"setupCounter","type":"propertyDef","startIndex":7076,"stopIndex":7388,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11726},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11730":{"name":"browserSpecificFixes","type":"propertyDef","startIndex":7391,"stopIndex":7494,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11726},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11731":{"name":"showWikiNavigator","type":"propertyDef","startIndex":7497,"stopIndex":7666,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11726},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11732":{"name":"canvasHeightPatch","type":"propertyDef","startIndex":7669,"stopIndex":7925,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11726},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11733":{"name":"systemStart","type":"propertyDef","startIndex":7945,"stopIndex":8096,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11734},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11734":{"name":"loading","type":"categoryDef","startIndex":7931,"stopIndex":9128,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11733},{"__isSmartRef__":true,"id":11735},{"__isSmartRef__":true,"id":11736}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11735":{"name":"loadWorld","type":"propertyDef","startIndex":8099,"stopIndex":8871,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11734},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11736":{"name":"onFinishLoading","type":"propertyDef","startIndex":8874,"stopIndex":9124,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11734},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11737":{"name":"configPatches","type":"propertyDef","startIndex":9152,"stopIndex":9330,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11738},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11738":{"name":"maybe deprecated","type":"categoryDef","startIndex":9130,"stopIndex":9493,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11737},{"__isSmartRef__":true,"id":11739}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11739":{"name":"replaceWindowMorphIfNotExisiting","type":"propertyDef","startIndex":9332,"stopIndex":9491,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11738},"className":"lively.Main.Loader","_owner":{"__isSmartRef__":true,"id":11719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11740":{"name":"lively.Main.CanvasLoader","type":"klassDef","startIndex":9497,"stopIndex":9723,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11741}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.Main.Loader","categories":[{"__isSmartRef__":true,"id":11742}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11741":{"name":"prepareForLoading","type":"propertyDef","startIndex":9570,"stopIndex":9718,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11742},"className":"lively.Main.CanvasLoader","_owner":{"__isSmartRef__":true,"id":11740},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11742":{"name":"preperation","type":"categoryDef","startIndex":9553,"stopIndex":9720,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11741}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11743":{"name":"lively.Main.HTMLLoader","type":"klassDef","startIndex":9724,"stopIndex":11252,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11744},{"__isSmartRef__":true,"id":11746},{"__isSmartRef__":true,"id":11748},{"__isSmartRef__":true,"id":11749}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.Main.Loader","categories":[{"__isSmartRef__":true,"id":11745},{"__isSmartRef__":true,"id":11747}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11744":{"name":"setupCounter","type":"propertyDef","startIndex":9795,"stopIndex":9869,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11745},"className":"lively.Main.HTMLLoader","_owner":{"__isSmartRef__":true,"id":11743},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11745":{"name":"preparation","type":"categoryDef","startIndex":9778,"stopIndex":9872,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11744}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11746":{"name":"systemStart","type":"propertyDef","startIndex":9887,"stopIndex":10822,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11747},"className":"lively.Main.HTMLLoader","_owner":{"__isSmartRef__":true,"id":11743},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11747":{"name":"loading","type":"categoryDef","startIndex":9874,"stopIndex":11249,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11746},{"__isSmartRef__":true,"id":11748},{"__isSmartRef__":true,"id":11749}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11748":{"name":"enableLayerInWorld","type":"propertyDef","startIndex":10825,"stopIndex":10970,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11747},"className":"lively.Main.HTMLLoader","_owner":{"__isSmartRef__":true,"id":11743},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11749":{"name":"createNewWorld","type":"propertyDef","startIndex":10975,"stopIndex":11246,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11747},"className":"lively.Main.HTMLLoader","_owner":{"__isSmartRef__":true,"id":11743},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11750":{"name":null,"type":"comment","startIndex":11253,"stopIndex":11314,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11751":{"name":"lively.Main.Examples","type":"klassDef","startIndex":11315,"stopIndex":26552,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11752},{"__isSmartRef__":true,"id":11754},{"__isSmartRef__":true,"id":11755},{"__isSmartRef__":true,"id":11756},{"__isSmartRef__":true,"id":11757},{"__isSmartRef__":true,"id":11758},{"__isSmartRef__":true,"id":11759},{"__isSmartRef__":true,"id":11760},{"__isSmartRef__":true,"id":11761},{"__isSmartRef__":true,"id":11762},{"__isSmartRef__":true,"id":11763},{"__isSmartRef__":true,"id":11764},{"__isSmartRef__":true,"id":11765},{"__isSmartRef__":true,"id":11766},{"__isSmartRef__":true,"id":11767},{"__isSmartRef__":true,"id":11768},{"__isSmartRef__":true,"id":11769},{"__isSmartRef__":true,"id":11770},{"__isSmartRef__":true,"id":11771}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11753}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11752":{"name":"showStar","type":"propertyDef","startIndex":11358,"stopIndex":12140,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11753":{"name":"default category","type":"categoryDef","startIndex":11355,"stopIndex":26549,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11752},{"__isSmartRef__":true,"id":11754},{"__isSmartRef__":true,"id":11755},{"__isSmartRef__":true,"id":11756},{"__isSmartRef__":true,"id":11757},{"__isSmartRef__":true,"id":11758},{"__isSmartRef__":true,"id":11759},{"__isSmartRef__":true,"id":11760},{"__isSmartRef__":true,"id":11761},{"__isSmartRef__":true,"id":11762},{"__isSmartRef__":true,"id":11763},{"__isSmartRef__":true,"id":11764},{"__isSmartRef__":true,"id":11765},{"__isSmartRef__":true,"id":11766},{"__isSmartRef__":true,"id":11767},{"__isSmartRef__":true,"id":11768},{"__isSmartRef__":true,"id":11769},{"__isSmartRef__":true,"id":11770},{"__isSmartRef__":true,"id":11771}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11754":{"name":"showSampleMorphs","type":"propertyDef","startIndex":12143,"stopIndex":13445,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11755":{"name":"populateSlideWorld","type":"propertyDef","startIndex":13448,"stopIndex":14051,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11756":{"name":"makeSlideWorld","type":"propertyDef","startIndex":14054,"stopIndex":14418,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11757":{"name":"showClock","type":"propertyDef","startIndex":14421,"stopIndex":14618,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11758":{"name":"showEngine","type":"propertyDef","startIndex":14621,"stopIndex":14754,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11759":{"name":"showAsteroids","type":"propertyDef","startIndex":14757,"stopIndex":15156,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11760":{"name":"showWeather","type":"propertyDef","startIndex":15159,"stopIndex":15419,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11761":{"name":"showStocks","type":"propertyDef","startIndex":15422,"stopIndex":15593,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11762":{"name":"showTesterRunnerForDevelopment","type":"propertyDef","startIndex":15596,"stopIndex":15990,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11763":{"name":"showLivelyConsole","type":"propertyDef","startIndex":15993,"stopIndex":16262,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11764":{"name":"showFabrikComponents","type":"propertyDef","startIndex":16266,"stopIndex":17060,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11765":{"name":"showTileScripting","type":"propertyDef","startIndex":17063,"stopIndex":17195,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11766":{"name":"showToolDock","type":"propertyDef","startIndex":17198,"stopIndex":17324,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11767":{"name":"showInnerWorld","type":"propertyDef","startIndex":17327,"stopIndex":21437,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11768":{"name":"showSlideWorld","type":"propertyDef","startIndex":21440,"stopIndex":22020,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11769":{"name":"showDeveloperWorld","type":"propertyDef","startIndex":22023,"stopIndex":24509,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11770":{"name":"showFabrikWorld","type":"propertyDef","startIndex":24512,"stopIndex":25146,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11771":{"name":"populateWorldWithExamples","type":"propertyDef","startIndex":25149,"stopIndex":26546,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11753},"className":"lively.Main.Examples","_owner":{"__isSmartRef__":true,"id":11751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11772":{"name":"lively.Main.HTMLExamples","type":"klassDef","startIndex":26553,"stopIndex":29283,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11773},{"__isSmartRef__":true,"id":11775},{"__isSmartRef__":true,"id":11776},{"__isSmartRef__":true,"id":11777}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.Main.Examples","categories":[{"__isSmartRef__":true,"id":11774}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11773":{"name":"showStar","type":"propertyDef","startIndex":26614,"stopIndex":27409,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11774},"className":"lively.Main.HTMLExamples","_owner":{"__isSmartRef__":true,"id":11772},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11774":{"name":"default category","type":"categoryDef","startIndex":26611,"stopIndex":29280,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11773},{"__isSmartRef__":true,"id":11775},{"__isSmartRef__":true,"id":11776},{"__isSmartRef__":true,"id":11777}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11775":{"name":"showSampleMorphs","type":"propertyDef","startIndex":27412,"stopIndex":28848,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11774},"className":"lively.Main.HTMLExamples","_owner":{"__isSmartRef__":true,"id":11772},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11776":{"name":"populateSlideWorld","type":"propertyDef","startIndex":28851,"stopIndex":28948,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11774},"className":"lively.Main.HTMLExamples","_owner":{"__isSmartRef__":true,"id":11772},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11777":{"name":"populateWorldWithExamples","type":"propertyDef","startIndex":28951,"stopIndex":29276,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11774},"className":"lively.Main.HTMLExamples","_owner":{"__isSmartRef__":true,"id":11772},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11778":{"name":"lively.Main","type":"klassExtensionDef","startIndex":29284,"stopIndex":29708,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11779}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11780}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11779":{"name":"getLoader","type":"propertyDef","startIndex":29313,"stopIndex":29703,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11780},"className":"lively.Main","_owner":{"__isSmartRef__":true,"id":11778},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11780":{"name":"default category","type":"categoryDef","startIndex":29311,"stopIndex":29705,"fileName":"lively/Main.js","_subElements":[{"__isSmartRef__":true,"id":11779}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11781":{"name":null,"type":"comment","startIndex":29709,"stopIndex":29709,"fileName":"lively/Main.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11782":{"target":{"__isSmartRef__":true,"id":11783},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Migration.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11783":{"name":"lively/Migration.js","type":"completeFileDef","startIndex":0,"stopIndex":254,"fileName":"lively/Migration.js","_subElements":[{"__isSmartRef__":true,"id":11784},{"__isSmartRef__":true,"id":11785},{"__isSmartRef__":true,"id":11786}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11784":{"name":null,"type":"comment","startIndex":0,"stopIndex":24,"fileName":"lively/Migration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11785":{"name":null,"type":"unknown","startIndex":25,"stopIndex":139,"fileName":"lively/Migration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11786":{"name":null,"type":"unknown","startIndex":140,"stopIndex":254,"fileName":"lively/Migration.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11787":{"target":{"__isSmartRef__":true,"id":11788},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/miniprototype.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11788":{"name":"lively/miniprototype.js","type":"completeFileDef","startIndex":0,"stopIndex":16399,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11789},{"__isSmartRef__":true,"id":11790},{"__isSmartRef__":true,"id":11794},{"__isSmartRef__":true,"id":11795},{"__isSmartRef__":true,"id":11796},{"__isSmartRef__":true,"id":11797},{"__isSmartRef__":true,"id":11809},{"__isSmartRef__":true,"id":11810},{"__isSmartRef__":true,"id":11811},{"__isSmartRef__":true,"id":11812},{"__isSmartRef__":true,"id":11818},{"__isSmartRef__":true,"id":11819},{"__isSmartRef__":true,"id":11820},{"__isSmartRef__":true,"id":11821},{"__isSmartRef__":true,"id":11836},{"__isSmartRef__":true,"id":11837},{"__isSmartRef__":true,"id":11838},{"__isSmartRef__":true,"id":11839},{"__isSmartRef__":true,"id":11861},{"__isSmartRef__":true,"id":11862},{"__isSmartRef__":true,"id":11869},{"__isSmartRef__":true,"id":11870},{"__isSmartRef__":true,"id":11871},{"__isSmartRef__":true,"id":11872},{"__isSmartRef__":true,"id":11873},{"__isSmartRef__":true,"id":11874},{"__isSmartRef__":true,"id":11875},{"__isSmartRef__":true,"id":11880},{"__isSmartRef__":true,"id":11881},{"__isSmartRef__":true,"id":11882},{"__isSmartRef__":true,"id":11883},{"__isSmartRef__":true,"id":11909},{"__isSmartRef__":true,"id":11912},{"__isSmartRef__":true,"id":11913},{"__isSmartRef__":true,"id":11914},{"__isSmartRef__":true,"id":11915},{"__isSmartRef__":true,"id":11916},{"__isSmartRef__":true,"id":11917},{"__isSmartRef__":true,"id":11918},{"__isSmartRef__":true,"id":11919},{"__isSmartRef__":true,"id":11920},{"__isSmartRef__":true,"id":11921}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11789":{"name":null,"type":"comment","startIndex":0,"stopIndex":388,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11790":{"name":"Prototype","type":"objectDef","startIndex":389,"stopIndex":471,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11791},{"__isSmartRef__":true,"id":11793}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11791":{"name":"Version","type":"propertyDef","startIndex":407,"stopIndex":437,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11792},"_owner":{"__isSmartRef__":true,"id":11790},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11792":{"name":"default category","type":"categoryDef","startIndex":16,"stopIndex":80,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":11791},{"__isSmartRef__":true,"id":11793}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11793":{"name":"K","type":"propertyDef","startIndex":439,"stopIndex":468,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11792},"_owner":{"__isSmartRef__":true,"id":11790},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11794":{"name":null,"type":"comment","startIndex":472,"stopIndex":561,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11795":{"name":"extend","type":"propertyDef","startIndex":562,"stopIndex":1148,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Object","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11796":{"name":null,"type":"comment","startIndex":1149,"stopIndex":1149,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11797":{"name":"Object","type":"klassExtensionDef","startIndex":1150,"stopIndex":2298,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11798},{"__isSmartRef__":true,"id":11800},{"__isSmartRef__":true,"id":11801},{"__isSmartRef__":true,"id":11802},{"__isSmartRef__":true,"id":11803},{"__isSmartRef__":true,"id":11804},{"__isSmartRef__":true,"id":11805},{"__isSmartRef__":true,"id":11806},{"__isSmartRef__":true,"id":11807},{"__isSmartRef__":true,"id":11808}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11799}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11798":{"name":"inspect","type":"propertyDef","startIndex":1174,"stopIndex":1467,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11799":{"name":"default category","type":"categoryDef","startIndex":1172,"stopIndex":2295,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11798},{"__isSmartRef__":true,"id":11800},{"__isSmartRef__":true,"id":11801},{"__isSmartRef__":true,"id":11802},{"__isSmartRef__":true,"id":11803},{"__isSmartRef__":true,"id":11804},{"__isSmartRef__":true,"id":11805},{"__isSmartRef__":true,"id":11806},{"__isSmartRef__":true,"id":11807},{"__isSmartRef__":true,"id":11808}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11800":{"name":"keys","type":"propertyDef","startIndex":1470,"stopIndex":1596,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11801":{"name":"values","type":"propertyDef","startIndex":1601,"stopIndex":1743,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11802":{"name":"clone","type":"propertyDef","startIndex":1746,"stopIndex":1816,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11803":{"name":"isElement","type":"propertyDef","startIndex":1819,"stopIndex":1897,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11804":{"name":"isArray","type":"propertyDef","startIndex":1900,"stopIndex":1984,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11805":{"name":"isFunction","type":"propertyDef","startIndex":1987,"stopIndex":2063,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11806":{"name":"isString","type":"propertyDef","startIndex":2066,"stopIndex":2138,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11807":{"name":"isNumber","type":"propertyDef","startIndex":2141,"stopIndex":2213,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11808":{"name":"isUndefined","type":"propertyDef","startIndex":2216,"stopIndex":2294,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11799},"className":"Object","_owner":{"__isSmartRef__":true,"id":11797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11809":{"name":null,"type":"comment","startIndex":2299,"stopIndex":2300,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11810":{"name":null,"type":"unknown","startIndex":2301,"stopIndex":2663,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11811":{"name":null,"type":"comment","startIndex":2664,"stopIndex":2664,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11812":{"name":"Function.prototype","type":"klassExtensionDef","startIndex":2665,"stopIndex":3978,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11813},{"__isSmartRef__":true,"id":11815},{"__isSmartRef__":true,"id":11816},{"__isSmartRef__":true,"id":11817}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11814}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11813":{"name":"argumentNames","type":"propertyDef","startIndex":2701,"stopIndex":3074,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11814},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":11812},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11814":{"name":"default category","type":"categoryDef","startIndex":2699,"stopIndex":3975,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11813},{"__isSmartRef__":true,"id":11815},{"__isSmartRef__":true,"id":11816},{"__isSmartRef__":true,"id":11817}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11815":{"name":"curry","type":"propertyDef","startIndex":3077,"stopIndex":3390,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11814},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":11812},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11816":{"name":"delay","type":"propertyDef","startIndex":3393,"stopIndex":3614,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11814},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":11812},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11817":{"name":"wrap","type":"propertyDef","startIndex":3617,"stopIndex":3974,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11814},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":11812},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11818":{"name":null,"type":"comment","startIndex":3979,"stopIndex":3980,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11819":{"name":"match","type":"propertyDef","startIndex":3981,"stopIndex":4028,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"RegExp","_isStatic":false,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11820":{"name":null,"type":"comment","startIndex":4029,"stopIndex":4109,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11821":{"name":"String.prototype","type":"klassExtensionDef","startIndex":4110,"stopIndex":6358,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11822},{"__isSmartRef__":true,"id":11824},{"__isSmartRef__":true,"id":11825},{"__isSmartRef__":true,"id":11826},{"__isSmartRef__":true,"id":11827},{"__isSmartRef__":true,"id":11828},{"__isSmartRef__":true,"id":11829},{"__isSmartRef__":true,"id":11830},{"__isSmartRef__":true,"id":11831},{"__isSmartRef__":true,"id":11832},{"__isSmartRef__":true,"id":11833},{"__isSmartRef__":true,"id":11834},{"__isSmartRef__":true,"id":11835}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11823}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11822":{"name":"truncate","type":"propertyDef","startIndex":4145,"stopIndex":4393,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11823":{"name":"default category","type":"categoryDef","startIndex":4142,"stopIndex":6355,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11822},{"__isSmartRef__":true,"id":11824},{"__isSmartRef__":true,"id":11825},{"__isSmartRef__":true,"id":11826},{"__isSmartRef__":true,"id":11827},{"__isSmartRef__":true,"id":11828},{"__isSmartRef__":true,"id":11829},{"__isSmartRef__":true,"id":11830},{"__isSmartRef__":true,"id":11831},{"__isSmartRef__":true,"id":11832},{"__isSmartRef__":true,"id":11833},{"__isSmartRef__":true,"id":11834},{"__isSmartRef__":true,"id":11835}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11824":{"name":"strip","type":"propertyDef","startIndex":4396,"stopIndex":4478,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11825":{"name":"toQueryParams","type":"propertyDef","startIndex":4481,"stopIndex":5115,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11826":{"name":"toArray","type":"propertyDef","startIndex":5118,"stopIndex":5172,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11827":{"name":"succ","type":"propertyDef","startIndex":5175,"stopIndex":5308,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11828":{"name":"times","type":"propertyDef","startIndex":5311,"stopIndex":5402,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11829":{"name":"camelize","type":"propertyDef","startIndex":5405,"stopIndex":5782,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11830":{"name":"capitalize","type":"propertyDef","startIndex":5785,"stopIndex":5953,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11831":{"name":"include","type":"propertyDef","startIndex":5956,"stopIndex":6029,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11832":{"name":"startsWith","type":"propertyDef","startIndex":6032,"stopIndex":6109,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11833":{"name":"endsWith","type":"propertyDef","startIndex":6112,"stopIndex":6243,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11834":{"name":"empty","type":"propertyDef","startIndex":6246,"stopIndex":6294,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11835":{"name":"blank","type":"propertyDef","startIndex":6297,"stopIndex":6354,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11823},"className":"String.prototype","_owner":{"__isSmartRef__":true,"id":11821},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11836":{"name":null,"type":"comment","startIndex":6359,"stopIndex":6359,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11837":{"name":"$break","type":"objectDef","startIndex":6360,"stopIndex":6377,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11838":{"name":null,"type":"comment","startIndex":6378,"stopIndex":6378,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11839":{"name":"Enumerable","type":"objectDef","startIndex":6379,"stopIndex":11088,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11840},{"__isSmartRef__":true,"id":11842},{"__isSmartRef__":true,"id":11843},{"__isSmartRef__":true,"id":11844},{"__isSmartRef__":true,"id":11845},{"__isSmartRef__":true,"id":11846},{"__isSmartRef__":true,"id":11847},{"__isSmartRef__":true,"id":11848},{"__isSmartRef__":true,"id":11849},{"__isSmartRef__":true,"id":11850},{"__isSmartRef__":true,"id":11851},{"__isSmartRef__":true,"id":11852},{"__isSmartRef__":true,"id":11853},{"__isSmartRef__":true,"id":11854},{"__isSmartRef__":true,"id":11855},{"__isSmartRef__":true,"id":11856},{"__isSmartRef__":true,"id":11857},{"__isSmartRef__":true,"id":11858},{"__isSmartRef__":true,"id":11859},{"__isSmartRef__":true,"id":11860}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11840":{"name":"each","type":"propertyDef","startIndex":6398,"stopIndex":6664,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11841":{"name":"default category","type":"categoryDef","startIndex":17,"stopIndex":4707,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":11840},{"__isSmartRef__":true,"id":11842},{"__isSmartRef__":true,"id":11843},{"__isSmartRef__":true,"id":11844},{"__isSmartRef__":true,"id":11845},{"__isSmartRef__":true,"id":11846},{"__isSmartRef__":true,"id":11847},{"__isSmartRef__":true,"id":11848},{"__isSmartRef__":true,"id":11849},{"__isSmartRef__":true,"id":11850},{"__isSmartRef__":true,"id":11851},{"__isSmartRef__":true,"id":11852},{"__isSmartRef__":true,"id":11853},{"__isSmartRef__":true,"id":11854},{"__isSmartRef__":true,"id":11855},{"__isSmartRef__":true,"id":11856},{"__isSmartRef__":true,"id":11857},{"__isSmartRef__":true,"id":11858},{"__isSmartRef__":true,"id":11859},{"__isSmartRef__":true,"id":11860}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11842":{"name":"all","type":"propertyDef","startIndex":6667,"stopIndex":6948,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11843":{"name":"any","type":"propertyDef","startIndex":6951,"stopIndex":7051,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11844":{"name":"collect","type":"propertyDef","startIndex":7054,"stopIndex":7330,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11845":{"name":"detect","type":"propertyDef","startIndex":7333,"stopIndex":7507,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11846":{"name":"findAll","type":"propertyDef","startIndex":7510,"stopIndex":7744,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11847":{"name":"grep","type":"propertyDef","startIndex":7747,"stopIndex":8101,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11848":{"name":"include","type":"propertyDef","startIndex":8104,"stopIndex":8392,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11849":{"name":"inject","type":"propertyDef","startIndex":8396,"stopIndex":8600,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11850":{"name":"invoke","type":"propertyDef","startIndex":8603,"stopIndex":8846,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11851":{"name":"max","type":"propertyDef","startIndex":8849,"stopIndex":9151,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11852":{"name":"min","type":"propertyDef","startIndex":9154,"stopIndex":9455,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11853":{"name":"partition","type":"propertyDef","startIndex":9458,"stopIndex":9755,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11854":{"name":"pluck","type":"propertyDef","startIndex":9758,"stopIndex":9958,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11855":{"name":"reject","type":"propertyDef","startIndex":9961,"stopIndex":10203,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11856":{"name":"sortBy","type":"propertyDef","startIndex":10206,"stopIndex":10552,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11857":{"name":"toArray","type":"propertyDef","startIndex":10555,"stopIndex":10613,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11858":{"name":"zip","type":"propertyDef","startIndex":10616,"stopIndex":10920,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11859":{"name":"size","type":"propertyDef","startIndex":10923,"stopIndex":10986,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11860":{"name":"inspect","type":"propertyDef","startIndex":10989,"stopIndex":11085,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11841},"_owner":{"__isSmartRef__":true,"id":11839},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11861":{"name":null,"type":"comment","startIndex":11089,"stopIndex":11089,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11862":{"name":"Enumerable","type":"klassExtensionDef","startIndex":11090,"stopIndex":11276,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11863},{"__isSmartRef__":true,"id":11865},{"__isSmartRef__":true,"id":11866},{"__isSmartRef__":true,"id":11867},{"__isSmartRef__":true,"id":11868}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11864}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11863":{"name":"find","type":"propertyDef","startIndex":11118,"stopIndex":11146,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11864},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11862},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11864":{"name":"default category","type":"categoryDef","startIndex":11116,"stopIndex":11273,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11863},{"__isSmartRef__":true,"id":11865},{"__isSmartRef__":true,"id":11866},{"__isSmartRef__":true,"id":11867},{"__isSmartRef__":true,"id":11868}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11865":{"name":"select","type":"propertyDef","startIndex":11148,"stopIndex":11177,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11864},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11862},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11866":{"name":"filter","type":"propertyDef","startIndex":11179,"stopIndex":11208,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11864},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11862},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11867":{"name":"member","type":"propertyDef","startIndex":11210,"stopIndex":11239,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11864},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11862},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11868":{"name":"entries","type":"propertyDef","startIndex":11241,"stopIndex":11270,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11864},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11862},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11869":{"name":null,"type":"comment","startIndex":11277,"stopIndex":11277,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11870":{"name":"$A","type":"functionDef","startIndex":11278,"stopIndex":11517,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11871":{"name":"from","type":"propertyDef","startIndex":11518,"stopIndex":11534,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Array","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11872":{"name":null,"type":"comment","startIndex":11535,"stopIndex":11535,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11873":{"name":"Array.prototype","type":"klassExtensionDef","startIndex":11536,"stopIndex":11579,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["Enumerable"],"categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11874":{"name":null,"type":"comment","startIndex":11580,"stopIndex":11580,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11875":{"name":"Enumerable","type":"klassExtensionDef","startIndex":11581,"stopIndex":11828,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11876},{"__isSmartRef__":true,"id":11878},{"__isSmartRef__":true,"id":11879}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11877}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11876":{"name":"map","type":"propertyDef","startIndex":11610,"stopIndex":11763,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11877},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11875},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11877":{"name":"default category","type":"categoryDef","startIndex":11607,"stopIndex":11825,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11876},{"__isSmartRef__":true,"id":11878},{"__isSmartRef__":true,"id":11879}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11878":{"name":"every","type":"propertyDef","startIndex":11766,"stopIndex":11793,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11877},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11875},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11879":{"name":"some","type":"propertyDef","startIndex":11796,"stopIndex":11824,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11877},"className":"Enumerable","_owner":{"__isSmartRef__":true,"id":11875},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11880":{"name":null,"type":"comment","startIndex":11829,"stopIndex":11830,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11881":{"name":null,"type":"unknown","startIndex":11831,"stopIndex":11913,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11882":{"name":null,"type":"comment","startIndex":11914,"stopIndex":11914,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11883":{"name":"Array.prototype","type":"klassExtensionDef","startIndex":11915,"stopIndex":15538,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11884},{"__isSmartRef__":true,"id":11886},{"__isSmartRef__":true,"id":11887},{"__isSmartRef__":true,"id":11888},{"__isSmartRef__":true,"id":11889},{"__isSmartRef__":true,"id":11890},{"__isSmartRef__":true,"id":11891},{"__isSmartRef__":true,"id":11892},{"__isSmartRef__":true,"id":11893},{"__isSmartRef__":true,"id":11894},{"__isSmartRef__":true,"id":11895},{"__isSmartRef__":true,"id":11896},{"__isSmartRef__":true,"id":11897},{"__isSmartRef__":true,"id":11898},{"__isSmartRef__":true,"id":11899},{"__isSmartRef__":true,"id":11900},{"__isSmartRef__":true,"id":11901},{"__isSmartRef__":true,"id":11902},{"__isSmartRef__":true,"id":11903},{"__isSmartRef__":true,"id":11904},{"__isSmartRef__":true,"id":11905},{"__isSmartRef__":true,"id":11906},{"__isSmartRef__":true,"id":11907},{"__isSmartRef__":true,"id":11908}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11885}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11884":{"name":"_each","type":"propertyDef","startIndex":11948,"stopIndex":12065,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11885":{"name":"default category","type":"categoryDef","startIndex":11946,"stopIndex":15535,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11884},{"__isSmartRef__":true,"id":11886},{"__isSmartRef__":true,"id":11887},{"__isSmartRef__":true,"id":11888},{"__isSmartRef__":true,"id":11889},{"__isSmartRef__":true,"id":11890},{"__isSmartRef__":true,"id":11891},{"__isSmartRef__":true,"id":11892},{"__isSmartRef__":true,"id":11893},{"__isSmartRef__":true,"id":11894},{"__isSmartRef__":true,"id":11895},{"__isSmartRef__":true,"id":11896},{"__isSmartRef__":true,"id":11897},{"__isSmartRef__":true,"id":11898},{"__isSmartRef__":true,"id":11899},{"__isSmartRef__":true,"id":11900},{"__isSmartRef__":true,"id":11901},{"__isSmartRef__":true,"id":11902},{"__isSmartRef__":true,"id":11903},{"__isSmartRef__":true,"id":11904},{"__isSmartRef__":true,"id":11905},{"__isSmartRef__":true,"id":11906},{"__isSmartRef__":true,"id":11907},{"__isSmartRef__":true,"id":11908}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11886":{"name":"clear","type":"propertyDef","startIndex":12068,"stopIndex":12131,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11887":{"name":"first","type":"propertyDef","startIndex":12134,"stopIndex":12179,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11888":{"name":"last","type":"propertyDef","startIndex":12182,"stopIndex":12240,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11889":{"name":"compact","type":"propertyDef","startIndex":12243,"stopIndex":12347,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11890":{"name":"flatten","type":"propertyDef","startIndex":12350,"stopIndex":12523,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11891":{"name":"without","type":"propertyDef","startIndex":12526,"stopIndex":12671,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11892":{"name":"withoutAll","type":"propertyDef","startIndex":12673,"stopIndex":12755,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11893":{"name":"reverse","type":"propertyDef","startIndex":12758,"stopIndex":12857,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11894":{"name":"uniq","type":"propertyDef","startIndex":12860,"stopIndex":13086,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11895":{"name":"intersect","type":"propertyDef","startIndex":13089,"stopIndex":13249,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11896":{"name":"clone","type":"propertyDef","startIndex":13252,"stopIndex":13305,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11897":{"name":"size","type":"propertyDef","startIndex":13308,"stopIndex":13356,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11898":{"name":"inspect","type":"propertyDef","startIndex":13359,"stopIndex":13446,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11899":{"name":"pushAt","type":"propertyDef","startIndex":13449,"stopIndex":13519,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11900":{"name":"removeAt","type":"propertyDef","startIndex":13521,"stopIndex":13581,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11901":{"name":"pushAll","type":"propertyDef","startIndex":13584,"stopIndex":13694,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11902":{"name":"pushAllAt","type":"propertyDef","startIndex":13696,"stopIndex":13793,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11903":{"name":"pushIfNotIncluded","type":"propertyDef","startIndex":13797,"stopIndex":13881,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11904":{"name":"replaceAt","type":"propertyDef","startIndex":13883,"stopIndex":13960,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11905":{"name":"nestedDelay","type":"propertyDef","startIndex":13964,"stopIndex":14421,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11906":{"name":"doAndContinue","type":"propertyDef","startIndex":14423,"stopIndex":14681,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11907":{"name":"forEachShowingProgress","type":"propertyDef","startIndex":14683,"stopIndex":15404,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11908":{"name":"sum","type":"propertyDef","startIndex":15406,"stopIndex":15532,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11885},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":11883},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11909":{"name":"Array","type":"klassExtensionDef","startIndex":15539,"stopIndex":15723,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11910}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11911}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11910":{"name":"range","type":"propertyDef","startIndex":15562,"stopIndex":15718,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11911},"className":"Array","_owner":{"__isSmartRef__":true,"id":11909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11911":{"name":"default category","type":"categoryDef","startIndex":15560,"stopIndex":15720,"fileName":"lively/miniprototype.js","_subElements":[{"__isSmartRef__":true,"id":11910}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11912":{"name":null,"type":"comment","startIndex":15724,"stopIndex":15781,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11913":{"name":null,"type":"unknown","startIndex":15782,"stopIndex":15831,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11914":{"name":"_each","type":"propertyDef","startIndex":15832,"stopIndex":15880,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Array","_isStatic":false,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11915":{"name":null,"type":"comment","startIndex":15881,"stopIndex":15881,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11916":{"name":null,"type":"unknown","startIndex":15882,"stopIndex":16108,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11917":{"name":null,"type":"comment","startIndex":16109,"stopIndex":16109,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11918":{"name":null,"type":"unknown","startIndex":16110,"stopIndex":16348,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11919":{"name":null,"type":"comment","startIndex":16349,"stopIndex":16349,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11920":{"name":"toArray","type":"propertyDef","startIndex":16350,"stopIndex":16398,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Array","_isStatic":false,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11921":{"name":null,"type":"comment","startIndex":16399,"stopIndex":16399,"fileName":"lively/miniprototype.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11922":{"target":{"__isSmartRef__":true,"id":11923},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/morphic.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11923":{"name":"lively/morphic.js","type":"completeFileDef","startIndex":0,"stopIndex":303,"fileName":"lively/morphic.js","_subElements":[{"__isSmartRef__":true,"id":11924},{"__isSmartRef__":true,"id":11925},{"__isSmartRef__":true,"id":11926}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11924":{"name":null,"type":"unknown","startIndex":0,"stopIndex":135,"fileName":"lively/morphic.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11925":{"name":null,"type":"unknown","startIndex":136,"stopIndex":187,"fileName":"lively/morphic.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11926":{"name":"lively.morphic","type":"moduleDef","startIndex":188,"stopIndex":303,"fileName":"lively/morphic.js","_subElements":[{"__isSmartRef__":true,"id":11927},{"__isSmartRef__":true,"id":11928}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11927":{"name":null,"type":"comment","startIndex":247,"stopIndex":247,"fileName":"lively/morphic.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11928":{"name":null,"type":"unknown","startIndex":248,"stopIndex":284,"fileName":"lively/morphic.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11929":{"target":{"__isSmartRef__":true,"id":11930},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Network.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"11930":{"name":"lively.Network","type":"moduleDef","startIndex":1384,"stopIndex":59577,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11931},{"__isSmartRef__":true,"id":11932},{"__isSmartRef__":true,"id":11963},{"__isSmartRef__":true,"id":11964},{"__isSmartRef__":true,"id":11968},{"__isSmartRef__":true,"id":11971},{"__isSmartRef__":true,"id":11972},{"__isSmartRef__":true,"id":11975},{"__isSmartRef__":true,"id":11976},{"__isSmartRef__":true,"id":11983},{"__isSmartRef__":true,"id":11984},{"__isSmartRef__":true,"id":11998},{"__isSmartRef__":true,"id":11999},{"__isSmartRef__":true,"id":12036},{"__isSmartRef__":true,"id":12037},{"__isSmartRef__":true,"id":12040},{"__isSmartRef__":true,"id":12041},{"__isSmartRef__":true,"id":12042},{"__isSmartRef__":true,"id":12043},{"__isSmartRef__":true,"id":12057},{"__isSmartRef__":true,"id":12058},{"__isSmartRef__":true,"id":12077},{"__isSmartRef__":true,"id":12078},{"__isSmartRef__":true,"id":12085},{"__isSmartRef__":true,"id":12088},{"__isSmartRef__":true,"id":12089},{"__isSmartRef__":true,"id":12152},{"__isSmartRef__":true,"id":12153},{"__isSmartRef__":true,"id":12156},{"__isSmartRef__":true,"id":12157},{"__isSmartRef__":true,"id":12158}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11931":{"name":null,"type":"comment","startIndex":1504,"stopIndex":1508,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11932":{"name":"URL","type":"klassDef","startIndex":1509,"stopIndex":10172,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11933},{"__isSmartRef__":true,"id":11935},{"__isSmartRef__":true,"id":11936},{"__isSmartRef__":true,"id":11937},{"__isSmartRef__":true,"id":11938},{"__isSmartRef__":true,"id":11939},{"__isSmartRef__":true,"id":11940},{"__isSmartRef__":true,"id":11941},{"__isSmartRef__":true,"id":11942},{"__isSmartRef__":true,"id":11943},{"__isSmartRef__":true,"id":11944},{"__isSmartRef__":true,"id":11945},{"__isSmartRef__":true,"id":11946},{"__isSmartRef__":true,"id":11947},{"__isSmartRef__":true,"id":11948},{"__isSmartRef__":true,"id":11949},{"__isSmartRef__":true,"id":11950},{"__isSmartRef__":true,"id":11951},{"__isSmartRef__":true,"id":11952},{"__isSmartRef__":true,"id":11953},{"__isSmartRef__":true,"id":11954},{"__isSmartRef__":true,"id":11955},{"__isSmartRef__":true,"id":11956},{"__isSmartRef__":true,"id":11957},{"__isSmartRef__":true,"id":11958},{"__isSmartRef__":true,"id":11959},{"__isSmartRef__":true,"id":11960},{"__isSmartRef__":true,"id":11961},{"__isSmartRef__":true,"id":11962}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11934}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11933":{"name":"splitter","type":"propertyDef","startIndex":1534,"stopIndex":1619,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11934":{"name":"default category","type":"categoryDef","startIndex":1532,"stopIndex":10169,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11933},{"__isSmartRef__":true,"id":11935},{"__isSmartRef__":true,"id":11936},{"__isSmartRef__":true,"id":11937},{"__isSmartRef__":true,"id":11938},{"__isSmartRef__":true,"id":11939},{"__isSmartRef__":true,"id":11940},{"__isSmartRef__":true,"id":11941},{"__isSmartRef__":true,"id":11942},{"__isSmartRef__":true,"id":11943},{"__isSmartRef__":true,"id":11944},{"__isSmartRef__":true,"id":11945},{"__isSmartRef__":true,"id":11946},{"__isSmartRef__":true,"id":11947},{"__isSmartRef__":true,"id":11948},{"__isSmartRef__":true,"id":11949},{"__isSmartRef__":true,"id":11950},{"__isSmartRef__":true,"id":11951},{"__isSmartRef__":true,"id":11952},{"__isSmartRef__":true,"id":11953},{"__isSmartRef__":true,"id":11954},{"__isSmartRef__":true,"id":11955},{"__isSmartRef__":true,"id":11956},{"__isSmartRef__":true,"id":11957},{"__isSmartRef__":true,"id":11958},{"__isSmartRef__":true,"id":11959},{"__isSmartRef__":true,"id":11960},{"__isSmartRef__":true,"id":11961},{"__isSmartRef__":true,"id":11962}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11935":{"name":"pathSplitter","type":"propertyDef","startIndex":1621,"stopIndex":1680,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11936":{"name":"initialize","type":"propertyDef","startIndex":1687,"stopIndex":3201,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11937":{"name":"inspect","type":"propertyDef","startIndex":3208,"stopIndex":3276,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11938":{"name":"toString","type":"propertyDef","startIndex":3283,"stopIndex":3423,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11939":{"name":"fullPath","type":"propertyDef","startIndex":3426,"stopIndex":3530,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11940":{"name":"isLeaf","type":"propertyDef","startIndex":3537,"stopIndex":3614,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11941":{"name":"dirname","type":"propertyDef","startIndex":3621,"stopIndex":3837,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11942":{"name":"filename","type":"propertyDef","startIndex":3840,"stopIndex":4035,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11943":{"name":"normalizedHostname","type":"propertyDef","startIndex":4038,"stopIndex":4138,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11944":{"name":"getDirectory","type":"propertyDef","startIndex":4145,"stopIndex":4227,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11945":{"name":"asDirectory","type":"propertyDef","startIndex":4229,"stopIndex":4377,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11946":{"name":"withPath","type":"propertyDef","startIndex":4417,"stopIndex":4704,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11947":{"name":"withRelativePath","type":"propertyDef","startIndex":4707,"stopIndex":5076,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11948":{"name":"withFilename","type":"propertyDef","startIndex":5083,"stopIndex":5448,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11949":{"name":"toQueryString","type":"propertyDef","startIndex":5451,"stopIndex":5716,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11950":{"name":"withQuery","type":"propertyDef","startIndex":5719,"stopIndex":5947,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11951":{"name":"withoutQuery","type":"propertyDef","startIndex":5954,"stopIndex":6108,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11952":{"name":"getQuery","type":"propertyDef","startIndex":6111,"stopIndex":6262,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11953":{"name":"eq","type":"propertyDef","startIndex":6269,"stopIndex":6605,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11954":{"name":"isIn","type":"propertyDef","startIndex":6607,"stopIndex":6775,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11955":{"name":"relativePathFrom","type":"propertyDef","startIndex":6779,"stopIndex":7896,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11956":{"name":"svnWorkspacePath","type":"propertyDef","startIndex":7899,"stopIndex":8345,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11957":{"name":"svnVersioned","type":"propertyDef","startIndex":8348,"stopIndex":8536,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11958":{"name":"notSvnVersioned","type":"propertyDef","startIndex":8543,"stopIndex":8876,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11959":{"name":"toLiteral","type":"propertyDef","startIndex":8879,"stopIndex":8975,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11960":{"name":"toExpression","type":"propertyDef","startIndex":8982,"stopIndex":9323,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11961":{"name":"withRelativePartsResolved","type":"propertyDef","startIndex":9326,"stopIndex":9812,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11962":{"name":"getAllParentDirectories","type":"propertyDef","startIndex":9814,"stopIndex":10165,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11934},"className":"URL","_owner":{"__isSmartRef__":true,"id":11932},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11963":{"name":null,"type":"comment","startIndex":10173,"stopIndex":10201,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11964":{"name":"URL","type":"klassExtensionDef","startIndex":10202,"stopIndex":10582,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11965},{"__isSmartRef__":true,"id":11967}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11966}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11965":{"name":"source","type":"propertyDef","startIndex":10223,"stopIndex":10256,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11966},"className":"URL","_owner":{"__isSmartRef__":true,"id":11964},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11966":{"name":"default category","type":"categoryDef","startIndex":10221,"stopIndex":10579,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11965},{"__isSmartRef__":true,"id":11967}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11967":{"name":"codeBase","type":"propertyDef","startIndex":10258,"stopIndex":10577,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11966},"className":"URL","_owner":{"__isSmartRef__":true,"id":11964},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11968":{"name":"URL","type":"klassExtensionDef","startIndex":10583,"stopIndex":11012,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11969}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11970}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11969":{"name":"proxy","type":"propertyDef","startIndex":10604,"stopIndex":11003,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11970},"className":"URL","_owner":{"__isSmartRef__":true,"id":11968},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11970":{"name":"default category","type":"categoryDef","startIndex":10602,"stopIndex":11009,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11969}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11971":{"name":null,"type":"comment","startIndex":11013,"stopIndex":11013,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11972":{"name":"URL","type":"klassExtensionDef","startIndex":11014,"stopIndex":11395,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11973}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11974}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11973":{"name":"common","type":"propertyDef","startIndex":11035,"stopIndex":11390,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11974},"className":"URL","_owner":{"__isSmartRef__":true,"id":11972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11974":{"name":"default category","type":"categoryDef","startIndex":11033,"stopIndex":11392,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11973}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11975":{"name":null,"type":"comment","startIndex":11396,"stopIndex":11396,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11976":{"name":"URL","type":"klassExtensionDef","startIndex":11397,"stopIndex":12786,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11977},{"__isSmartRef__":true,"id":11979},{"__isSmartRef__":true,"id":11980},{"__isSmartRef__":true,"id":11981},{"__isSmartRef__":true,"id":11982}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":11978}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11977":{"name":"create","type":"propertyDef","startIndex":11423,"stopIndex":11478,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11978},"className":"URL","_owner":{"__isSmartRef__":true,"id":11976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11978":{"name":"default category","type":"categoryDef","startIndex":11416,"stopIndex":12783,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11977},{"__isSmartRef__":true,"id":11979},{"__isSmartRef__":true,"id":11980},{"__isSmartRef__":true,"id":11981},{"__isSmartRef__":true,"id":11982}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11979":{"name":"ensureAbsoluteURL","type":"propertyDef","startIndex":11481,"stopIndex":11684,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11978},"className":"URL","_owner":{"__isSmartRef__":true,"id":11976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11980":{"name":"ensureAbsoluteCodeBaseURL","type":"propertyDef","startIndex":11686,"stopIndex":11874,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11978},"className":"URL","_owner":{"__isSmartRef__":true,"id":11976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11981":{"name":"fromLiteral","type":"propertyDef","startIndex":11878,"stopIndex":11940,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11978},"className":"URL","_owner":{"__isSmartRef__":true,"id":11976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11982":{"name":"makeProxied","type":"propertyDef","startIndex":11943,"stopIndex":12780,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":11978},"className":"URL","_owner":{"__isSmartRef__":true,"id":11976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11983":{"name":null,"type":"comment","startIndex":12787,"stopIndex":12788,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11984":{"name":"NetRequestStatus","type":"klassDef","startIndex":12789,"stopIndex":13914,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11985},{"__isSmartRef__":true,"id":11987},{"__isSmartRef__":true,"id":11989},{"__isSmartRef__":true,"id":11991},{"__isSmartRef__":true,"id":11992},{"__isSmartRef__":true,"id":11994},{"__isSmartRef__":true,"id":11995},{"__isSmartRef__":true,"id":11996},{"__isSmartRef__":true,"id":11997}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":11986},{"__isSmartRef__":true,"id":11988},{"__isSmartRef__":true,"id":11990},{"__isSmartRef__":true,"id":11993}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11985":{"name":"documentation","type":"propertyDef","startIndex":12844,"stopIndex":12947,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11986},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11986":{"name":"documentation","type":"categoryDef","startIndex":12825,"stopIndex":12950,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11985}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11987":{"name":"initialize","type":"propertyDef","startIndex":12972,"stopIndex":13149,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11988},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11988":{"name":"initialization","type":"categoryDef","startIndex":12952,"stopIndex":13152,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11987}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11989":{"name":"isDone","type":"propertyDef","startIndex":13167,"stopIndex":13315,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11990},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11990":{"name":"testing","type":"categoryDef","startIndex":13154,"stopIndex":13438,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11989},{"__isSmartRef__":true,"id":11991}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11991":{"name":"isSuccess","type":"propertyDef","startIndex":13318,"stopIndex":13435,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11990},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11992":{"name":"setException","type":"propertyDef","startIndex":13455,"stopIndex":13507,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11993},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11993":{"name":"accessing","type":"categoryDef","startIndex":13440,"stopIndex":13911,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":11992},{"__isSmartRef__":true,"id":11994},{"__isSmartRef__":true,"id":11995},{"__isSmartRef__":true,"id":11996},{"__isSmartRef__":true,"id":11997}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11994":{"name":"toString","type":"propertyDef","startIndex":13510,"stopIndex":13670,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11993},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11995":{"name":"requestString","type":"propertyDef","startIndex":13673,"stopIndex":13762,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11993},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11996":{"name":"code","type":"propertyDef","startIndex":13765,"stopIndex":13818,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11993},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11997":{"name":"getResponseHeader","type":"propertyDef","startIndex":13821,"stopIndex":13908,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":11993},"className":"NetRequestStatus","_owner":{"__isSmartRef__":true,"id":11984},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11998":{"name":null,"type":"comment","startIndex":13915,"stopIndex":13916,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"11999":{"name":"NetRequest","type":"klassDef","startIndex":13917,"stopIndex":22634,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12000},{"__isSmartRef__":true,"id":12002},{"__isSmartRef__":true,"id":12003},{"__isSmartRef__":true,"id":12004},{"__isSmartRef__":true,"id":12005},{"__isSmartRef__":true,"id":12006},{"__isSmartRef__":true,"id":12007},{"__isSmartRef__":true,"id":12008},{"__isSmartRef__":true,"id":12009},{"__isSmartRef__":true,"id":12010},{"__isSmartRef__":true,"id":12011},{"__isSmartRef__":true,"id":12012},{"__isSmartRef__":true,"id":12013},{"__isSmartRef__":true,"id":12014},{"__isSmartRef__":true,"id":12015},{"__isSmartRef__":true,"id":12016},{"__isSmartRef__":true,"id":12017},{"__isSmartRef__":true,"id":12018},{"__isSmartRef__":true,"id":12019},{"__isSmartRef__":true,"id":12020},{"__isSmartRef__":true,"id":12021},{"__isSmartRef__":true,"id":12022},{"__isSmartRef__":true,"id":12023},{"__isSmartRef__":true,"id":12024},{"__isSmartRef__":true,"id":12025},{"__isSmartRef__":true,"id":12026},{"__isSmartRef__":true,"id":12027},{"__isSmartRef__":true,"id":12028},{"__isSmartRef__":true,"id":12029},{"__isSmartRef__":true,"id":12030},{"__isSmartRef__":true,"id":12031},{"__isSmartRef__":true,"id":12032},{"__isSmartRef__":true,"id":12033},{"__isSmartRef__":true,"id":12034},{"__isSmartRef__":true,"id":12035}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"View","categories":[{"__isSmartRef__":true,"id":12001}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12000":{"name":"documentation","type":"propertyDef","startIndex":13947,"stopIndex":14033,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12001":{"name":"default category","type":"categoryDef","startIndex":13945,"stopIndex":22631,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12000},{"__isSmartRef__":true,"id":12002},{"__isSmartRef__":true,"id":12003},{"__isSmartRef__":true,"id":12004},{"__isSmartRef__":true,"id":12005},{"__isSmartRef__":true,"id":12006},{"__isSmartRef__":true,"id":12007},{"__isSmartRef__":true,"id":12008},{"__isSmartRef__":true,"id":12009},{"__isSmartRef__":true,"id":12010},{"__isSmartRef__":true,"id":12011},{"__isSmartRef__":true,"id":12012},{"__isSmartRef__":true,"id":12013},{"__isSmartRef__":true,"id":12014},{"__isSmartRef__":true,"id":12015},{"__isSmartRef__":true,"id":12016},{"__isSmartRef__":true,"id":12017},{"__isSmartRef__":true,"id":12018},{"__isSmartRef__":true,"id":12019},{"__isSmartRef__":true,"id":12020},{"__isSmartRef__":true,"id":12021},{"__isSmartRef__":true,"id":12022},{"__isSmartRef__":true,"id":12023},{"__isSmartRef__":true,"id":12024},{"__isSmartRef__":true,"id":12025},{"__isSmartRef__":true,"id":12026},{"__isSmartRef__":true,"id":12027},{"__isSmartRef__":true,"id":12028},{"__isSmartRef__":true,"id":12029},{"__isSmartRef__":true,"id":12030},{"__isSmartRef__":true,"id":12031},{"__isSmartRef__":true,"id":12032},{"__isSmartRef__":true,"id":12033},{"__isSmartRef__":true,"id":12034},{"__isSmartRef__":true,"id":12035}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12002":{"name":"Unsent","type":"propertyDef","startIndex":14036,"stopIndex":14108,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12003":{"name":"Opened","type":"propertyDef","startIndex":14110,"stopIndex":14123,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12004":{"name":"HeadersReceived","type":"propertyDef","startIndex":14125,"stopIndex":14147,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12005":{"name":"Loading","type":"propertyDef","startIndex":14149,"stopIndex":14163,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12006":{"name":"Done","type":"propertyDef","startIndex":14165,"stopIndex":14176,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12007":{"name":"formals","type":"propertyDef","startIndex":14179,"stopIndex":14775,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12008":{"name":"initialize","type":"propertyDef","startIndex":14778,"stopIndex":15113,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12009":{"name":"enableProgress","type":"propertyDef","startIndex":15116,"stopIndex":15535,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12010":{"name":"requestNetworkAccess","type":"propertyDef","startIndex":15538,"stopIndex":16004,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12011":{"name":"beSync","type":"propertyDef","startIndex":16007,"stopIndex":16086,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12012":{"name":"beBinary","type":"propertyDef","startIndex":16089,"stopIndex":16172,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12013":{"name":"onReadyStateChange","type":"propertyDef","startIndex":16175,"stopIndex":17697,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12014":{"name":"onProgress","type":"propertyDef","startIndex":17700,"stopIndex":17765,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12015":{"name":"setRequestHeaders","type":"propertyDef","startIndex":17772,"stopIndex":17946,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12016":{"name":"setContentType","type":"propertyDef","startIndex":17949,"stopIndex":18092,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12017":{"name":"getReadyState","type":"propertyDef","startIndex":18095,"stopIndex":18161,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12018":{"name":"getResponseText","type":"propertyDef","startIndex":18164,"stopIndex":18240,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12019":{"name":"getResponseXML","type":"propertyDef","startIndex":18243,"stopIndex":18317,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12020":{"name":"getResponseHeaders","type":"propertyDef","startIndex":18320,"stopIndex":18913,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12021":{"name":"getStatus","type":"propertyDef","startIndex":18916,"stopIndex":19012,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12022":{"name":"request","type":"propertyDef","startIndex":19015,"stopIndex":19893,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12023":{"name":"get","type":"propertyDef","startIndex":19896,"stopIndex":19977,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12024":{"name":"put","type":"propertyDef","startIndex":19980,"stopIndex":20073,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12025":{"name":"post","type":"propertyDef","startIndex":20076,"stopIndex":20171,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12026":{"name":"propfind","type":"propertyDef","startIndex":20174,"stopIndex":20504,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12027":{"name":"report","type":"propertyDef","startIndex":20507,"stopIndex":20606,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12028":{"name":"mkcol","type":"propertyDef","startIndex":20609,"stopIndex":20706,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12029":{"name":"del","type":"propertyDef","startIndex":20709,"stopIndex":20787,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12030":{"name":"copy","type":"propertyDef","startIndex":20790,"stopIndex":21042,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12031":{"name":"move","type":"propertyDef","startIndex":21044,"stopIndex":21296,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12032":{"name":"lock","type":"propertyDef","startIndex":21300,"stopIndex":21782,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12033":{"name":"unlock","type":"propertyDef","startIndex":21789,"stopIndex":22452,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12034":{"name":"head","type":"propertyDef","startIndex":22454,"stopIndex":22537,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12035":{"name":"toString","type":"propertyDef","startIndex":22540,"stopIndex":22628,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12001},"className":"NetRequest","_owner":{"__isSmartRef__":true,"id":11999},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12036":{"name":null,"type":"comment","startIndex":22635,"stopIndex":22732,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12037":{"name":"NetRequestReporterTrait","type":"objectDef","startIndex":22733,"stopIndex":24465,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12038}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12038":{"name":"setRequestStatus","type":"propertyDef","startIndex":22761,"stopIndex":24462,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12039},"_owner":{"__isSmartRef__":true,"id":12037},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12039":{"name":"default category","type":"categoryDef","startIndex":26,"stopIndex":1730,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12038}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12040":{"name":null,"type":"comment","startIndex":24466,"stopIndex":24525,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12041":{"name":"NetRequestReporter","type":"klassDef","startIndex":24526,"stopIndex":24589,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["NetRequestReporterTrait"],"superclassName":"Object","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12042":{"name":null,"type":"comment","startIndex":24590,"stopIndex":24592,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12043":{"name":"Resource","type":"klassDef","startIndex":24593,"stopIndex":27677,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12044},{"__isSmartRef__":true,"id":12046},{"__isSmartRef__":true,"id":12047},{"__isSmartRef__":true,"id":12048},{"__isSmartRef__":true,"id":12049},{"__isSmartRef__":true,"id":12050},{"__isSmartRef__":true,"id":12051},{"__isSmartRef__":true,"id":12052},{"__isSmartRef__":true,"id":12053},{"__isSmartRef__":true,"id":12054},{"__isSmartRef__":true,"id":12055},{"__isSmartRef__":true,"id":12056}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"View","categories":[{"__isSmartRef__":true,"id":12045}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12044":{"name":"documentation","type":"propertyDef","startIndex":24650,"stopIndex":24741,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12045":{"name":"default category","type":"categoryDef","startIndex":24648,"stopIndex":27674,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12044},{"__isSmartRef__":true,"id":12046},{"__isSmartRef__":true,"id":12047},{"__isSmartRef__":true,"id":12048},{"__isSmartRef__":true,"id":12049},{"__isSmartRef__":true,"id":12050},{"__isSmartRef__":true,"id":12051},{"__isSmartRef__":true,"id":12052},{"__isSmartRef__":true,"id":12053},{"__isSmartRef__":true,"id":12054},{"__isSmartRef__":true,"id":12055},{"__isSmartRef__":true,"id":12056}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12046":{"name":"formals","type":"propertyDef","startIndex":24799,"stopIndex":24993,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12047":{"name":"createNetRequest","type":"propertyDef","startIndex":24996,"stopIndex":25338,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12048":{"name":"initialize","type":"propertyDef","startIndex":25345,"stopIndex":25470,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12049":{"name":"deserialize","type":"propertyDef","startIndex":25473,"stopIndex":25505,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12050":{"name":"toString","type":"propertyDef","startIndex":25556,"stopIndex":25641,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12051":{"name":"removeNetRequestReporterTrait","type":"propertyDef","startIndex":25644,"stopIndex":25952,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12052":{"name":"updateView","type":"propertyDef","startIndex":25959,"stopIndex":26210,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12053":{"name":"onURLUpdate","type":"propertyDef","startIndex":26213,"stopIndex":26283,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12054":{"name":"fetch","type":"propertyDef","startIndex":26286,"stopIndex":26709,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12055":{"name":"fetchProperties","type":"propertyDef","startIndex":26712,"stopIndex":27056,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12056":{"name":"store","type":"propertyDef","startIndex":27059,"stopIndex":27671,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12045},"className":"Resource","_owner":{"__isSmartRef__":true,"id":12043},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12057":{"name":null,"type":"comment","startIndex":27678,"stopIndex":27678,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12058":{"name":"SVNResource","type":"klassDef","startIndex":27679,"stopIndex":35585,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12059},{"__isSmartRef__":true,"id":12061},{"__isSmartRef__":true,"id":12062},{"__isSmartRef__":true,"id":12063},{"__isSmartRef__":true,"id":12064},{"__isSmartRef__":true,"id":12065},{"__isSmartRef__":true,"id":12066},{"__isSmartRef__":true,"id":12067},{"__isSmartRef__":true,"id":12068},{"__isSmartRef__":true,"id":12069},{"__isSmartRef__":true,"id":12070},{"__isSmartRef__":true,"id":12071},{"__isSmartRef__":true,"id":12072},{"__isSmartRef__":true,"id":12073},{"__isSmartRef__":true,"id":12074},{"__isSmartRef__":true,"id":12075},{"__isSmartRef__":true,"id":12076}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Resource","categories":[{"__isSmartRef__":true,"id":12060}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12059":{"name":"formals","type":"propertyDef","startIndex":27715,"stopIndex":27791,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12060":{"name":"default category","type":"categoryDef","startIndex":27712,"stopIndex":35582,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12059},{"__isSmartRef__":true,"id":12061},{"__isSmartRef__":true,"id":12062},{"__isSmartRef__":true,"id":12063},{"__isSmartRef__":true,"id":12064},{"__isSmartRef__":true,"id":12065},{"__isSmartRef__":true,"id":12066},{"__isSmartRef__":true,"id":12067},{"__isSmartRef__":true,"id":12068},{"__isSmartRef__":true,"id":12069},{"__isSmartRef__":true,"id":12070},{"__isSmartRef__":true,"id":12071},{"__isSmartRef__":true,"id":12072},{"__isSmartRef__":true,"id":12073},{"__isSmartRef__":true,"id":12074},{"__isSmartRef__":true,"id":12075},{"__isSmartRef__":true,"id":12076}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12061":{"name":"createNetRequest","type":"propertyDef","startIndex":27794,"stopIndex":28136,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12062":{"name":"initialize","type":"propertyDef","startIndex":28143,"stopIndex":28289,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12063":{"name":"getLocalUrl","type":"propertyDef","startIndex":28292,"stopIndex":28417,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12064":{"name":"fetchHeadRevision","type":"propertyDef","startIndex":28420,"stopIndex":28769,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12065":{"name":"fetch","type":"propertyDef","startIndex":28772,"stopIndex":29076,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12066":{"name":"store","type":"propertyDef","startIndex":29083,"stopIndex":29975,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12067":{"name":"del","type":"propertyDef","startIndex":29982,"stopIndex":30248,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12068":{"name":"fetchProperties","type":"propertyDef","startIndex":30251,"stopIndex":30565,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12069":{"name":"fetchMetadata","type":"propertyDef","startIndex":30568,"stopIndex":31435,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12070":{"name":"pvtSetHeadRevFromDoc","type":"propertyDef","startIndex":31438,"stopIndex":31812,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12071":{"name":"pvtScanLogReportForVersionInfos","type":"propertyDef","startIndex":31815,"stopIndex":34286,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12072":{"name":"pvtScanLogReportForVersionInfosTrace","type":"propertyDef","startIndex":34293,"stopIndex":34465,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12073":{"name":"pvtRequestMetadataXML","type":"propertyDef","startIndex":34468,"stopIndex":34897,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12074":{"name":"pvtRequestLocationXML","type":"propertyDef","startIndex":34899,"stopIndex":35251,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12075":{"name":"withBaselineUriDo","type":"propertyDef","startIndex":35255,"stopIndex":35447,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12076":{"name":"createVersionURLString","type":"propertyDef","startIndex":35454,"stopIndex":35579,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12060},"className":"SVNResource","_owner":{"__isSmartRef__":true,"id":12058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12077":{"name":null,"type":"comment","startIndex":35586,"stopIndex":35586,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12078":{"name":"SVNVersionInfo","type":"klassDef","startIndex":35587,"stopIndex":37766,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12079},{"__isSmartRef__":true,"id":12081},{"__isSmartRef__":true,"id":12082},{"__isSmartRef__":true,"id":12083},{"__isSmartRef__":true,"id":12084}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12080}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12079":{"name":"documentation","type":"propertyDef","startIndex":35624,"stopIndex":35705,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12080},"className":"SVNVersionInfo","_owner":{"__isSmartRef__":true,"id":12078},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12080":{"name":"default category","type":"categoryDef","startIndex":35621,"stopIndex":37763,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12079},{"__isSmartRef__":true,"id":12081},{"__isSmartRef__":true,"id":12082},{"__isSmartRef__":true,"id":12083},{"__isSmartRef__":true,"id":12084}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12081":{"name":"initialize","type":"propertyDef","startIndex":35708,"stopIndex":36351,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12080},"className":"SVNVersionInfo","_owner":{"__isSmartRef__":true,"id":12078},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12082":{"name":"parseUTCDateString","type":"propertyDef","startIndex":36354,"stopIndex":36719,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12080},"className":"SVNVersionInfo","_owner":{"__isSmartRef__":true,"id":12078},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12083":{"name":"toString","type":"propertyDef","startIndex":36722,"stopIndex":37477,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12080},"className":"SVNVersionInfo","_owner":{"__isSmartRef__":true,"id":12078},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12084":{"name":"toExpression","type":"propertyDef","startIndex":37484,"stopIndex":37756,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12080},"className":"SVNVersionInfo","_owner":{"__isSmartRef__":true,"id":12078},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12085":{"name":"SVNVersionInfo","type":"klassExtensionDef","startIndex":37767,"stopIndex":38984,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12086}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12087}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12086":{"name":"fromPropfindNode","type":"propertyDef","startIndex":37799,"stopIndex":38979,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12087},"className":"SVNVersionInfo","_owner":{"__isSmartRef__":true,"id":12085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12087":{"name":"default category","type":"categoryDef","startIndex":37797,"stopIndex":38981,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12086}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12088":{"name":null,"type":"comment","startIndex":38985,"stopIndex":38985,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12089":{"name":"WebResource","type":"klassDef","startIndex":38986,"stopIndex":59407,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12090},{"__isSmartRef__":true,"id":12092},{"__isSmartRef__":true,"id":12094},{"__isSmartRef__":true,"id":12095},{"__isSmartRef__":true,"id":12096},{"__isSmartRef__":true,"id":12097},{"__isSmartRef__":true,"id":12098},{"__isSmartRef__":true,"id":12100},{"__isSmartRef__":true,"id":12102},{"__isSmartRef__":true,"id":12103},{"__isSmartRef__":true,"id":12104},{"__isSmartRef__":true,"id":12105},{"__isSmartRef__":true,"id":12107},{"__isSmartRef__":true,"id":12108},{"__isSmartRef__":true,"id":12109},{"__isSmartRef__":true,"id":12110},{"__isSmartRef__":true,"id":12111},{"__isSmartRef__":true,"id":12112},{"__isSmartRef__":true,"id":12113},{"__isSmartRef__":true,"id":12114},{"__isSmartRef__":true,"id":12116},{"__isSmartRef__":true,"id":12117},{"__isSmartRef__":true,"id":12119},{"__isSmartRef__":true,"id":12121},{"__isSmartRef__":true,"id":12122},{"__isSmartRef__":true,"id":12124},{"__isSmartRef__":true,"id":12125},{"__isSmartRef__":true,"id":12126},{"__isSmartRef__":true,"id":12128},{"__isSmartRef__":true,"id":12129},{"__isSmartRef__":true,"id":12130},{"__isSmartRef__":true,"id":12131},{"__isSmartRef__":true,"id":12132},{"__isSmartRef__":true,"id":12133},{"__isSmartRef__":true,"id":12134},{"__isSmartRef__":true,"id":12135},{"__isSmartRef__":true,"id":12136},{"__isSmartRef__":true,"id":12137},{"__isSmartRef__":true,"id":12138},{"__isSmartRef__":true,"id":12139},{"__isSmartRef__":true,"id":12140},{"__isSmartRef__":true,"id":12141},{"__isSmartRef__":true,"id":12142},{"__isSmartRef__":true,"id":12143},{"__isSmartRef__":true,"id":12144},{"__isSmartRef__":true,"id":12145},{"__isSmartRef__":true,"id":12147},{"__isSmartRef__":true,"id":12149},{"__isSmartRef__":true,"id":12150}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12091},{"__isSmartRef__":true,"id":12093},{"__isSmartRef__":true,"id":12099},{"__isSmartRef__":true,"id":12101},{"__isSmartRef__":true,"id":12106},{"__isSmartRef__":true,"id":12115},{"__isSmartRef__":true,"id":12118},{"__isSmartRef__":true,"id":12120},{"__isSmartRef__":true,"id":12123},{"__isSmartRef__":true,"id":12127},{"__isSmartRef__":true,"id":12146},{"__isSmartRef__":true,"id":12148},{"__isSmartRef__":true,"id":12151}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12090":{"name":"connections","type":"propertyDef","startIndex":39036,"stopIndex":39195,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12091},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12091":{"name":"documentation","type":"categoryDef","startIndex":39017,"stopIndex":39198,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12090}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12092":{"name":"initialize","type":"propertyDef","startIndex":39218,"stopIndex":39334,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12093},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12093":{"name":"initializing","type":"categoryDef","startIndex":39200,"stopIndex":46175,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12092},{"__isSmartRef__":true,"id":12094},{"__isSmartRef__":true,"id":12095},{"__isSmartRef__":true,"id":12096},{"__isSmartRef__":true,"id":12097}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12094":{"name":"reset","type":"propertyDef","startIndex":39337,"stopIndex":39618,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12093},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12095":{"name":"createResource","type":"propertyDef","startIndex":39621,"stopIndex":41333,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12093},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12096":{"name":"createNetRequest","type":"propertyDef","startIndex":41336,"stopIndex":42640,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12093},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12097":{"name":"createXMLHTTPRequest","type":"propertyDef","startIndex":42642,"stopIndex":46171,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12093},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12098":{"name":"temporaryChangeURLAndDo","type":"propertyDef","startIndex":46190,"stopIndex":46397,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12099},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12099":{"name":"private","type":"categoryDef","startIndex":46177,"stopIndex":46400,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12098}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12100":{"name":"getURL","type":"propertyDef","startIndex":46417,"stopIndex":46461,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12101},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12101":{"name":"accessing","type":"categoryDef","startIndex":46402,"stopIndex":46671,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12100},{"__isSmartRef__":true,"id":12102},{"__isSmartRef__":true,"id":12103},{"__isSmartRef__":true,"id":12104}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12102":{"name":"getRepoURL","type":"propertyDef","startIndex":46463,"stopIndex":46540,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12101},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12103":{"name":"getName","type":"propertyDef","startIndex":46543,"stopIndex":46603,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12101},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12104":{"name":"isCollection","type":"propertyDef","startIndex":46605,"stopIndex":46668,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12101},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12105":{"name":"isSync","type":"propertyDef","startIndex":46692,"stopIndex":46739,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12106":{"name":"configuration","type":"categoryDef","startIndex":46673,"stopIndex":47257,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12105},{"__isSmartRef__":true,"id":12107},{"__isSmartRef__":true,"id":12108},{"__isSmartRef__":true,"id":12109},{"__isSmartRef__":true,"id":12110},{"__isSmartRef__":true,"id":12111},{"__isSmartRef__":true,"id":12112},{"__isSmartRef__":true,"id":12113}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12107":{"name":"beSync","type":"propertyDef","startIndex":46741,"stopIndex":46801,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12108":{"name":"beAsync","type":"propertyDef","startIndex":46803,"stopIndex":46865,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12109":{"name":"setSync","type":"propertyDef","startIndex":46867,"stopIndex":46932,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12110":{"name":"isBinary","type":"propertyDef","startIndex":46935,"stopIndex":46986,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12111":{"name":"beBinary","type":"propertyDef","startIndex":46988,"stopIndex":47052,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12112":{"name":"beText","type":"propertyDef","startIndex":47054,"stopIndex":47117,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12113":{"name":"forceUncached","type":"propertyDef","startIndex":47121,"stopIndex":47254,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12106},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12114":{"name":"enableShowingProgress","type":"propertyDef","startIndex":47273,"stopIndex":47357,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12115},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12115":{"name":"progress","type":"categoryDef","startIndex":47259,"stopIndex":47854,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12114},{"__isSmartRef__":true,"id":12116}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12116":{"name":"createProgressBar","type":"propertyDef","startIndex":47359,"stopIndex":47956,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12115},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12117":{"name":"copyTo","type":"propertyDef","startIndex":47978,"stopIndex":48194,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12118},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12118":{"name":"DEPRECATED","type":"categoryDef","startIndex":47856,"stopIndex":48092,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12117}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12119":{"name":"statusMessage","type":"propertyDef","startIndex":48215,"stopIndex":48919,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12120},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12120":{"name":"debugging","type":"categoryDef","startIndex":48094,"stopIndex":48891,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12119},{"__isSmartRef__":true,"id":12121}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12121":{"name":"toString","type":"propertyDef","startIndex":48922,"stopIndex":48994,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12120},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12122":{"name":"setRequestHeaders","type":"propertyDef","startIndex":49021,"stopIndex":49129,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12123},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12123":{"name":"request headers","type":"categoryDef","startIndex":48893,"stopIndex":49466,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12122},{"__isSmartRef__":true,"id":12124},{"__isSmartRef__":true,"id":12125}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12124":{"name":"addHeaderForRequiredRevision","type":"propertyDef","startIndex":49131,"stopIndex":49452,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12123},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12125":{"name":"addContentType","type":"propertyDef","startIndex":49454,"stopIndex":49568,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12123},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12126":{"name":"get","type":"propertyDef","startIndex":49593,"stopIndex":50724,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12127":{"name":"HTTP methods","type":"categoryDef","startIndex":49468,"stopIndex":55740,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12126},{"__isSmartRef__":true,"id":12128},{"__isSmartRef__":true,"id":12129},{"__isSmartRef__":true,"id":12130},{"__isSmartRef__":true,"id":12131},{"__isSmartRef__":true,"id":12132},{"__isSmartRef__":true,"id":12133},{"__isSmartRef__":true,"id":12134},{"__isSmartRef__":true,"id":12135},{"__isSmartRef__":true,"id":12136},{"__isSmartRef__":true,"id":12137},{"__isSmartRef__":true,"id":12138},{"__isSmartRef__":true,"id":12139},{"__isSmartRef__":true,"id":12140},{"__isSmartRef__":true,"id":12141},{"__isSmartRef__":true,"id":12142},{"__isSmartRef__":true,"id":12143},{"__isSmartRef__":true,"id":12144}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12128":{"name":"get2","type":"propertyDef","startIndex":50726,"stopIndex":51860,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12129":{"name":"put_DEPRECATED","type":"propertyDef","startIndex":51864,"stopIndex":52221,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12130":{"name":"put","type":"propertyDef","startIndex":52223,"stopIndex":52590,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12131":{"name":"create","type":"propertyDef","startIndex":52594,"stopIndex":52785,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12132":{"name":"del","type":"propertyDef","startIndex":52788,"stopIndex":52919,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12133":{"name":"post","type":"propertyDef","startIndex":52922,"stopIndex":53190,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12134":{"name":"exists","type":"propertyDef","startIndex":53197,"stopIndex":53413,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12135":{"name":"head","type":"propertyDef","startIndex":53415,"stopIndex":53548,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12136":{"name":"propfind","type":"propertyDef","startIndex":53551,"stopIndex":53727,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12137":{"name":"report","type":"propertyDef","startIndex":53729,"stopIndex":53882,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12138":{"name":"getSubElements","type":"propertyDef","startIndex":53886,"stopIndex":54107,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12139":{"name":"copyTo","type":"propertyDef","startIndex":54110,"stopIndex":54273,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12140":{"name":"moveTo","type":"propertyDef","startIndex":54275,"stopIndex":54438,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12141":{"name":"getVersions","type":"propertyDef","startIndex":54446,"stopIndex":55153,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12142":{"name":"getHeadRevision","type":"propertyDef","startIndex":55156,"stopIndex":55303,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12143":{"name":"getProperties","type":"propertyDef","startIndex":55306,"stopIndex":55495,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12144":{"name":"ensureExistance","type":"propertyDef","startIndex":55497,"stopIndex":55843,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12127},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12145":{"name":"getLocationInRev","type":"propertyDef","startIndex":55870,"stopIndex":56868,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12146},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12146":{"name":"version specific","type":"categoryDef","startIndex":55742,"stopIndex":56766,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12145}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12147":{"name":"pvtProcessForLocationRequest","type":"propertyDef","startIndex":56892,"stopIndex":57399,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12148},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12148":{"name":"XML querying","type":"categoryDef","startIndex":56768,"stopIndex":58447,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12147},{"__isSmartRef__":true,"id":12149}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12149":{"name":"pvtProcessPropfindForSubElements","type":"propertyDef","startIndex":57401,"stopIndex":58550,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12148},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12150":{"name":"convertContent","type":"propertyDef","startIndex":58571,"stopIndex":59402,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12151},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12089},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12151":{"name":"conversion","type":"categoryDef","startIndex":58449,"stopIndex":59298,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12150}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12152":{"name":null,"type":"comment","startIndex":59408,"stopIndex":59435,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12153":{"name":"WebResource","type":"klassExtensionDef","startIndex":59436,"stopIndex":59520,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12154}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12155}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12154":{"name":"create","type":"propertyDef","startIndex":59465,"stopIndex":59515,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12155},"className":"WebResource","_owner":{"__isSmartRef__":true,"id":12153},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12155":{"name":"default category","type":"categoryDef","startIndex":59357,"stopIndex":59411,"fileName":"lively/Network.js","_subElements":[{"__isSmartRef__":true,"id":12154}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12156":{"name":null,"type":"comment","startIndex":59521,"stopIndex":59521,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12157":{"name":null,"type":"unknown","startIndex":59522,"stopIndex":59555,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12158":{"name":null,"type":"comment","startIndex":59556,"stopIndex":59557,"fileName":"lively/Network.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12159":{"target":{"__isSmartRef__":true,"id":12160},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/NewMorphicCompat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12160":{"name":"lively/NewMorphicCompat.js","type":"completeFileDef","startIndex":0,"stopIndex":1339,"fileName":"lively/NewMorphicCompat.js","_subElements":[{"__isSmartRef__":true,"id":12161},{"__isSmartRef__":true,"id":12162},{"__isSmartRef__":true,"id":12163}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12161":{"name":null,"type":"unknown","startIndex":0,"stopIndex":54,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12162":{"name":null,"type":"comment","startIndex":55,"stopIndex":55,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12163":{"name":"lively.NewMorphicCompat","type":"moduleDef","startIndex":56,"stopIndex":1339,"fileName":"lively/NewMorphicCompat.js","_subElements":[{"__isSmartRef__":true,"id":12164},{"__isSmartRef__":true,"id":12165},{"__isSmartRef__":true,"id":12166},{"__isSmartRef__":true,"id":12167},{"__isSmartRef__":true,"id":12168},{"__isSmartRef__":true,"id":12169},{"__isSmartRef__":true,"id":12193}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12164":{"name":null,"type":"comment","startIndex":124,"stopIndex":255,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12165":{"name":null,"type":"unknown","startIndex":256,"stopIndex":288,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12166":{"name":null,"type":"comment","startIndex":289,"stopIndex":289,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12167":{"name":null,"type":"unknown","startIndex":290,"stopIndex":315,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12168":{"name":null,"type":"comment","startIndex":316,"stopIndex":417,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12169":{"name":"lively.morphic","type":"klassExtensionDef","startIndex":418,"stopIndex":1315,"fileName":"lively/NewMorphicCompat.js","_subElements":[{"__isSmartRef__":true,"id":12170},{"__isSmartRef__":true,"id":12172},{"__isSmartRef__":true,"id":12173},{"__isSmartRef__":true,"id":12174},{"__isSmartRef__":true,"id":12175},{"__isSmartRef__":true,"id":12176},{"__isSmartRef__":true,"id":12177},{"__isSmartRef__":true,"id":12178},{"__isSmartRef__":true,"id":12179},{"__isSmartRef__":true,"id":12180},{"__isSmartRef__":true,"id":12181},{"__isSmartRef__":true,"id":12182},{"__isSmartRef__":true,"id":12183},{"__isSmartRef__":true,"id":12184},{"__isSmartRef__":true,"id":12185},{"__isSmartRef__":true,"id":12186},{"__isSmartRef__":true,"id":12187},{"__isSmartRef__":true,"id":12188},{"__isSmartRef__":true,"id":12189},{"__isSmartRef__":true,"id":12190},{"__isSmartRef__":true,"id":12191},{"__isSmartRef__":true,"id":12192}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12171}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12170":{"name":"Morph","type":"propertyDef","startIndex":450,"stopIndex":479,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12171":{"name":"default category","type":"categoryDef","startIndex":448,"stopIndex":1312,"fileName":"lively/NewMorphicCompat.js","_subElements":[{"__isSmartRef__":true,"id":12170},{"__isSmartRef__":true,"id":12172},{"__isSmartRef__":true,"id":12173},{"__isSmartRef__":true,"id":12174},{"__isSmartRef__":true,"id":12175},{"__isSmartRef__":true,"id":12176},{"__isSmartRef__":true,"id":12177},{"__isSmartRef__":true,"id":12178},{"__isSmartRef__":true,"id":12179},{"__isSmartRef__":true,"id":12180},{"__isSmartRef__":true,"id":12181},{"__isSmartRef__":true,"id":12182},{"__isSmartRef__":true,"id":12183},{"__isSmartRef__":true,"id":12184},{"__isSmartRef__":true,"id":12185},{"__isSmartRef__":true,"id":12186},{"__isSmartRef__":true,"id":12187},{"__isSmartRef__":true,"id":12188},{"__isSmartRef__":true,"id":12189},{"__isSmartRef__":true,"id":12190},{"__isSmartRef__":true,"id":12191},{"__isSmartRef__":true,"id":12192}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12172":{"name":"Text","type":"propertyDef","startIndex":481,"stopIndex":513,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12173":{"name":"World","type":"propertyDef","startIndex":515,"stopIndex":549,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12174":{"name":"Widget","type":"propertyDef","startIndex":551,"stopIndex":582,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12175":{"name":"Box","type":"propertyDef","startIndex":584,"stopIndex":614,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12176":{"name":"Button","type":"propertyDef","startIndex":616,"stopIndex":652,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12177":{"name":"Panel","type":"propertyDef","startIndex":654,"stopIndex":688,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12178":{"name":"HorizontalDivider","type":"propertyDef","startIndex":690,"stopIndex":743,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12179":{"name":"Slider","type":"propertyDef","startIndex":745,"stopIndex":781,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12180":{"name":"Menu","type":"propertyDef","startIndex":783,"stopIndex":815,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12181":{"name":"Image","type":"propertyDef","startIndex":817,"stopIndex":851,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12182":{"name":"Morph","type":"propertyDef","startIndex":854,"stopIndex":888,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12183":{"name":"Text","type":"propertyDef","startIndex":890,"stopIndex":927,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12184":{"name":"World","type":"propertyDef","startIndex":929,"stopIndex":968,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12185":{"name":"Widget","type":"propertyDef","startIndex":970,"stopIndex":1006,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12186":{"name":"Box","type":"propertyDef","startIndex":1008,"stopIndex":1043,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12187":{"name":"Button","type":"propertyDef","startIndex":1045,"stopIndex":1086,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12188":{"name":"Panel","type":"propertyDef","startIndex":1088,"stopIndex":1127,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12189":{"name":"HorizontalDivider","type":"propertyDef","startIndex":1129,"stopIndex":1187,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12190":{"name":"Slider","type":"propertyDef","startIndex":1189,"stopIndex":1230,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12191":{"name":"Menu","type":"propertyDef","startIndex":1232,"stopIndex":1269,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12192":{"name":"Image","type":"propertyDef","startIndex":1271,"stopIndex":1310,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12171},"className":"lively.morphic","_owner":{"__isSmartRef__":true,"id":12169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12193":{"name":null,"type":"comment","startIndex":1316,"stopIndex":1319,"fileName":"lively/NewMorphicCompat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12194":{"target":{"__isSmartRef__":true,"id":12195},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/NoMoreModels.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12195":{"name":"lively.NoMoreModels","type":"moduleDef","startIndex":0,"stopIndex":827,"fileName":"lively/NoMoreModels.js","_subElements":[{"__isSmartRef__":true,"id":12196},{"__isSmartRef__":true,"id":12197},{"__isSmartRef__":true,"id":12203}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12196":{"name":null,"type":"comment","startIndex":77,"stopIndex":117,"fileName":"lively/NoMoreModels.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12197":{"name":"DeprecatedView","type":"klassDef","startIndex":118,"stopIndex":807,"fileName":"lively/NoMoreModels.js","_subElements":[{"__isSmartRef__":true,"id":12198},{"__isSmartRef__":true,"id":12200},{"__isSmartRef__":true,"id":12201},{"__isSmartRef__":true,"id":12202}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12199}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12198":{"name":"setModelValue","type":"propertyDef","startIndex":154,"stopIndex":282,"fileName":"lively/NoMoreModels.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12199},"className":"DeprecatedView","_owner":{"__isSmartRef__":true,"id":12197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12199":{"name":"default category","type":"categoryDef","startIndex":152,"stopIndex":804,"fileName":"lively/NoMoreModels.js","_subElements":[{"__isSmartRef__":true,"id":12198},{"__isSmartRef__":true,"id":12200},{"__isSmartRef__":true,"id":12201},{"__isSmartRef__":true,"id":12202}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12200":{"name":"getModelValue","type":"propertyDef","startIndex":284,"stopIndex":397,"fileName":"lively/NoMoreModels.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12199},"className":"DeprecatedView","_owner":{"__isSmartRef__":true,"id":12197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12201":{"name":"connectModel","type":"propertyDef","startIndex":399,"stopIndex":728,"fileName":"lively/NoMoreModels.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12199},"className":"DeprecatedView","_owner":{"__isSmartRef__":true,"id":12197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12202":{"name":"disconnectModel","type":"propertyDef","startIndex":730,"stopIndex":802,"fileName":"lively/NoMoreModels.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12199},"className":"DeprecatedView","_owner":{"__isSmartRef__":true,"id":12197},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12203":{"name":null,"type":"comment","startIndex":808,"stopIndex":808,"fileName":"lively/NoMoreModels.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12204":{"target":{"__isSmartRef__":true,"id":12205},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/OldBase.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12205":{"name":"lively.OldBase","type":"moduleDef","startIndex":0,"stopIndex":28444,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12206},{"__isSmartRef__":true,"id":12207},{"__isSmartRef__":true,"id":12214},{"__isSmartRef__":true,"id":12226},{"__isSmartRef__":true,"id":12227},{"__isSmartRef__":true,"id":12232},{"__isSmartRef__":true,"id":12233},{"__isSmartRef__":true,"id":12246},{"__isSmartRef__":true,"id":12247},{"__isSmartRef__":true,"id":12251},{"__isSmartRef__":true,"id":12252},{"__isSmartRef__":true,"id":12262},{"__isSmartRef__":true,"id":12263},{"__isSmartRef__":true,"id":12264},{"__isSmartRef__":true,"id":12265},{"__isSmartRef__":true,"id":12275},{"__isSmartRef__":true,"id":12276},{"__isSmartRef__":true,"id":12286},{"__isSmartRef__":true,"id":12287},{"__isSmartRef__":true,"id":12293},{"__isSmartRef__":true,"id":12294},{"__isSmartRef__":true,"id":12301},{"__isSmartRef__":true,"id":12302},{"__isSmartRef__":true,"id":12305},{"__isSmartRef__":true,"id":12306},{"__isSmartRef__":true,"id":12313},{"__isSmartRef__":true,"id":12314},{"__isSmartRef__":true,"id":12315},{"__isSmartRef__":true,"id":12316},{"__isSmartRef__":true,"id":12317},{"__isSmartRef__":true,"id":12320},{"__isSmartRef__":true,"id":12321},{"__isSmartRef__":true,"id":12329}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12206":{"name":null,"type":"comment","startIndex":72,"stopIndex":73,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12207":{"name":"IdTrait","type":"objectDef","startIndex":74,"stopIndex":944,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12208},{"__isSmartRef__":true,"id":12210},{"__isSmartRef__":true,"id":12211},{"__isSmartRef__":true,"id":12212},{"__isSmartRef__":true,"id":12213}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12208":{"name":"newId","type":"propertyDef","startIndex":86,"stopIndex":247,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12209},"_owner":{"__isSmartRef__":true,"id":12207},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12209":{"name":"default category","type":"categoryDef","startIndex":10,"stopIndex":870,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12208},{"__isSmartRef__":true,"id":12210},{"__isSmartRef__":true,"id":12211},{"__isSmartRef__":true,"id":12212},{"__isSmartRef__":true,"id":12213}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12210":{"name":"setId","type":"propertyDef","startIndex":249,"stopIndex":521,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12209},"_owner":{"__isSmartRef__":true,"id":12207},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12211":{"name":"id","type":"propertyDef","startIndex":523,"stopIndex":581,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12209},"_owner":{"__isSmartRef__":true,"id":12207},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12212":{"name":"getType","type":"propertyDef","startIndex":583,"stopIndex":779,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12209},"_owner":{"__isSmartRef__":true,"id":12207},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12213":{"name":"copy","type":"propertyDef","startIndex":781,"stopIndex":910,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12209},"_owner":{"__isSmartRef__":true,"id":12207},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12214":{"name":"Record","type":"klassDef","startIndex":945,"stopIndex":5034,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12215},{"__isSmartRef__":true,"id":12217},{"__isSmartRef__":true,"id":12218},{"__isSmartRef__":true,"id":12219},{"__isSmartRef__":true,"id":12220},{"__isSmartRef__":true,"id":12221},{"__isSmartRef__":true,"id":12222},{"__isSmartRef__":true,"id":12223},{"__isSmartRef__":true,"id":12224},{"__isSmartRef__":true,"id":12225}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["IdTrait"],"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12216}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12215":{"name":"description","type":"propertyDef","startIndex":983,"stopIndex":1088,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12216":{"name":"default category","type":"categoryDef","startIndex":980,"stopIndex":5031,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12215},{"__isSmartRef__":true,"id":12217},{"__isSmartRef__":true,"id":12218},{"__isSmartRef__":true,"id":12219},{"__isSmartRef__":true,"id":12220},{"__isSmartRef__":true,"id":12221},{"__isSmartRef__":true,"id":12222},{"__isSmartRef__":true,"id":12223},{"__isSmartRef__":true,"id":12224},{"__isSmartRef__":true,"id":12225}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12217":{"name":"definition","type":"propertyDef","startIndex":1090,"stopIndex":1113,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12218":{"name":"initialize","type":"propertyDef","startIndex":1168,"stopIndex":1368,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12219":{"name":"newRelay","type":"propertyDef","startIndex":1370,"stopIndex":1440,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12220":{"name":"addObserver","type":"propertyDef","startIndex":1443,"stopIndex":1925,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12221":{"name":"removeObserver","type":"propertyDef","startIndex":1928,"stopIndex":2680,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12222":{"name":"addObserversFromSetters","type":"propertyDef","startIndex":2683,"stopIndex":4135,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12223":{"name":"toString","type":"propertyDef","startIndex":4139,"stopIndex":4236,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12224":{"name":"create","type":"propertyDef","startIndex":4239,"stopIndex":4556,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12225":{"name":"addField","type":"propertyDef","startIndex":4560,"stopIndex":5030,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12216},"className":"Record","_owner":{"__isSmartRef__":true,"id":12214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12226":{"name":null,"type":"comment","startIndex":5035,"stopIndex":5036,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12227":{"name":"PlainRecord","type":"klassDef","startIndex":5037,"stopIndex":5281,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12228},{"__isSmartRef__":true,"id":12230},{"__isSmartRef__":true,"id":12231}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Record","categories":[{"__isSmartRef__":true,"id":12229}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12228":{"name":"getRecordField","type":"propertyDef","startIndex":5070,"stopIndex":5131,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12229},"className":"PlainRecord","_owner":{"__isSmartRef__":true,"id":12227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12229":{"name":"default category","type":"categoryDef","startIndex":5068,"stopIndex":5278,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12228},{"__isSmartRef__":true,"id":12230},{"__isSmartRef__":true,"id":12231}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12230":{"name":"setRecordField","type":"propertyDef","startIndex":5134,"stopIndex":5210,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12229},"className":"PlainRecord","_owner":{"__isSmartRef__":true,"id":12227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12231":{"name":"removeRecordField","type":"propertyDef","startIndex":5213,"stopIndex":5277,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12229},"className":"PlainRecord","_owner":{"__isSmartRef__":true,"id":12227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12232":{"name":null,"type":"comment","startIndex":5282,"stopIndex":5282,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12233":{"name":"Record","type":"klassExtensionDef","startIndex":5283,"stopIndex":9858,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12234},{"__isSmartRef__":true,"id":12236},{"__isSmartRef__":true,"id":12237},{"__isSmartRef__":true,"id":12238},{"__isSmartRef__":true,"id":12239},{"__isSmartRef__":true,"id":12240},{"__isSmartRef__":true,"id":12241},{"__isSmartRef__":true,"id":12242},{"__isSmartRef__":true,"id":12243},{"__isSmartRef__":true,"id":12244},{"__isSmartRef__":true,"id":12245}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12235}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12234":{"name":"newPlainInstance","type":"propertyDef","startIndex":5309,"stopIndex":5549,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12235":{"name":"default category","type":"categoryDef","startIndex":5305,"stopIndex":9855,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12234},{"__isSmartRef__":true,"id":12236},{"__isSmartRef__":true,"id":12237},{"__isSmartRef__":true,"id":12238},{"__isSmartRef__":true,"id":12239},{"__isSmartRef__":true,"id":12240},{"__isSmartRef__":true,"id":12241},{"__isSmartRef__":true,"id":12242},{"__isSmartRef__":true,"id":12243},{"__isSmartRef__":true,"id":12244},{"__isSmartRef__":true,"id":12245}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12236":{"name":"newNodeInstance","type":"propertyDef","startIndex":5552,"stopIndex":5841,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12237":{"name":"newInstance","type":"propertyDef","startIndex":5844,"stopIndex":6373,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12238":{"name":"extendRecordClass","type":"propertyDef","startIndex":6376,"stopIndex":6561,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12239":{"name":"addAccessorMethods","type":"propertyDef","startIndex":6564,"stopIndex":6956,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12240":{"name":"observerListName","type":"propertyDef","startIndex":6961,"stopIndex":7024,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12241":{"name":"addObserverTo","type":"propertyDef","startIndex":7027,"stopIndex":7252,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12242":{"name":"notifyObserversOf","type":"propertyDef","startIndex":7258,"stopIndex":7979,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12243":{"name":"newRecordSetter","type":"propertyDef","startIndex":7982,"stopIndex":8613,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12244":{"name":"newRecordGetter","type":"propertyDef","startIndex":8617,"stopIndex":9053,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12245":{"name":"createDependentObserver","type":"propertyDef","startIndex":9056,"stopIndex":9852,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12235},"className":"Record","_owner":{"__isSmartRef__":true,"id":12233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12246":{"name":null,"type":"comment","startIndex":9859,"stopIndex":9859,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12247":{"name":"Relay","type":"klassDef","startIndex":9860,"stopIndex":10133,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12248},{"__isSmartRef__":true,"id":12250}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["IdTrait"],"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12249}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12248":{"name":"documentation","type":"propertyDef","startIndex":9896,"stopIndex":9947,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12249},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12247},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12249":{"name":"default category","type":"categoryDef","startIndex":9894,"stopIndex":10130,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12248},{"__isSmartRef__":true,"id":12250}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12250":{"name":"initialize","type":"propertyDef","startIndex":9949,"stopIndex":10128,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12249},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12247},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12251":{"name":null,"type":"comment","startIndex":10134,"stopIndex":10134,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12252":{"name":"Relay","type":"klassExtensionDef","startIndex":10135,"stopIndex":16025,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12253},{"__isSmartRef__":true,"id":12255},{"__isSmartRef__":true,"id":12256},{"__isSmartRef__":true,"id":12257},{"__isSmartRef__":true,"id":12258},{"__isSmartRef__":true,"id":12259},{"__isSmartRef__":true,"id":12260},{"__isSmartRef__":true,"id":12261}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12254}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12253":{"name":"newRelaySetter","type":"propertyDef","startIndex":10159,"stopIndex":10664,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12254":{"name":"default category","type":"categoryDef","startIndex":10156,"stopIndex":16022,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12253},{"__isSmartRef__":true,"id":12255},{"__isSmartRef__":true,"id":12256},{"__isSmartRef__":true,"id":12257},{"__isSmartRef__":true,"id":12258},{"__isSmartRef__":true,"id":12259},{"__isSmartRef__":true,"id":12260},{"__isSmartRef__":true,"id":12261}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12255":{"name":"newRelayGetter","type":"propertyDef","startIndex":10667,"stopIndex":11129,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12256":{"name":"newRelayUpdater","type":"propertyDef","startIndex":11132,"stopIndex":11444,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12257":{"name":"handleStringSpec","type":"propertyDef","startIndex":11447,"stopIndex":12848,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12258":{"name":"handleDictSpec","type":"propertyDef","startIndex":12852,"stopIndex":13496,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12259":{"name":"create","type":"propertyDef","startIndex":13499,"stopIndex":14134,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12260":{"name":"newInstance","type":"propertyDef","startIndex":14137,"stopIndex":14287,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12261":{"name":"newDelegationMixin","type":"propertyDef","startIndex":14291,"stopIndex":16021,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12254},"className":"Relay","_owner":{"__isSmartRef__":true,"id":12252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12262":{"name":null,"type":"comment","startIndex":16026,"stopIndex":16096,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12263":{"name":null,"type":"unknown","startIndex":16097,"stopIndex":16122,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12264":{"name":null,"type":"comment","startIndex":16123,"stopIndex":16201,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12265":{"name":"lively.data.DOMRecord","type":"klassDef","startIndex":16202,"stopIndex":17776,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12266},{"__isSmartRef__":true,"id":12268},{"__isSmartRef__":true,"id":12269},{"__isSmartRef__":true,"id":12270},{"__isSmartRef__":true,"id":12271},{"__isSmartRef__":true,"id":12272},{"__isSmartRef__":true,"id":12273},{"__isSmartRef__":true,"id":12274}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Record","categories":[{"__isSmartRef__":true,"id":12267}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12266":{"name":"description","type":"propertyDef","startIndex":16245,"stopIndex":16304,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12267":{"name":"default category","type":"categoryDef","startIndex":16243,"stopIndex":17773,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12266},{"__isSmartRef__":true,"id":12268},{"__isSmartRef__":true,"id":12269},{"__isSmartRef__":true,"id":12270},{"__isSmartRef__":true,"id":12271},{"__isSmartRef__":true,"id":12272},{"__isSmartRef__":true,"id":12273},{"__isSmartRef__":true,"id":12274}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12268":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":16306,"stopIndex":16374,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12269":{"name":"initialize","type":"propertyDef","startIndex":16377,"stopIndex":16638,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12270":{"name":"deserialize","type":"propertyDef","startIndex":16641,"stopIndex":16713,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12271":{"name":"getRecordField","type":"propertyDef","startIndex":16716,"stopIndex":17071,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12272":{"name":"setRecordField","type":"propertyDef","startIndex":17074,"stopIndex":17398,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12273":{"name":"removeRecordField","type":"propertyDef","startIndex":17401,"stopIndex":17493,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12274":{"name":"copyFrom","type":"propertyDef","startIndex":17496,"stopIndex":17770,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12267},"className":"lively.data.DOMRecord","_owner":{"__isSmartRef__":true,"id":12265},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12275":{"name":null,"type":"comment","startIndex":17777,"stopIndex":17777,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12276":{"name":"lively.data.DOMNodeRecord","type":"klassDef","startIndex":17778,"stopIndex":21386,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12277},{"__isSmartRef__":true,"id":12279},{"__isSmartRef__":true,"id":12280},{"__isSmartRef__":true,"id":12281},{"__isSmartRef__":true,"id":12282},{"__isSmartRef__":true,"id":12283},{"__isSmartRef__":true,"id":12284},{"__isSmartRef__":true,"id":12285}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.DOMRecord","categories":[{"__isSmartRef__":true,"id":12278}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12277":{"name":"documentation","type":"propertyDef","startIndex":17840,"stopIndex":17906,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12278":{"name":"default category","type":"categoryDef","startIndex":17838,"stopIndex":21383,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12277},{"__isSmartRef__":true,"id":12279},{"__isSmartRef__":true,"id":12280},{"__isSmartRef__":true,"id":12281},{"__isSmartRef__":true,"id":12282},{"__isSmartRef__":true,"id":12283},{"__isSmartRef__":true,"id":12284},{"__isSmartRef__":true,"id":12285}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12279":{"name":"getRecordField","type":"propertyDef","startIndex":17909,"stopIndex":19035,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12280":{"name":"setRecordField","type":"propertyDef","startIndex":19039,"stopIndex":19819,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12281":{"name":"removeRecordField","type":"propertyDef","startIndex":19823,"stopIndex":20147,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12282":{"name":"deserialize","type":"propertyDef","startIndex":20150,"stopIndex":20645,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12283":{"name":"copyFrom","type":"propertyDef","startIndex":20648,"stopIndex":20964,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12284":{"name":"updateDefintionNode","type":"propertyDef","startIndex":20967,"stopIndex":21234,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12285":{"name":"addField","type":"propertyDef","startIndex":21238,"stopIndex":21382,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12278},"className":"lively.data.DOMNodeRecord","_owner":{"__isSmartRef__":true,"id":12276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12286":{"name":null,"type":"comment","startIndex":21387,"stopIndex":21485,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12287":{"name":"lively.data.StyleRecord","type":"klassDef","startIndex":21486,"stopIndex":22243,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12288},{"__isSmartRef__":true,"id":12290},{"__isSmartRef__":true,"id":12291},{"__isSmartRef__":true,"id":12292}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Record","categories":[{"__isSmartRef__":true,"id":12289}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12288":{"name":"description","type":"propertyDef","startIndex":21531,"stopIndex":21590,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12289},"className":"lively.data.StyleRecord","_owner":{"__isSmartRef__":true,"id":12287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12289":{"name":"default category","type":"categoryDef","startIndex":21529,"stopIndex":22240,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12288},{"__isSmartRef__":true,"id":12290},{"__isSmartRef__":true,"id":12291},{"__isSmartRef__":true,"id":12292}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12290":{"name":"getRecordField","type":"propertyDef","startIndex":21592,"stopIndex":21837,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12289},"className":"lively.data.StyleRecord","_owner":{"__isSmartRef__":true,"id":12287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12291":{"name":"setRecordField","type":"propertyDef","startIndex":21840,"stopIndex":22099,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12289},"className":"lively.data.StyleRecord","_owner":{"__isSmartRef__":true,"id":12287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12292":{"name":"removeRecordField","type":"propertyDef","startIndex":22102,"stopIndex":22239,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12289},"className":"lively.data.StyleRecord","_owner":{"__isSmartRef__":true,"id":12287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12293":{"name":null,"type":"comment","startIndex":22244,"stopIndex":22245,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12294":{"name":"lively.data.Bind","type":"klassDef","startIndex":22246,"stopIndex":23670,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12295},{"__isSmartRef__":true,"id":12297},{"__isSmartRef__":true,"id":12298},{"__isSmartRef__":true,"id":12299},{"__isSmartRef__":true,"id":12300}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12296}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12295":{"name":"initialize","type":"propertyDef","startIndex":22322,"stopIndex":22621,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12296},"className":"lively.data.Bind","_owner":{"__isSmartRef__":true,"id":12294},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12296":{"name":"default category","type":"categoryDef","startIndex":22282,"stopIndex":23667,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12295},{"__isSmartRef__":true,"id":12297},{"__isSmartRef__":true,"id":12298},{"__isSmartRef__":true,"id":12299},{"__isSmartRef__":true,"id":12300}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12297":{"name":"update","type":"propertyDef","startIndex":22624,"stopIndex":23114,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12296},"className":"lively.data.Bind","_owner":{"__isSmartRef__":true,"id":12294},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12298":{"name":"get","type":"propertyDef","startIndex":23118,"stopIndex":23434,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12296},"className":"lively.data.Bind","_owner":{"__isSmartRef__":true,"id":12294},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12299":{"name":"toString","type":"propertyDef","startIndex":23437,"stopIndex":23507,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12296},"className":"lively.data.Bind","_owner":{"__isSmartRef__":true,"id":12294},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12300":{"name":"hookup","type":"propertyDef","startIndex":23510,"stopIndex":23666,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12296},"className":"lively.data.Bind","_owner":{"__isSmartRef__":true,"id":12294},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12301":{"name":null,"type":"comment","startIndex":23671,"stopIndex":23671,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12302":{"name":"lively.data.Bind","type":"klassExtensionDef","startIndex":23672,"stopIndex":23839,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12303}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12304}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12303":{"name":"fromLiteral","type":"propertyDef","startIndex":23706,"stopIndex":23835,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12304},"className":"lively.data.Bind","_owner":{"__isSmartRef__":true,"id":12302},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12304":{"name":"default category","type":"categoryDef","startIndex":23704,"stopIndex":23836,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12303}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12305":{"name":null,"type":"comment","startIndex":23840,"stopIndex":23842,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12306":{"name":"lively.data.Resolver","type":"klassDef","startIndex":23843,"stopIndex":26458,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12307},{"__isSmartRef__":true,"id":12309},{"__isSmartRef__":true,"id":12310},{"__isSmartRef__":true,"id":12311},{"__isSmartRef__":true,"id":12312}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12308}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12307":{"name":"description","type":"propertyDef","startIndex":23885,"stopIndex":23940,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12308},"className":"lively.data.Resolver","_owner":{"__isSmartRef__":true,"id":12306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12308":{"name":"default category","type":"categoryDef","startIndex":23883,"stopIndex":26455,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12307},{"__isSmartRef__":true,"id":12309},{"__isSmartRef__":true,"id":12310},{"__isSmartRef__":true,"id":12311},{"__isSmartRef__":true,"id":12312}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12309":{"name":"storedClassKey","type":"propertyDef","startIndex":23942,"stopIndex":23962,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12308},"className":"lively.data.Resolver","_owner":{"__isSmartRef__":true,"id":12306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12310":{"name":"variableBindingKey","type":"propertyDef","startIndex":23963,"stopIndex":24017,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12308},"className":"lively.data.Resolver","_owner":{"__isSmartRef__":true,"id":12306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12311":{"name":"defaultSearchPath","type":"propertyDef","startIndex":24019,"stopIndex":24047,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12308},"className":"lively.data.Resolver","_owner":{"__isSmartRef__":true,"id":12306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12312":{"name":"link","type":"propertyDef","startIndex":24050,"stopIndex":26454,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12308},"className":"lively.data.Resolver","_owner":{"__isSmartRef__":true,"id":12306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12313":{"name":null,"type":"comment","startIndex":26459,"stopIndex":26480,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12314":{"name":"addRecordStuffToWrapper","type":"propertyDef","startIndex":26481,"stopIndex":26693,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Global","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12315":{"name":null,"type":"unknown","startIndex":26694,"stopIndex":26785,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12316":{"name":null,"type":"comment","startIndex":26786,"stopIndex":26786,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12317":{"name":"Global.ModelMigration","type":"objectDef","startIndex":26787,"stopIndex":27225,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12318}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12318":{"name":"set","type":"propertyDef","startIndex":26813,"stopIndex":27222,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12319},"_owner":{"__isSmartRef__":true,"id":12317},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12319":{"name":"default category","type":"categoryDef","startIndex":24,"stopIndex":436,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12318}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12320":{"name":null,"type":"comment","startIndex":27226,"stopIndex":27226,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12321":{"name":"ModelPlug","type":"klassDef","startIndex":27227,"stopIndex":28440,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12322},{"__isSmartRef__":true,"id":12324},{"__isSmartRef__":true,"id":12325},{"__isSmartRef__":true,"id":12326},{"__isSmartRef__":true,"id":12327},{"__isSmartRef__":true,"id":12328}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12323}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12322":{"name":"documentation","type":"propertyDef","startIndex":27257,"stopIndex":27380,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12323},"className":"ModelPlug","_owner":{"__isSmartRef__":true,"id":12321},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12323":{"name":"default category","type":"categoryDef","startIndex":27256,"stopIndex":28437,"fileName":"lively/OldBase.js","_subElements":[{"__isSmartRef__":true,"id":12322},{"__isSmartRef__":true,"id":12324},{"__isSmartRef__":true,"id":12325},{"__isSmartRef__":true,"id":12326},{"__isSmartRef__":true,"id":12327},{"__isSmartRef__":true,"id":12328}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12324":{"name":"initialize","type":"propertyDef","startIndex":27383,"stopIndex":27536,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12323},"className":"ModelPlug","_owner":{"__isSmartRef__":true,"id":12321},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12325":{"name":"toString","type":"propertyDef","startIndex":27543,"stopIndex":27741,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12323},"className":"ModelPlug","_owner":{"__isSmartRef__":true,"id":12321},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12326":{"name":"serialize","type":"propertyDef","startIndex":27744,"stopIndex":28102,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12323},"className":"ModelPlug","_owner":{"__isSmartRef__":true,"id":12321},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12327":{"name":"inspect","type":"propertyDef","startIndex":28105,"stopIndex":28166,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12323},"className":"ModelPlug","_owner":{"__isSmartRef__":true,"id":12321},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12328":{"name":"deserialize","type":"propertyDef","startIndex":28169,"stopIndex":28435,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12323},"className":"ModelPlug","_owner":{"__isSmartRef__":true,"id":12321},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12329":{"name":null,"type":"comment","startIndex":28441,"stopIndex":28441,"fileName":"lively/OldBase.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12330":{"target":{"__isSmartRef__":true,"id":12331},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/OldModel.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12331":{"name":"lively.OldModel","type":"moduleDef","startIndex":0,"stopIndex":10859,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12332},{"__isSmartRef__":true,"id":12333},{"__isSmartRef__":true,"id":12341},{"__isSmartRef__":true,"id":12342},{"__isSmartRef__":true,"id":12356},{"__isSmartRef__":true,"id":12357},{"__isSmartRef__":true,"id":12370},{"__isSmartRef__":true,"id":12371},{"__isSmartRef__":true,"id":12375}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12332":{"name":null,"type":"comment","startIndex":73,"stopIndex":1309,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12333":{"name":"Model","type":"klassDef","startIndex":1310,"stopIndex":2393,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12334},{"__isSmartRef__":true,"id":12336},{"__isSmartRef__":true,"id":12337},{"__isSmartRef__":true,"id":12338},{"__isSmartRef__":true,"id":12339},{"__isSmartRef__":true,"id":12340}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12335}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12334":{"name":"initialize","type":"propertyDef","startIndex":1338,"stopIndex":1492,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12335},"className":"Model","_owner":{"__isSmartRef__":true,"id":12333},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12335":{"name":"default category","type":"categoryDef","startIndex":1335,"stopIndex":2390,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12334},{"__isSmartRef__":true,"id":12336},{"__isSmartRef__":true,"id":12337},{"__isSmartRef__":true,"id":12338},{"__isSmartRef__":true,"id":12339},{"__isSmartRef__":true,"id":12340}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12336":{"name":"addDependent","type":"propertyDef","startIndex":1495,"stopIndex":1560,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12335},"className":"Model","_owner":{"__isSmartRef__":true,"id":12333},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12337":{"name":"removeDependent","type":"propertyDef","startIndex":1563,"stopIndex":1687,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12335},"className":"Model","_owner":{"__isSmartRef__":true,"id":12333},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12338":{"name":"changed","type":"propertyDef","startIndex":1690,"stopIndex":2115,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12335},"className":"Model","_owner":{"__isSmartRef__":true,"id":12333},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12339":{"name":"toString","type":"propertyDef","startIndex":2118,"stopIndex":2206,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12335},"className":"Model","_owner":{"__isSmartRef__":true,"id":12333},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12340":{"name":"copyFrom","type":"propertyDef","startIndex":2209,"stopIndex":2389,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12335},"className":"Model","_owner":{"__isSmartRef__":true,"id":12333},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12341":{"name":null,"type":"comment","startIndex":2394,"stopIndex":2395,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12342":{"name":"SyntheticModel","type":"klassDef","startIndex":2396,"stopIndex":4839,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12343},{"__isSmartRef__":true,"id":12345},{"__isSmartRef__":true,"id":12346},{"__isSmartRef__":true,"id":12347},{"__isSmartRef__":true,"id":12348},{"__isSmartRef__":true,"id":12349},{"__isSmartRef__":true,"id":12350},{"__isSmartRef__":true,"id":12351},{"__isSmartRef__":true,"id":12352},{"__isSmartRef__":true,"id":12353},{"__isSmartRef__":true,"id":12354},{"__isSmartRef__":true,"id":12355}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Model","categories":[{"__isSmartRef__":true,"id":12344}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12343":{"name":"documentation","type":"propertyDef","startIndex":2431,"stopIndex":2514,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12344":{"name":"default category","type":"categoryDef","startIndex":2429,"stopIndex":4836,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12343},{"__isSmartRef__":true,"id":12345},{"__isSmartRef__":true,"id":12346},{"__isSmartRef__":true,"id":12347},{"__isSmartRef__":true,"id":12348},{"__isSmartRef__":true,"id":12349},{"__isSmartRef__":true,"id":12350},{"__isSmartRef__":true,"id":12351},{"__isSmartRef__":true,"id":12352},{"__isSmartRef__":true,"id":12353},{"__isSmartRef__":true,"id":12354},{"__isSmartRef__":true,"id":12355}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12345":{"name":"initialize","type":"propertyDef","startIndex":2517,"stopIndex":2843,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12346":{"name":"makeGetter","type":"propertyDef","startIndex":2846,"stopIndex":2972,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12347":{"name":"makeSetter","type":"propertyDef","startIndex":2975,"stopIndex":3125,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12348":{"name":"addVariable","type":"propertyDef","startIndex":3128,"stopIndex":3335,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12349":{"name":"getterName","type":"propertyDef","startIndex":3338,"stopIndex":3404,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12350":{"name":"get","type":"propertyDef","startIndex":3407,"stopIndex":3598,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12351":{"name":"setterName","type":"propertyDef","startIndex":3601,"stopIndex":3667,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12352":{"name":"set","type":"propertyDef","startIndex":3670,"stopIndex":3873,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12353":{"name":"makePlugSpecFromPins","type":"propertyDef","startIndex":3876,"stopIndex":4381,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12354":{"name":"makePlugSpec","type":"propertyDef","startIndex":4384,"stopIndex":4715,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12355":{"name":"variables","type":"propertyDef","startIndex":4718,"stopIndex":4835,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12344},"className":"SyntheticModel","_owner":{"__isSmartRef__":true,"id":12342},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12356":{"name":null,"type":"comment","startIndex":4840,"stopIndex":4840,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12357":{"name":"Global.ViewTrait","type":"objectDef","startIndex":4841,"stopIndex":10606,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12358},{"__isSmartRef__":true,"id":12360},{"__isSmartRef__":true,"id":12361},{"__isSmartRef__":true,"id":12362},{"__isSmartRef__":true,"id":12363},{"__isSmartRef__":true,"id":12364},{"__isSmartRef__":true,"id":12365},{"__isSmartRef__":true,"id":12366},{"__isSmartRef__":true,"id":12367},{"__isSmartRef__":true,"id":12368},{"__isSmartRef__":true,"id":12369}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12358":{"name":"connectModel","type":"propertyDef","startIndex":4862,"stopIndex":6433,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12359":{"name":"default category","type":"categoryDef","startIndex":19,"stopIndex":5763,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12358},{"__isSmartRef__":true,"id":12360},{"__isSmartRef__":true,"id":12361},{"__isSmartRef__":true,"id":12362},{"__isSmartRef__":true,"id":12363},{"__isSmartRef__":true,"id":12364},{"__isSmartRef__":true,"id":12365},{"__isSmartRef__":true,"id":12366},{"__isSmartRef__":true,"id":12367},{"__isSmartRef__":true,"id":12368},{"__isSmartRef__":true,"id":12369}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12360":{"name":"relayToModel","type":"propertyDef","startIndex":6436,"stopIndex":6577,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12361":{"name":"reconnectModel","type":"propertyDef","startIndex":6580,"stopIndex":7177,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12362":{"name":"checkModel","type":"propertyDef","startIndex":7180,"stopIndex":7655,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12363":{"name":"disconnectModel","type":"propertyDef","startIndex":7658,"stopIndex":7818,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12364":{"name":"getModel","type":"propertyDef","startIndex":7821,"stopIndex":7933,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12365":{"name":"getActualModel","type":"propertyDef","startIndex":7936,"stopIndex":8084,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12366":{"name":"getModelPlug","type":"propertyDef","startIndex":8088,"stopIndex":8206,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12367":{"name":"getModelValue","type":"propertyDef","startIndex":8209,"stopIndex":9042,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12368":{"name":"setModelValue","type":"propertyDef","startIndex":9045,"stopIndex":10169,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12369":{"name":"updateView","type":"propertyDef","startIndex":10172,"stopIndex":10602,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12359},"_owner":{"__isSmartRef__":true,"id":12357},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12370":{"name":null,"type":"comment","startIndex":10607,"stopIndex":10607,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12371":{"name":"View","type":"klassDef","startIndex":10608,"stopIndex":10839,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12372},{"__isSmartRef__":true,"id":12374}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["ViewTrait"],"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12373}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12372":{"name":"initialize","type":"propertyDef","startIndex":10646,"stopIndex":10739,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12373},"className":"View","_owner":{"__isSmartRef__":true,"id":12371},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12373":{"name":"default category","type":"categoryDef","startIndex":10643,"stopIndex":10836,"fileName":"lively/OldModel.js","_subElements":[{"__isSmartRef__":true,"id":12372},{"__isSmartRef__":true,"id":12374}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12374":{"name":"toString","type":"propertyDef","startIndex":10742,"stopIndex":10833,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12373},"className":"View","_owner":{"__isSmartRef__":true,"id":12371},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12375":{"name":null,"type":"comment","startIndex":10840,"stopIndex":10840,"fileName":"lively/OldModel.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12376":{"target":{"__isSmartRef__":true,"id":12377},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Ometa.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12377":{"name":"lively.Ometa","type":"moduleDef","startIndex":1187,"stopIndex":4807,"fileName":"lively/Ometa.js","_subElements":[{"__isSmartRef__":true,"id":12378},{"__isSmartRef__":true,"id":12379},{"__isSmartRef__":true,"id":12380},{"__isSmartRef__":true,"id":12381},{"__isSmartRef__":true,"id":12394}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12378":{"name":null,"type":"comment","startIndex":1306,"stopIndex":1477,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12379":{"name":"OMetaSupport","type":"klassDef","startIndex":1478,"stopIndex":1510,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12380":{"name":null,"type":"comment","startIndex":1511,"stopIndex":1511,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12381":{"name":"OMetaSupport","type":"klassExtensionDef","startIndex":1512,"stopIndex":4803,"fileName":"lively/Ometa.js","_subElements":[{"__isSmartRef__":true,"id":12382},{"__isSmartRef__":true,"id":12384},{"__isSmartRef__":true,"id":12385},{"__isSmartRef__":true,"id":12386},{"__isSmartRef__":true,"id":12387},{"__isSmartRef__":true,"id":12388},{"__isSmartRef__":true,"id":12389},{"__isSmartRef__":true,"id":12390},{"__isSmartRef__":true,"id":12391},{"__isSmartRef__":true,"id":12392},{"__isSmartRef__":true,"id":12393}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12383}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12382":{"name":"ometaGrammarDir","type":"propertyDef","startIndex":1547,"stopIndex":1577,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12383":{"name":"default category","type":"categoryDef","startIndex":1540,"stopIndex":4800,"fileName":"lively/Ometa.js","_subElements":[{"__isSmartRef__":true,"id":12382},{"__isSmartRef__":true,"id":12384},{"__isSmartRef__":true,"id":12385},{"__isSmartRef__":true,"id":12386},{"__isSmartRef__":true,"id":12387},{"__isSmartRef__":true,"id":12388},{"__isSmartRef__":true,"id":12389},{"__isSmartRef__":true,"id":12390},{"__isSmartRef__":true,"id":12391},{"__isSmartRef__":true,"id":12392},{"__isSmartRef__":true,"id":12393}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12384":{"name":"fromFile","type":"propertyDef","startIndex":1582,"stopIndex":1751,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12385":{"name":"translateAndWrite","type":"propertyDef","startIndex":1758,"stopIndex":2413,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12386":{"name":"ometaEval","type":"propertyDef","startIndex":2420,"stopIndex":2537,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12387":{"name":"translateToJs","type":"propertyDef","startIndex":2544,"stopIndex":2893,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12388":{"name":"matchAllWithGrammar","type":"propertyDef","startIndex":2900,"stopIndex":3343,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12389":{"name":"matchWithGrammar","type":"propertyDef","startIndex":3350,"stopIndex":3781,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12390":{"name":"handleErrorDebug","type":"propertyDef","startIndex":3788,"stopIndex":4428,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12391":{"name":"handleError","type":"propertyDef","startIndex":4435,"stopIndex":4503,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12392":{"name":"fileContent","type":"propertyDef","startIndex":4510,"stopIndex":4653,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12393":{"name":"writeGrammar","type":"propertyDef","startIndex":4656,"stopIndex":4794,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12383},"className":"OMetaSupport","_owner":{"__isSmartRef__":true,"id":12381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12394":{"name":null,"type":"comment","startIndex":4804,"stopIndex":4804,"fileName":"lively/Ometa.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12395":{"target":{"__isSmartRef__":true,"id":12396},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/PartsBin.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12396":{"name":"lively/PartsBin.js","type":"completeFileDef","startIndex":0,"stopIndex":20609,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12397},{"__isSmartRef__":true,"id":12398}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12397":{"name":null,"type":"unknown","startIndex":0,"stopIndex":74,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12398":{"name":"lively.PartsBin","type":"moduleDef","startIndex":75,"stopIndex":20609,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12399},{"__isSmartRef__":true,"id":12400},{"__isSmartRef__":true,"id":12436},{"__isSmartRef__":true,"id":12437},{"__isSmartRef__":true,"id":12454},{"__isSmartRef__":true,"id":12455},{"__isSmartRef__":true,"id":12476},{"__isSmartRef__":true,"id":12477},{"__isSmartRef__":true,"id":12488},{"__isSmartRef__":true,"id":12489},{"__isSmartRef__":true,"id":12501}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12399":{"name":null,"type":"comment","startIndex":161,"stopIndex":161,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12400":{"name":"lively.PartsBin.PartItem","type":"klassDef","startIndex":162,"stopIndex":10256,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12401},{"__isSmartRef__":true,"id":12403},{"__isSmartRef__":true,"id":12405},{"__isSmartRef__":true,"id":12406},{"__isSmartRef__":true,"id":12407},{"__isSmartRef__":true,"id":12408},{"__isSmartRef__":true,"id":12409},{"__isSmartRef__":true,"id":12410},{"__isSmartRef__":true,"id":12411},{"__isSmartRef__":true,"id":12412},{"__isSmartRef__":true,"id":12414},{"__isSmartRef__":true,"id":12416},{"__isSmartRef__":true,"id":12417},{"__isSmartRef__":true,"id":12418},{"__isSmartRef__":true,"id":12419},{"__isSmartRef__":true,"id":12420},{"__isSmartRef__":true,"id":12422},{"__isSmartRef__":true,"id":12423},{"__isSmartRef__":true,"id":12424},{"__isSmartRef__":true,"id":12425},{"__isSmartRef__":true,"id":12426},{"__isSmartRef__":true,"id":12427},{"__isSmartRef__":true,"id":12428},{"__isSmartRef__":true,"id":12429},{"__isSmartRef__":true,"id":12430},{"__isSmartRef__":true,"id":12431},{"__isSmartRef__":true,"id":12432},{"__isSmartRef__":true,"id":12434}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12402},{"__isSmartRef__":true,"id":12404},{"__isSmartRef__":true,"id":12413},{"__isSmartRef__":true,"id":12415},{"__isSmartRef__":true,"id":12421},{"__isSmartRef__":true,"id":12433},{"__isSmartRef__":true,"id":12435}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12401":{"name":"initialize","type":"propertyDef","startIndex":224,"stopIndex":576,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12402},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12402":{"name":"initializing","type":"categoryDef","startIndex":206,"stopIndex":580,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12401}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12403":{"name":"getLogoURL","type":"propertyDef","startIndex":597,"stopIndex":709,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12404":{"name":"accessing","type":"categoryDef","startIndex":582,"stopIndex":1711,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12403},{"__isSmartRef__":true,"id":12405},{"__isSmartRef__":true,"id":12406},{"__isSmartRef__":true,"id":12407},{"__isSmartRef__":true,"id":12408},{"__isSmartRef__":true,"id":12409},{"__isSmartRef__":true,"id":12410},{"__isSmartRef__":true,"id":12411}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12405":{"name":"getHTMLLogoURL","type":"propertyDef","startIndex":711,"stopIndex":828,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12406":{"name":"getFileURL","type":"propertyDef","startIndex":831,"stopIndex":944,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12407":{"name":"getMetaInfoURL","type":"propertyDef","startIndex":946,"stopIndex":1067,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12408":{"name":"getPartsSpace","type":"propertyDef","startIndex":1070,"stopIndex":1176,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12409":{"name":"setPartFromJSON","type":"propertyDef","startIndex":1179,"stopIndex":1317,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12410":{"name":"setPart","type":"propertyDef","startIndex":1320,"stopIndex":1381,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12411":{"name":"getMetaInfo","type":"propertyDef","startIndex":1383,"stopIndex":1705,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12404},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12412":{"name":"makeUpPartName","type":"propertyDef","startIndex":1725,"stopIndex":1980,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12413},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12413":{"name":"naming","type":"categoryDef","startIndex":1713,"stopIndex":1983,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12412}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12414":{"name":"getSerializer","type":"propertyDef","startIndex":2004,"stopIndex":2186,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12415},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12415":{"name":"serialization","type":"categoryDef","startIndex":1985,"stopIndex":4762,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12414},{"__isSmartRef__":true,"id":12416},{"__isSmartRef__":true,"id":12417},{"__isSmartRef__":true,"id":12418},{"__isSmartRef__":true,"id":12419}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12416":{"name":"deserializePart","type":"propertyDef","startIndex":2188,"stopIndex":3381,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12415},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12417":{"name":"runAfterDeserializationHooks","type":"propertyDef","startIndex":3383,"stopIndex":3596,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12415},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12418":{"name":"serializePart","type":"propertyDef","startIndex":3599,"stopIndex":4539,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12415},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12419":{"name":"serializeMetaInfo","type":"propertyDef","startIndex":4541,"stopIndex":4757,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12415},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12420":{"name":"load","type":"propertyDef","startIndex":4789,"stopIndex":5226,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12421":{"name":"upload and download","type":"categoryDef","startIndex":4764,"stopIndex":9892,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12420},{"__isSmartRef__":true,"id":12422},{"__isSmartRef__":true,"id":12423},{"__isSmartRef__":true,"id":12424},{"__isSmartRef__":true,"id":12425},{"__isSmartRef__":true,"id":12426},{"__isSmartRef__":true,"id":12427},{"__isSmartRef__":true,"id":12428},{"__isSmartRef__":true,"id":12429},{"__isSmartRef__":true,"id":12430},{"__isSmartRef__":true,"id":12431}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12422":{"name":"loadPart","type":"propertyDef","startIndex":5228,"stopIndex":6561,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12423":{"name":"loadPartVersions","type":"propertyDef","startIndex":6565,"stopIndex":6818,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12424":{"name":"loadPartMetaInfo","type":"propertyDef","startIndex":6820,"stopIndex":7443,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12425":{"name":"loadRevision","type":"propertyDef","startIndex":7446,"stopIndex":7548,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12426":{"name":"copyToPartsSpace","type":"propertyDef","startIndex":7551,"stopIndex":7765,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12427":{"name":"moveToPartsSpace","type":"propertyDef","startIndex":7767,"stopIndex":7918,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12428":{"name":"del","type":"propertyDef","startIndex":7920,"stopIndex":8166,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12429":{"name":"uploadPart","type":"propertyDef","startIndex":8168,"stopIndex":8950,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12430":{"name":"copyFilesFrom","type":"propertyDef","startIndex":8952,"stopIndex":9386,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12431":{"name":"uploadMetaInfoOnly","type":"propertyDef","startIndex":9389,"stopIndex":9887,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12421},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12432":{"name":"asPartsBinItem","type":"propertyDef","startIndex":9910,"stopIndex":10123,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12433},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12433":{"name":"converting","type":"categoryDef","startIndex":9894,"stopIndex":10126,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12432}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12434":{"name":"toString","type":"propertyDef","startIndex":10143,"stopIndex":10251,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12435},"className":"lively.PartsBin.PartItem","_owner":{"__isSmartRef__":true,"id":12400},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12435":{"name":"debugging","type":"categoryDef","startIndex":10128,"stopIndex":10253,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12434}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12436":{"name":null,"type":"comment","startIndex":10257,"stopIndex":10257,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12437":{"name":"lively.PartsBin.PartsBinMetaInfo","type":"klassDef","startIndex":10258,"stopIndex":11551,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12438},{"__isSmartRef__":true,"id":12440},{"__isSmartRef__":true,"id":12442},{"__isSmartRef__":true,"id":12443},{"__isSmartRef__":true,"id":12444},{"__isSmartRef__":true,"id":12445},{"__isSmartRef__":true,"id":12446},{"__isSmartRef__":true,"id":12447},{"__isSmartRef__":true,"id":12448},{"__isSmartRef__":true,"id":12449},{"__isSmartRef__":true,"id":12450},{"__isSmartRef__":true,"id":12451},{"__isSmartRef__":true,"id":12452}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12439},{"__isSmartRef__":true,"id":12441},{"__isSmartRef__":true,"id":12453}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12438":{"name":"initialize","type":"propertyDef","startIndex":10328,"stopIndex":10424,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12439},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12439":{"name":"initializing","type":"categoryDef","startIndex":10310,"stopIndex":10427,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12438}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12440":{"name":"setURL","type":"propertyDef","startIndex":10445,"stopIndex":10600,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12441":{"name":"accessing","type":"categoryDef","startIndex":10429,"stopIndex":11426,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12440},{"__isSmartRef__":true,"id":12442},{"__isSmartRef__":true,"id":12443},{"__isSmartRef__":true,"id":12444},{"__isSmartRef__":true,"id":12445},{"__isSmartRef__":true,"id":12446},{"__isSmartRef__":true,"id":12447},{"__isSmartRef__":true,"id":12448},{"__isSmartRef__":true,"id":12449},{"__isSmartRef__":true,"id":12450},{"__isSmartRef__":true,"id":12451}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12442":{"name":"getName","type":"propertyDef","startIndex":10603,"stopIndex":10651,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12443":{"name":"getPartsSpaceURL","type":"propertyDef","startIndex":10654,"stopIndex":10727,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12444":{"name":"setPartsSpaceName","type":"propertyDef","startIndex":10729,"stopIndex":10797,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12445":{"name":"getPartsSpaceName","type":"propertyDef","startIndex":10799,"stopIndex":10878,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12446":{"name":"setPartsSpace","type":"propertyDef","startIndex":10880,"stopIndex":10968,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12447":{"name":"getPartsSpace","type":"propertyDef","startIndex":10970,"stopIndex":11063,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12448":{"name":"getComment","type":"propertyDef","startIndex":11065,"stopIndex":11115,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12449":{"name":"setComment","type":"propertyDef","startIndex":11117,"stopIndex":11184,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12450":{"name":"addRequiredModule","type":"propertyDef","startIndex":11188,"stopIndex":11348,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12451":{"name":"getRequiredModules","type":"propertyDef","startIndex":11350,"stopIndex":11422,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12441},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12452":{"name":"toString","type":"propertyDef","startIndex":11443,"stopIndex":11546,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12453},"className":"lively.PartsBin.PartsBinMetaInfo","_owner":{"__isSmartRef__":true,"id":12437},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12453":{"name":"debugging","type":"categoryDef","startIndex":11428,"stopIndex":11548,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12452}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12454":{"name":null,"type":"comment","startIndex":11552,"stopIndex":11552,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12455":{"name":"lively.PartsBin.PartsSpace","type":"klassDef","startIndex":11553,"stopIndex":14158,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12456},{"__isSmartRef__":true,"id":12458},{"__isSmartRef__":true,"id":12460},{"__isSmartRef__":true,"id":12461},{"__isSmartRef__":true,"id":12462},{"__isSmartRef__":true,"id":12464},{"__isSmartRef__":true,"id":12465},{"__isSmartRef__":true,"id":12466},{"__isSmartRef__":true,"id":12467},{"__isSmartRef__":true,"id":12468},{"__isSmartRef__":true,"id":12469},{"__isSmartRef__":true,"id":12470},{"__isSmartRef__":true,"id":12471},{"__isSmartRef__":true,"id":12473},{"__isSmartRef__":true,"id":12474}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12457},{"__isSmartRef__":true,"id":12459},{"__isSmartRef__":true,"id":12463},{"__isSmartRef__":true,"id":12472},{"__isSmartRef__":true,"id":12475}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12456":{"name":"documentation","type":"propertyDef","startIndex":11618,"stopIndex":11846,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12457},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12457":{"name":"documentation","type":"categoryDef","startIndex":11599,"stopIndex":11849,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12456}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12458":{"name":"initialize","type":"propertyDef","startIndex":11869,"stopIndex":11960,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12459},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12459":{"name":"initializing","type":"categoryDef","startIndex":11851,"stopIndex":12130,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12458},{"__isSmartRef__":true,"id":12460},{"__isSmartRef__":true,"id":12461}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12460":{"name":"createPartItemNamed","type":"propertyDef","startIndex":11962,"stopIndex":12071,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12459},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12461":{"name":"clearCache","type":"propertyDef","startIndex":12073,"stopIndex":12123,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12459},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12462":{"name":"getPartNames","type":"propertyDef","startIndex":12147,"stopIndex":12230,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12463":{"name":"accessing","type":"categoryDef","startIndex":12132,"stopIndex":13453,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12462},{"__isSmartRef__":true,"id":12464},{"__isSmartRef__":true,"id":12465},{"__isSmartRef__":true,"id":12466},{"__isSmartRef__":true,"id":12467},{"__isSmartRef__":true,"id":12468},{"__isSmartRef__":true,"id":12469},{"__isSmartRef__":true,"id":12470}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12464":{"name":"getPartItemNamed","type":"propertyDef","startIndex":12232,"stopIndex":12572,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12465":{"name":"setPartItem","type":"propertyDef","startIndex":12574,"stopIndex":12674,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12466":{"name":"removePartItemNamed","type":"propertyDef","startIndex":12677,"stopIndex":12761,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12467":{"name":"getURL","type":"propertyDef","startIndex":12765,"stopIndex":12853,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12468":{"name":"getPartItems","type":"propertyDef","startIndex":12855,"stopIndex":12944,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12469":{"name":"setPartItemsFromURLList","type":"propertyDef","startIndex":12946,"stopIndex":13404,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12470":{"name":"getName","type":"propertyDef","startIndex":13406,"stopIndex":13450,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12463},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12471":{"name":"load","type":"propertyDef","startIndex":13468,"stopIndex":13908,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12472},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12472":{"name":"loading","type":"categoryDef","startIndex":13455,"stopIndex":14055,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12471},{"__isSmartRef__":true,"id":12473}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12473":{"name":"ensureExistance","type":"propertyDef","startIndex":13910,"stopIndex":14052,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12472},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12474":{"name":"toString","type":"propertyDef","startIndex":14072,"stopIndex":14153,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12475},"className":"lively.PartsBin.PartsSpace","_owner":{"__isSmartRef__":true,"id":12455},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12475":{"name":"debugging","type":"categoryDef","startIndex":14057,"stopIndex":14155,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12474}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12476":{"name":null,"type":"comment","startIndex":14159,"stopIndex":14159,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12477":{"name":"lively.PartsBin","type":"klassExtensionDef","startIndex":14160,"stopIndex":16314,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12478},{"__isSmartRef__":true,"id":12480},{"__isSmartRef__":true,"id":12481},{"__isSmartRef__":true,"id":12482},{"__isSmartRef__":true,"id":12483},{"__isSmartRef__":true,"id":12484},{"__isSmartRef__":true,"id":12485},{"__isSmartRef__":true,"id":12486},{"__isSmartRef__":true,"id":12487}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12479}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12478":{"name":"partSpaces","type":"propertyDef","startIndex":14193,"stopIndex":14211,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12479":{"name":"default category","type":"categoryDef","startIndex":14191,"stopIndex":16311,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12478},{"__isSmartRef__":true,"id":12480},{"__isSmartRef__":true,"id":12481},{"__isSmartRef__":true,"id":12482},{"__isSmartRef__":true,"id":12483},{"__isSmartRef__":true,"id":12484},{"__isSmartRef__":true,"id":12485},{"__isSmartRef__":true,"id":12486},{"__isSmartRef__":true,"id":12487}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12480":{"name":"addPartsSpace","type":"propertyDef","startIndex":14213,"stopIndex":14300,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12481":{"name":"removePartsSpace","type":"propertyDef","startIndex":14302,"stopIndex":14384,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12482":{"name":"partsSpaceNamed","type":"propertyDef","startIndex":14386,"stopIndex":14546,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12483":{"name":"partsSpaceWithURL","type":"propertyDef","startIndex":14548,"stopIndex":14732,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12484":{"name":"addPartsSpaceNamed","type":"propertyDef","startIndex":14735,"stopIndex":14896,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12485":{"name":"getPart","type":"propertyDef","startIndex":14898,"stopIndex":15085,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12486":{"name":"getPartItem","type":"propertyDef","startIndex":15087,"stopIndex":15415,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12487":{"name":"leftOverMetaInfos","type":"propertyDef","startIndex":15417,"stopIndex":16308,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12479},"className":"lively.PartsBin","_owner":{"__isSmartRef__":true,"id":12477},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12488":{"name":null,"type":"comment","startIndex":16315,"stopIndex":16315,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12489":{"name":"lively.PartsBin.PartTrait","type":"traitDef","startIndex":16316,"stopIndex":20588,"fileName":"lively/PartsBin.js","_subElements":[{"__isSmartRef__":true,"id":12490},{"__isSmartRef__":true,"id":12492},{"__isSmartRef__":true,"id":12493},{"__isSmartRef__":true,"id":12494},{"__isSmartRef__":true,"id":12495},{"__isSmartRef__":true,"id":12496},{"__isSmartRef__":true,"id":12497},{"__isSmartRef__":true,"id":12498},{"__isSmartRef__":true,"id":12499},{"__isSmartRef__":true,"id":12500}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12490":{"name":"copyToPartsBin","type":"propertyDef","startIndex":16354,"stopIndex":17255,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12491":{"name":"default category","type":"categoryDef","startIndex":35,"stopIndex":4269,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12490},{"__isSmartRef__":true,"id":12492},{"__isSmartRef__":true,"id":12493},{"__isSmartRef__":true,"id":12494},{"__isSmartRef__":true,"id":12495},{"__isSmartRef__":true,"id":12496},{"__isSmartRef__":true,"id":12497},{"__isSmartRef__":true,"id":12498},{"__isSmartRef__":true,"id":12499},{"__isSmartRef__":true,"id":12500}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12492":{"name":"copyToMyPartsBin","type":"propertyDef","startIndex":17257,"stopIndex":18031,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12493":{"name":"interactiveCopyToMyPartsBin","type":"propertyDef","startIndex":18034,"stopIndex":18652,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12494":{"name":"copyToPartsBinUrl","type":"propertyDef","startIndex":18655,"stopIndex":18823,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12495":{"name":"copyToPartsSpace","type":"propertyDef","startIndex":18825,"stopIndex":18977,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12496":{"name":"getPartsBinMetaInfo","type":"propertyDef","startIndex":18980,"stopIndex":19594,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12497":{"name":"setPartsBinMetaInfo","type":"propertyDef","startIndex":19596,"stopIndex":19696,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12498":{"name":"getPartItem","type":"propertyDef","startIndex":19699,"stopIndex":19832,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12499":{"name":"asSVGLogo","type":"propertyDef","startIndex":19835,"stopIndex":20488,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12500":{"name":"asHTMLLogo","type":"propertyDef","startIndex":20490,"stopIndex":20584,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12491},"_owner":{"__isSmartRef__":true,"id":12489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12501":{"name":null,"type":"comment","startIndex":20589,"stopIndex":20590,"fileName":"lively/PartsBin.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12502":{"target":{"__isSmartRef__":true,"id":12503},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/PartsBinMorphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12503":{"name":"lively.PartsBinMorphs","type":"moduleDef","startIndex":0,"stopIndex":2734,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12504},{"__isSmartRef__":true,"id":12505},{"__isSmartRef__":true,"id":12524},{"__isSmartRef__":true,"id":12525}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12504":{"name":null,"type":"comment","startIndex":79,"stopIndex":81,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12505":{"name":"lively.Scripting.PartPinItem","type":"klassDef","startIndex":82,"stopIndex":2663,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12506},{"__isSmartRef__":true,"id":12508},{"__isSmartRef__":true,"id":12510},{"__isSmartRef__":true,"id":12511},{"__isSmartRef__":true,"id":12513},{"__isSmartRef__":true,"id":12515},{"__isSmartRef__":true,"id":12516},{"__isSmartRef__":true,"id":12517},{"__isSmartRef__":true,"id":12519},{"__isSmartRef__":true,"id":12521},{"__isSmartRef__":true,"id":12522}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":12507},{"__isSmartRef__":true,"id":12509},{"__isSmartRef__":true,"id":12512},{"__isSmartRef__":true,"id":12514},{"__isSmartRef__":true,"id":12518},{"__isSmartRef__":true,"id":12520},{"__isSmartRef__":true,"id":12523}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12506":{"name":"defaultExtent","type":"propertyDef","startIndex":146,"stopIndex":173,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12507},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12507":{"name":"settings","type":"categoryDef","startIndex":132,"stopIndex":176,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12506}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12508":{"name":"initialize","type":"propertyDef","startIndex":196,"stopIndex":529,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12509},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12509":{"name":"initializing","type":"categoryDef","startIndex":178,"stopIndex":950,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12508},{"__isSmartRef__":true,"id":12510}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12510":{"name":"setupLogo","type":"propertyDef","startIndex":532,"stopIndex":947,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12509},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12511":{"name":"makeUpPartName","type":"propertyDef","startIndex":964,"stopIndex":1159,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12512},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12512":{"name":"naming","type":"categoryDef","startIndex":952,"stopIndex":1162,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12511}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12513":{"name":"handlesMouseDown","type":"propertyDef","startIndex":1182,"stopIndex":1229,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12514},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12514":{"name":"mouse events","type":"categoryDef","startIndex":1164,"stopIndex":1819,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12513},{"__isSmartRef__":true,"id":12515},{"__isSmartRef__":true,"id":12516}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12515":{"name":"onMouseMove","type":"propertyDef","startIndex":1232,"stopIndex":1297,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12514},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12516":{"name":"onMouseDown","type":"propertyDef","startIndex":1300,"stopIndex":1816,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12514},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12517":{"name":"morphMenu","type":"propertyDef","startIndex":1831,"stopIndex":1984,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12518},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12518":{"name":"menu","type":"categoryDef","startIndex":1821,"stopIndex":1987,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12517}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12519":{"name":"deleteOnServer","type":"propertyDef","startIndex":2013,"stopIndex":2117,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12520},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12520":{"name":"server interaction","type":"categoryDef","startIndex":1989,"stopIndex":2416,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12519},{"__isSmartRef__":true,"id":12521}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12521":{"name":"interactiveDeleteOnServer","type":"propertyDef","startIndex":2119,"stopIndex":2413,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12520},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12522":{"name":"openLoadedPartsBinItem","type":"propertyDef","startIndex":2432,"stopIndex":2657,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12523},"className":"lively.Scripting.PartPinItem","_owner":{"__isSmartRef__":true,"id":12505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12523":{"name":"loading","type":"categoryDef","startIndex":2418,"stopIndex":2660,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12522}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12524":{"name":null,"type":"comment","startIndex":2664,"stopIndex":2664,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12525":{"name":"lively.PartsBin.PartTrait","type":"traitDef","startIndex":2665,"stopIndex":2715,"fileName":"lively/PartsBinMorphs.js","_subElements":[{"__isSmartRef__":true,"id":12526}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12526":{"name":" -> Morph","type":"traitSubElement","startIndex":2699,"stopIndex":2713,"fileName":"lively/PartsBinMorphs.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":12525},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12527":{"target":{"__isSmartRef__":true,"id":12528},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Persistence.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12528":{"name":"lively.Persistence","type":"moduleDef","startIndex":0,"stopIndex":18167,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12529},{"__isSmartRef__":true,"id":12530},{"__isSmartRef__":true,"id":12542},{"__isSmartRef__":true,"id":12543},{"__isSmartRef__":true,"id":12549},{"__isSmartRef__":true,"id":12550},{"__isSmartRef__":true,"id":12567},{"__isSmartRef__":true,"id":12568},{"__isSmartRef__":true,"id":12572},{"__isSmartRef__":true,"id":12573},{"__isSmartRef__":true,"id":12576},{"__isSmartRef__":true,"id":12577},{"__isSmartRef__":true,"id":12578},{"__isSmartRef__":true,"id":12579},{"__isSmartRef__":true,"id":12583},{"__isSmartRef__":true,"id":12584},{"__isSmartRef__":true,"id":12589},{"__isSmartRef__":true,"id":12596},{"__isSmartRef__":true,"id":12597},{"__isSmartRef__":true,"id":12603},{"__isSmartRef__":true,"id":12604},{"__isSmartRef__":true,"id":12607},{"__isSmartRef__":true,"id":12608},{"__isSmartRef__":true,"id":12627},{"__isSmartRef__":true,"id":12628},{"__isSmartRef__":true,"id":12634},{"__isSmartRef__":true,"id":12635},{"__isSmartRef__":true,"id":12640}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12529":{"name":null,"type":"comment","startIndex":104,"stopIndex":104,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12530":{"name":"OfflineStorage","type":"klassDef","startIndex":105,"stopIndex":958,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12531},{"__isSmartRef__":true,"id":12533},{"__isSmartRef__":true,"id":12534},{"__isSmartRef__":true,"id":12535},{"__isSmartRef__":true,"id":12537},{"__isSmartRef__":true,"id":12538},{"__isSmartRef__":true,"id":12539},{"__isSmartRef__":true,"id":12540},{"__isSmartRef__":true,"id":12541}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12532},{"__isSmartRef__":true,"id":12536}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12531":{"name":"initialize","type":"propertyDef","startIndex":141,"stopIndex":337,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12532},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12532":{"name":"default category","type":"categoryDef","startIndex":139,"stopIndex":487,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12531},{"__isSmartRef__":true,"id":12533},{"__isSmartRef__":true,"id":12534}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12533":{"name":"inspect","type":"propertyDef","startIndex":340,"stopIndex":403,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12532},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12534":{"name":"toString","type":"propertyDef","startIndex":406,"stopIndex":485,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12532},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12535":{"name":"length","type":"propertyDef","startIndex":575,"stopIndex":628,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12536},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12536":{"name":"storage","type":"categoryDef","startIndex":561,"stopIndex":955,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12535},{"__isSmartRef__":true,"id":12537},{"__isSmartRef__":true,"id":12538},{"__isSmartRef__":true,"id":12539},{"__isSmartRef__":true,"id":12540},{"__isSmartRef__":true,"id":12541}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12537":{"name":"key","type":"propertyDef","startIndex":630,"stopIndex":690,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12536},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12538":{"name":"getItem","type":"propertyDef","startIndex":692,"stopIndex":754,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12536},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12539":{"name":"setItem","type":"propertyDef","startIndex":756,"stopIndex":830,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12536},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12540":{"name":"removeItem","type":"propertyDef","startIndex":832,"stopIndex":899,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12536},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12541":{"name":"clear","type":"propertyDef","startIndex":901,"stopIndex":954,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12536},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12542":{"name":null,"type":"comment","startIndex":959,"stopIndex":959,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12543":{"name":"OfflineStorage","type":"klassExtensionDef","startIndex":960,"stopIndex":1117,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12544},{"__isSmartRef__":true,"id":12546},{"__isSmartRef__":true,"id":12547},{"__isSmartRef__":true,"id":12548}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12545}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12544":{"name":"changeSetPostfix","type":"propertyDef","startIndex":992,"stopIndex":1016,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12545},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12545":{"name":"default category","type":"categoryDef","startIndex":990,"stopIndex":1114,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12544},{"__isSmartRef__":true,"id":12546},{"__isSmartRef__":true,"id":12547},{"__isSmartRef__":true,"id":12548}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12546":{"name":"jsonPostfix","type":"propertyDef","startIndex":1018,"stopIndex":1039,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12545},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12547":{"name":"offlineStorageEnabledFlagPostfix","type":"propertyDef","startIndex":1041,"stopIndex":1086,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12545},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12548":{"name":"autoLoadPostfix","type":"propertyDef","startIndex":1088,"stopIndex":1113,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12545},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12549":{"name":null,"type":"comment","startIndex":1118,"stopIndex":1118,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12550":{"name":"OfflineStorage","type":"klassExtensionDef","startIndex":1119,"stopIndex":4920,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12551},{"__isSmartRef__":true,"id":12553},{"__isSmartRef__":true,"id":12554},{"__isSmartRef__":true,"id":12555},{"__isSmartRef__":true,"id":12556},{"__isSmartRef__":true,"id":12557},{"__isSmartRef__":true,"id":12558},{"__isSmartRef__":true,"id":12559},{"__isSmartRef__":true,"id":12560},{"__isSmartRef__":true,"id":12561},{"__isSmartRef__":true,"id":12562},{"__isSmartRef__":true,"id":12563},{"__isSmartRef__":true,"id":12565},{"__isSmartRef__":true,"id":12566}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12552},{"__isSmartRef__":true,"id":12564}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12551":{"name":"getAbsoluteLocalUrl","type":"propertyDef","startIndex":1158,"stopIndex":1356,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12552":{"name":"world","type":"categoryDef","startIndex":1146,"stopIndex":4190,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12551},{"__isSmartRef__":true,"id":12553},{"__isSmartRef__":true,"id":12554},{"__isSmartRef__":true,"id":12555},{"__isSmartRef__":true,"id":12556},{"__isSmartRef__":true,"id":12557},{"__isSmartRef__":true,"id":12558},{"__isSmartRef__":true,"id":12559},{"__isSmartRef__":true,"id":12560},{"__isSmartRef__":true,"id":12561},{"__isSmartRef__":true,"id":12562}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12553":{"name":"getLocalJSONData","type":"propertyDef","startIndex":1359,"stopIndex":1509,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12554":{"name":"getOfflineStorageEnabledKey","type":"propertyDef","startIndex":1512,"stopIndex":1680,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12555":{"name":"setOfflineStorageEnabled","type":"propertyDef","startIndex":1683,"stopIndex":1828,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12556":{"name":"isOfflineStorageEnabled","type":"propertyDef","startIndex":1831,"stopIndex":1967,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12557":{"name":"getAutoLoadKey","type":"propertyDef","startIndex":1970,"stopIndex":2108,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12558":{"name":"setAutoLoad","type":"propertyDef","startIndex":2111,"stopIndex":2221,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12559":{"name":"shouldAutoLoad","type":"propertyDef","startIndex":2224,"stopIndex":2338,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12560":{"name":"loadWorldLocally","type":"propertyDef","startIndex":2341,"stopIndex":2577,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12561":{"name":"deserializeChangeSetFromLocalStorage","type":"propertyDef","startIndex":2580,"stopIndex":2952,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12562":{"name":"saveWorldLocally","type":"propertyDef","startIndex":2955,"stopIndex":4188,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12552},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12563":{"name":"keys","type":"propertyDef","startIndex":4207,"stopIndex":4404,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12564},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12564":{"name":"helpers","type":"categoryDef","startIndex":4193,"stopIndex":4917,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12563},{"__isSmartRef__":true,"id":12565},{"__isSmartRef__":true,"id":12566}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12565":{"name":"data","type":"propertyDef","startIndex":4407,"stopIndex":4623,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12564},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12566":{"name":"truthinessOf","type":"propertyDef","startIndex":4626,"stopIndex":4916,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12564},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12550},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12567":{"name":null,"type":"comment","startIndex":4921,"stopIndex":4921,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12568":{"name":"OfflineStorage","type":"klassExtensionDef","startIndex":4922,"stopIndex":5881,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12569},{"__isSmartRef__":true,"id":12571}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12570}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12569":{"name":"available","type":"propertyDef","startIndex":4954,"stopIndex":5326,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12570},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12570":{"name":"default category","type":"categoryDef","startIndex":4952,"stopIndex":5878,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12569},{"__isSmartRef__":true,"id":12571}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12571":{"name":"enableOfflineStorage","type":"propertyDef","startIndex":5329,"stopIndex":5877,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12570},"className":"OfflineStorage","_owner":{"__isSmartRef__":true,"id":12568},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12572":{"name":null,"type":"comment","startIndex":5882,"stopIndex":5882,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12573":{"name":"AutosaveAgent","type":"klassDef","startIndex":5883,"stopIndex":6108,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12574}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12575}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12574":{"name":"initialize","type":"propertyDef","startIndex":5918,"stopIndex":6104,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12575},"className":"AutosaveAgent","_owner":{"__isSmartRef__":true,"id":12573},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12575":{"name":"default category","type":"categoryDef","startIndex":5916,"stopIndex":6105,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12574}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12576":{"name":null,"type":"comment","startIndex":6109,"stopIndex":6109,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12577":{"name":null,"type":"unknown","startIndex":6110,"stopIndex":6328,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12578":{"name":null,"type":"comment","startIndex":6329,"stopIndex":6329,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12579":{"name":"AutosaveUserInteractionMonitorLayer","type":"copDef","startIndex":6330,"stopIndex":6591,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12580}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12580":{"name":"Event","type":"copSubElement","startIndex":6379,"stopIndex":6589,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12581}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":12579},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12581":{"name":"initialize","type":"propertyDef","startIndex":6401,"stopIndex":6587,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12582},"_owner":{"__isSmartRef__":true,"id":12580},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12582":{"name":"default category","type":"categoryDef","startIndex":69,"stopIndex":258,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12581}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12583":{"name":null,"type":"comment","startIndex":6592,"stopIndex":6643,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12584":{"name":"UUIDGenerationLayer","type":"copDef","startIndex":6644,"stopIndex":7071,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12585},{"__isSmartRef__":true,"id":12586}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12585":{"name":"beGlobal()","type":"copSubElement","startIndex":6678,"stopIndex":6689,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":12584},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12586":{"name":"ObjectGraphLinearizer","type":"copSubElement","startIndex":6690,"stopIndex":7069,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12587}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":12584},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12587":{"name":"newId","type":"propertyDef","startIndex":6730,"stopIndex":7067,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12588},"_owner":{"__isSmartRef__":true,"id":12586},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12588":{"name":"default category","type":"categoryDef","startIndex":84,"stopIndex":424,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12587}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12589":{"name":"UUID","type":"klassDef","startIndex":7072,"stopIndex":8883,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12590},{"__isSmartRef__":true,"id":12592},{"__isSmartRef__":true,"id":12594},{"__isSmartRef__":true,"id":12595}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12591},{"__isSmartRef__":true,"id":12593}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12590":{"name":"initialize","type":"propertyDef","startIndex":7113,"stopIndex":7332,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12591},"className":"UUID","_owner":{"__isSmartRef__":true,"id":12589},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12591":{"name":"generation","type":"categoryDef","startIndex":7096,"stopIndex":7336,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12590}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12592":{"name":"getId","type":"propertyDef","startIndex":7364,"stopIndex":7405,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12593},"className":"UUID","_owner":{"__isSmartRef__":true,"id":12589},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12593":{"name":"helpers & accessors","type":"categoryDef","startIndex":7338,"stopIndex":8880,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12592},{"__isSmartRef__":true,"id":12594},{"__isSmartRef__":true,"id":12595}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12594":{"name":"getShortHashLength","type":"propertyDef","startIndex":7408,"stopIndex":7888,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12593},"className":"UUID","_owner":{"__isSmartRef__":true,"id":12589},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12595":{"name":"getShortHashLengthForStringArray","type":"propertyDef","startIndex":7891,"stopIndex":8879,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12593},"className":"UUID","_owner":{"__isSmartRef__":true,"id":12589},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12596":{"name":null,"type":"comment","startIndex":8884,"stopIndex":8885,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12597":{"name":"StorageMonitorMorph","type":"klassDef","startIndex":8886,"stopIndex":9732,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12598},{"__isSmartRef__":true,"id":12600},{"__isSmartRef__":true,"id":12601},{"__isSmartRef__":true,"id":12602}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"WindowMorph","categories":[{"__isSmartRef__":true,"id":12599}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12598":{"name":"initialize","type":"propertyDef","startIndex":8932,"stopIndex":9500,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12599},"className":"StorageMonitorMorph","_owner":{"__isSmartRef__":true,"id":12597},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12599":{"name":"default category","type":"categoryDef","startIndex":8930,"stopIndex":9729,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12598},{"__isSmartRef__":true,"id":12600},{"__isSmartRef__":true,"id":12601},{"__isSmartRef__":true,"id":12602}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12600":{"name":"update","type":"propertyDef","startIndex":9503,"stopIndex":9602,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12599},"className":"StorageMonitorMorph","_owner":{"__isSmartRef__":true,"id":12597},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12601":{"name":"startSteppingScripts","type":"propertyDef","startIndex":9605,"stopIndex":9685,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12599},"className":"StorageMonitorMorph","_owner":{"__isSmartRef__":true,"id":12597},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12602":{"name":"nextStep","type":"propertyDef","startIndex":9688,"stopIndex":9728,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12599},"className":"StorageMonitorMorph","_owner":{"__isSmartRef__":true,"id":12597},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12603":{"name":null,"type":"comment","startIndex":9733,"stopIndex":9733,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12604":{"name":"URL","type":"klassExtensionDef","startIndex":9734,"stopIndex":9814,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12605}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12606}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12605":{"name":"localStorageHash","type":"propertyDef","startIndex":9752,"stopIndex":9810,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12606},"className":"URL","_owner":{"__isSmartRef__":true,"id":12604},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12606":{"name":"default category","type":"categoryDef","startIndex":9749,"stopIndex":9811,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12605}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12607":{"name":null,"type":"comment","startIndex":9815,"stopIndex":9815,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12608":{"name":"JSONDiff","type":"klassDef","startIndex":9816,"stopIndex":16725,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12609},{"__isSmartRef__":true,"id":12611},{"__isSmartRef__":true,"id":12613},{"__isSmartRef__":true,"id":12615},{"__isSmartRef__":true,"id":12616},{"__isSmartRef__":true,"id":12617},{"__isSmartRef__":true,"id":12618},{"__isSmartRef__":true,"id":12619},{"__isSmartRef__":true,"id":12621},{"__isSmartRef__":true,"id":12622},{"__isSmartRef__":true,"id":12623},{"__isSmartRef__":true,"id":12624},{"__isSmartRef__":true,"id":12625},{"__isSmartRef__":true,"id":12626}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12610},{"__isSmartRef__":true,"id":12612},{"__isSmartRef__":true,"id":12614},{"__isSmartRef__":true,"id":12620}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12609":{"name":"initialize","type":"propertyDef","startIndex":9867,"stopIndex":10194,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12610},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12610":{"name":"object lifecycle","type":"categoryDef","startIndex":9845,"stopIndex":10196,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12609}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12611":{"name":"applyTo","type":"propertyDef","startIndex":10216,"stopIndex":10855,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12612},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12612":{"name":"application","type":"categoryDef","startIndex":10199,"stopIndex":10857,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12611}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12613":{"name":"isEmpty","type":"propertyDef","startIndex":10885,"stopIndex":11017,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12614},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12614":{"name":"convenience methods","type":"categoryDef","startIndex":10860,"stopIndex":14076,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12613},{"__isSmartRef__":true,"id":12615},{"__isSmartRef__":true,"id":12616},{"__isSmartRef__":true,"id":12617},{"__isSmartRef__":true,"id":12618}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12615":{"name":"getRichText","type":"propertyDef","startIndex":11020,"stopIndex":11120,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12614},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12616":{"name":"getExplorableDiff","type":"propertyDef","startIndex":11123,"stopIndex":11480,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12614},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12617":{"name":"constructDiffedWorldTree","type":"propertyDef","startIndex":11483,"stopIndex":12229,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12614},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12618":{"name":"stripWorldTreeFromDiff","type":"propertyDef","startIndex":12232,"stopIndex":14074,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12614},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12619":{"name":"wasAddedInDiff","type":"propertyDef","startIndex":14093,"stopIndex":14205,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12620},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12620":{"name":"helpers","type":"categoryDef","startIndex":14079,"stopIndex":16722,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12619},{"__isSmartRef__":true,"id":12621},{"__isSmartRef__":true,"id":12622},{"__isSmartRef__":true,"id":12623},{"__isSmartRef__":true,"id":12624},{"__isSmartRef__":true,"id":12625},{"__isSmartRef__":true,"id":12626}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12621":{"name":"wasRemovedInDiff","type":"propertyDef","startIndex":14208,"stopIndex":14429,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12620},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12622":{"name":"wasChangedInDiff","type":"propertyDef","startIndex":14432,"stopIndex":14548,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12620},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12623":{"name":"getSubDiffForAddedKey","type":"propertyDef","startIndex":14551,"stopIndex":14712,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12620},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12624":{"name":"getSubDiffForChangedKey","type":"propertyDef","startIndex":14715,"stopIndex":14880,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12620},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12625":{"name":"coloredKeyValuePair","type":"propertyDef","startIndex":14883,"stopIndex":15181,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12620},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12626":{"name":"prettyPrintDiff","type":"propertyDef","startIndex":15184,"stopIndex":16721,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12620},"className":"JSONDiff","_owner":{"__isSmartRef__":true,"id":12608},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12627":{"name":null,"type":"comment","startIndex":16726,"stopIndex":16726,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12628":{"name":"JSONDiffer","type":"klassDef","startIndex":16727,"stopIndex":18048,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12629},{"__isSmartRef__":true,"id":12631},{"__isSmartRef__":true,"id":12633}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12630},{"__isSmartRef__":true,"id":12632}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12629":{"name":"initialize","type":"propertyDef","startIndex":16780,"stopIndex":16807,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12630},"className":"JSONDiffer","_owner":{"__isSmartRef__":true,"id":12628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12630":{"name":"object lifecycle","type":"categoryDef","startIndex":16758,"stopIndex":16809,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12629}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12631":{"name":"diff","type":"propertyDef","startIndex":16826,"stopIndex":16900,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12632},"className":"JSONDiffer","_owner":{"__isSmartRef__":true,"id":12628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12632":{"name":"diffing","type":"categoryDef","startIndex":16812,"stopIndex":18045,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12631},{"__isSmartRef__":true,"id":12633}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12633":{"name":"rawDiff","type":"propertyDef","startIndex":16903,"stopIndex":18044,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12632},"className":"JSONDiffer","_owner":{"__isSmartRef__":true,"id":12628},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12634":{"name":null,"type":"comment","startIndex":18049,"stopIndex":18049,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12635":{"name":"JSONDiffer","type":"klassExtensionDef","startIndex":18050,"stopIndex":18145,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12636},{"__isSmartRef__":true,"id":12638},{"__isSmartRef__":true,"id":12639}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12637}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12636":{"name":"CHANGED","type":"propertyDef","startIndex":18078,"stopIndex":18099,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12637},"className":"JSONDiffer","_owner":{"__isSmartRef__":true,"id":12635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12637":{"name":"default category","type":"categoryDef","startIndex":18076,"stopIndex":18142,"fileName":"lively/Persistence.js","_subElements":[{"__isSmartRef__":true,"id":12636},{"__isSmartRef__":true,"id":12638},{"__isSmartRef__":true,"id":12639}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12638":{"name":"ADDED","type":"propertyDef","startIndex":18101,"stopIndex":18118,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12637},"className":"JSONDiffer","_owner":{"__isSmartRef__":true,"id":12635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12639":{"name":"REMOVED","type":"propertyDef","startIndex":18120,"stopIndex":18141,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12637},"className":"JSONDiffer","_owner":{"__isSmartRef__":true,"id":12635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12640":{"name":null,"type":"comment","startIndex":18146,"stopIndex":18146,"fileName":"lively/Persistence.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12641":{"target":{"__isSmartRef__":true,"id":12642},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Presentation.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12642":{"name":"lively.Presentation","type":"moduleDef","startIndex":1136,"stopIndex":11097,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12643},{"__isSmartRef__":true,"id":12644},{"__isSmartRef__":true,"id":12645},{"__isSmartRef__":true,"id":12646},{"__isSmartRef__":true,"id":12659},{"__isSmartRef__":true,"id":12660},{"__isSmartRef__":true,"id":12687},{"__isSmartRef__":true,"id":12688},{"__isSmartRef__":true,"id":12691},{"__isSmartRef__":true,"id":12692},{"__isSmartRef__":true,"id":12697},{"__isSmartRef__":true,"id":12698},{"__isSmartRef__":true,"id":12704},{"__isSmartRef__":true,"id":12712},{"__isSmartRef__":true,"id":12716},{"__isSmartRef__":true,"id":12719}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12643":{"name":null,"type":"comment","startIndex":1226,"stopIndex":1226,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12644":{"name":null,"type":"unknown","startIndex":1227,"stopIndex":1294,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12645":{"name":null,"type":"comment","startIndex":1295,"stopIndex":1295,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12646":{"name":"lively.Presentation","type":"klassExtensionDef","startIndex":1296,"stopIndex":3474,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12647},{"__isSmartRef__":true,"id":12649},{"__isSmartRef__":true,"id":12650},{"__isSmartRef__":true,"id":12651},{"__isSmartRef__":true,"id":12652},{"__isSmartRef__":true,"id":12653},{"__isSmartRef__":true,"id":12654},{"__isSmartRef__":true,"id":12655},{"__isSmartRef__":true,"id":12656},{"__isSmartRef__":true,"id":12657},{"__isSmartRef__":true,"id":12658}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12648}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12647":{"name":"currentSlideNo","type":"propertyDef","startIndex":1333,"stopIndex":1505,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12648":{"name":"default category","type":"categoryDef","startIndex":1331,"stopIndex":3471,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12647},{"__isSmartRef__":true,"id":12649},{"__isSmartRef__":true,"id":12650},{"__isSmartRef__":true,"id":12651},{"__isSmartRef__":true,"id":12652},{"__isSmartRef__":true,"id":12653},{"__isSmartRef__":true,"id":12654},{"__isSmartRef__":true,"id":12655},{"__isSmartRef__":true,"id":12656},{"__isSmartRef__":true,"id":12657},{"__isSmartRef__":true,"id":12658}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12649":{"name":"maxSlideNo","type":"propertyDef","startIndex":1507,"stopIndex":1601,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12650":{"name":"currentSlide","type":"propertyDef","startIndex":1603,"stopIndex":1676,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12651":{"name":"gotoSlide","type":"propertyDef","startIndex":1678,"stopIndex":1965,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12652":{"name":"prevSlide","type":"propertyDef","startIndex":1967,"stopIndex":2125,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12653":{"name":"nextSlide","type":"propertyDef","startIndex":2127,"stopIndex":2285,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12654":{"name":"exitSlideView","type":"propertyDef","startIndex":2287,"stopIndex":2396,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12655":{"name":"gotoSlideDialog","type":"propertyDef","startIndex":2398,"stopIndex":2613,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12656":{"name":"addSlide","type":"propertyDef","startIndex":2615,"stopIndex":3154,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12657":{"name":"activateSlideNamed","type":"propertyDef","startIndex":3156,"stopIndex":3303,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12658":{"name":"activateSlideWithNo","type":"propertyDef","startIndex":3305,"stopIndex":3467,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12648},"className":"lively.Presentation","_owner":{"__isSmartRef__":true,"id":12646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12659":{"name":null,"type":"comment","startIndex":3475,"stopIndex":3475,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12660":{"name":"lively.Presentation.PageMorph","type":"klassDef","startIndex":3476,"stopIndex":7322,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12661},{"__isSmartRef__":true,"id":12663},{"__isSmartRef__":true,"id":12664},{"__isSmartRef__":true,"id":12665},{"__isSmartRef__":true,"id":12667},{"__isSmartRef__":true,"id":12669},{"__isSmartRef__":true,"id":12670},{"__isSmartRef__":true,"id":12671},{"__isSmartRef__":true,"id":12673},{"__isSmartRef__":true,"id":12674},{"__isSmartRef__":true,"id":12676},{"__isSmartRef__":true,"id":12677},{"__isSmartRef__":true,"id":12678},{"__isSmartRef__":true,"id":12680},{"__isSmartRef__":true,"id":12681},{"__isSmartRef__":true,"id":12683},{"__isSmartRef__":true,"id":12685},{"__isSmartRef__":true,"id":12686}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":12662},{"__isSmartRef__":true,"id":12666},{"__isSmartRef__":true,"id":12668},{"__isSmartRef__":true,"id":12672},{"__isSmartRef__":true,"id":12675},{"__isSmartRef__":true,"id":12679},{"__isSmartRef__":true,"id":12682},{"__isSmartRef__":true,"id":12684}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12661":{"name":"isSlideMorph","type":"propertyDef","startIndex":3540,"stopIndex":3562,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12662},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12662":{"name":"properties","type":"categoryDef","startIndex":3524,"stopIndex":3636,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12661},{"__isSmartRef__":true,"id":12663},{"__isSmartRef__":true,"id":12664}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12663":{"name":"showsMorphMenu","type":"propertyDef","startIndex":3564,"stopIndex":3588,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12662},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12664":{"name":"style","type":"propertyDef","startIndex":3589,"stopIndex":3633,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12662},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12665":{"name":"initialize","type":"propertyDef","startIndex":3655,"stopIndex":3865,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12666},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12666":{"name":"initialzing","type":"categoryDef","startIndex":3638,"stopIndex":3868,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12665}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12667":{"name":"activate","type":"propertyDef","startIndex":3883,"stopIndex":4006,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12668},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12668":{"name":"control","type":"categoryDef","startIndex":3870,"stopIndex":5056,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12667},{"__isSmartRef__":true,"id":12669},{"__isSmartRef__":true,"id":12670}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12669":{"name":"activateWithOverlay","type":"propertyDef","startIndex":4008,"stopIndex":4941,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12668},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12670":{"name":"deactivate","type":"propertyDef","startIndex":4943,"stopIndex":5051,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12668},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12671":{"name":"getSlideNumber","type":"propertyDef","startIndex":5073,"stopIndex":5250,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12672},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12672":{"name":"accessing","type":"categoryDef","startIndex":5058,"stopIndex":5373,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12671},{"__isSmartRef__":true,"id":12673}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12673":{"name":"morphBeneath","type":"propertyDef","startIndex":5252,"stopIndex":5369,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12672},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12674":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":5402,"stopIndex":5437,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12675},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12675":{"name":"grabbing and dropping","type":"categoryDef","startIndex":5375,"stopIndex":5808,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12674},{"__isSmartRef__":true,"id":12676},{"__isSmartRef__":true,"id":12677}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12676":{"name":"acceptsDropping","type":"propertyDef","startIndex":5439,"stopIndex":5592,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12675},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12677":{"name":"addFramedMorph","type":"propertyDef","startIndex":5594,"stopIndex":5805,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12675},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12678":{"name":"morphMenu","type":"propertyDef","startIndex":5820,"stopIndex":6070,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12679},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12679":{"name":"menu","type":"categoryDef","startIndex":5810,"stopIndex":6369,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12678},{"__isSmartRef__":true,"id":12680}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12680":{"name":"morphMenuItems","type":"propertyDef","startIndex":6072,"stopIndex":6365,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12679},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12681":{"name":"toggleFullScreen","type":"propertyDef","startIndex":6387,"stopIndex":6508,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12682},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12682":{"name":"fullscreen","type":"categoryDef","startIndex":6371,"stopIndex":6512,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12681}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12683":{"name":"handlesMouseDown","type":"propertyDef","startIndex":6532,"stopIndex":6568,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12684},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12684":{"name":"mouse events","type":"categoryDef","startIndex":6514,"stopIndex":7319,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12683},{"__isSmartRef__":true,"id":12685},{"__isSmartRef__":true,"id":12686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12685":{"name":"onMouseDown","type":"propertyDef","startIndex":6570,"stopIndex":6727,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12684},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12686":{"name":"makeSelection","type":"propertyDef","startIndex":6729,"stopIndex":7313,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12684},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12660},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12687":{"name":null,"type":"comment","startIndex":7323,"stopIndex":7323,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12688":{"name":"lively.Presentation.PageMorph","type":"klassExtensionDef","startIndex":7324,"stopIndex":7574,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12689}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12690}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12689":{"name":"allSceneNames","type":"propertyDef","startIndex":7371,"stopIndex":7569,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12690},"className":"lively.Presentation.PageMorph","_owner":{"__isSmartRef__":true,"id":12688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12690":{"name":"default category","type":"categoryDef","startIndex":7369,"stopIndex":7571,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12689}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12691":{"name":null,"type":"comment","startIndex":7575,"stopIndex":7575,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12692":{"name":"PresentationShortcutLayer","type":"copDef","startIndex":7576,"stopIndex":8306,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12693},{"__isSmartRef__":true,"id":12694}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12693":{"name":"beGlobal()","type":"copSubElement","startIndex":7616,"stopIndex":7626,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":12692},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12694":{"name":"WorldMorph","type":"copSubElement","startIndex":7627,"stopIndex":8304,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12695}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":12692},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12695":{"name":"onKeyDown","type":"propertyDef","startIndex":7655,"stopIndex":8297,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12696},"_owner":{"__isSmartRef__":true,"id":12694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12696":{"name":"default category","type":"categoryDef","startIndex":77,"stopIndex":727,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12695}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12697":{"name":null,"type":"comment","startIndex":8307,"stopIndex":8325,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12698":{"name":"ShowShurtcutsLayer","type":"copDef","startIndex":8326,"stopIndex":8779,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12699}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12699":{"name":"TextMorph","type":"copSubElement","startIndex":8358,"stopIndex":8777,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12700},{"__isSmartRef__":true,"id":12702},{"__isSmartRef__":true,"id":12703}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":12698},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12700":{"name":"doPrintit","type":"propertyDef","startIndex":8384,"stopIndex":8509,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12701},"_owner":{"__isSmartRef__":true,"id":12699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12701":{"name":"default category","type":"categoryDef","startIndex":56,"stopIndex":450,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12700},{"__isSmartRef__":true,"id":12702},{"__isSmartRef__":true,"id":12703}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12702":{"name":"doDoit","type":"propertyDef","startIndex":8511,"stopIndex":8640,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12701},"_owner":{"__isSmartRef__":true,"id":12699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12703":{"name":"doSave","type":"propertyDef","startIndex":8642,"stopIndex":8774,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12701},"_owner":{"__isSmartRef__":true,"id":12699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12704":{"name":"NewMorphicPresentationCompatLayer","type":"copDef","startIndex":8780,"stopIndex":9794,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12705}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12705":{"name":"lively.Presentation.PageMorph","type":"copSubElement","startIndex":8828,"stopIndex":9792,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12706},{"__isSmartRef__":true,"id":12708},{"__isSmartRef__":true,"id":12709},{"__isSmartRef__":true,"id":12710},{"__isSmartRef__":true,"id":12711}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":12704},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12706":{"name":"style","type":"propertyDef","startIndex":8874,"stopIndex":8983,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12707},"_owner":{"__isSmartRef__":true,"id":12705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12707":{"name":"default category","type":"categoryDef","startIndex":92,"stopIndex":1011,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12706},{"__isSmartRef__":true,"id":12708},{"__isSmartRef__":true,"id":12709},{"__isSmartRef__":true,"id":12710},{"__isSmartRef__":true,"id":12711}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12708":{"name":"initialize","type":"propertyDef","startIndex":8985,"stopIndex":9389,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12707},"_owner":{"__isSmartRef__":true,"id":12705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12709":{"name":"makeSelection","type":"propertyDef","startIndex":9391,"stopIndex":9431,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12707},"_owner":{"__isSmartRef__":true,"id":12705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12710":{"name":"morphMenuItems","type":"propertyDef","startIndex":9433,"stopIndex":9672,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12707},"_owner":{"__isSmartRef__":true,"id":12705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12711":{"name":"onMouseDown","type":"propertyDef","startIndex":9674,"stopIndex":9788,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12707},"_owner":{"__isSmartRef__":true,"id":12705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12712":{"name":"NewMorphicPresentationShortcutLayer","type":"copDef","startIndex":9795,"stopIndex":10680,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12713}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12713":{"name":"WorldMorph","type":"copSubElement","startIndex":9845,"stopIndex":10678,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12714}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":12712},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12714":{"name":"onKeyDown","type":"propertyDef","startIndex":9872,"stopIndex":10671,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12715},"_owner":{"__isSmartRef__":true,"id":12713},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12715":{"name":"default category","type":"categoryDef","startIndex":75,"stopIndex":882,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12714}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12716":{"name":"Widget","type":"klassExtensionDef","startIndex":10681,"stopIndex":10842,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12717}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12718}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12717":{"name":"open","type":"propertyDef","startIndex":10710,"stopIndex":10837,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12718},"className":"Widget","_owner":{"__isSmartRef__":true,"id":12716},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12718":{"name":"view","type":"categoryDef","startIndex":10700,"stopIndex":10839,"fileName":"lively/Presentation.js","_subElements":[{"__isSmartRef__":true,"id":12717}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12719":{"name":"setupForNewLively","type":"functionDef","startIndex":10843,"stopIndex":11093,"fileName":"lively/Presentation.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12720":{"target":{"__isSmartRef__":true,"id":12721},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Rendering.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12721":{"name":"lively.Rendering","type":"moduleDef","startIndex":0,"stopIndex":101,"fileName":"lively/Rendering.js","_subElements":[{"__isSmartRef__":true,"id":12722}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12722":{"name":null,"type":"comment","startIndex":57,"stopIndex":82,"fileName":"lively/Rendering.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12723":{"target":{"__isSmartRef__":true,"id":12724},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/rhino-compat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12724":{"name":"lively/rhino-compat.js","type":"completeFileDef","startIndex":0,"stopIndex":1489,"fileName":"lively/rhino-compat.js","_subElements":[{"__isSmartRef__":true,"id":12725},{"__isSmartRef__":true,"id":12726},{"__isSmartRef__":true,"id":12727},{"__isSmartRef__":true,"id":12728},{"__isSmartRef__":true,"id":12731},{"__isSmartRef__":true,"id":12732},{"__isSmartRef__":true,"id":12733},{"__isSmartRef__":true,"id":12734}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12725":{"name":null,"type":"comment","startIndex":0,"stopIndex":1185,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12726":{"name":"parent","type":"propertyDef","startIndex":1186,"stopIndex":1209,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"window","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12727":{"name":null,"type":"comment","startIndex":1210,"stopIndex":1210,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12728":{"name":"window.console","type":"objectDef","startIndex":1211,"stopIndex":1422,"fileName":"lively/rhino-compat.js","_subElements":[{"__isSmartRef__":true,"id":12729}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12729":{"name":"log","type":"propertyDef","startIndex":1231,"stopIndex":1419,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12730},"_owner":{"__isSmartRef__":true,"id":12728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12730":{"name":"default category","type":"categoryDef","startIndex":17,"stopIndex":209,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12729}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12731":{"name":null,"type":"comment","startIndex":1423,"stopIndex":1423,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12732":{"name":"navigator","type":"propertyDef","startIndex":1424,"stopIndex":1466,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"window","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12733":{"name":"alert","type":"propertyDef","startIndex":1467,"stopIndex":1488,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"window","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12734":{"name":null,"type":"comment","startIndex":1489,"stopIndex":1489,"fileName":"lively/rhino-compat.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12735":{"target":{"__isSmartRef__":true,"id":12736},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/scene.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"12736":{"name":"lively.scene","type":"moduleDef","startIndex":1404,"stopIndex":94649,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12737},{"__isSmartRef__":true,"id":12738},{"__isSmartRef__":true,"id":12739},{"__isSmartRef__":true,"id":12740},{"__isSmartRef__":true,"id":12741},{"__isSmartRef__":true,"id":12796},{"__isSmartRef__":true,"id":12797},{"__isSmartRef__":true,"id":12801},{"__isSmartRef__":true,"id":12802},{"__isSmartRef__":true,"id":12806},{"__isSmartRef__":true,"id":12807},{"__isSmartRef__":true,"id":12810},{"__isSmartRef__":true,"id":12811},{"__isSmartRef__":true,"id":12819},{"__isSmartRef__":true,"id":12820},{"__isSmartRef__":true,"id":12821},{"__isSmartRef__":true,"id":12822},{"__isSmartRef__":true,"id":12823},{"__isSmartRef__":true,"id":12824},{"__isSmartRef__":true,"id":12825},{"__isSmartRef__":true,"id":12826},{"__isSmartRef__":true,"id":13313},{"__isSmartRef__":true,"id":13314},{"__isSmartRef__":true,"id":13378}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12737":{"name":null,"type":"comment","startIndex":1473,"stopIndex":1473,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12738":{"name":"locateCanvas","type":"propertyDef","startIndex":1474,"stopIndex":3407,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Global","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12739":{"name":null,"type":"unknown","startIndex":3408,"stopIndex":3433,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12740":{"name":null,"type":"comment","startIndex":3434,"stopIndex":3434,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12741":{"name":"lively.data.Wrapper","type":"klassDef","startIndex":3435,"stopIndex":18469,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12742},{"__isSmartRef__":true,"id":12744},{"__isSmartRef__":true,"id":12746},{"__isSmartRef__":true,"id":12747},{"__isSmartRef__":true,"id":12748},{"__isSmartRef__":true,"id":12749},{"__isSmartRef__":true,"id":12750},{"__isSmartRef__":true,"id":12752},{"__isSmartRef__":true,"id":12753},{"__isSmartRef__":true,"id":12754},{"__isSmartRef__":true,"id":12755},{"__isSmartRef__":true,"id":12756},{"__isSmartRef__":true,"id":12757},{"__isSmartRef__":true,"id":12758},{"__isSmartRef__":true,"id":12759},{"__isSmartRef__":true,"id":12760},{"__isSmartRef__":true,"id":12761},{"__isSmartRef__":true,"id":12762},{"__isSmartRef__":true,"id":12763},{"__isSmartRef__":true,"id":12764},{"__isSmartRef__":true,"id":12765},{"__isSmartRef__":true,"id":12766},{"__isSmartRef__":true,"id":12767},{"__isSmartRef__":true,"id":12769},{"__isSmartRef__":true,"id":12770},{"__isSmartRef__":true,"id":12772},{"__isSmartRef__":true,"id":12773},{"__isSmartRef__":true,"id":12774},{"__isSmartRef__":true,"id":12775},{"__isSmartRef__":true,"id":12776},{"__isSmartRef__":true,"id":12777},{"__isSmartRef__":true,"id":12778},{"__isSmartRef__":true,"id":12779},{"__isSmartRef__":true,"id":12780},{"__isSmartRef__":true,"id":12781},{"__isSmartRef__":true,"id":12782},{"__isSmartRef__":true,"id":12783},{"__isSmartRef__":true,"id":12784},{"__isSmartRef__":true,"id":12785},{"__isSmartRef__":true,"id":12786},{"__isSmartRef__":true,"id":12788},{"__isSmartRef__":true,"id":12789},{"__isSmartRef__":true,"id":12790},{"__isSmartRef__":true,"id":12791},{"__isSmartRef__":true,"id":12792},{"__isSmartRef__":true,"id":12794},{"__isSmartRef__":true,"id":12795}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":12743},{"__isSmartRef__":true,"id":12745},{"__isSmartRef__":true,"id":12751},{"__isSmartRef__":true,"id":12768},{"__isSmartRef__":true,"id":12771},{"__isSmartRef__":true,"id":12787},{"__isSmartRef__":true,"id":12793}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12742":{"name":"documentation","type":"propertyDef","startIndex":3493,"stopIndex":3562,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12743},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12743":{"name":"documentation","type":"categoryDef","startIndex":3474,"stopIndex":3565,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12742}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12744":{"name":"rawNode","type":"propertyDef","startIndex":3586,"stopIndex":3600,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12745},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12745":{"name":"initializing","type":"categoryDef","startIndex":3567,"stopIndex":4070,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12744},{"__isSmartRef__":true,"id":12746},{"__isSmartRef__":true,"id":12747},{"__isSmartRef__":true,"id":12748},{"__isSmartRef__":true,"id":12749}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12746":{"name":"deserialize","type":"propertyDef","startIndex":3603,"stopIndex":3775,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12745},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12747":{"name":"copyFrom","type":"propertyDef","startIndex":3778,"stopIndex":3884,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12745},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12748":{"name":"copy","type":"propertyDef","startIndex":3887,"stopIndex":4015,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12745},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12749":{"name":"doNotCopyProperties","type":"propertyDef","startIndex":4017,"stopIndex":4064,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12745},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12750":{"name":"getType","type":"propertyDef","startIndex":4088,"stopIndex":4283,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12751":{"name":"accessing","type":"categoryDef","startIndex":4072,"stopIndex":6758,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12750},{"__isSmartRef__":true,"id":12752},{"__isSmartRef__":true,"id":12753},{"__isSmartRef__":true,"id":12754},{"__isSmartRef__":true,"id":12755},{"__isSmartRef__":true,"id":12756},{"__isSmartRef__":true,"id":12757},{"__isSmartRef__":true,"id":12758},{"__isSmartRef__":true,"id":12759},{"__isSmartRef__":true,"id":12760},{"__isSmartRef__":true,"id":12761},{"__isSmartRef__":true,"id":12762},{"__isSmartRef__":true,"id":12763},{"__isSmartRef__":true,"id":12764},{"__isSmartRef__":true,"id":12765},{"__isSmartRef__":true,"id":12766}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12752":{"name":"newId","type":"propertyDef","startIndex":4286,"stopIndex":4647,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12753":{"name":"id","type":"propertyDef","startIndex":4650,"stopIndex":4742,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12754":{"name":"setId","type":"propertyDef","startIndex":4745,"stopIndex":5055,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12755":{"name":"setDerivedId","type":"propertyDef","startIndex":5058,"stopIndex":5150,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12756":{"name":"uri","type":"propertyDef","startIndex":5153,"stopIndex":5230,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12757":{"name":"getLivelyTrait","type":"propertyDef","startIndex":5233,"stopIndex":5430,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12758":{"name":"setLivelyTrait","type":"propertyDef","startIndex":5433,"stopIndex":5613,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12759":{"name":"removeLivelyTrait","type":"propertyDef","startIndex":5616,"stopIndex":5787,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12760":{"name":"getLengthTrait","type":"propertyDef","startIndex":5790,"stopIndex":5936,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12761":{"name":"setLengthTrait","type":"propertyDef","startIndex":5939,"stopIndex":6012,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12762":{"name":"getTrait","type":"propertyDef","startIndex":6015,"stopIndex":6141,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12763":{"name":"setTrait","type":"propertyDef","startIndex":6144,"stopIndex":6274,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12764":{"name":"removeTrait","type":"propertyDef","startIndex":6277,"stopIndex":6388,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12765":{"name":"getDefsNode","type":"propertyDef","startIndex":6391,"stopIndex":6690,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12766":{"name":"canvas","type":"propertyDef","startIndex":6692,"stopIndex":6753,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12751},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12767":{"name":"removeRawNode","type":"propertyDef","startIndex":6783,"stopIndex":6923,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12768},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12768":{"name":"rawnode handling","type":"categoryDef","startIndex":6760,"stopIndex":7124,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12767},{"__isSmartRef__":true,"id":12769}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12769":{"name":"replaceRawNodeChildren","type":"propertyDef","startIndex":6926,"stopIndex":7120,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12768},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12770":{"name":"doNotSerialize","type":"propertyDef","startIndex":7150,"stopIndex":7193,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12771":{"name":"XML serialization","type":"categoryDef","startIndex":7126,"stopIndex":15799,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12770},{"__isSmartRef__":true,"id":12772},{"__isSmartRef__":true,"id":12773},{"__isSmartRef__":true,"id":12774},{"__isSmartRef__":true,"id":12775},{"__isSmartRef__":true,"id":12776},{"__isSmartRef__":true,"id":12777},{"__isSmartRef__":true,"id":12778},{"__isSmartRef__":true,"id":12779},{"__isSmartRef__":true,"id":12780},{"__isSmartRef__":true,"id":12781},{"__isSmartRef__":true,"id":12782},{"__isSmartRef__":true,"id":12783},{"__isSmartRef__":true,"id":12784},{"__isSmartRef__":true,"id":12785}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12772":{"name":"isPropertyOnIgnoreList","type":"propertyDef","startIndex":7196,"stopIndex":7355,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12773":{"name":"isPropertyOnIgnoreListInClassHierarchy","type":"propertyDef","startIndex":7358,"stopIndex":7592,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12774":{"name":"prepareForSerialization","type":"propertyDef","startIndex":7596,"stopIndex":7987,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12775":{"name":"appendHelperNode","type":"propertyDef","startIndex":7990,"stopIndex":8371,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12776":{"name":"prepareArrayPropertyForSerialization","type":"propertyDef","startIndex":8375,"stopIndex":9612,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12777":{"name":"prepareWrapperPropertyForSerialization","type":"propertyDef","startIndex":9616,"stopIndex":10801,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12778":{"name":"prepareRelayPropertyForSerialization","type":"propertyDef","startIndex":10805,"stopIndex":11506,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12779":{"name":"preparePropertyForSerialization","type":"propertyDef","startIndex":11509,"stopIndex":12423,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12780":{"name":"deserializeWidgetFromNode","type":"propertyDef","startIndex":12426,"stopIndex":12865,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12781":{"name":"deserializeValueFromNode","type":"propertyDef","startIndex":12869,"stopIndex":13612,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12782":{"name":"deserializeFieldFromNode","type":"propertyDef","startIndex":13617,"stopIndex":14284,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12783":{"name":"deserializeRelayFromNode","type":"propertyDef","startIndex":14287,"stopIndex":14820,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12784":{"name":"deserializeRecordFromNode","type":"propertyDef","startIndex":14824,"stopIndex":15177,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12785":{"name":"deserializeArrayFromNode","type":"propertyDef","startIndex":15181,"stopIndex":15795,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12771},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12786":{"name":"reference","type":"propertyDef","startIndex":15825,"stopIndex":15954,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12787},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12787":{"name":"system dictionary","type":"categoryDef","startIndex":15801,"stopIndex":18017,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12786},{"__isSmartRef__":true,"id":12788},{"__isSmartRef__":true,"id":12789},{"__isSmartRef__":true,"id":12790},{"__isSmartRef__":true,"id":12791}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12788":{"name":"dereference","type":"propertyDef","startIndex":15957,"stopIndex":16321,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12787},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12789":{"name":"ensureInDictionary","type":"propertyDef","startIndex":16324,"stopIndex":17348,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12787},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12790":{"name":"dictionary","type":"propertyDef","startIndex":17352,"stopIndex":17918,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12787},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12791":{"name":"resolveUriToObject","type":"propertyDef","startIndex":17921,"stopIndex":18015,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12787},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12792":{"name":"toString","type":"propertyDef","startIndex":18034,"stopIndex":18194,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12793},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12793":{"name":"debugging","type":"categoryDef","startIndex":18019,"stopIndex":18466,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12792},{"__isSmartRef__":true,"id":12794},{"__isSmartRef__":true,"id":12795}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12794":{"name":"inspect","type":"propertyDef","startIndex":18197,"stopIndex":18358,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12793},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12795":{"name":"toMarkupString","type":"propertyDef","startIndex":18361,"stopIndex":18464,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12793},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12796":{"name":null,"type":"comment","startIndex":18470,"stopIndex":18470,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12797":{"name":"lively.data.Wrapper","type":"klassExtensionDef","startIndex":18471,"stopIndex":18769,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12798},{"__isSmartRef__":true,"id":12800}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12799}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12798":{"name":"getEncodedType","type":"propertyDef","startIndex":18508,"stopIndex":18651,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12799},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12799":{"name":"default category","type":"categoryDef","startIndex":18506,"stopIndex":18766,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12798},{"__isSmartRef__":true,"id":12800}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12800":{"name":"isInstance","type":"propertyDef","startIndex":18654,"stopIndex":18765,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12799},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12801":{"name":null,"type":"comment","startIndex":18770,"stopIndex":18797,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12802":{"name":"lively.data.Wrapper","type":"klassExtensionDef","startIndex":18798,"stopIndex":19208,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12803},{"__isSmartRef__":true,"id":12805}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12804}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12803":{"name":"removeGarbageRelayNodes","type":"propertyDef","startIndex":18831,"stopIndex":18996,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12804},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12804":{"name":"default category","type":"categoryDef","startIndex":18829,"stopIndex":19205,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12803},{"__isSmartRef__":true,"id":12805}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12805":{"name":"removeGarbageFromRawNode","type":"propertyDef","startIndex":18999,"stopIndex":19204,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12804},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12802},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12806":{"name":null,"type":"comment","startIndex":19209,"stopIndex":19209,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12807":{"name":"lively.data.Wrapper","type":"klassExtensionDef","startIndex":19210,"stopIndex":19330,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12808}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12809}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12808":{"name":"collectAllUsedFills","type":"propertyDef","startIndex":19243,"stopIndex":19325,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12809},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12807},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12809":{"name":"default category","type":"categoryDef","startIndex":19241,"stopIndex":19327,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12808}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12810":{"name":null,"type":"comment","startIndex":19331,"stopIndex":19331,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12811":{"name":"lively.data.Wrapper","type":"klassExtensionDef","startIndex":19332,"stopIndex":22308,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12812},{"__isSmartRef__":true,"id":12814},{"__isSmartRef__":true,"id":12815},{"__isSmartRef__":true,"id":12816},{"__isSmartRef__":true,"id":12817},{"__isSmartRef__":true,"id":12818}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12813}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12812":{"name":"collectAllFillsInObjects","type":"propertyDef","startIndex":19370,"stopIndex":19569,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12813},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12811},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12813":{"name":"default category","type":"categoryDef","startIndex":19367,"stopIndex":22305,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12812},{"__isSmartRef__":true,"id":12814},{"__isSmartRef__":true,"id":12815},{"__isSmartRef__":true,"id":12816},{"__isSmartRef__":true,"id":12817},{"__isSmartRef__":true,"id":12818}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12814":{"name":"collectAllFillsInObject","type":"propertyDef","startIndex":19572,"stopIndex":20253,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12813},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12811},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12815":{"name":"collectSystemDictionaryGarbage","type":"propertyDef","startIndex":20256,"stopIndex":21665,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12813},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12811},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12816":{"name":"usedFills","type":"propertyDef","startIndex":21668,"stopIndex":21846,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12813},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12811},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12817":{"name":"allFillNodes","type":"propertyDef","startIndex":21849,"stopIndex":22144,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12813},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12811},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12818":{"name":"needDictionaryGC","type":"propertyDef","startIndex":22146,"stopIndex":22300,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12813},"className":"lively.data.Wrapper","_owner":{"__isSmartRef__":true,"id":12811},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12819":{"name":null,"type":"comment","startIndex":22309,"stopIndex":22309,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12820":{"name":null,"type":"unknown","startIndex":22310,"stopIndex":22743,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12821":{"name":null,"type":"comment","startIndex":22744,"stopIndex":22840,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12822":{"name":null,"type":"unknown","startIndex":22841,"stopIndex":22982,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12823":{"name":null,"type":"comment","startIndex":22983,"stopIndex":22984,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12824":{"name":null,"type":"unknown","startIndex":22985,"stopIndex":23141,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12825":{"name":null,"type":"comment","startIndex":23142,"stopIndex":23142,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12826":{"name":"namespace('lively.scene'), lively.data.Wrapper","type":"usingDef","startIndex":23143,"stopIndex":89441,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12827},{"__isSmartRef__":true,"id":12828},{"__isSmartRef__":true,"id":12856},{"__isSmartRef__":true,"id":12857},{"__isSmartRef__":true,"id":12858},{"__isSmartRef__":true,"id":12859},{"__isSmartRef__":true,"id":12865},{"__isSmartRef__":true,"id":12866},{"__isSmartRef__":true,"id":12876},{"__isSmartRef__":true,"id":12877},{"__isSmartRef__":true,"id":12881},{"__isSmartRef__":true,"id":12882},{"__isSmartRef__":true,"id":12886},{"__isSmartRef__":true,"id":12887},{"__isSmartRef__":true,"id":12903},{"__isSmartRef__":true,"id":12904},{"__isSmartRef__":true,"id":12907},{"__isSmartRef__":true,"id":12908},{"__isSmartRef__":true,"id":12923},{"__isSmartRef__":true,"id":12924},{"__isSmartRef__":true,"id":12927},{"__isSmartRef__":true,"id":12928},{"__isSmartRef__":true,"id":12946},{"__isSmartRef__":true,"id":12947},{"__isSmartRef__":true,"id":12950},{"__isSmartRef__":true,"id":12951},{"__isSmartRef__":true,"id":12971},{"__isSmartRef__":true,"id":12972},{"__isSmartRef__":true,"id":12975},{"__isSmartRef__":true,"id":12976},{"__isSmartRef__":true,"id":12979},{"__isSmartRef__":true,"id":12980},{"__isSmartRef__":true,"id":12988},{"__isSmartRef__":true,"id":12989},{"__isSmartRef__":true,"id":12992},{"__isSmartRef__":true,"id":12993},{"__isSmartRef__":true,"id":13001},{"__isSmartRef__":true,"id":13007},{"__isSmartRef__":true,"id":13008},{"__isSmartRef__":true,"id":13016},{"__isSmartRef__":true,"id":13021},{"__isSmartRef__":true,"id":13022},{"__isSmartRef__":true,"id":13030},{"__isSmartRef__":true,"id":13035},{"__isSmartRef__":true,"id":13036},{"__isSmartRef__":true,"id":13044},{"__isSmartRef__":true,"id":13049},{"__isSmartRef__":true,"id":13050},{"__isSmartRef__":true,"id":13058},{"__isSmartRef__":true,"id":13063},{"__isSmartRef__":true,"id":13064},{"__isSmartRef__":true,"id":13072},{"__isSmartRef__":true,"id":13077},{"__isSmartRef__":true,"id":13085},{"__isSmartRef__":true,"id":13090},{"__isSmartRef__":true,"id":13091},{"__isSmartRef__":true,"id":13099},{"__isSmartRef__":true,"id":13104},{"__isSmartRef__":true,"id":13105},{"__isSmartRef__":true,"id":13113},{"__isSmartRef__":true,"id":13118},{"__isSmartRef__":true,"id":13119},{"__isSmartRef__":true,"id":13126},{"__isSmartRef__":true,"id":13131},{"__isSmartRef__":true,"id":13132},{"__isSmartRef__":true,"id":13164},{"__isSmartRef__":true,"id":13165},{"__isSmartRef__":true,"id":13168},{"__isSmartRef__":true,"id":13169},{"__isSmartRef__":true,"id":13189},{"__isSmartRef__":true,"id":13190},{"__isSmartRef__":true,"id":13193},{"__isSmartRef__":true,"id":13194},{"__isSmartRef__":true,"id":13195},{"__isSmartRef__":true,"id":13196},{"__isSmartRef__":true,"id":13197},{"__isSmartRef__":true,"id":13198},{"__isSmartRef__":true,"id":13214},{"__isSmartRef__":true,"id":13215},{"__isSmartRef__":true,"id":13222},{"__isSmartRef__":true,"id":13223},{"__isSmartRef__":true,"id":13226},{"__isSmartRef__":true,"id":13227},{"__isSmartRef__":true,"id":13251},{"__isSmartRef__":true,"id":13252},{"__isSmartRef__":true,"id":13266},{"__isSmartRef__":true,"id":13267},{"__isSmartRef__":true,"id":13270},{"__isSmartRef__":true,"id":13271},{"__isSmartRef__":true,"id":13275},{"__isSmartRef__":true,"id":13276},{"__isSmartRef__":true,"id":13279},{"__isSmartRef__":true,"id":13280},{"__isSmartRef__":true,"id":13284},{"__isSmartRef__":true,"id":13285},{"__isSmartRef__":true,"id":13290},{"__isSmartRef__":true,"id":13291},{"__isSmartRef__":true,"id":13295},{"__isSmartRef__":true,"id":13296},{"__isSmartRef__":true,"id":13300},{"__isSmartRef__":true,"id":13301},{"__isSmartRef__":true,"id":13305},{"__isSmartRef__":true,"id":13306},{"__isSmartRef__":true,"id":13312}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12827":{"name":null,"type":"comment","startIndex":23229,"stopIndex":23229,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12828":{"name":"lively.scene.Node","type":"klassDef","startIndex":23230,"stopIndex":28485,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12829},{"__isSmartRef__":true,"id":12831},{"__isSmartRef__":true,"id":12833},{"__isSmartRef__":true,"id":12834},{"__isSmartRef__":true,"id":12836},{"__isSmartRef__":true,"id":12837},{"__isSmartRef__":true,"id":12839},{"__isSmartRef__":true,"id":12840},{"__isSmartRef__":true,"id":12841},{"__isSmartRef__":true,"id":12842},{"__isSmartRef__":true,"id":12843},{"__isSmartRef__":true,"id":12844},{"__isSmartRef__":true,"id":12845},{"__isSmartRef__":true,"id":12846},{"__isSmartRef__":true,"id":12847},{"__isSmartRef__":true,"id":12848},{"__isSmartRef__":true,"id":12849},{"__isSmartRef__":true,"id":12850},{"__isSmartRef__":true,"id":12851},{"__isSmartRef__":true,"id":12853},{"__isSmartRef__":true,"id":12854}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":12830},{"__isSmartRef__":true,"id":12832},{"__isSmartRef__":true,"id":12835},{"__isSmartRef__":true,"id":12838},{"__isSmartRef__":true,"id":12852},{"__isSmartRef__":true,"id":12855}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12829":{"name":"documentation","type":"propertyDef","startIndex":23299,"stopIndex":23358,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12830},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12830":{"name":"documentation","type":"categoryDef","startIndex":23280,"stopIndex":23474,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12829}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12831":{"name":"rawNode","type":"propertyDef","startIndex":23494,"stopIndex":23508,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12832},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12832":{"name":"initializing","type":"categoryDef","startIndex":23476,"stopIndex":23841,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12831},{"__isSmartRef__":true,"id":12833}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12833":{"name":"copyFrom","type":"propertyDef","startIndex":23532,"stopIndex":23837,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12832},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12834":{"name":"doNotSerialize","type":"propertyDef","startIndex":23866,"stopIndex":23903,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12835},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12835":{"name":"XML serialization","type":"categoryDef","startIndex":23843,"stopIndex":24059,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12834},{"__isSmartRef__":true,"id":12836}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12836":{"name":"deserialize","type":"propertyDef","startIndex":23906,"stopIndex":24055,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12835},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12837":{"name":"canvas","type":"propertyDef","startIndex":24077,"stopIndex":24138,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12838":{"name":"accessing","type":"categoryDef","startIndex":24061,"stopIndex":27799,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12837},{"__isSmartRef__":true,"id":12839},{"__isSmartRef__":true,"id":12840},{"__isSmartRef__":true,"id":12841},{"__isSmartRef__":true,"id":12842},{"__isSmartRef__":true,"id":12843},{"__isSmartRef__":true,"id":12844},{"__isSmartRef__":true,"id":12845},{"__isSmartRef__":true,"id":12846},{"__isSmartRef__":true,"id":12847},{"__isSmartRef__":true,"id":12848},{"__isSmartRef__":true,"id":12849},{"__isSmartRef__":true,"id":12850}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12839":{"name":"setBounds","type":"propertyDef","startIndex":24143,"stopIndex":24370,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12840":{"name":"setVisible","type":"propertyDef","startIndex":24373,"stopIndex":24542,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12841":{"name":"translateBy","type":"propertyDef","startIndex":24545,"stopIndex":24596,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12842":{"name":"setFill","type":"propertyDef","startIndex":24599,"stopIndex":24673,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12843":{"name":"getFill","type":"propertyDef","startIndex":24676,"stopIndex":24745,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12844":{"name":"setStroke","type":"propertyDef","startIndex":24749,"stopIndex":24827,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12845":{"name":"getStroke","type":"propertyDef","startIndex":24830,"stopIndex":24903,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12846":{"name":"setFillOrStrokePaint","type":"propertyDef","startIndex":24906,"stopIndex":25676,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12847":{"name":"getFillOrStrokePaint","type":"propertyDef","startIndex":25679,"stopIndex":26385,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12848":{"name":"getTransforms","type":"propertyDef","startIndex":26388,"stopIndex":26788,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12849":{"name":"setTransforms","type":"propertyDef","startIndex":26791,"stopIndex":27364,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12850":{"name":"transformListItemChanged","type":"propertyDef","startIndex":27367,"stopIndex":27795,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12838},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12851":{"name":"nativeContainsWorldPoint","type":"propertyDef","startIndex":27815,"stopIndex":28034,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12852},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12852":{"name":"testing","type":"categoryDef","startIndex":27801,"stopIndex":28270,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12851},{"__isSmartRef__":true,"id":12853}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12853":{"name":"isVisible","type":"propertyDef","startIndex":28037,"stopIndex":28266,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12852},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12854":{"name":"applyFilter","type":"propertyDef","startIndex":28290,"stopIndex":28479,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12855},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12828},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12855":{"name":"SVG filters","type":"categoryDef","startIndex":28272,"stopIndex":28482,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12854}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12856":{"name":null,"type":"comment","startIndex":28486,"stopIndex":28486,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12857":{"name":"addPropertiesToNode","type":"functionDef","startIndex":28487,"stopIndex":29039,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12858":{"name":null,"type":"comment","startIndex":29040,"stopIndex":29040,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12859":{"name":"lively.scene.Node","type":"klassExtensionDef","startIndex":29041,"stopIndex":29388,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12860},{"__isSmartRef__":true,"id":12862},{"__isSmartRef__":true,"id":12863},{"__isSmartRef__":true,"id":12864}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12861}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12860":{"name":"setstroke","type":"propertyDef","startIndex":29072,"stopIndex":29223,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12861},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12859},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12861":{"name":"default category","type":"categoryDef","startIndex":29070,"stopIndex":29385,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12860},{"__isSmartRef__":true,"id":12862},{"__isSmartRef__":true,"id":12863},{"__isSmartRef__":true,"id":12864}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12862":{"name":"setfill","type":"propertyDef","startIndex":29225,"stopIndex":29270,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12861},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12859},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12863":{"name":"setfillOpacity","type":"propertyDef","startIndex":29272,"stopIndex":29331,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12861},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12859},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12864":{"name":"setvisible","type":"propertyDef","startIndex":29333,"stopIndex":29384,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12861},"className":"lively.scene.Node","_owner":{"__isSmartRef__":true,"id":12859},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12865":{"name":null,"type":"comment","startIndex":29389,"stopIndex":29900,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12866":{"name":"lively.scene.Shape","type":"klassDef","startIndex":29901,"stopIndex":30422,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12867},{"__isSmartRef__":true,"id":12869},{"__isSmartRef__":true,"id":12870},{"__isSmartRef__":true,"id":12871},{"__isSmartRef__":true,"id":12872},{"__isSmartRef__":true,"id":12873},{"__isSmartRef__":true,"id":12874},{"__isSmartRef__":true,"id":12875}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Node","categories":[{"__isSmartRef__":true,"id":12868}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12867":{"name":"shouldIgnorePointerEvents","type":"propertyDef","startIndex":29953,"stopIndex":29986,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12868":{"name":"default category","type":"categoryDef","startIndex":29950,"stopIndex":30419,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12867},{"__isSmartRef__":true,"id":12869},{"__isSmartRef__":true,"id":12870},{"__isSmartRef__":true,"id":12871},{"__isSmartRef__":true,"id":12872},{"__isSmartRef__":true,"id":12873},{"__isSmartRef__":true,"id":12874},{"__isSmartRef__":true,"id":12875}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12869":{"name":"controlPointProximity","type":"propertyDef","startIndex":29988,"stopIndex":30014,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12870":{"name":"hasElbowProtrusions","type":"propertyDef","startIndex":30016,"stopIndex":30043,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12871":{"name":"toString","type":"propertyDef","startIndex":30046,"stopIndex":30146,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12872":{"name":"initialize","type":"propertyDef","startIndex":30149,"stopIndex":30236,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12873":{"name":"applyFunction","type":"propertyDef","startIndex":30240,"stopIndex":30299,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12874":{"name":"toPath","type":"propertyDef","startIndex":30302,"stopIndex":30358,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12875":{"name":"getOrigin","type":"propertyDef","startIndex":30361,"stopIndex":30418,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12868},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12866},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12876":{"name":null,"type":"comment","startIndex":30423,"stopIndex":30424,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12877":{"name":"lively.scene.Shape","type":"klassExtensionDef","startIndex":30425,"stopIndex":31639,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12878},{"__isSmartRef__":true,"id":12880}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12879}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12878":{"name":"importFromNode","type":"propertyDef","startIndex":30461,"stopIndex":31099,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12879},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12877},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12879":{"name":"default category","type":"categoryDef","startIndex":30459,"stopIndex":31636,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12878},{"__isSmartRef__":true,"id":12880}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12880":{"name":"fromLiteral","type":"propertyDef","startIndex":31102,"stopIndex":31635,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12879},"className":"lively.scene.Shape","_owner":{"__isSmartRef__":true,"id":12877},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12881":{"name":null,"type":"comment","startIndex":31640,"stopIndex":31640,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12882":{"name":"lively.scene","type":"klassExtensionDef","startIndex":31641,"stopIndex":31848,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12883},{"__isSmartRef__":true,"id":12885}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12884}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12883":{"name":"LineJoins","type":"propertyDef","startIndex":31673,"stopIndex":31729,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12884},"className":"lively.scene","_owner":{"__isSmartRef__":true,"id":12882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12884":{"name":"default category","type":"categoryDef","startIndex":31670,"stopIndex":31845,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12883},{"__isSmartRef__":true,"id":12885}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12885":{"name":"LineCaps","type":"propertyDef","startIndex":31730,"stopIndex":31844,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12884},"className":"lively.scene","_owner":{"__isSmartRef__":true,"id":12882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12886":{"name":null,"type":"comment","startIndex":31849,"stopIndex":31849,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12887":{"name":"lively.scene.Rectangle","type":"klassDef","startIndex":31850,"stopIndex":34195,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12888},{"__isSmartRef__":true,"id":12890},{"__isSmartRef__":true,"id":12891},{"__isSmartRef__":true,"id":12892},{"__isSmartRef__":true,"id":12893},{"__isSmartRef__":true,"id":12894},{"__isSmartRef__":true,"id":12895},{"__isSmartRef__":true,"id":12896},{"__isSmartRef__":true,"id":12897},{"__isSmartRef__":true,"id":12898},{"__isSmartRef__":true,"id":12899},{"__isSmartRef__":true,"id":12900},{"__isSmartRef__":true,"id":12901},{"__isSmartRef__":true,"id":12902}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Shape","categories":[{"__isSmartRef__":true,"id":12889}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12888":{"name":"documentation","type":"propertyDef","startIndex":31907,"stopIndex":31940,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12889":{"name":"default category","type":"categoryDef","startIndex":31904,"stopIndex":34192,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12888},{"__isSmartRef__":true,"id":12890},{"__isSmartRef__":true,"id":12891},{"__isSmartRef__":true,"id":12892},{"__isSmartRef__":true,"id":12893},{"__isSmartRef__":true,"id":12894},{"__isSmartRef__":true,"id":12895},{"__isSmartRef__":true,"id":12896},{"__isSmartRef__":true,"id":12897},{"__isSmartRef__":true,"id":12898},{"__isSmartRef__":true,"id":12899},{"__isSmartRef__":true,"id":12900},{"__isSmartRef__":true,"id":12901},{"__isSmartRef__":true,"id":12902}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12890":{"name":"initialize","type":"propertyDef","startIndex":31943,"stopIndex":32108,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12891":{"name":"setBounds","type":"propertyDef","startIndex":32111,"stopIndex":32343,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12892":{"name":"toPath","type":"propertyDef","startIndex":32346,"stopIndex":32454,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12893":{"name":"bounds","type":"propertyDef","startIndex":32457,"stopIndex":32748,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12894":{"name":"translateBy","type":"propertyDef","startIndex":32751,"stopIndex":32934,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12895":{"name":"vertices","type":"propertyDef","startIndex":32938,"stopIndex":33060,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12896":{"name":"containsPoint","type":"propertyDef","startIndex":33063,"stopIndex":33413,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12897":{"name":"reshape","type":"propertyDef","startIndex":33416,"stopIndex":33547,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12898":{"name":"partNameNear","type":"propertyDef","startIndex":33550,"stopIndex":33668,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12899":{"name":"allPartNames","type":"propertyDef","startIndex":33671,"stopIndex":33725,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12900":{"name":"partPosition","type":"propertyDef","startIndex":33729,"stopIndex":33811,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12901":{"name":"getBorderRadius","type":"propertyDef","startIndex":33814,"stopIndex":33888,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12902":{"name":"roundEdgesBy","type":"propertyDef","startIndex":33891,"stopIndex":34191,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12889},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12887},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12903":{"name":null,"type":"comment","startIndex":34196,"stopIndex":34197,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12904":{"name":"lively.scene.Rectangle","type":"klassExtensionDef","startIndex":34198,"stopIndex":34627,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12905}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12906}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12905":{"name":"fromLiteral","type":"propertyDef","startIndex":34238,"stopIndex":34623,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12906},"className":"lively.scene.Rectangle","_owner":{"__isSmartRef__":true,"id":12904},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12906":{"name":"default category","type":"categoryDef","startIndex":34236,"stopIndex":34624,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12905}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12907":{"name":null,"type":"comment","startIndex":34628,"stopIndex":34629,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12908":{"name":"lively.scene.Ellipse","type":"klassDef","startIndex":34630,"stopIndex":37026,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12909},{"__isSmartRef__":true,"id":12911},{"__isSmartRef__":true,"id":12912},{"__isSmartRef__":true,"id":12913},{"__isSmartRef__":true,"id":12914},{"__isSmartRef__":true,"id":12915},{"__isSmartRef__":true,"id":12916},{"__isSmartRef__":true,"id":12917},{"__isSmartRef__":true,"id":12918},{"__isSmartRef__":true,"id":12919},{"__isSmartRef__":true,"id":12920},{"__isSmartRef__":true,"id":12921},{"__isSmartRef__":true,"id":12922}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.Shape","categories":[{"__isSmartRef__":true,"id":12910}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12909":{"name":"documentation","type":"propertyDef","startIndex":34677,"stopIndex":34715,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12910":{"name":"default category","type":"categoryDef","startIndex":34674,"stopIndex":37023,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12909},{"__isSmartRef__":true,"id":12911},{"__isSmartRef__":true,"id":12912},{"__isSmartRef__":true,"id":12913},{"__isSmartRef__":true,"id":12914},{"__isSmartRef__":true,"id":12915},{"__isSmartRef__":true,"id":12916},{"__isSmartRef__":true,"id":12917},{"__isSmartRef__":true,"id":12918},{"__isSmartRef__":true,"id":12919},{"__isSmartRef__":true,"id":12920},{"__isSmartRef__":true,"id":12921},{"__isSmartRef__":true,"id":12922}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12911":{"name":"initialize","type":"propertyDef","startIndex":34718,"stopIndex":35072,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12912":{"name":"setBounds","type":"propertyDef","startIndex":35075,"stopIndex":35292,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12913":{"name":"center","type":"propertyDef","startIndex":35295,"stopIndex":35394,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12914":{"name":"getOrigin","type":"propertyDef","startIndex":35397,"stopIndex":35448,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12915":{"name":"containsPoint","type":"propertyDef","startIndex":35451,"stopIndex":35798,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12916":{"name":"bounds","type":"propertyDef","startIndex":35802,"stopIndex":36143,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12917":{"name":"translateBy","type":"propertyDef","startIndex":36147,"stopIndex":36334,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12918":{"name":"vertices","type":"propertyDef","startIndex":36337,"stopIndex":36747,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12919":{"name":"partNameNear","type":"propertyDef","startIndex":36750,"stopIndex":36866,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12920":{"name":"allPartNames","type":"propertyDef","startIndex":36870,"stopIndex":36921,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12921":{"name":"reshape","type":"propertyDef","startIndex":36925,"stopIndex":36967,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12922":{"name":"partPosition","type":"propertyDef","startIndex":36969,"stopIndex":37022,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12910},"className":"lively.scene.Ellipse","_owner":{"__isSmartRef__":true,"id":12908},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12923":{"name":null,"type":"comment","startIndex":37027,"stopIndex":37027,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12924":{"name":"this.Ellipse","type":"klassExtensionDef","startIndex":37028,"stopIndex":37269,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12925}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12926}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12925":{"name":"fromLiteral","type":"propertyDef","startIndex":37058,"stopIndex":37265,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12926},"className":"this.Ellipse","_owner":{"__isSmartRef__":true,"id":12924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12926":{"name":"default category","type":"categoryDef","startIndex":37056,"stopIndex":37266,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12925}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12927":{"name":null,"type":"comment","startIndex":37270,"stopIndex":37272,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12928":{"name":"lively.scene.Polygon","type":"klassDef","startIndex":37273,"stopIndex":42911,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12929},{"__isSmartRef__":true,"id":12931},{"__isSmartRef__":true,"id":12932},{"__isSmartRef__":true,"id":12933},{"__isSmartRef__":true,"id":12934},{"__isSmartRef__":true,"id":12935},{"__isSmartRef__":true,"id":12936},{"__isSmartRef__":true,"id":12937},{"__isSmartRef__":true,"id":12938},{"__isSmartRef__":true,"id":12939},{"__isSmartRef__":true,"id":12940},{"__isSmartRef__":true,"id":12941},{"__isSmartRef__":true,"id":12942},{"__isSmartRef__":true,"id":12943},{"__isSmartRef__":true,"id":12944},{"__isSmartRef__":true,"id":12945}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Shape","categories":[{"__isSmartRef__":true,"id":12930}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12929":{"name":"documentation","type":"propertyDef","startIndex":37327,"stopIndex":37352,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12930":{"name":"default category","type":"categoryDef","startIndex":37325,"stopIndex":42908,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12929},{"__isSmartRef__":true,"id":12931},{"__isSmartRef__":true,"id":12932},{"__isSmartRef__":true,"id":12933},{"__isSmartRef__":true,"id":12934},{"__isSmartRef__":true,"id":12935},{"__isSmartRef__":true,"id":12936},{"__isSmartRef__":true,"id":12937},{"__isSmartRef__":true,"id":12938},{"__isSmartRef__":true,"id":12939},{"__isSmartRef__":true,"id":12940},{"__isSmartRef__":true,"id":12941},{"__isSmartRef__":true,"id":12942},{"__isSmartRef__":true,"id":12943},{"__isSmartRef__":true,"id":12944},{"__isSmartRef__":true,"id":12945}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12931":{"name":"hasElbowProtrusions","type":"propertyDef","startIndex":37355,"stopIndex":37381,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12932":{"name":"useDOM","type":"propertyDef","startIndex":37383,"stopIndex":37397,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12933":{"name":"initialize","type":"propertyDef","startIndex":37400,"stopIndex":37549,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12934":{"name":"copyFrom","type":"propertyDef","startIndex":37552,"stopIndex":37662,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12935":{"name":"setVertices","type":"propertyDef","startIndex":37665,"stopIndex":37986,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12936":{"name":"vertices","type":"propertyDef","startIndex":37989,"stopIndex":38198,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12937":{"name":"translateBy","type":"propertyDef","startIndex":38201,"stopIndex":38456,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12938":{"name":"toString","type":"propertyDef","startIndex":38459,"stopIndex":38563,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12939":{"name":"bounds","type":"propertyDef","startIndex":38567,"stopIndex":39040,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12940":{"name":"getOrigin","type":"propertyDef","startIndex":39043,"stopIndex":39152,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12941":{"name":"reshape","type":"propertyDef","startIndex":39155,"stopIndex":40666,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12942":{"name":"partNameNear","type":"propertyDef","startIndex":40669,"stopIndex":40877,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12943":{"name":"allPartNames","type":"propertyDef","startIndex":40880,"stopIndex":41830,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12944":{"name":"containsPoint","type":"propertyDef","startIndex":41834,"stopIndex":42457,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12945":{"name":"partPosition","type":"propertyDef","startIndex":42460,"stopIndex":42903,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12930},"className":"lively.scene.Polygon","_owner":{"__isSmartRef__":true,"id":12928},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12946":{"name":null,"type":"comment","startIndex":42912,"stopIndex":42912,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12947":{"name":"this.Polygon","type":"klassExtensionDef","startIndex":42913,"stopIndex":43075,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12948}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12949}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12948":{"name":"fromLiteral","type":"propertyDef","startIndex":42943,"stopIndex":43071,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12949},"className":"this.Polygon","_owner":{"__isSmartRef__":true,"id":12947},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12949":{"name":"default category","type":"categoryDef","startIndex":42941,"stopIndex":43072,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12948}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12950":{"name":null,"type":"comment","startIndex":43076,"stopIndex":43076,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12951":{"name":"lively.scene.Polyline","type":"klassDef","startIndex":43077,"stopIndex":44828,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12952},{"__isSmartRef__":true,"id":12954},{"__isSmartRef__":true,"id":12955},{"__isSmartRef__":true,"id":12956},{"__isSmartRef__":true,"id":12957},{"__isSmartRef__":true,"id":12958},{"__isSmartRef__":true,"id":12959},{"__isSmartRef__":true,"id":12960},{"__isSmartRef__":true,"id":12961},{"__isSmartRef__":true,"id":12962},{"__isSmartRef__":true,"id":12963},{"__isSmartRef__":true,"id":12964},{"__isSmartRef__":true,"id":12965},{"__isSmartRef__":true,"id":12966},{"__isSmartRef__":true,"id":12967},{"__isSmartRef__":true,"id":12968},{"__isSmartRef__":true,"id":12969},{"__isSmartRef__":true,"id":12970}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Shape","categories":[{"__isSmartRef__":true,"id":12953}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12952":{"name":"documentation","type":"propertyDef","startIndex":43132,"stopIndex":43223,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12953":{"name":"default category","type":"categoryDef","startIndex":43130,"stopIndex":44825,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12952},{"__isSmartRef__":true,"id":12954},{"__isSmartRef__":true,"id":12955},{"__isSmartRef__":true,"id":12956},{"__isSmartRef__":true,"id":12957},{"__isSmartRef__":true,"id":12958},{"__isSmartRef__":true,"id":12959},{"__isSmartRef__":true,"id":12960},{"__isSmartRef__":true,"id":12961},{"__isSmartRef__":true,"id":12962},{"__isSmartRef__":true,"id":12963},{"__isSmartRef__":true,"id":12964},{"__isSmartRef__":true,"id":12965},{"__isSmartRef__":true,"id":12966},{"__isSmartRef__":true,"id":12967},{"__isSmartRef__":true,"id":12968},{"__isSmartRef__":true,"id":12969},{"__isSmartRef__":true,"id":12970}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12954":{"name":"hasElbowProtrusions","type":"propertyDef","startIndex":43226,"stopIndex":43252,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12955":{"name":"initialize","type":"propertyDef","startIndex":43255,"stopIndex":43390,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12956":{"name":"containsPoint","type":"propertyDef","startIndex":43393,"stopIndex":43674,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12957":{"name":"setStartX","type":"propertyDef","startIndex":43677,"stopIndex":43814,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12958":{"name":"setStartY","type":"propertyDef","startIndex":43817,"stopIndex":43954,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12959":{"name":"setEndX","type":"propertyDef","startIndex":43957,"stopIndex":44090,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12960":{"name":"setEndY","type":"propertyDef","startIndex":44093,"stopIndex":44226,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12961":{"name":"addPoint","type":"propertyDef","startIndex":44229,"stopIndex":44370,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12962":{"name":"bounds","type":"propertyDef","startIndex":44374,"stopIndex":44436,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12963":{"name":"getOrigin","type":"propertyDef","startIndex":44438,"stopIndex":44482,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12964":{"name":"vertices","type":"propertyDef","startIndex":44484,"stopIndex":44526,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12965":{"name":"setVertices","type":"propertyDef","startIndex":44528,"stopIndex":44576,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12966":{"name":"reshape","type":"propertyDef","startIndex":44578,"stopIndex":44618,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12967":{"name":"partNameNear","type":"propertyDef","startIndex":44620,"stopIndex":44670,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12968":{"name":"allPartNames","type":"propertyDef","startIndex":44672,"stopIndex":44721,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12969":{"name":"partPosition","type":"propertyDef","startIndex":44724,"stopIndex":44774,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12970":{"name":"translateBy","type":"propertyDef","startIndex":44776,"stopIndex":44824,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12953},"className":"lively.scene.Polyline","_owner":{"__isSmartRef__":true,"id":12951},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12971":{"name":null,"type":"comment","startIndex":44829,"stopIndex":44829,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12972":{"name":"this.Polyline","type":"klassExtensionDef","startIndex":44830,"stopIndex":44993,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12973}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12974}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12973":{"name":"fromLiteral","type":"propertyDef","startIndex":44861,"stopIndex":44989,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12974},"className":"this.Polyline","_owner":{"__isSmartRef__":true,"id":12972},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12974":{"name":"default category","type":"categoryDef","startIndex":44859,"stopIndex":44990,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12973}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12975":{"name":null,"type":"comment","startIndex":44994,"stopIndex":44994,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12976":{"name":"this.Line","type":"objectDef","startIndex":44995,"stopIndex":45291,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12977}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12977":{"name":"fromLiteral","type":"propertyDef","startIndex":45008,"stopIndex":45288,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12978},"_owner":{"__isSmartRef__":true,"id":12976},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12978":{"name":"default category","type":"categoryDef","startIndex":12,"stopIndex":294,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":12977}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12979":{"name":null,"type":"comment","startIndex":45292,"stopIndex":45408,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12980":{"name":"lively.scene.PathElement","type":"klassDef","startIndex":45409,"stopIndex":45961,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12981},{"__isSmartRef__":true,"id":12983},{"__isSmartRef__":true,"id":12984},{"__isSmartRef__":true,"id":12985},{"__isSmartRef__":true,"id":12986},{"__isSmartRef__":true,"id":12987}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":12982}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12981":{"name":"isPathElement","type":"propertyDef","startIndex":45468,"stopIndex":45488,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12982},"className":"lively.scene.PathElement","_owner":{"__isSmartRef__":true,"id":12980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12982":{"name":"default category","type":"categoryDef","startIndex":45466,"stopIndex":45958,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12981},{"__isSmartRef__":true,"id":12983},{"__isSmartRef__":true,"id":12984},{"__isSmartRef__":true,"id":12985},{"__isSmartRef__":true,"id":12986},{"__isSmartRef__":true,"id":12987}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12983":{"name":"initialize","type":"propertyDef","startIndex":45490,"stopIndex":45560,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12982},"className":"lively.scene.PathElement","_owner":{"__isSmartRef__":true,"id":12980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12984":{"name":"realCharCode","type":"propertyDef","startIndex":45562,"stopIndex":45678,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12982},"className":"lively.scene.PathElement","_owner":{"__isSmartRef__":true,"id":12980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12985":{"name":"attributeFormat","type":"propertyDef","startIndex":45680,"stopIndex":45758,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12982},"className":"lively.scene.PathElement","_owner":{"__isSmartRef__":true,"id":12980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12986":{"name":"translate","type":"propertyDef","startIndex":45760,"stopIndex":45874,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12982},"className":"lively.scene.PathElement","_owner":{"__isSmartRef__":true,"id":12980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12987":{"name":"toString","type":"propertyDef","startIndex":45876,"stopIndex":45956,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12982},"className":"lively.scene.PathElement","_owner":{"__isSmartRef__":true,"id":12980},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12988":{"name":null,"type":"comment","startIndex":45962,"stopIndex":45962,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12989":{"name":"lively.scene.PathElement","type":"klassExtensionDef","startIndex":45963,"stopIndex":47495,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12990}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":12991}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12990":{"name":"parse","type":"propertyDef","startIndex":46005,"stopIndex":47489,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":12991},"className":"lively.scene.PathElement","_owner":{"__isSmartRef__":true,"id":12989},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12991":{"name":"default category","type":"categoryDef","startIndex":46003,"stopIndex":47492,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12990}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12992":{"name":null,"type":"comment","startIndex":47496,"stopIndex":47496,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12993":{"name":"lively.scene.MoveTo","type":"klassDef","startIndex":47497,"stopIndex":48147,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12994},{"__isSmartRef__":true,"id":12996},{"__isSmartRef__":true,"id":12997},{"__isSmartRef__":true,"id":12998},{"__isSmartRef__":true,"id":12999},{"__isSmartRef__":true,"id":13000}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":12995}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12994":{"name":"charCode","type":"propertyDef","startIndex":47548,"stopIndex":47562,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12995},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":12993},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12995":{"name":"default category","type":"categoryDef","startIndex":47546,"stopIndex":48144,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":12994},{"__isSmartRef__":true,"id":12996},{"__isSmartRef__":true,"id":12997},{"__isSmartRef__":true,"id":12998},{"__isSmartRef__":true,"id":12999},{"__isSmartRef__":true,"id":13000}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12996":{"name":"initialize","type":"propertyDef","startIndex":47565,"stopIndex":47667,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12995},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":12993},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12997":{"name":"allocateRawNode","type":"propertyDef","startIndex":47670,"stopIndex":47873,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12995},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":12993},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12998":{"name":"controlPoints","type":"propertyDef","startIndex":47876,"stopIndex":47938,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12995},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":12993},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"12999":{"name":"attributeFormat","type":"propertyDef","startIndex":47942,"stopIndex":48029,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12995},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":12993},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13000":{"name":"translate","type":"propertyDef","startIndex":48033,"stopIndex":48142,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":12995},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":12993},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13001":{"name":"lively.scene.MoveTo","type":"klassExtensionDef","startIndex":48148,"stopIndex":48537,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13002},{"__isSmartRef__":true,"id":13004},{"__isSmartRef__":true,"id":13005},{"__isSmartRef__":true,"id":13006}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13003}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13002":{"name":"fromLiteral","type":"propertyDef","startIndex":48185,"stopIndex":48311,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13003},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":13001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13003":{"name":"default category","type":"categoryDef","startIndex":48183,"stopIndex":48534,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13002},{"__isSmartRef__":true,"id":13004},{"__isSmartRef__":true,"id":13005},{"__isSmartRef__":true,"id":13006}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13004":{"name":"parse","type":"propertyDef","startIndex":48313,"stopIndex":48432,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13003},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":13001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13005":{"name":"dataLength","type":"propertyDef","startIndex":48434,"stopIndex":48448,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13003},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":13001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13006":{"name":"create","type":"propertyDef","startIndex":48450,"stopIndex":48532,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13003},"className":"lively.scene.MoveTo","_owner":{"__isSmartRef__":true,"id":13001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13007":{"name":null,"type":"comment","startIndex":48538,"stopIndex":48539,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13008":{"name":"lively.scene.LineTo","type":"klassDef","startIndex":48540,"stopIndex":49213,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13009},{"__isSmartRef__":true,"id":13011},{"__isSmartRef__":true,"id":13012},{"__isSmartRef__":true,"id":13013},{"__isSmartRef__":true,"id":13014},{"__isSmartRef__":true,"id":13015}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.PathElement","categories":[{"__isSmartRef__":true,"id":13010}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13009":{"name":"charCode","type":"propertyDef","startIndex":48599,"stopIndex":48613,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13010},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13008},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13010":{"name":"default category","type":"categoryDef","startIndex":48597,"stopIndex":49210,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13009},{"__isSmartRef__":true,"id":13011},{"__isSmartRef__":true,"id":13012},{"__isSmartRef__":true,"id":13013},{"__isSmartRef__":true,"id":13014},{"__isSmartRef__":true,"id":13015}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13011":{"name":"initialize","type":"propertyDef","startIndex":48615,"stopIndex":48717,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13010},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13008},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13012":{"name":"allocateRawNode","type":"propertyDef","startIndex":48720,"stopIndex":48939,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13010},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13008},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13013":{"name":"controlPoints","type":"propertyDef","startIndex":48942,"stopIndex":49004,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13010},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13008},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13014":{"name":"attributeFormat","type":"propertyDef","startIndex":49008,"stopIndex":49095,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13010},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13008},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13015":{"name":"translate","type":"propertyDef","startIndex":49099,"stopIndex":49208,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13010},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13008},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13016":{"name":"lively.scene.LineTo","type":"klassExtensionDef","startIndex":49214,"stopIndex":49482,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13017},{"__isSmartRef__":true,"id":13019},{"__isSmartRef__":true,"id":13020}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13018}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13017":{"name":"fromLiteral","type":"propertyDef","startIndex":49251,"stopIndex":49377,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13018},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13018":{"name":"default category","type":"categoryDef","startIndex":49249,"stopIndex":49479,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13017},{"__isSmartRef__":true,"id":13019},{"__isSmartRef__":true,"id":13020}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13019":{"name":"dataLength","type":"propertyDef","startIndex":49379,"stopIndex":49393,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13018},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13020":{"name":"create","type":"propertyDef","startIndex":49395,"stopIndex":49477,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13018},"className":"lively.scene.LineTo","_owner":{"__isSmartRef__":true,"id":13016},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13021":{"name":null,"type":"comment","startIndex":49483,"stopIndex":49484,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13022":{"name":"lively.scene.HorizontalTo","type":"klassDef","startIndex":49485,"stopIndex":50093,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13023},{"__isSmartRef__":true,"id":13025},{"__isSmartRef__":true,"id":13026},{"__isSmartRef__":true,"id":13027},{"__isSmartRef__":true,"id":13028},{"__isSmartRef__":true,"id":13029}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":13024}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13023":{"name":"charCode","type":"propertyDef","startIndex":49542,"stopIndex":49556,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13024},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13022},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13024":{"name":"default category","type":"categoryDef","startIndex":49540,"stopIndex":50090,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13023},{"__isSmartRef__":true,"id":13025},{"__isSmartRef__":true,"id":13026},{"__isSmartRef__":true,"id":13027},{"__isSmartRef__":true,"id":13028},{"__isSmartRef__":true,"id":13029}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13025":{"name":"initialize","type":"propertyDef","startIndex":49558,"stopIndex":49643,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13024},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13022},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13026":{"name":"allocateRawNode","type":"propertyDef","startIndex":49646,"stopIndex":49869,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13024},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13022},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13027":{"name":"controlPoints","type":"propertyDef","startIndex":49872,"stopIndex":49916,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13024},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13022},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13028":{"name":"attributeFormat","type":"propertyDef","startIndex":49920,"stopIndex":49992,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13024},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13022},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13029":{"name":"translate","type":"propertyDef","startIndex":49994,"stopIndex":50088,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13024},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13022},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13030":{"name":"lively.scene.HorizontalTo","type":"klassExtensionDef","startIndex":50094,"stopIndex":50351,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13031},{"__isSmartRef__":true,"id":13033},{"__isSmartRef__":true,"id":13034}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13032}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13031":{"name":"fromLiteral","type":"propertyDef","startIndex":50137,"stopIndex":50251,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13032},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13032":{"name":"default category","type":"categoryDef","startIndex":50135,"stopIndex":50348,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13031},{"__isSmartRef__":true,"id":13033},{"__isSmartRef__":true,"id":13034}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13033":{"name":"dataLength","type":"propertyDef","startIndex":50253,"stopIndex":50267,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13032},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13034":{"name":"create","type":"propertyDef","startIndex":50269,"stopIndex":50346,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13032},"className":"lively.scene.HorizontalTo","_owner":{"__isSmartRef__":true,"id":13030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13035":{"name":null,"type":"comment","startIndex":50352,"stopIndex":50353,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13036":{"name":"lively.scene.VerticalTo","type":"klassDef","startIndex":50354,"stopIndex":50958,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13037},{"__isSmartRef__":true,"id":13039},{"__isSmartRef__":true,"id":13040},{"__isSmartRef__":true,"id":13041},{"__isSmartRef__":true,"id":13042},{"__isSmartRef__":true,"id":13043}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":13038}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13037":{"name":"charCode","type":"propertyDef","startIndex":50409,"stopIndex":50423,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13038},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13038":{"name":"default category","type":"categoryDef","startIndex":50407,"stopIndex":50955,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13037},{"__isSmartRef__":true,"id":13039},{"__isSmartRef__":true,"id":13040},{"__isSmartRef__":true,"id":13041},{"__isSmartRef__":true,"id":13042},{"__isSmartRef__":true,"id":13043}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13039":{"name":"initialize","type":"propertyDef","startIndex":50425,"stopIndex":50510,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13038},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13040":{"name":"allocateRawNode","type":"propertyDef","startIndex":50513,"stopIndex":50732,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13038},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13041":{"name":"controlPoints","type":"propertyDef","startIndex":50735,"stopIndex":50779,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13038},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13042":{"name":"attributeFormat","type":"propertyDef","startIndex":50783,"stopIndex":50855,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13038},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13043":{"name":"translate","type":"propertyDef","startIndex":50859,"stopIndex":50953,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13038},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13044":{"name":"lively.scene.VerticalTo","type":"klassExtensionDef","startIndex":50959,"stopIndex":51212,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13045},{"__isSmartRef__":true,"id":13047},{"__isSmartRef__":true,"id":13048}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13046}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13045":{"name":"fromLiteral","type":"propertyDef","startIndex":51000,"stopIndex":51112,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13046},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13044},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13046":{"name":"default category","type":"categoryDef","startIndex":50998,"stopIndex":51209,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13045},{"__isSmartRef__":true,"id":13047},{"__isSmartRef__":true,"id":13048}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13047":{"name":"dataLength","type":"propertyDef","startIndex":51114,"stopIndex":51128,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13046},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13044},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13048":{"name":"create","type":"propertyDef","startIndex":51130,"stopIndex":51207,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13046},"className":"lively.scene.VerticalTo","_owner":{"__isSmartRef__":true,"id":13044},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13049":{"name":null,"type":"comment","startIndex":51213,"stopIndex":51214,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13050":{"name":"lively.scene.CurveTo","type":"klassDef","startIndex":51215,"stopIndex":51953,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13051},{"__isSmartRef__":true,"id":13053},{"__isSmartRef__":true,"id":13054},{"__isSmartRef__":true,"id":13055},{"__isSmartRef__":true,"id":13056},{"__isSmartRef__":true,"id":13057}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":13052}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13051":{"name":"charCode","type":"propertyDef","startIndex":51268,"stopIndex":51282,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13052},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13050},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13052":{"name":"default category","type":"categoryDef","startIndex":51265,"stopIndex":51950,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13051},{"__isSmartRef__":true,"id":13053},{"__isSmartRef__":true,"id":13054},{"__isSmartRef__":true,"id":13055},{"__isSmartRef__":true,"id":13056},{"__isSmartRef__":true,"id":13057}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13053":{"name":"initialize","type":"propertyDef","startIndex":51323,"stopIndex":51425,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13052},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13050},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13054":{"name":"allocateRawNode","type":"propertyDef","startIndex":51428,"stopIndex":51679,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13052},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13050},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13055":{"name":"controlPoints","type":"propertyDef","startIndex":51682,"stopIndex":51744,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13052},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13050},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13056":{"name":"attributeFormat","type":"propertyDef","startIndex":51748,"stopIndex":51835,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13052},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13050},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13057":{"name":"translate","type":"propertyDef","startIndex":51839,"stopIndex":51948,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13052},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13050},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13058":{"name":"lively.scene.CurveTo","type":"klassExtensionDef","startIndex":51954,"stopIndex":52227,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13059},{"__isSmartRef__":true,"id":13061},{"__isSmartRef__":true,"id":13062}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13060}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13059":{"name":"fromLiteral","type":"propertyDef","startIndex":51992,"stopIndex":52119,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13060},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13060":{"name":"default category","type":"categoryDef","startIndex":51990,"stopIndex":52224,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13059},{"__isSmartRef__":true,"id":13061},{"__isSmartRef__":true,"id":13062}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13061":{"name":"dataLength","type":"propertyDef","startIndex":52121,"stopIndex":52135,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13060},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13062":{"name":"create","type":"propertyDef","startIndex":52137,"stopIndex":52222,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13060},"className":"lively.scene.CurveTo","_owner":{"__isSmartRef__":true,"id":13058},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13063":{"name":null,"type":"comment","startIndex":52228,"stopIndex":52228,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13064":{"name":"lively.scene.QuadCurveTo","type":"klassDef","startIndex":52229,"stopIndex":53177,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13065},{"__isSmartRef__":true,"id":13067},{"__isSmartRef__":true,"id":13068},{"__isSmartRef__":true,"id":13069},{"__isSmartRef__":true,"id":13070},{"__isSmartRef__":true,"id":13071}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":13066}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13065":{"name":"charCode","type":"propertyDef","startIndex":52286,"stopIndex":52300,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13066},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13064},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13066":{"name":"default category","type":"categoryDef","startIndex":52283,"stopIndex":53174,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13065},{"__isSmartRef__":true,"id":13067},{"__isSmartRef__":true,"id":13068},{"__isSmartRef__":true,"id":13069},{"__isSmartRef__":true,"id":13070},{"__isSmartRef__":true,"id":13071}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13067":{"name":"initialize","type":"propertyDef","startIndex":52303,"stopIndex":52481,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13066},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13064},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13068":{"name":"allocateRawNode","type":"propertyDef","startIndex":52484,"stopIndex":52783,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13066},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13064},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13069":{"name":"controlPoints","type":"propertyDef","startIndex":52786,"stopIndex":52882,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13066},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13064},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13070":{"name":"attributeFormat","type":"propertyDef","startIndex":52885,"stopIndex":53016,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13066},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13064},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13071":{"name":"translate","type":"propertyDef","startIndex":53019,"stopIndex":53172,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13066},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13064},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13072":{"name":"lively.scene.QuadCurveTo","type":"klassExtensionDef","startIndex":53178,"stopIndex":53532,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13073},{"__isSmartRef__":true,"id":13075},{"__isSmartRef__":true,"id":13076}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13074}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13073":{"name":"fromLiteral","type":"propertyDef","startIndex":53220,"stopIndex":53405,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13074},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13072},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13074":{"name":"default category","type":"categoryDef","startIndex":53218,"stopIndex":53526,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13073},{"__isSmartRef__":true,"id":13075},{"__isSmartRef__":true,"id":13076}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13075":{"name":"dataLength","type":"propertyDef","startIndex":53407,"stopIndex":53421,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13074},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13072},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13076":{"name":"create","type":"propertyDef","startIndex":53423,"stopIndex":53524,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13074},"className":"lively.scene.QuadCurveTo","_owner":{"__isSmartRef__":true,"id":13072},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13077":{"name":"lively.scene.BezierCurve2CtlTo","type":"klassDef","startIndex":53533,"stopIndex":54776,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13078},{"__isSmartRef__":true,"id":13080},{"__isSmartRef__":true,"id":13081},{"__isSmartRef__":true,"id":13082},{"__isSmartRef__":true,"id":13083},{"__isSmartRef__":true,"id":13084}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.PathElement","categories":[{"__isSmartRef__":true,"id":13079}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13078":{"name":"charCode","type":"propertyDef","startIndex":53604,"stopIndex":53618,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13079},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13077},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13079":{"name":"default category","type":"categoryDef","startIndex":53601,"stopIndex":54773,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13078},{"__isSmartRef__":true,"id":13080},{"__isSmartRef__":true,"id":13081},{"__isSmartRef__":true,"id":13082},{"__isSmartRef__":true,"id":13083},{"__isSmartRef__":true,"id":13084}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13080":{"name":"initialize","type":"propertyDef","startIndex":53621,"stopIndex":53883,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13079},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13077},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13081":{"name":"allocateRawNode","type":"propertyDef","startIndex":53886,"stopIndex":54245,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13079},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13077},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13082":{"name":"controlPoints","type":"propertyDef","startIndex":54248,"stopIndex":54382,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13079},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13077},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13083":{"name":"attributeFormat","type":"propertyDef","startIndex":54385,"stopIndex":54564,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13079},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13077},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13084":{"name":"translate","type":"propertyDef","startIndex":54568,"stopIndex":54770,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13079},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13077},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13085":{"name":"lively.scene.BezierCurve2CtlTo","type":"klassExtensionDef","startIndex":54777,"stopIndex":55213,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13086},{"__isSmartRef__":true,"id":13088},{"__isSmartRef__":true,"id":13089}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13087}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13086":{"name":"fromLiteral","type":"propertyDef","startIndex":54825,"stopIndex":55073,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13087},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13087":{"name":"default category","type":"categoryDef","startIndex":54823,"stopIndex":55210,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13086},{"__isSmartRef__":true,"id":13088},{"__isSmartRef__":true,"id":13089}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13088":{"name":"dataLength","type":"propertyDef","startIndex":55075,"stopIndex":55089,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13087},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13089":{"name":"create","type":"propertyDef","startIndex":55091,"stopIndex":55208,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13087},"className":"lively.scene.BezierCurve2CtlTo","_owner":{"__isSmartRef__":true,"id":13085},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13090":{"name":null,"type":"comment","startIndex":55214,"stopIndex":55215,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13091":{"name":"lively.scene.BezierCurve1CtlTo","type":"klassDef","startIndex":55216,"stopIndex":56201,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13092},{"__isSmartRef__":true,"id":13094},{"__isSmartRef__":true,"id":13095},{"__isSmartRef__":true,"id":13096},{"__isSmartRef__":true,"id":13097},{"__isSmartRef__":true,"id":13098}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":13093}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13092":{"name":"charCode","type":"propertyDef","startIndex":55279,"stopIndex":55293,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13093},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13091},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13093":{"name":"default category","type":"categoryDef","startIndex":55276,"stopIndex":56198,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13092},{"__isSmartRef__":true,"id":13094},{"__isSmartRef__":true,"id":13095},{"__isSmartRef__":true,"id":13096},{"__isSmartRef__":true,"id":13097},{"__isSmartRef__":true,"id":13098}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13094":{"name":"initialize","type":"propertyDef","startIndex":55296,"stopIndex":55489,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13093},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13091},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13095":{"name":"allocateRawNode","type":"propertyDef","startIndex":55492,"stopIndex":55799,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13093},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13091},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13096":{"name":"controlPoints","type":"propertyDef","startIndex":55802,"stopIndex":55900,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13093},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13091},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13097":{"name":"attributeFormat","type":"propertyDef","startIndex":55903,"stopIndex":56036,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13093},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13091},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13098":{"name":"translate","type":"propertyDef","startIndex":56040,"stopIndex":56195,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13093},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13091},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13099":{"name":"lively.scene.BezierCurve1CtlTo","type":"klassExtensionDef","startIndex":56202,"stopIndex":56567,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13100},{"__isSmartRef__":true,"id":13102},{"__isSmartRef__":true,"id":13103}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13101}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13100":{"name":"fromLiteral","type":"propertyDef","startIndex":56250,"stopIndex":56443,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13101},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13099},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13101":{"name":"default category","type":"categoryDef","startIndex":56248,"stopIndex":56564,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13100},{"__isSmartRef__":true,"id":13102},{"__isSmartRef__":true,"id":13103}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13102":{"name":"dataLength","type":"propertyDef","startIndex":56445,"stopIndex":56459,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13101},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13099},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13103":{"name":"create","type":"propertyDef","startIndex":56461,"stopIndex":56562,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13101},"className":"lively.scene.BezierCurve1CtlTo","_owner":{"__isSmartRef__":true,"id":13099},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13104":{"name":null,"type":"comment","startIndex":56568,"stopIndex":56569,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13105":{"name":"lively.scene.ArcTo","type":"klassDef","startIndex":56570,"stopIndex":57648,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13106},{"__isSmartRef__":true,"id":13108},{"__isSmartRef__":true,"id":13109},{"__isSmartRef__":true,"id":13110},{"__isSmartRef__":true,"id":13111},{"__isSmartRef__":true,"id":13112}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":13107}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13106":{"name":"charCode","type":"propertyDef","startIndex":56621,"stopIndex":56635,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13107},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13107":{"name":"default category","type":"categoryDef","startIndex":56618,"stopIndex":57645,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13106},{"__isSmartRef__":true,"id":13108},{"__isSmartRef__":true,"id":13109},{"__isSmartRef__":true,"id":13110},{"__isSmartRef__":true,"id":13111},{"__isSmartRef__":true,"id":13112}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13108":{"name":"initialize","type":"propertyDef","startIndex":56638,"stopIndex":56903,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13107},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13109":{"name":"allocateRawNode","type":"propertyDef","startIndex":56906,"stopIndex":57251,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13107},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13110":{"name":"controlPoints","type":"propertyDef","startIndex":57254,"stopIndex":57338,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13107},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13111":{"name":"attributeFormat","type":"propertyDef","startIndex":57341,"stopIndex":57529,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13107},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13112":{"name":"translate","type":"propertyDef","startIndex":57533,"stopIndex":57642,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13107},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13113":{"name":"lively.scene.ArcTo","type":"klassExtensionDef","startIndex":57649,"stopIndex":58068,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13114},{"__isSmartRef__":true,"id":13116},{"__isSmartRef__":true,"id":13117}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13115}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13114":{"name":"fromLiteral","type":"propertyDef","startIndex":57685,"stopIndex":57920,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13115},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13113},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13115":{"name":"default category","type":"categoryDef","startIndex":57683,"stopIndex":58065,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13114},{"__isSmartRef__":true,"id":13116},{"__isSmartRef__":true,"id":13117}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13116":{"name":"dataLength","type":"propertyDef","startIndex":57922,"stopIndex":57936,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13115},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13113},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13117":{"name":"create","type":"propertyDef","startIndex":57938,"stopIndex":58063,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13115},"className":"lively.scene.ArcTo","_owner":{"__isSmartRef__":true,"id":13113},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13118":{"name":null,"type":"comment","startIndex":58069,"stopIndex":58070,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13119":{"name":"lively.scene.ClosePath","type":"klassDef","startIndex":58071,"stopIndex":58426,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13120},{"__isSmartRef__":true,"id":13122},{"__isSmartRef__":true,"id":13123},{"__isSmartRef__":true,"id":13124},{"__isSmartRef__":true,"id":13125}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.PathElement","categories":[{"__isSmartRef__":true,"id":13121}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13120":{"name":"charCode","type":"propertyDef","startIndex":58126,"stopIndex":58140,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13121},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13119},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13121":{"name":"default category","type":"categoryDef","startIndex":58123,"stopIndex":58423,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13120},{"__isSmartRef__":true,"id":13122},{"__isSmartRef__":true,"id":13123},{"__isSmartRef__":true,"id":13124},{"__isSmartRef__":true,"id":13125}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13122":{"name":"allocateRawNode","type":"propertyDef","startIndex":58143,"stopIndex":58268,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13121},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13119},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13123":{"name":"controlPoints","type":"propertyDef","startIndex":58271,"stopIndex":58315,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13121},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13119},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13124":{"name":"attributeFormat","type":"propertyDef","startIndex":58319,"stopIndex":58382,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13121},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13119},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13125":{"name":"translate","type":"propertyDef","startIndex":58386,"stopIndex":58421,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13121},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13119},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13126":{"name":"lively.scene.ClosePath","type":"klassExtensionDef","startIndex":58427,"stopIndex":58666,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13127},{"__isSmartRef__":true,"id":13129},{"__isSmartRef__":true,"id":13130}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13128}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13127":{"name":"fromLiteral","type":"propertyDef","startIndex":58467,"stopIndex":58574,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13128},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13126},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13128":{"name":"default category","type":"categoryDef","startIndex":58465,"stopIndex":58663,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13127},{"__isSmartRef__":true,"id":13129},{"__isSmartRef__":true,"id":13130}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13129":{"name":"dataLength","type":"propertyDef","startIndex":58576,"stopIndex":58590,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13128},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13126},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13130":{"name":"create","type":"propertyDef","startIndex":58592,"stopIndex":58661,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13128},"className":"lively.scene.ClosePath","_owner":{"__isSmartRef__":true,"id":13126},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13131":{"name":null,"type":"comment","startIndex":58667,"stopIndex":58668,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13132":{"name":"lively.scene.Path","type":"klassDef","startIndex":58669,"stopIndex":67530,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13133},{"__isSmartRef__":true,"id":13135},{"__isSmartRef__":true,"id":13137},{"__isSmartRef__":true,"id":13138},{"__isSmartRef__":true,"id":13140},{"__isSmartRef__":true,"id":13141},{"__isSmartRef__":true,"id":13143},{"__isSmartRef__":true,"id":13145},{"__isSmartRef__":true,"id":13146},{"__isSmartRef__":true,"id":13148},{"__isSmartRef__":true,"id":13149},{"__isSmartRef__":true,"id":13150},{"__isSmartRef__":true,"id":13151},{"__isSmartRef__":true,"id":13152},{"__isSmartRef__":true,"id":13153},{"__isSmartRef__":true,"id":13154},{"__isSmartRef__":true,"id":13155},{"__isSmartRef__":true,"id":13156},{"__isSmartRef__":true,"id":13157},{"__isSmartRef__":true,"id":13158},{"__isSmartRef__":true,"id":13160},{"__isSmartRef__":true,"id":13162}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Shape","categories":[{"__isSmartRef__":true,"id":13134},{"__isSmartRef__":true,"id":13136},{"__isSmartRef__":true,"id":13139},{"__isSmartRef__":true,"id":13142},{"__isSmartRef__":true,"id":13144},{"__isSmartRef__":true,"id":13147},{"__isSmartRef__":true,"id":13159},{"__isSmartRef__":true,"id":13161},{"__isSmartRef__":true,"id":13163}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13133":{"name":"documentation","type":"propertyDef","startIndex":58737,"stopIndex":58796,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13134},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13134":{"name":"documentation","type":"categoryDef","startIndex":58718,"stopIndex":58799,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13133}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13135":{"name":"hasElbowProtrusions","type":"propertyDef","startIndex":58815,"stopIndex":58841,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13136},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13136":{"name":"settings","type":"categoryDef","startIndex":58801,"stopIndex":58873,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13135},{"__isSmartRef__":true,"id":13137}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13137":{"name":"showInsertionPoints","type":"propertyDef","startIndex":58843,"stopIndex":58870,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13136},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13138":{"name":"initialize","type":"propertyDef","startIndex":58892,"stopIndex":59154,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13139},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13139":{"name":"initalizing","type":"categoryDef","startIndex":58875,"stopIndex":59446,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13138},{"__isSmartRef__":true,"id":13140}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13140":{"name":"copyFrom","type":"propertyDef","startIndex":59156,"stopIndex":59443,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13139},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13141":{"name":"deserialize","type":"propertyDef","startIndex":59471,"stopIndex":59620,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13142},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13142":{"name":"XML serialization","type":"categoryDef","startIndex":59448,"stopIndex":59623,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13141}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13143":{"name":"setElementsFromSVGData","type":"propertyDef","startIndex":59643,"stopIndex":59772,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13144},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13144":{"name":"svg specific","type":"categoryDef","startIndex":59625,"stopIndex":60063,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13143},{"__isSmartRef__":true,"id":13145}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13145":{"name":"createSVGDataFromElements","type":"propertyDef","startIndex":59775,"stopIndex":60060,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13144},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13146":{"name":"setElements","type":"propertyDef","startIndex":60080,"stopIndex":60243,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13147":{"name":"accessing","type":"categoryDef","startIndex":60065,"stopIndex":64802,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13146},{"__isSmartRef__":true,"id":13148},{"__isSmartRef__":true,"id":13149},{"__isSmartRef__":true,"id":13150},{"__isSmartRef__":true,"id":13151},{"__isSmartRef__":true,"id":13152},{"__isSmartRef__":true,"id":13153},{"__isSmartRef__":true,"id":13154},{"__isSmartRef__":true,"id":13155},{"__isSmartRef__":true,"id":13156},{"__isSmartRef__":true,"id":13157}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13148":{"name":"getElements","type":"propertyDef","startIndex":60245,"stopIndex":60298,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13149":{"name":"setVertices","type":"propertyDef","startIndex":60303,"stopIndex":60899,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13150":{"name":"setVerticesAndControls","type":"propertyDef","startIndex":60901,"stopIndex":61422,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13151":{"name":"vertices","type":"propertyDef","startIndex":61425,"stopIndex":61842,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13152":{"name":"controlPoints","type":"propertyDef","startIndex":61845,"stopIndex":62216,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13153":{"name":"bounds","type":"propertyDef","startIndex":62218,"stopIndex":62387,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13154":{"name":"setBounds","type":"propertyDef","startIndex":62390,"stopIndex":62491,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13155":{"name":"partNameNear","type":"propertyDef","startIndex":62494,"stopIndex":62576,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13156":{"name":"allPartNames","type":"propertyDef","startIndex":62578,"stopIndex":63913,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13157":{"name":"partPosition","type":"propertyDef","startIndex":63916,"stopIndex":64798,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13147},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13158":{"name":"containsPoint","type":"propertyDef","startIndex":64817,"stopIndex":64886,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13159},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13159":{"name":"testing","type":"categoryDef","startIndex":64804,"stopIndex":64889,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13158}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13160":{"name":"normalize","type":"propertyDef","startIndex":64908,"stopIndex":65459,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13161},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13161":{"name":"normalizing","type":"categoryDef","startIndex":64891,"stopIndex":65462,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13160}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13162":{"name":"reshape","type":"propertyDef","startIndex":65478,"stopIndex":67525,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13163},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13132},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13163":{"name":"updating","type":"categoryDef","startIndex":65464,"stopIndex":67527,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13162}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13164":{"name":null,"type":"comment","startIndex":67531,"stopIndex":67531,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13165":{"name":"lively.scene.Path","type":"klassExtensionDef","startIndex":67532,"stopIndex":67654,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13166}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13167}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13166":{"name":"fromLiteral","type":"propertyDef","startIndex":67567,"stopIndex":67649,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13167},"className":"lively.scene.Path","_owner":{"__isSmartRef__":true,"id":13165},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13167":{"name":"default category","type":"categoryDef","startIndex":67565,"stopIndex":67651,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13166}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13168":{"name":null,"type":"comment","startIndex":67655,"stopIndex":67655,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13169":{"name":"lively.scene.Group","type":"klassDef","startIndex":67656,"stopIndex":71250,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13170},{"__isSmartRef__":true,"id":13172},{"__isSmartRef__":true,"id":13173},{"__isSmartRef__":true,"id":13174},{"__isSmartRef__":true,"id":13175},{"__isSmartRef__":true,"id":13176},{"__isSmartRef__":true,"id":13177},{"__isSmartRef__":true,"id":13178},{"__isSmartRef__":true,"id":13179},{"__isSmartRef__":true,"id":13180},{"__isSmartRef__":true,"id":13181},{"__isSmartRef__":true,"id":13182},{"__isSmartRef__":true,"id":13183},{"__isSmartRef__":true,"id":13184},{"__isSmartRef__":true,"id":13185},{"__isSmartRef__":true,"id":13186},{"__isSmartRef__":true,"id":13187},{"__isSmartRef__":true,"id":13188}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.Shape","categories":[{"__isSmartRef__":true,"id":13171}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13170":{"name":"documentation","type":"propertyDef","startIndex":67702,"stopIndex":67745,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13171":{"name":"default category","type":"categoryDef","startIndex":67698,"stopIndex":71247,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13170},{"__isSmartRef__":true,"id":13172},{"__isSmartRef__":true,"id":13173},{"__isSmartRef__":true,"id":13174},{"__isSmartRef__":true,"id":13175},{"__isSmartRef__":true,"id":13176},{"__isSmartRef__":true,"id":13177},{"__isSmartRef__":true,"id":13178},{"__isSmartRef__":true,"id":13179},{"__isSmartRef__":true,"id":13180},{"__isSmartRef__":true,"id":13181},{"__isSmartRef__":true,"id":13182},{"__isSmartRef__":true,"id":13183},{"__isSmartRef__":true,"id":13184},{"__isSmartRef__":true,"id":13185},{"__isSmartRef__":true,"id":13186},{"__isSmartRef__":true,"id":13187},{"__isSmartRef__":true,"id":13188}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13172":{"name":"initialize","type":"propertyDef","startIndex":67748,"stopIndex":67900,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13173":{"name":"copyFrom","type":"propertyDef","startIndex":67903,"stopIndex":68189,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13174":{"name":"deserialize","type":"propertyDef","startIndex":68192,"stopIndex":68880,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13175":{"name":"add","type":"propertyDef","startIndex":68883,"stopIndex":69021,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13176":{"name":"removeAll","type":"propertyDef","startIndex":69024,"stopIndex":69157,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13177":{"name":"setContent","type":"propertyDef","startIndex":69160,"stopIndex":69302,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13178":{"name":"bounds","type":"propertyDef","startIndex":69305,"stopIndex":69851,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13179":{"name":"setBounds","type":"propertyDef","startIndex":69854,"stopIndex":69943,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13180":{"name":"containsPoint","type":"propertyDef","startIndex":69946,"stopIndex":70175,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13181":{"name":"getOrigin","type":"propertyDef","startIndex":70178,"stopIndex":70245,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13182":{"name":"pvtGetTranslate","type":"propertyDef","startIndex":70248,"stopIndex":70456,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13183":{"name":"translateBy","type":"propertyDef","startIndex":70459,"stopIndex":71009,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13184":{"name":"reshape","type":"propertyDef","startIndex":71011,"stopIndex":71036,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13185":{"name":"partNameNear","type":"propertyDef","startIndex":71039,"stopIndex":71091,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13186":{"name":"allPartNames","type":"propertyDef","startIndex":71093,"stopIndex":71145,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13187":{"name":"partPosition","type":"propertyDef","startIndex":71148,"stopIndex":71200,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13188":{"name":"vertices","type":"propertyDef","startIndex":71202,"stopIndex":71246,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13171},"className":"lively.scene.Group","_owner":{"__isSmartRef__":true,"id":13169},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13189":{"name":null,"type":"comment","startIndex":71251,"stopIndex":71252,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13190":{"name":"this.Group","type":"klassExtensionDef","startIndex":71253,"stopIndex":71714,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13191}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13192}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13191":{"name":"fromLiteral","type":"propertyDef","startIndex":71281,"stopIndex":71710,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13192},"className":"this.Group","_owner":{"__isSmartRef__":true,"id":13190},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13192":{"name":"default category","type":"categoryDef","startIndex":71279,"stopIndex":71711,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13191}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13193":{"name":null,"type":"comment","startIndex":71715,"stopIndex":71715,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13194":{"name":"lively.scene.Image","type":"klassDef","startIndex":71716,"stopIndex":71765,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Node","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13195":{"name":null,"type":"comment","startIndex":71766,"stopIndex":71767,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13196":{"name":null,"type":"unknown","startIndex":71768,"stopIndex":71939,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13197":{"name":null,"type":"comment","startIndex":71940,"stopIndex":71940,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13198":{"name":"lively.scene.Image","type":"klassExtensionDef","startIndex":71941,"stopIndex":75228,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13199},{"__isSmartRef__":true,"id":13201},{"__isSmartRef__":true,"id":13202},{"__isSmartRef__":true,"id":13203},{"__isSmartRef__":true,"id":13204},{"__isSmartRef__":true,"id":13205},{"__isSmartRef__":true,"id":13206},{"__isSmartRef__":true,"id":13207},{"__isSmartRef__":true,"id":13208},{"__isSmartRef__":true,"id":13209},{"__isSmartRef__":true,"id":13210},{"__isSmartRef__":true,"id":13211},{"__isSmartRef__":true,"id":13212},{"__isSmartRef__":true,"id":13213}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13200}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13199":{"name":"description","type":"propertyDef","startIndex":71973,"stopIndex":72020,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13200":{"name":"default category","type":"categoryDef","startIndex":71971,"stopIndex":75225,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13199},{"__isSmartRef__":true,"id":13201},{"__isSmartRef__":true,"id":13202},{"__isSmartRef__":true,"id":13203},{"__isSmartRef__":true,"id":13204},{"__isSmartRef__":true,"id":13205},{"__isSmartRef__":true,"id":13206},{"__isSmartRef__":true,"id":13207},{"__isSmartRef__":true,"id":13208},{"__isSmartRef__":true,"id":13209},{"__isSmartRef__":true,"id":13210},{"__isSmartRef__":true,"id":13211},{"__isSmartRef__":true,"id":13212},{"__isSmartRef__":true,"id":13213}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13201":{"name":"initialize","type":"propertyDef","startIndex":72023,"stopIndex":72184,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13202":{"name":"deserialize","type":"propertyDef","startIndex":72187,"stopIndex":72738,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13203":{"name":"bounds","type":"propertyDef","startIndex":72741,"stopIndex":72830,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13204":{"name":"containsPoint","type":"propertyDef","startIndex":72833,"stopIndex":72906,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13205":{"name":"getWidth","type":"propertyDef","startIndex":72909,"stopIndex":73072,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13206":{"name":"getHeight","type":"propertyDef","startIndex":73075,"stopIndex":73240,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13207":{"name":"setWidth","type":"propertyDef","startIndex":73243,"stopIndex":73326,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13208":{"name":"setHeight","type":"propertyDef","startIndex":73329,"stopIndex":73417,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13209":{"name":"reload","type":"propertyDef","startIndex":73420,"stopIndex":73559,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13210":{"name":"getURL","type":"propertyDef","startIndex":73562,"stopIndex":73626,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13211":{"name":"scaleBy","type":"propertyDef","startIndex":73629,"stopIndex":73746,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13212":{"name":"loadUse","type":"propertyDef","startIndex":73749,"stopIndex":74053,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13213":{"name":"loadImage","type":"propertyDef","startIndex":74056,"stopIndex":75222,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13200},"className":"lively.scene.Image","_owner":{"__isSmartRef__":true,"id":13198},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13214":{"name":null,"type":"comment","startIndex":75229,"stopIndex":75230,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13215":{"name":"lively.scene.Clip","type":"klassDef","startIndex":75231,"stopIndex":76233,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13216},{"__isSmartRef__":true,"id":13218},{"__isSmartRef__":true,"id":13219},{"__isSmartRef__":true,"id":13220},{"__isSmartRef__":true,"id":13221}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.Node","categories":[{"__isSmartRef__":true,"id":13217}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13216":{"name":"documentation","type":"propertyDef","startIndex":75273,"stopIndex":75328,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13217},"className":"lively.scene.Clip","_owner":{"__isSmartRef__":true,"id":13215},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13217":{"name":"default category","type":"categoryDef","startIndex":75271,"stopIndex":76230,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13216},{"__isSmartRef__":true,"id":13218},{"__isSmartRef__":true,"id":13219},{"__isSmartRef__":true,"id":13220},{"__isSmartRef__":true,"id":13221}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13218":{"name":"initialize","type":"propertyDef","startIndex":75331,"stopIndex":75527,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13217},"className":"lively.scene.Clip","_owner":{"__isSmartRef__":true,"id":13215},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13219":{"name":"deserialize","type":"propertyDef","startIndex":75530,"stopIndex":75966,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13217},"className":"lively.scene.Clip","_owner":{"__isSmartRef__":true,"id":13215},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13220":{"name":"setClipShape","type":"propertyDef","startIndex":75969,"stopIndex":76149,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13217},"className":"lively.scene.Clip","_owner":{"__isSmartRef__":true,"id":13215},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13221":{"name":"applyTo","type":"propertyDef","startIndex":76152,"stopIndex":76229,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13217},"className":"lively.scene.Clip","_owner":{"__isSmartRef__":true,"id":13215},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13222":{"name":null,"type":"comment","startIndex":76234,"stopIndex":76234,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13223":{"name":"this.Clip","type":"klassExtensionDef","startIndex":76235,"stopIndex":76282,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13224}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13225}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13224":{"name":"clipCounter","type":"propertyDef","startIndex":76262,"stopIndex":76277,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13225},"className":"this.Clip","_owner":{"__isSmartRef__":true,"id":13223},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13225":{"name":"default category","type":"categoryDef","startIndex":76260,"stopIndex":76279,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13224}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13226":{"name":null,"type":"comment","startIndex":76283,"stopIndex":76284,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13227":{"name":"lively.scene.Similitude","type":"klassDef","startIndex":76285,"stopIndex":82532,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13228},{"__isSmartRef__":true,"id":13230},{"__isSmartRef__":true,"id":13231},{"__isSmartRef__":true,"id":13232},{"__isSmartRef__":true,"id":13233},{"__isSmartRef__":true,"id":13234},{"__isSmartRef__":true,"id":13235},{"__isSmartRef__":true,"id":13236},{"__isSmartRef__":true,"id":13237},{"__isSmartRef__":true,"id":13238},{"__isSmartRef__":true,"id":13239},{"__isSmartRef__":true,"id":13240},{"__isSmartRef__":true,"id":13241},{"__isSmartRef__":true,"id":13242},{"__isSmartRef__":true,"id":13243},{"__isSmartRef__":true,"id":13244},{"__isSmartRef__":true,"id":13245},{"__isSmartRef__":true,"id":13246},{"__isSmartRef__":true,"id":13247},{"__isSmartRef__":true,"id":13248},{"__isSmartRef__":true,"id":13249},{"__isSmartRef__":true,"id":13250}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":13229}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13228":{"name":"documentation","type":"propertyDef","startIndex":76330,"stopIndex":76423,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13229":{"name":"default category","type":"categoryDef","startIndex":76328,"stopIndex":82529,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13228},{"__isSmartRef__":true,"id":13230},{"__isSmartRef__":true,"id":13231},{"__isSmartRef__":true,"id":13232},{"__isSmartRef__":true,"id":13233},{"__isSmartRef__":true,"id":13234},{"__isSmartRef__":true,"id":13235},{"__isSmartRef__":true,"id":13236},{"__isSmartRef__":true,"id":13237},{"__isSmartRef__":true,"id":13238},{"__isSmartRef__":true,"id":13239},{"__isSmartRef__":true,"id":13240},{"__isSmartRef__":true,"id":13241},{"__isSmartRef__":true,"id":13242},{"__isSmartRef__":true,"id":13243},{"__isSmartRef__":true,"id":13244},{"__isSmartRef__":true,"id":13245},{"__isSmartRef__":true,"id":13246},{"__isSmartRef__":true,"id":13247},{"__isSmartRef__":true,"id":13248},{"__isSmartRef__":true,"id":13249},{"__isSmartRef__":true,"id":13250}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13230":{"name":"eps","type":"propertyDef","startIndex":76426,"stopIndex":76662,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13231":{"name":"doNotSerialize","type":"propertyDef","startIndex":76844,"stopIndex":76872,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13232":{"name":"initialize","type":"propertyDef","startIndex":76876,"stopIndex":77781,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13233":{"name":"getRotation","type":"propertyDef","startIndex":77784,"stopIndex":78053,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13234":{"name":"getScale","type":"propertyDef","startIndex":78056,"stopIndex":78346,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13235":{"name":"getScalePoint","type":"propertyDef","startIndex":78349,"stopIndex":78749,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13236":{"name":"isTranslation","type":"propertyDef","startIndex":78753,"stopIndex":78895,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13237":{"name":"getTranslation","type":"propertyDef","startIndex":78898,"stopIndex":78959,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13238":{"name":"toAttributeValue","type":"propertyDef","startIndex":78962,"stopIndex":79338,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13239":{"name":"applyTo","type":"propertyDef","startIndex":79341,"stopIndex":80054,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13240":{"name":"toString","type":"propertyDef","startIndex":80057,"stopIndex":80117,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13241":{"name":"transformPoint","type":"propertyDef","startIndex":80120,"stopIndex":80197,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13242":{"name":"transformDirection","type":"propertyDef","startIndex":80200,"stopIndex":80290,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13243":{"name":"matrixTransformForMinMax","type":"propertyDef","startIndex":80293,"stopIndex":80579,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13244":{"name":"transformRectToRect","type":"propertyDef","startIndex":80582,"stopIndex":81108,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13245":{"name":"copy","type":"propertyDef","startIndex":81111,"stopIndex":81177,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13246":{"name":"toMatrix","type":"propertyDef","startIndex":81180,"stopIndex":81366,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13247":{"name":"ensureNumber","type":"propertyDef","startIndex":81369,"stopIndex":81789,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13248":{"name":"fromMatrix","type":"propertyDef","startIndex":81793,"stopIndex":82039,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13249":{"name":"preConcatenate","type":"propertyDef","startIndex":82042,"stopIndex":82389,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13250":{"name":"createInverse","type":"propertyDef","startIndex":82392,"stopIndex":82528,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13229},"className":"lively.scene.Similitude","_owner":{"__isSmartRef__":true,"id":13227},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13251":{"name":null,"type":"comment","startIndex":82533,"stopIndex":82533,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13252":{"name":"lively.scene.Transform","type":"klassDef","startIndex":82534,"stopIndex":85705,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13253},{"__isSmartRef__":true,"id":13255},{"__isSmartRef__":true,"id":13256},{"__isSmartRef__":true,"id":13257},{"__isSmartRef__":true,"id":13258},{"__isSmartRef__":true,"id":13259},{"__isSmartRef__":true,"id":13260},{"__isSmartRef__":true,"id":13261},{"__isSmartRef__":true,"id":13262},{"__isSmartRef__":true,"id":13263},{"__isSmartRef__":true,"id":13264},{"__isSmartRef__":true,"id":13265}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Wrapper","categories":[{"__isSmartRef__":true,"id":13254}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13253":{"name":"initialize","type":"propertyDef","startIndex":82579,"stopIndex":82872,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13254":{"name":"default category","type":"categoryDef","startIndex":82577,"stopIndex":85702,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13253},{"__isSmartRef__":true,"id":13255},{"__isSmartRef__":true,"id":13256},{"__isSmartRef__":true,"id":13257},{"__isSmartRef__":true,"id":13258},{"__isSmartRef__":true,"id":13259},{"__isSmartRef__":true,"id":13260},{"__isSmartRef__":true,"id":13261},{"__isSmartRef__":true,"id":13262},{"__isSmartRef__":true,"id":13263},{"__isSmartRef__":true,"id":13264},{"__isSmartRef__":true,"id":13265}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13255":{"name":"getTranslate","type":"propertyDef","startIndex":82875,"stopIndex":83113,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13256":{"name":"setTranslate","type":"propertyDef","startIndex":83116,"stopIndex":83290,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13257":{"name":"setRotate","type":"propertyDef","startIndex":83293,"stopIndex":83531,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13258":{"name":"setTranslateX","type":"propertyDef","startIndex":83534,"stopIndex":83816,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13259":{"name":"setX","type":"propertyDef","startIndex":83819,"stopIndex":83874,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13260":{"name":"setTranslateY","type":"propertyDef","startIndex":83878,"stopIndex":84157,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13261":{"name":"setY","type":"propertyDef","startIndex":84160,"stopIndex":84215,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13262":{"name":"type","type":"propertyDef","startIndex":84219,"stopIndex":84269,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13263":{"name":"getAngle","type":"propertyDef","startIndex":84272,"stopIndex":84487,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13264":{"name":"getScale","type":"propertyDef","startIndex":84490,"stopIndex":84743,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13265":{"name":"toString","type":"propertyDef","startIndex":84747,"stopIndex":85701,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13254},"className":"lively.scene.Transform","_owner":{"__isSmartRef__":true,"id":13252},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13266":{"name":null,"type":"comment","startIndex":85706,"stopIndex":85706,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13267":{"name":"lively.scene.Translate","type":"objectDef","startIndex":85707,"stopIndex":85973,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13268}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13268":{"name":"fromLiteral","type":"propertyDef","startIndex":85734,"stopIndex":85970,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13269},"_owner":{"__isSmartRef__":true,"id":13267},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13269":{"name":"default category","type":"categoryDef","startIndex":25,"stopIndex":264,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13268}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13270":{"name":null,"type":"comment","startIndex":85974,"stopIndex":85975,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13271":{"name":"lively.scene.Rotate","type":"klassDef","startIndex":85976,"stopIndex":86442,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13272},{"__isSmartRef__":true,"id":13274}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Transform","categories":[{"__isSmartRef__":true,"id":13273}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13272":{"name":"initialize","type":"propertyDef","startIndex":86033,"stopIndex":86303,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13273},"className":"lively.scene.Rotate","_owner":{"__isSmartRef__":true,"id":13271},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13273":{"name":"default category","type":"categoryDef","startIndex":86031,"stopIndex":86439,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13272},{"__isSmartRef__":true,"id":13274}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13274":{"name":"setAngle","type":"propertyDef","startIndex":86306,"stopIndex":86438,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13273},"className":"lively.scene.Rotate","_owner":{"__isSmartRef__":true,"id":13271},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13275":{"name":null,"type":"comment","startIndex":86443,"stopIndex":86443,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13276":{"name":"lively.scene.Rotate","type":"klassExtensionDef","startIndex":86444,"stopIndex":86592,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13277}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13278}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13277":{"name":"fromLiteral","type":"propertyDef","startIndex":86481,"stopIndex":86588,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13278},"className":"lively.scene.Rotate","_owner":{"__isSmartRef__":true,"id":13276},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13278":{"name":"default category","type":"categoryDef","startIndex":86479,"stopIndex":86589,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13277}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13279":{"name":null,"type":"comment","startIndex":86593,"stopIndex":86593,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13280":{"name":"lively.scene.Effect","type":"klassDef","startIndex":86594,"stopIndex":86934,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13281},{"__isSmartRef__":true,"id":13283}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Wrapper","categories":[{"__isSmartRef__":true,"id":13282}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13281":{"name":"initialize","type":"propertyDef","startIndex":86637,"stopIndex":86834,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13282},"className":"lively.scene.Effect","_owner":{"__isSmartRef__":true,"id":13280},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13282":{"name":"default category","type":"categoryDef","startIndex":86634,"stopIndex":86931,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13281},{"__isSmartRef__":true,"id":13283}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13283":{"name":"applyTo","type":"propertyDef","startIndex":86837,"stopIndex":86930,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13282},"className":"lively.scene.Effect","_owner":{"__isSmartRef__":true,"id":13280},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13284":{"name":null,"type":"comment","startIndex":86935,"stopIndex":86935,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13285":{"name":"lively.scene.GaussianBlurEffect","type":"klassDef","startIndex":86936,"stopIndex":87456,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13286},{"__isSmartRef__":true,"id":13288},{"__isSmartRef__":true,"id":13289}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.Effect","categories":[{"__isSmartRef__":true,"id":13287}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13286":{"name":"nodeName","type":"propertyDef","startIndex":86994,"stopIndex":87021,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13287},"className":"lively.scene.GaussianBlurEffect","_owner":{"__isSmartRef__":true,"id":13285},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13287":{"name":"default category","type":"categoryDef","startIndex":86992,"stopIndex":87453,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13286},{"__isSmartRef__":true,"id":13288},{"__isSmartRef__":true,"id":13289}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13288":{"name":"initialize","type":"propertyDef","startIndex":87023,"stopIndex":87211,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13287},"className":"lively.scene.GaussianBlurEffect","_owner":{"__isSmartRef__":true,"id":13285},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13289":{"name":"setRadius","type":"propertyDef","startIndex":87214,"stopIndex":87451,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13287},"className":"lively.scene.GaussianBlurEffect","_owner":{"__isSmartRef__":true,"id":13285},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13290":{"name":null,"type":"comment","startIndex":87457,"stopIndex":87458,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13291":{"name":"lively.scene.BlendEffect","type":"klassDef","startIndex":87459,"stopIndex":88148,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13292},{"__isSmartRef__":true,"id":13294}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.Effect","categories":[{"__isSmartRef__":true,"id":13293}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13292":{"name":"nodeName","type":"propertyDef","startIndex":87510,"stopIndex":87530,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13293},"className":"lively.scene.BlendEffect","_owner":{"__isSmartRef__":true,"id":13291},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13293":{"name":"default category","type":"categoryDef","startIndex":87508,"stopIndex":88145,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13292},{"__isSmartRef__":true,"id":13294}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13294":{"name":"initialize","type":"propertyDef","startIndex":87532,"stopIndex":88144,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13293},"className":"lively.scene.BlendEffect","_owner":{"__isSmartRef__":true,"id":13291},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13295":{"name":null,"type":"comment","startIndex":88149,"stopIndex":88149,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13296":{"name":"lively.scene.ColorAdjustEffect","type":"klassDef","startIndex":88150,"stopIndex":88665,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13297},{"__isSmartRef__":true,"id":13299}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.Effect","categories":[{"__isSmartRef__":true,"id":13298}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13297":{"name":"nodeName","type":"propertyDef","startIndex":88207,"stopIndex":88233,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13298},"className":"lively.scene.ColorAdjustEffect","_owner":{"__isSmartRef__":true,"id":13296},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13298":{"name":"default category","type":"categoryDef","startIndex":88205,"stopIndex":88662,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13297},{"__isSmartRef__":true,"id":13299}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13299":{"name":"initialize","type":"propertyDef","startIndex":88235,"stopIndex":88661,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13298},"className":"lively.scene.ColorAdjustEffect","_owner":{"__isSmartRef__":true,"id":13296},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13300":{"name":null,"type":"comment","startIndex":88666,"stopIndex":88666,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13301":{"name":"lively.scene.SaturateEffect","type":"klassDef","startIndex":88667,"stopIndex":89058,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13302},{"__isSmartRef__":true,"id":13304}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"this.Effect","categories":[{"__isSmartRef__":true,"id":13303}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13302":{"name":"nodeName","type":"propertyDef","startIndex":88721,"stopIndex":88747,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13303},"className":"lively.scene.SaturateEffect","_owner":{"__isSmartRef__":true,"id":13301},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13303":{"name":"default category","type":"categoryDef","startIndex":88719,"stopIndex":89055,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13302},{"__isSmartRef__":true,"id":13304}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13304":{"name":"initialize","type":"propertyDef","startIndex":88749,"stopIndex":89054,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13303},"className":"lively.scene.SaturateEffect","_owner":{"__isSmartRef__":true,"id":13301},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13305":{"name":null,"type":"comment","startIndex":89059,"stopIndex":89059,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13306":{"name":"lively.scene.Text","type":"klassDef","startIndex":89060,"stopIndex":89407,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13307},{"__isSmartRef__":true,"id":13309},{"__isSmartRef__":true,"id":13310},{"__isSmartRef__":true,"id":13311}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.scene.Node","categories":[{"__isSmartRef__":true,"id":13308}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13307":{"name":"documentation","type":"propertyDef","startIndex":89110,"stopIndex":89160,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13308},"className":"lively.scene.Text","_owner":{"__isSmartRef__":true,"id":13306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13308":{"name":"default category","type":"categoryDef","startIndex":89108,"stopIndex":89404,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13307},{"__isSmartRef__":true,"id":13309},{"__isSmartRef__":true,"id":13310},{"__isSmartRef__":true,"id":13311}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13309":{"name":"initialize","type":"propertyDef","startIndex":89162,"stopIndex":89253,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13308},"className":"lively.scene.Text","_owner":{"__isSmartRef__":true,"id":13306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13310":{"name":"getFontSize","type":"propertyDef","startIndex":89256,"stopIndex":89328,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13308},"className":"lively.scene.Text","_owner":{"__isSmartRef__":true,"id":13306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13311":{"name":"getFontFamily","type":"propertyDef","startIndex":89331,"stopIndex":89401,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13308},"className":"lively.scene.Text","_owner":{"__isSmartRef__":true,"id":13306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13312":{"name":null,"type":"comment","startIndex":89408,"stopIndex":89411,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13313":{"name":null,"type":"comment","startIndex":89442,"stopIndex":89669,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13314":{"name":"namespace('lively.paint'), lively.data.Wrapper","type":"usingDef","startIndex":89670,"stopIndex":94622,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13315},{"__isSmartRef__":true,"id":13316},{"__isSmartRef__":true,"id":13325},{"__isSmartRef__":true,"id":13326},{"__isSmartRef__":true,"id":13329},{"__isSmartRef__":true,"id":13330},{"__isSmartRef__":true,"id":13346},{"__isSmartRef__":true,"id":13347},{"__isSmartRef__":true,"id":13353},{"__isSmartRef__":true,"id":13354},{"__isSmartRef__":true,"id":13357},{"__isSmartRef__":true,"id":13358},{"__isSmartRef__":true,"id":13366},{"__isSmartRef__":true,"id":13367},{"__isSmartRef__":true,"id":13373},{"__isSmartRef__":true,"id":13374},{"__isSmartRef__":true,"id":13377}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13315":{"name":null,"type":"comment","startIndex":89756,"stopIndex":89756,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13316":{"name":"lively.paint.Stop","type":"klassDef","startIndex":89757,"stopIndex":90491,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13317},{"__isSmartRef__":true,"id":13319},{"__isSmartRef__":true,"id":13320},{"__isSmartRef__":true,"id":13321},{"__isSmartRef__":true,"id":13322},{"__isSmartRef__":true,"id":13323},{"__isSmartRef__":true,"id":13324}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":13318}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13317":{"name":"initialize","type":"propertyDef","startIndex":89809,"stopIndex":89959,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13318},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13316},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13318":{"name":"default category","type":"categoryDef","startIndex":89807,"stopIndex":90488,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13317},{"__isSmartRef__":true,"id":13319},{"__isSmartRef__":true,"id":13320},{"__isSmartRef__":true,"id":13321},{"__isSmartRef__":true,"id":13322},{"__isSmartRef__":true,"id":13323},{"__isSmartRef__":true,"id":13324}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13319":{"name":"deserialize","type":"propertyDef","startIndex":89962,"stopIndex":90034,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13318},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13316},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13320":{"name":"copyFrom","type":"propertyDef","startIndex":90037,"stopIndex":90143,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13318},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13316},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13321":{"name":"color","type":"propertyDef","startIndex":90146,"stopIndex":90225,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13318},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13316},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13322":{"name":"offset","type":"propertyDef","startIndex":90228,"stopIndex":90292,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13318},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13316},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13323":{"name":"toLiteral","type":"propertyDef","startIndex":90295,"stopIndex":90395,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13318},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13316},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13324":{"name":"toString","type":"propertyDef","startIndex":90398,"stopIndex":90487,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13318},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13316},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13325":{"name":null,"type":"comment","startIndex":90492,"stopIndex":90492,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13326":{"name":"lively.paint.Stop","type":"klassExtensionDef","startIndex":90493,"stopIndex":90632,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13327}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13328}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13327":{"name":"fromLiteral","type":"propertyDef","startIndex":90528,"stopIndex":90627,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13328},"className":"lively.paint.Stop","_owner":{"__isSmartRef__":true,"id":13326},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13328":{"name":"default category","type":"categoryDef","startIndex":90526,"stopIndex":90629,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13327}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13329":{"name":null,"type":"comment","startIndex":90633,"stopIndex":90714,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13330":{"name":"lively.paint.Gradient","type":"klassDef","startIndex":90715,"stopIndex":92651,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13331},{"__isSmartRef__":true,"id":13333},{"__isSmartRef__":true,"id":13334},{"__isSmartRef__":true,"id":13335},{"__isSmartRef__":true,"id":13336},{"__isSmartRef__":true,"id":13337},{"__isSmartRef__":true,"id":13338},{"__isSmartRef__":true,"id":13339},{"__isSmartRef__":true,"id":13340},{"__isSmartRef__":true,"id":13342},{"__isSmartRef__":true,"id":13343},{"__isSmartRef__":true,"id":13344}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":13332},{"__isSmartRef__":true,"id":13341},{"__isSmartRef__":true,"id":13345}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13331":{"name":"isGradient","type":"propertyDef","startIndex":90788,"stopIndex":90805,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13332":{"name":"initializing","type":"categoryDef","startIndex":90769,"stopIndex":91856,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13331},{"__isSmartRef__":true,"id":13333},{"__isSmartRef__":true,"id":13334},{"__isSmartRef__":true,"id":13335},{"__isSmartRef__":true,"id":13336},{"__isSmartRef__":true,"id":13337},{"__isSmartRef__":true,"id":13338},{"__isSmartRef__":true,"id":13339}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13333":{"name":"dictionaryNode","type":"propertyDef","startIndex":90807,"stopIndex":90828,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13334":{"name":"initialize","type":"propertyDef","startIndex":90831,"stopIndex":90956,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13335":{"name":"initializeNode","type":"propertyDef","startIndex":90959,"stopIndex":91203,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13336":{"name":"findOrCreateRawNode","type":"propertyDef","startIndex":91205,"stopIndex":91311,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13337":{"name":"createRawNode","type":"propertyDef","startIndex":91315,"stopIndex":91388,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13338":{"name":"deserialize","type":"propertyDef","startIndex":91391,"stopIndex":91614,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13339":{"name":"copyFrom","type":"propertyDef","startIndex":91617,"stopIndex":91852,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13332},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13340":{"name":"rawStopNodes","type":"propertyDef","startIndex":91874,"stopIndex":91977,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13341},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13341":{"name":"accessing","type":"categoryDef","startIndex":91858,"stopIndex":92538,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13340},{"__isSmartRef__":true,"id":13342},{"__isSmartRef__":true,"id":13343}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13342":{"name":"setStops","type":"propertyDef","startIndex":91980,"stopIndex":92360,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13341},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13343":{"name":"addStop","type":"propertyDef","startIndex":92363,"stopIndex":92534,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13341},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13344":{"name":"toString","type":"propertyDef","startIndex":92557,"stopIndex":92645,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13345},"className":"lively.paint.Gradient","_owner":{"__isSmartRef__":true,"id":13330},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13345":{"name":"debugging","type":"categoryDef","startIndex":92541,"stopIndex":92648,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13344}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13346":{"name":null,"type":"comment","startIndex":92652,"stopIndex":92653,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13347":{"name":"lively.paint.LinearGradient","type":"klassDef","startIndex":92654,"stopIndex":93439,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13348},{"__isSmartRef__":true,"id":13350},{"__isSmartRef__":true,"id":13351},{"__isSmartRef__":true,"id":13352}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.paint.Gradient","categories":[{"__isSmartRef__":true,"id":13349}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13348":{"name":"isLinearGradient","type":"propertyDef","startIndex":92735,"stopIndex":92758,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13349},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13347},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13349":{"name":"initializing","type":"categoryDef","startIndex":92716,"stopIndex":93436,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13348},{"__isSmartRef__":true,"id":13350},{"__isSmartRef__":true,"id":13351},{"__isSmartRef__":true,"id":13352}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13350":{"name":"initialize","type":"propertyDef","startIndex":92761,"stopIndex":92922,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13349},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13347},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13351":{"name":"createRawNode","type":"propertyDef","startIndex":92925,"stopIndex":93100,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13349},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13347},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13352":{"name":"mixedWith","type":"propertyDef","startIndex":93103,"stopIndex":93433,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13349},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13347},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13353":{"name":null,"type":"comment","startIndex":93440,"stopIndex":93441,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13354":{"name":"lively.paint.LinearGradient","type":"klassExtensionDef","startIndex":93442,"stopIndex":93646,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13355}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13356}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13355":{"name":"fromLiteral","type":"propertyDef","startIndex":93487,"stopIndex":93642,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13356},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13354},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13356":{"name":"default category","type":"categoryDef","startIndex":93485,"stopIndex":93643,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13355}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13357":{"name":null,"type":"comment","startIndex":93647,"stopIndex":93647,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13358":{"name":"lively.paint.LinearGradient","type":"klassExtensionDef","startIndex":93648,"stopIndex":94005,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13359},{"__isSmartRef__":true,"id":13361},{"__isSmartRef__":true,"id":13362},{"__isSmartRef__":true,"id":13363},{"__isSmartRef__":true,"id":13364},{"__isSmartRef__":true,"id":13365}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13360}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13359":{"name":"NorthSouth","type":"propertyDef","startIndex":93693,"stopIndex":93730,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13360},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13358},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13360":{"name":"default category","type":"categoryDef","startIndex":93691,"stopIndex":94002,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13359},{"__isSmartRef__":true,"id":13361},{"__isSmartRef__":true,"id":13362},{"__isSmartRef__":true,"id":13363},{"__isSmartRef__":true,"id":13364},{"__isSmartRef__":true,"id":13365}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13361":{"name":"SouthNorth","type":"propertyDef","startIndex":93732,"stopIndex":93769,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13360},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13358},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13362":{"name":"EastWest","type":"propertyDef","startIndex":93771,"stopIndex":93806,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13360},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13358},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13363":{"name":"WestEast","type":"propertyDef","startIndex":93808,"stopIndex":93843,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13360},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13358},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13364":{"name":"SouthWest","type":"propertyDef","startIndex":93845,"stopIndex":93881,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13360},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13358},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13365":{"name":"SouthEast","type":"propertyDef","startIndex":93882,"stopIndex":94001,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13360},"className":"lively.paint.LinearGradient","_owner":{"__isSmartRef__":true,"id":13358},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13366":{"name":null,"type":"comment","startIndex":94006,"stopIndex":94007,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13367":{"name":"lively.paint.RadialGradient","type":"klassDef","startIndex":94008,"stopIndex":94443,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13368},{"__isSmartRef__":true,"id":13370},{"__isSmartRef__":true,"id":13371},{"__isSmartRef__":true,"id":13372}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.paint.Gradient","categories":[{"__isSmartRef__":true,"id":13369}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13368":{"name":"isRadialGradient","type":"propertyDef","startIndex":94089,"stopIndex":94112,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13369},"className":"lively.paint.RadialGradient","_owner":{"__isSmartRef__":true,"id":13367},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13369":{"name":"initializing","type":"categoryDef","startIndex":94070,"stopIndex":94440,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13368},{"__isSmartRef__":true,"id":13370},{"__isSmartRef__":true,"id":13371},{"__isSmartRef__":true,"id":13372}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13370":{"name":"initialize","type":"propertyDef","startIndex":94115,"stopIndex":94219,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13369},"className":"lively.paint.RadialGradient","_owner":{"__isSmartRef__":true,"id":13367},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13371":{"name":"createRawNode","type":"propertyDef","startIndex":94222,"stopIndex":94296,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13369},"className":"lively.paint.RadialGradient","_owner":{"__isSmartRef__":true,"id":13367},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13372":{"name":"initializeNode","type":"propertyDef","startIndex":94299,"stopIndex":94437,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13369},"className":"lively.paint.RadialGradient","_owner":{"__isSmartRef__":true,"id":13367},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13373":{"name":null,"type":"comment","startIndex":94444,"stopIndex":94444,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13374":{"name":"lively.paint.RadialGradient","type":"klassExtensionDef","startIndex":94445,"stopIndex":94602,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13375}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13376}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13375":{"name":"fromLiteral","type":"propertyDef","startIndex":94490,"stopIndex":94598,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13376},"className":"lively.paint.RadialGradient","_owner":{"__isSmartRef__":true,"id":13374},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13376":{"name":"default category","type":"categoryDef","startIndex":94488,"stopIndex":94599,"fileName":"lively/scene.js","_subElements":[{"__isSmartRef__":true,"id":13375}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13377":{"name":null,"type":"comment","startIndex":94603,"stopIndex":94603,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13378":{"name":null,"type":"comment","startIndex":94623,"stopIndex":94623,"fileName":"lively/scene.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13379":{"target":{"__isSmartRef__":true,"id":13380},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Scripting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13380":{"name":"lively.Scripting","type":"moduleDef","startIndex":0,"stopIndex":16134,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13381},{"__isSmartRef__":true,"id":13382},{"__isSmartRef__":true,"id":13385},{"__isSmartRef__":true,"id":13401},{"__isSmartRef__":true,"id":13408},{"__isSmartRef__":true,"id":13413},{"__isSmartRef__":true,"id":13417},{"__isSmartRef__":true,"id":13418},{"__isSmartRef__":true,"id":13424},{"__isSmartRef__":true,"id":13425},{"__isSmartRef__":true,"id":13437},{"__isSmartRef__":true,"id":13438},{"__isSmartRef__":true,"id":13441},{"__isSmartRef__":true,"id":13442},{"__isSmartRef__":true,"id":13453},{"__isSmartRef__":true,"id":13469},{"__isSmartRef__":true,"id":13472}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13381":{"name":null,"type":"comment","startIndex":132,"stopIndex":204,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13382":{"name":"Layer","type":"klassExtensionDef","startIndex":205,"stopIndex":350,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13383}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13384}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13383":{"name":"allGlobalInstances","type":"propertyDef","startIndex":228,"stopIndex":345,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13384},"className":"Layer","_owner":{"__isSmartRef__":true,"id":13382},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13384":{"name":"default category","type":"categoryDef","startIndex":226,"stopIndex":347,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13383}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13385":{"name":"ScriptingLayer","type":"copDef","startIndex":351,"stopIndex":4776,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13386},{"__isSmartRef__":true,"id":13387},{"__isSmartRef__":true,"id":13393}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13386":{"name":"beGlobal()","type":"copSubElement","startIndex":380,"stopIndex":390,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":13385},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13387":{"name":"Morph","type":"copSubElement","startIndex":391,"stopIndex":2848,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13388},{"__isSmartRef__":true,"id":13390},{"__isSmartRef__":true,"id":13391},{"__isSmartRef__":true,"id":13392}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13385},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13388":{"name":"layerMenuAddWithLayerItems","type":"propertyDef","startIndex":414,"stopIndex":815,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13389},"_owner":{"__isSmartRef__":true,"id":13387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13389":{"name":"default category","type":"categoryDef","startIndex":61,"stopIndex":2496,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13388},{"__isSmartRef__":true,"id":13390},{"__isSmartRef__":true,"id":13391},{"__isSmartRef__":true,"id":13392}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13390":{"name":"layerMenuRemoveWithLayerItems","type":"propertyDef","startIndex":818,"stopIndex":1239,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13389},"_owner":{"__isSmartRef__":true,"id":13387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13391":{"name":"morphMenu","type":"propertyDef","startIndex":1242,"stopIndex":1939,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13389},"_owner":{"__isSmartRef__":true,"id":13387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13392":{"name":"copyToPartsBin","type":"propertyDef","startIndex":1941,"stopIndex":2845,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13389},"_owner":{"__isSmartRef__":true,"id":13387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13393":{"name":"WorldMorph","type":"copSubElement","startIndex":2849,"stopIndex":4774,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13394},{"__isSmartRef__":true,"id":13396},{"__isSmartRef__":true,"id":13397},{"__isSmartRef__":true,"id":13398},{"__isSmartRef__":true,"id":13399},{"__isSmartRef__":true,"id":13400}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13385},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13394":{"name":"debuggingSubMenuItems","type":"propertyDef","startIndex":2877,"stopIndex":3217,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13395},"_owner":{"__isSmartRef__":true,"id":13393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13395":{"name":"default category","type":"categoryDef","startIndex":2523,"stopIndex":4422,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13394},{"__isSmartRef__":true,"id":13396},{"__isSmartRef__":true,"id":13397},{"__isSmartRef__":true,"id":13398},{"__isSmartRef__":true,"id":13399},{"__isSmartRef__":true,"id":13400}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13396":{"name":"disconnectBrokenAttributeConnections","type":"propertyDef","startIndex":3220,"stopIndex":3533,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13395},"_owner":{"__isSmartRef__":true,"id":13393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13397":{"name":"complexMorphsSubMenuItems","type":"propertyDef","startIndex":3535,"stopIndex":3983,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13395},"_owner":{"__isSmartRef__":true,"id":13393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13398":{"name":"helpSubMenuItems","type":"propertyDef","startIndex":3985,"stopIndex":4585,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13395},"_owner":{"__isSmartRef__":true,"id":13393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13399":{"name":"displayConnections","type":"propertyDef","startIndex":4588,"stopIndex":4688,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13395},"_owner":{"__isSmartRef__":true,"id":13393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13400":{"name":"hideConnections","type":"propertyDef","startIndex":4690,"stopIndex":4767,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13395},"_owner":{"__isSmartRef__":true,"id":13393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13401":{"name":"Morph","type":"klassExtensionDef","startIndex":4777,"stopIndex":5706,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13402},{"__isSmartRef__":true,"id":13404},{"__isSmartRef__":true,"id":13405},{"__isSmartRef__":true,"id":13406},{"__isSmartRef__":true,"id":13407}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13403}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13402":{"name":"showNameField","type":"propertyDef","startIndex":4796,"stopIndex":5218,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13403},"className":"Morph","_owner":{"__isSmartRef__":true,"id":13401},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13403":{"name":"default category","type":"categoryDef","startIndex":4794,"stopIndex":5702,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13402},{"__isSmartRef__":true,"id":13404},{"__isSmartRef__":true,"id":13405},{"__isSmartRef__":true,"id":13406},{"__isSmartRef__":true,"id":13407}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13404":{"name":"removeNameField","type":"propertyDef","startIndex":5221,"stopIndex":5333,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13403},"className":"Morph","_owner":{"__isSmartRef__":true,"id":13401},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13405":{"name":"isShowingNameField","type":"propertyDef","startIndex":5336,"stopIndex":5455,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13403},"className":"Morph","_owner":{"__isSmartRef__":true,"id":13401},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13406":{"name":"showAllNameFields","type":"propertyDef","startIndex":5458,"stopIndex":5589,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13403},"className":"Morph","_owner":{"__isSmartRef__":true,"id":13401},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13407":{"name":"hideAllNameFields","type":"propertyDef","startIndex":5592,"stopIndex":5699,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13403},"className":"Morph","_owner":{"__isSmartRef__":true,"id":13401},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13408":{"name":"DisplayMorphNameLayer","type":"copDef","startIndex":5707,"stopIndex":6164,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13409},{"__isSmartRef__":true,"id":13412}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13409":{"name":"Morph","type":"copSubElement","startIndex":5742,"stopIndex":6151,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13410}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13408},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13410":{"name":"subMenuPropertiesItems","type":"propertyDef","startIndex":5764,"stopIndex":6149,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13411},"_owner":{"__isSmartRef__":true,"id":13409},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13411":{"name":"default category","type":"categoryDef","startIndex":55,"stopIndex":443,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13410}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13412":{"name":"beGlobal()","type":"copSubElement","startIndex":6152,"stopIndex":6162,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":13408},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13413":{"name":"CopyCheapListMorphLayer","type":"copDef","startIndex":6165,"stopIndex":6472,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13414}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13414":{"name":"CheapListMorph","type":"copSubElement","startIndex":6202,"stopIndex":6471,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13415}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13413},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13415":{"name":"morphMenu","type":"propertyDef","startIndex":6233,"stopIndex":6469,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13416},"_owner":{"__isSmartRef__":true,"id":13414},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13416":{"name":"default category","type":"categoryDef","startIndex":66,"stopIndex":305,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13415}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13417":{"name":null,"type":"unknown","startIndex":6473,"stopIndex":6508,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13418":{"name":"lively.Scripting.DuplicatorPanel","type":"klassDef","startIndex":6509,"stopIndex":7275,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13419},{"__isSmartRef__":true,"id":13421},{"__isSmartRef__":true,"id":13422},{"__isSmartRef__":true,"id":13423}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":13420}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13419":{"name":"padding","type":"propertyDef","startIndex":6565,"stopIndex":6600,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13420},"className":"lively.Scripting.DuplicatorPanel","_owner":{"__isSmartRef__":true,"id":13418},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13420":{"name":"default category","type":"categoryDef","startIndex":6563,"stopIndex":7272,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13419},{"__isSmartRef__":true,"id":13421},{"__isSmartRef__":true,"id":13422},{"__isSmartRef__":true,"id":13423}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13421":{"name":"initialize","type":"propertyDef","startIndex":6603,"stopIndex":7141,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13420},"className":"lively.Scripting.DuplicatorPanel","_owner":{"__isSmartRef__":true,"id":13418},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13422":{"name":"suppressHandles","type":"propertyDef","startIndex":7144,"stopIndex":7166,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13420},"className":"lively.Scripting.DuplicatorPanel","_owner":{"__isSmartRef__":true,"id":13418},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13423":{"name":"addSlot","type":"propertyDef","startIndex":7169,"stopIndex":7271,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13420},"className":"lively.Scripting.DuplicatorPanel","_owner":{"__isSmartRef__":true,"id":13418},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13424":{"name":null,"type":"comment","startIndex":7276,"stopIndex":7413,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13425":{"name":"lively.Scripting.DuplicatorMorph","type":"klassDef","startIndex":7414,"stopIndex":8880,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13426},{"__isSmartRef__":true,"id":13428},{"__isSmartRef__":true,"id":13429},{"__isSmartRef__":true,"id":13430},{"__isSmartRef__":true,"id":13431},{"__isSmartRef__":true,"id":13432},{"__isSmartRef__":true,"id":13433},{"__isSmartRef__":true,"id":13434},{"__isSmartRef__":true,"id":13435},{"__isSmartRef__":true,"id":13436}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ClipMorph","categories":[{"__isSmartRef__":true,"id":13427}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13426":{"name":"defaultExtent","type":"propertyDef","startIndex":7473,"stopIndex":7498,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13427":{"name":"default category","type":"categoryDef","startIndex":7469,"stopIndex":8877,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13426},{"__isSmartRef__":true,"id":13428},{"__isSmartRef__":true,"id":13429},{"__isSmartRef__":true,"id":13430},{"__isSmartRef__":true,"id":13431},{"__isSmartRef__":true,"id":13432},{"__isSmartRef__":true,"id":13433},{"__isSmartRef__":true,"id":13434},{"__isSmartRef__":true,"id":13435},{"__isSmartRef__":true,"id":13436}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13428":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":7501,"stopIndex":7526,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13429":{"name":"initialize","type":"propertyDef","startIndex":7530,"stopIndex":7778,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13430":{"name":"suppressHandles","type":"propertyDef","startIndex":7781,"stopIndex":7803,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13431":{"name":"addMorph","type":"propertyDef","startIndex":7806,"stopIndex":8330,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13432":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":8333,"stopIndex":8383,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13433":{"name":"target","type":"propertyDef","startIndex":8387,"stopIndex":8438,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13434":{"name":"handlesMouseDown","type":"propertyDef","startIndex":8441,"stopIndex":8474,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13435":{"name":"onMouseDown","type":"propertyDef","startIndex":8477,"stopIndex":8844,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13436":{"name":"onMouseMove","type":"propertyDef","startIndex":8847,"stopIndex":8875,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13427},"className":"lively.Scripting.DuplicatorMorph","_owner":{"__isSmartRef__":true,"id":13425},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13437":{"name":null,"type":"comment","startIndex":8881,"stopIndex":8881,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13438":{"name":"Morph","type":"klassExtensionDef","startIndex":8882,"stopIndex":9454,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13439}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13440}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13439":{"name":"makeDefaultDuplicatorPanel","type":"propertyDef","startIndex":8905,"stopIndex":9450,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13440},"className":"Morph","_owner":{"__isSmartRef__":true,"id":13438},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13440":{"name":"default category","type":"categoryDef","startIndex":8903,"stopIndex":9451,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13439}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13441":{"name":null,"type":"comment","startIndex":9455,"stopIndex":9456,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13442":{"name":"AttributeConnectionMorphLayer","type":"copDef","startIndex":9457,"stopIndex":12524,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13443}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13443":{"name":"lively.Connector.ConnectorMorph","type":"copSubElement","startIndex":9501,"stopIndex":12519,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13444},{"__isSmartRef__":true,"id":13446},{"__isSmartRef__":true,"id":13447},{"__isSmartRef__":true,"id":13448},{"__isSmartRef__":true,"id":13449},{"__isSmartRef__":true,"id":13450},{"__isSmartRef__":true,"id":13451},{"__isSmartRef__":true,"id":13452}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13442},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13444":{"name":"setup","type":"propertyDef","startIndex":9550,"stopIndex":9911,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13445":{"name":"default category","type":"categoryDef","startIndex":90,"stopIndex":3061,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13444},{"__isSmartRef__":true,"id":13446},{"__isSmartRef__":true,"id":13447},{"__isSmartRef__":true,"id":13448},{"__isSmartRef__":true,"id":13449},{"__isSmartRef__":true,"id":13450},{"__isSmartRef__":true,"id":13451},{"__isSmartRef__":true,"id":13452}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13446":{"name":"updateLabelPositions","type":"propertyDef","startIndex":9915,"stopIndex":10173,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13447":{"name":"setupStartLabel","type":"propertyDef","startIndex":10176,"stopIndex":10438,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13448":{"name":"setConverter","type":"propertyDef","startIndex":10442,"stopIndex":10759,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13449":{"name":"setupMiddleLabel","type":"propertyDef","startIndex":10762,"stopIndex":11598,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13450":{"name":"setupEndLabel","type":"propertyDef","startIndex":11602,"stopIndex":11850,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13451":{"name":"editConverter","type":"propertyDef","startIndex":11853,"stopIndex":12104,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13452":{"name":"morphMenu","type":"propertyDef","startIndex":12107,"stopIndex":12517,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13445},"_owner":{"__isSmartRef__":true,"id":13443},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13453":{"name":"ScriptingConnectionsLayer","type":"copDef","startIndex":12525,"stopIndex":16051,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13454},{"__isSmartRef__":true,"id":13459},{"__isSmartRef__":true,"id":13462}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13454":{"name":"TextMorph","type":"copSubElement","startIndex":12565,"stopIndex":13082,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13455},{"__isSmartRef__":true,"id":13457},{"__isSmartRef__":true,"id":13458}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13453},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13455":{"name":"getConnectionTargets","type":"propertyDef","startIndex":12591,"stopIndex":12699,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13456},"_owner":{"__isSmartRef__":true,"id":13454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13456":{"name":"default category","type":"categoryDef","startIndex":64,"stopIndex":556,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13455},{"__isSmartRef__":true,"id":13457},{"__isSmartRef__":true,"id":13458}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13457":{"name":"getConnectionAttributes","type":"propertyDef","startIndex":12701,"stopIndex":12898,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13456},"_owner":{"__isSmartRef__":true,"id":13454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13458":{"name":"acceptsDropping","type":"propertyDef","startIndex":12900,"stopIndex":13079,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13456},"_owner":{"__isSmartRef__":true,"id":13454},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13459":{"name":"ScriptableButtonMorph","type":"copSubElement","startIndex":13083,"stopIndex":13292,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13460}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13453},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13460":{"name":"getConnectionAttributes","type":"propertyDef","startIndex":13122,"stopIndex":13289,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13461},"_owner":{"__isSmartRef__":true,"id":13459},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13461":{"name":"default category","type":"categoryDef","startIndex":595,"stopIndex":766,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13460}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13462":{"name":"Morph","type":"copSubElement","startIndex":13293,"stopIndex":16049,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13463},{"__isSmartRef__":true,"id":13465},{"__isSmartRef__":true,"id":13466},{"__isSmartRef__":true,"id":13467},{"__isSmartRef__":true,"id":13468}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13453},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13463":{"name":"customConnectionTarget","type":"propertyDef","startIndex":13316,"stopIndex":13580,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13464},"_owner":{"__isSmartRef__":true,"id":13462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13464":{"name":"default category","type":"categoryDef","startIndex":789,"stopIndex":3523,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13463},{"__isSmartRef__":true,"id":13465},{"__isSmartRef__":true,"id":13466},{"__isSmartRef__":true,"id":13467},{"__isSmartRef__":true,"id":13468}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13465":{"name":"getConnectionTargets","type":"propertyDef","startIndex":13584,"stopIndex":13741,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13464},"_owner":{"__isSmartRef__":true,"id":13462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13466":{"name":"getConnectionAttributes","type":"propertyDef","startIndex":13744,"stopIndex":13950,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13464},"_owner":{"__isSmartRef__":true,"id":13462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13467":{"name":"connectionAttributeMenuItems","type":"propertyDef","startIndex":13953,"stopIndex":15886,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13464},"_owner":{"__isSmartRef__":true,"id":13462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13468":{"name":"morphMenu","type":"propertyDef","startIndex":15889,"stopIndex":16047,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13464},"_owner":{"__isSmartRef__":true,"id":13462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13469":{"name":"SliderMorph","type":"klassExtensionDef","startIndex":16052,"stopIndex":16114,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13470}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13471}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13470":{"name":"connectionTargets","type":"propertyDef","startIndex":16077,"stopIndex":16109,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13471},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":13469},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13471":{"name":"default category","type":"categoryDef","startIndex":16075,"stopIndex":16111,"fileName":"lively/Scripting.js","_subElements":[{"__isSmartRef__":true,"id":13470}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13472":{"name":null,"type":"comment","startIndex":16115,"stopIndex":16115,"fileName":"lively/Scripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13473":{"target":{"__isSmartRef__":true,"id":13474},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/SerializationRefactoring.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13474":{"name":"lively.SerializationRefactoring","type":"moduleDef","startIndex":0,"stopIndex":187,"fileName":"lively/SerializationRefactoring.js","_subElements":[{"__isSmartRef__":true,"id":13475}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13475":{"name":null,"type":"comment","startIndex":98,"stopIndex":167,"fileName":"lively/SerializationRefactoring.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13476":{"target":{"__isSmartRef__":true,"id":13477},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/simpleMain.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13477":{"name":"lively/simpleMain.js","type":"completeFileDef","startIndex":0,"stopIndex":2399,"fileName":"lively/simpleMain.js","_subElements":[{"__isSmartRef__":true,"id":13478},{"__isSmartRef__":true,"id":13479},{"__isSmartRef__":true,"id":13480},{"__isSmartRef__":true,"id":13481},{"__isSmartRef__":true,"id":13482},{"__isSmartRef__":true,"id":13483}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13478":{"name":null,"type":"comment","startIndex":0,"stopIndex":0,"fileName":"lively/simpleMain.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13479":{"name":"connectLKObjectToHTML","type":"functionDef","startIndex":1,"stopIndex":766,"fileName":"lively/simpleMain.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13480":{"name":"connectHTMLElementToLK","type":"functionDef","startIndex":767,"stopIndex":1025,"fileName":"lively/simpleMain.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13481":{"name":"connectAndShowClock","type":"functionDef","startIndex":1026,"stopIndex":1821,"fileName":"lively/simpleMain.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13482":{"name":"connectAndShowEngine","type":"functionDef","startIndex":1822,"stopIndex":2194,"fileName":"lively/simpleMain.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13483":{"name":"main","type":"functionDef","startIndex":2195,"stopIndex":2399,"fileName":"lively/simpleMain.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13484":{"target":{"__isSmartRef__":true,"id":13485},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/SmalltalkParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13485":{"name":"lively.SmalltalkParser","type":"moduleDef","startIndex":0,"stopIndex":17880,"fileName":"lively/SmalltalkParser.js","_subElements":[{"__isSmartRef__":true,"id":13486}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13486":{"name":null,"type":"unknown","startIndex":109,"stopIndex":17877,"fileName":"lively/SmalltalkParser.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13487":{"target":{"__isSmartRef__":true,"id":13488},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/SmalltalkParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13488":{"name":"lively/SmalltalkParser.ometa","type":"ometaGrammar","startIndex":0,"stopIndex":9234,"fileName":"lively/SmalltalkParser.ometa","_subElements":[{"__isSmartRef__":true,"id":13489},{"__isSmartRef__":true,"id":13529},{"__isSmartRef__":true,"id":13530}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13489":{"name":"SmalltalkParser","type":"ometaDef","startIndex":0,"stopIndex":6744,"fileName":"lively/SmalltalkParser.ometa","_subElements":[{"__isSmartRef__":true,"id":13490},{"__isSmartRef__":true,"id":13491},{"__isSmartRef__":true,"id":13492},{"__isSmartRef__":true,"id":13493},{"__isSmartRef__":true,"id":13494},{"__isSmartRef__":true,"id":13495},{"__isSmartRef__":true,"id":13496},{"__isSmartRef__":true,"id":13497},{"__isSmartRef__":true,"id":13498},{"__isSmartRef__":true,"id":13499},{"__isSmartRef__":true,"id":13500},{"__isSmartRef__":true,"id":13501},{"__isSmartRef__":true,"id":13502},{"__isSmartRef__":true,"id":13503},{"__isSmartRef__":true,"id":13504},{"__isSmartRef__":true,"id":13505},{"__isSmartRef__":true,"id":13506},{"__isSmartRef__":true,"id":13507},{"__isSmartRef__":true,"id":13508},{"__isSmartRef__":true,"id":13509},{"__isSmartRef__":true,"id":13510},{"__isSmartRef__":true,"id":13511},{"__isSmartRef__":true,"id":13512},{"__isSmartRef__":true,"id":13513},{"__isSmartRef__":true,"id":13514},{"__isSmartRef__":true,"id":13515},{"__isSmartRef__":true,"id":13516},{"__isSmartRef__":true,"id":13517},{"__isSmartRef__":true,"id":13518},{"__isSmartRef__":true,"id":13519},{"__isSmartRef__":true,"id":13520},{"__isSmartRef__":true,"id":13521},{"__isSmartRef__":true,"id":13522},{"__isSmartRef__":true,"id":13523},{"__isSmartRef__":true,"id":13524},{"__isSmartRef__":true,"id":13525},{"__isSmartRef__":true,"id":13526},{"__isSmartRef__":true,"id":13527},{"__isSmartRef__":true,"id":13528}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Parser","__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13490":{"name":"space","type":"ometaRuleDef","startIndex":1322,"stopIndex":1364,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13491":{"name":"identifier","type":"ometaRuleDef","startIndex":1369,"stopIndex":1439,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13492":{"name":"unaryId","type":"ometaRuleDef","startIndex":1442,"stopIndex":1485,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13493":{"name":"binaryOp","type":"ometaRuleDef","startIndex":1488,"stopIndex":1577,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13494":{"name":"keywordPart","type":"ometaRuleDef","startIndex":1582,"stopIndex":1636,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13495":{"name":"variable","type":"ometaRuleDef","startIndex":1639,"stopIndex":1708,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13496":{"name":"instanceVariable","type":"ometaRuleDef","startIndex":1711,"stopIndex":1806,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13497":{"name":"literal","type":"ometaRuleDef","startIndex":1809,"stopIndex":1884,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13498":{"name":"numberLiteral","type":"ometaRuleDef","startIndex":1887,"stopIndex":2097,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13499":{"name":"stringLiteral","type":"ometaRuleDef","startIndex":2100,"stopIndex":2187,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13500":{"name":"arrayLiteral","type":"ometaRuleDef","startIndex":2190,"stopIndex":2279,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13501":{"name":"primary","type":"ometaRuleDef","startIndex":2379,"stopIndex":2528,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13502":{"name":"expression","type":"ometaRuleDef","startIndex":2531,"stopIndex":2586,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13503":{"name":"exit","type":"ometaRuleDef","startIndex":2589,"stopIndex":2650,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13504":{"name":"assignment","type":"ometaRuleDef","startIndex":2653,"stopIndex":2781,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13505":{"name":"cascade","type":"ometaRuleDef","startIndex":2784,"stopIndex":3104,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13506":{"name":"evaluation","type":"ometaRuleDef","startIndex":3107,"stopIndex":3133,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13507":{"name":"message","type":"ometaRuleDef","startIndex":3136,"stopIndex":3183,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13508":{"name":"unarySend","type":"ometaRuleDef","startIndex":3186,"stopIndex":3333,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13509":{"name":"unaryMsg","type":"ometaRuleDef","startIndex":3336,"stopIndex":3409,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13510":{"name":"binarySend","type":"ometaRuleDef","startIndex":3412,"stopIndex":3554,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13511":{"name":"binaryMsg","type":"ometaRuleDef","startIndex":3557,"stopIndex":3648,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13512":{"name":"keywordSend","type":"ometaRuleDef","startIndex":3651,"stopIndex":3755,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13513":{"name":"keywordMsg","type":"ometaRuleDef","startIndex":3758,"stopIndex":3997,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13514":{"name":"block","type":"ometaRuleDef","startIndex":4000,"stopIndex":4147,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13515":{"name":"blockArgs","type":"ometaRuleDef","startIndex":4150,"stopIndex":4223,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13516":{"name":"sequence","type":"ometaRuleDef","startIndex":4323,"stopIndex":4426,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13517":{"name":"declaredVars","type":"ometaRuleDef","startIndex":4429,"stopIndex":4496,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13518":{"name":"propertyOrMethod","type":"ometaRuleDef","startIndex":4499,"stopIndex":4757,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13519":{"name":"property","type":"ometaRuleDef","startIndex":4762,"stopIndex":4826,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13520":{"name":"method","type":"ometaRuleDef","startIndex":4832,"stopIndex":5017,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13521":{"name":"stMethodBody","type":"ometaRuleDef","startIndex":5020,"stopIndex":5124,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13522":{"name":"primitiveBody","type":"ometaRuleDef","startIndex":5127,"stopIndex":5384,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13523":{"name":"methodNameAndArgs","type":"ometaRuleDef","startIndex":5388,"stopIndex":5716,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13524":{"name":"smalltalkClass","type":"ometaRuleDef","startIndex":5816,"stopIndex":6179,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13525":{"name":"smalltalkClasses","type":"ometaRuleDef","startIndex":6182,"stopIndex":6368,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13526":{"name":"opt","type":"ometaRuleDef","startIndex":6468,"stopIndex":6507,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["rule"],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13527":{"name":"fromTo","type":"ometaRuleDef","startIndex":6510,"stopIndex":6555,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x","y"],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13528":{"name":"log","type":"ometaRuleDef","startIndex":6558,"stopIndex":6590,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":13489},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13529":{"name":null,"type":"unknown","startIndex":6745,"stopIndex":7161,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13530":{"name":"JS2StConverter","type":"ometaDef","startIndex":7162,"stopIndex":9234,"fileName":"lively/SmalltalkParser.ometa","_subElements":[{"__isSmartRef__":true,"id":13531},{"__isSmartRef__":true,"id":13532},{"__isSmartRef__":true,"id":13533},{"__isSmartRef__":true,"id":13534},{"__isSmartRef__":true,"id":13535},{"__isSmartRef__":true,"id":13536},{"__isSmartRef__":true,"id":13537},{"__isSmartRef__":true,"id":13538},{"__isSmartRef__":true,"id":13539},{"__isSmartRef__":true,"id":13540},{"__isSmartRef__":true,"id":13541},{"__isSmartRef__":true,"id":13542},{"__isSmartRef__":true,"id":13543},{"__isSmartRef__":true,"id":13544},{"__isSmartRef__":true,"id":13545},{"__isSmartRef__":true,"id":13546},{"__isSmartRef__":true,"id":13547},{"__isSmartRef__":true,"id":13548},{"__isSmartRef__":true,"id":13549},{"__isSmartRef__":true,"id":13550},{"__isSmartRef__":true,"id":13551},{"__isSmartRef__":true,"id":13552},{"__isSmartRef__":true,"id":13553},{"__isSmartRef__":true,"id":13554},{"__isSmartRef__":true,"id":13555}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":null,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13531":{"name":"trans","type":"ometaRuleDef","startIndex":7185,"stopIndex":7226,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13532":{"name":"begin","type":"ometaRuleDef","startIndex":7268,"stopIndex":7323,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13533":{"name":"json","type":"ometaRuleDef","startIndex":7363,"stopIndex":7426,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13534":{"name":"for","type":"ometaRuleDef","startIndex":7428,"stopIndex":7440,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13535":{"name":"continue","type":"ometaRuleDef","startIndex":7442,"stopIndex":7459,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13536":{"name":"var","type":"ometaRuleDef","startIndex":7461,"stopIndex":7473,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13537":{"name":"this","type":"ometaRuleDef","startIndex":7513,"stopIndex":7549,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13538":{"name":"number","type":"ometaRuleDef","startIndex":7554,"stopIndex":7595,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["n"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13539":{"name":"string","type":"ometaRuleDef","startIndex":7598,"stopIndex":7639,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["s"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13540":{"name":"get","type":"ometaRuleDef","startIndex":7642,"stopIndex":7736,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["x"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13541":{"name":"getp","type":"ometaRuleDef","startIndex":7739,"stopIndex":7781,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13542":{"name":"getInstVar","type":"ometaRuleDef","startIndex":7784,"stopIndex":7916,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13543":{"name":"getVarOfOtherObject","type":"ometaRuleDef","startIndex":7919,"stopIndex":8026,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13544":{"name":"binop","type":"ometaRuleDef","startIndex":8029,"stopIndex":8113,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["op"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13545":{"name":"send","type":"ometaRuleDef","startIndex":8116,"stopIndex":8147,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13546":{"name":"normalSend","type":"ometaRuleDef","startIndex":8150,"stopIndex":8252,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["name"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13547":{"name":"classDef","type":"ometaRuleDef","startIndex":8255,"stopIndex":8400,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["msg"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13548":{"name":"func","type":"ometaRuleDef","startIndex":8403,"stopIndex":8471,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["args"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13549":{"name":"binding","type":"ometaRuleDef","startIndex":8474,"stopIndex":8535,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13550":{"name":"methodBinding","type":"ometaRuleDef","startIndex":8538,"stopIndex":8646,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["name"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13551":{"name":"primitiveMethod","type":"ometaRuleDef","startIndex":8649,"stopIndex":8784,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["name"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13552":{"name":"propertyBinding","type":"ometaRuleDef","startIndex":8789,"stopIndex":8889,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["name"],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13553":{"name":"if","type":"ometaRuleDef","startIndex":8892,"stopIndex":9155,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13554":{"name":"return","type":"ometaRuleDef","startIndex":9158,"stopIndex":9211,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13555":{"name":"test","type":"ometaRuleDef","startIndex":9214,"stopIndex":9233,"fileName":"lively/SmalltalkParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":13530},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13556":{"target":{"__isSmartRef__":true,"id":13557},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/SmalltalkParserSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13557":{"name":"lively.SmalltalkParserSupport","type":"moduleDef","startIndex":1187,"stopIndex":29095,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13558},{"__isSmartRef__":true,"id":13559},{"__isSmartRef__":true,"id":13562},{"__isSmartRef__":true,"id":13563},{"__isSmartRef__":true,"id":13568},{"__isSmartRef__":true,"id":13569},{"__isSmartRef__":true,"id":13574},{"__isSmartRef__":true,"id":13575},{"__isSmartRef__":true,"id":13580},{"__isSmartRef__":true,"id":13581},{"__isSmartRef__":true,"id":13585},{"__isSmartRef__":true,"id":13586},{"__isSmartRef__":true,"id":13590},{"__isSmartRef__":true,"id":13591},{"__isSmartRef__":true,"id":13595},{"__isSmartRef__":true,"id":13596},{"__isSmartRef__":true,"id":13601},{"__isSmartRef__":true,"id":13602},{"__isSmartRef__":true,"id":13608},{"__isSmartRef__":true,"id":13609},{"__isSmartRef__":true,"id":13618},{"__isSmartRef__":true,"id":13619},{"__isSmartRef__":true,"id":13625},{"__isSmartRef__":true,"id":13626},{"__isSmartRef__":true,"id":13631},{"__isSmartRef__":true,"id":13632},{"__isSmartRef__":true,"id":13638},{"__isSmartRef__":true,"id":13639},{"__isSmartRef__":true,"id":13644},{"__isSmartRef__":true,"id":13645},{"__isSmartRef__":true,"id":13648},{"__isSmartRef__":true,"id":13649},{"__isSmartRef__":true,"id":13654},{"__isSmartRef__":true,"id":13655},{"__isSmartRef__":true,"id":13660},{"__isSmartRef__":true,"id":13661},{"__isSmartRef__":true,"id":13665},{"__isSmartRef__":true,"id":13666},{"__isSmartRef__":true,"id":13673},{"__isSmartRef__":true,"id":13674},{"__isSmartRef__":true,"id":13678},{"__isSmartRef__":true,"id":13679},{"__isSmartRef__":true,"id":13683},{"__isSmartRef__":true,"id":13684},{"__isSmartRef__":true,"id":13687},{"__isSmartRef__":true,"id":13688},{"__isSmartRef__":true,"id":13693},{"__isSmartRef__":true,"id":13694},{"__isSmartRef__":true,"id":13698},{"__isSmartRef__":true,"id":13699},{"__isSmartRef__":true,"id":13704},{"__isSmartRef__":true,"id":13705},{"__isSmartRef__":true,"id":13709},{"__isSmartRef__":true,"id":13710},{"__isSmartRef__":true,"id":13714},{"__isSmartRef__":true,"id":13715},{"__isSmartRef__":true,"id":13722},{"__isSmartRef__":true,"id":13723},{"__isSmartRef__":true,"id":13727},{"__isSmartRef__":true,"id":13728},{"__isSmartRef__":true,"id":13737},{"__isSmartRef__":true,"id":13741},{"__isSmartRef__":true,"id":13745},{"__isSmartRef__":true,"id":13746},{"__isSmartRef__":true,"id":13750},{"__isSmartRef__":true,"id":13751},{"__isSmartRef__":true,"id":13755},{"__isSmartRef__":true,"id":13756},{"__isSmartRef__":true,"id":13760},{"__isSmartRef__":true,"id":13761},{"__isSmartRef__":true,"id":13765},{"__isSmartRef__":true,"id":13766},{"__isSmartRef__":true,"id":13789},{"__isSmartRef__":true,"id":13790},{"__isSmartRef__":true,"id":13791},{"__isSmartRef__":true,"id":13792},{"__isSmartRef__":true,"id":13793},{"__isSmartRef__":true,"id":13794},{"__isSmartRef__":true,"id":13797},{"__isSmartRef__":true,"id":13801},{"__isSmartRef__":true,"id":13805},{"__isSmartRef__":true,"id":13810},{"__isSmartRef__":true,"id":13815},{"__isSmartRef__":true,"id":13823},{"__isSmartRef__":true,"id":13831},{"__isSmartRef__":true,"id":13832},{"__isSmartRef__":true,"id":13840},{"__isSmartRef__":true,"id":13841},{"__isSmartRef__":true,"id":13844},{"__isSmartRef__":true,"id":13845},{"__isSmartRef__":true,"id":13849},{"__isSmartRef__":true,"id":13852},{"__isSmartRef__":true,"id":13853},{"__isSmartRef__":true,"id":13857},{"__isSmartRef__":true,"id":13858},{"__isSmartRef__":true,"id":13861}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13558":{"name":null,"type":"comment","startIndex":1269,"stopIndex":1269,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13559":{"name":"StNode","type":"klassDef","startIndex":1270,"stopIndex":1351,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13560}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":13561}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13560":{"name":"toString","type":"propertyDef","startIndex":1299,"stopIndex":1344,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13561},"className":"StNode","_owner":{"__isSmartRef__":true,"id":13559},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13561":{"name":"default category","type":"categoryDef","startIndex":1296,"stopIndex":1348,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13560}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13562":{"name":null,"type":"comment","startIndex":1352,"stopIndex":1352,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13563":{"name":"StAssignmentNode","type":"klassDef","startIndex":1353,"stopIndex":1658,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13564},{"__isSmartRef__":true,"id":13566},{"__isSmartRef__":true,"id":13567}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13565}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13564":{"name":"isAssignment","type":"propertyDef","startIndex":1393,"stopIndex":1412,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13565},"className":"StAssignmentNode","_owner":{"__isSmartRef__":true,"id":13563},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13565":{"name":"default category","type":"categoryDef","startIndex":1389,"stopIndex":1655,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13564},{"__isSmartRef__":true,"id":13566},{"__isSmartRef__":true,"id":13567}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13566":{"name":"initialize","type":"propertyDef","startIndex":1416,"stopIndex":1529,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13565},"className":"StAssignmentNode","_owner":{"__isSmartRef__":true,"id":13563},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13567":{"name":"toString","type":"propertyDef","startIndex":1532,"stopIndex":1653,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13565},"className":"StAssignmentNode","_owner":{"__isSmartRef__":true,"id":13563},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13568":{"name":null,"type":"comment","startIndex":1659,"stopIndex":1659,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13569":{"name":"StCascadeNode","type":"klassDef","startIndex":1660,"stopIndex":2022,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13570},{"__isSmartRef__":true,"id":13572},{"__isSmartRef__":true,"id":13573}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13571}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13570":{"name":"isCascade","type":"propertyDef","startIndex":1697,"stopIndex":1713,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13571},"className":"StCascadeNode","_owner":{"__isSmartRef__":true,"id":13569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13571":{"name":"default category","type":"categoryDef","startIndex":1693,"stopIndex":2019,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13570},{"__isSmartRef__":true,"id":13572},{"__isSmartRef__":true,"id":13573}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13572":{"name":"initialize","type":"propertyDef","startIndex":1717,"stopIndex":1839,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13571},"className":"StCascadeNode","_owner":{"__isSmartRef__":true,"id":13569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13573":{"name":"toString","type":"propertyDef","startIndex":1842,"stopIndex":2017,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13571},"className":"StCascadeNode","_owner":{"__isSmartRef__":true,"id":13569},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13574":{"name":null,"type":"comment","startIndex":2023,"stopIndex":2023,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13575":{"name":"StMessageNode","type":"klassDef","startIndex":2024,"stopIndex":2312,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13576},{"__isSmartRef__":true,"id":13578},{"__isSmartRef__":true,"id":13579}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13577}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13576":{"name":"isMessage","type":"propertyDef","startIndex":2061,"stopIndex":2077,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13577},"className":"StMessageNode","_owner":{"__isSmartRef__":true,"id":13575},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13577":{"name":"default category","type":"categoryDef","startIndex":2057,"stopIndex":2309,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13576},{"__isSmartRef__":true,"id":13578},{"__isSmartRef__":true,"id":13579}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13578":{"name":"initialize","type":"propertyDef","startIndex":2081,"stopIndex":2238,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13577},"className":"StMessageNode","_owner":{"__isSmartRef__":true,"id":13575},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13579":{"name":"setReceiver","type":"propertyDef","startIndex":2242,"stopIndex":2307,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13577},"className":"StMessageNode","_owner":{"__isSmartRef__":true,"id":13575},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13580":{"name":null,"type":"comment","startIndex":2313,"stopIndex":2313,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13581":{"name":"StUnaryMessageNode","type":"klassDef","startIndex":2314,"stopIndex":2500,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13582},{"__isSmartRef__":true,"id":13584}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StMessageNode","categories":[{"__isSmartRef__":true,"id":13583}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13582":{"name":"isUnary","type":"propertyDef","startIndex":2363,"stopIndex":2377,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13583},"className":"StUnaryMessageNode","_owner":{"__isSmartRef__":true,"id":13581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13583":{"name":"default category","type":"categoryDef","startIndex":2359,"stopIndex":2497,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13582},{"__isSmartRef__":true,"id":13584}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13584":{"name":"toString","type":"propertyDef","startIndex":2380,"stopIndex":2495,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13583},"className":"StUnaryMessageNode","_owner":{"__isSmartRef__":true,"id":13581},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13585":{"name":null,"type":"comment","startIndex":2501,"stopIndex":2501,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13586":{"name":"StBinaryMessageNode","type":"klassDef","startIndex":2502,"stopIndex":2725,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13587},{"__isSmartRef__":true,"id":13589}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StMessageNode","categories":[{"__isSmartRef__":true,"id":13588}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13587":{"name":"isBinary","type":"propertyDef","startIndex":2551,"stopIndex":2566,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13588},"className":"StBinaryMessageNode","_owner":{"__isSmartRef__":true,"id":13586},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13588":{"name":"default category","type":"categoryDef","startIndex":2548,"stopIndex":2722,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13587},{"__isSmartRef__":true,"id":13589}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13589":{"name":"toString","type":"propertyDef","startIndex":2569,"stopIndex":2720,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13588},"className":"StBinaryMessageNode","_owner":{"__isSmartRef__":true,"id":13586},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13590":{"name":null,"type":"comment","startIndex":2726,"stopIndex":2726,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13591":{"name":"StKeywordMessageNode","type":"klassDef","startIndex":2727,"stopIndex":3016,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13592},{"__isSmartRef__":true,"id":13594}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StMessageNode","categories":[{"__isSmartRef__":true,"id":13593}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13592":{"name":"isKeyword","type":"propertyDef","startIndex":2777,"stopIndex":2793,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13593},"className":"StKeywordMessageNode","_owner":{"__isSmartRef__":true,"id":13591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13593":{"name":"default category","type":"categoryDef","startIndex":2774,"stopIndex":3013,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13592},{"__isSmartRef__":true,"id":13594}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13594":{"name":"toString","type":"propertyDef","startIndex":2796,"stopIndex":3010,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13593},"className":"StKeywordMessageNode","_owner":{"__isSmartRef__":true,"id":13591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13595":{"name":null,"type":"comment","startIndex":3017,"stopIndex":3017,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13596":{"name":"StSequenceNode","type":"klassDef","startIndex":3018,"stopIndex":3270,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13597},{"__isSmartRef__":true,"id":13599},{"__isSmartRef__":true,"id":13600}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13598}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13597":{"name":"isSequence","type":"propertyDef","startIndex":3054,"stopIndex":3071,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13598},"className":"StSequenceNode","_owner":{"__isSmartRef__":true,"id":13596},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13598":{"name":"default category","type":"categoryDef","startIndex":3052,"stopIndex":3267,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13597},{"__isSmartRef__":true,"id":13599},{"__isSmartRef__":true,"id":13600}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13599":{"name":"initialize","type":"propertyDef","startIndex":3075,"stopIndex":3159,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13598},"className":"StSequenceNode","_owner":{"__isSmartRef__":true,"id":13596},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13600":{"name":"toString","type":"propertyDef","startIndex":3162,"stopIndex":3265,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13598},"className":"StSequenceNode","_owner":{"__isSmartRef__":true,"id":13596},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13601":{"name":null,"type":"comment","startIndex":3271,"stopIndex":3271,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13602":{"name":"StPropertyNode","type":"klassDef","startIndex":3272,"stopIndex":3631,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13603},{"__isSmartRef__":true,"id":13605},{"__isSmartRef__":true,"id":13606},{"__isSmartRef__":true,"id":13607}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13604}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13603":{"name":"isProperty","type":"propertyDef","startIndex":3327,"stopIndex":3344,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13604},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13604":{"name":"default category","type":"categoryDef","startIndex":3306,"stopIndex":3628,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13603},{"__isSmartRef__":true,"id":13605},{"__isSmartRef__":true,"id":13606},{"__isSmartRef__":true,"id":13607}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13605":{"name":"initialize","type":"propertyDef","startIndex":3348,"stopIndex":3461,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13604},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13606":{"name":"setMeta","type":"propertyDef","startIndex":3465,"stopIndex":3520,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13604},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13607":{"name":"toString","type":"propertyDef","startIndex":3524,"stopIndex":3626,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13604},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13602},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13608":{"name":null,"type":"comment","startIndex":3632,"stopIndex":3632,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13609":{"name":"StInvokableNode","type":"klassDef","startIndex":3633,"stopIndex":4486,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13610},{"__isSmartRef__":true,"id":13612},{"__isSmartRef__":true,"id":13613},{"__isSmartRef__":true,"id":13614},{"__isSmartRef__":true,"id":13615},{"__isSmartRef__":true,"id":13616},{"__isSmartRef__":true,"id":13617}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13611}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13610":{"name":"isMethod","type":"propertyDef","startIndex":3672,"stopIndex":3688,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13611},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13611":{"name":"default category","type":"categoryDef","startIndex":3668,"stopIndex":4483,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13610},{"__isSmartRef__":true,"id":13612},{"__isSmartRef__":true,"id":13613},{"__isSmartRef__":true,"id":13614},{"__isSmartRef__":true,"id":13615},{"__isSmartRef__":true,"id":13616},{"__isSmartRef__":true,"id":13617}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13612":{"name":"isBlock","type":"propertyDef","startIndex":3692,"stopIndex":3706,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13611},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13613":{"name":"initialize","type":"propertyDef","startIndex":3710,"stopIndex":3918,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13611},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13614":{"name":"setMethodName","type":"propertyDef","startIndex":3922,"stopIndex":4043,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13611},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13615":{"name":"setArgs","type":"propertyDef","startIndex":4046,"stopIndex":4095,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13611},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13616":{"name":"setMeta","type":"propertyDef","startIndex":4099,"stopIndex":4236,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13611},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13617":{"name":"toString","type":"propertyDef","startIndex":4239,"stopIndex":4481,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13611},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13618":{"name":null,"type":"comment","startIndex":4487,"stopIndex":4487,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13619":{"name":"StPrimitveMethodNode","type":"klassDef","startIndex":4488,"stopIndex":4851,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13620},{"__isSmartRef__":true,"id":13622},{"__isSmartRef__":true,"id":13623},{"__isSmartRef__":true,"id":13624}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StInvokableNode","categories":[{"__isSmartRef__":true,"id":13621}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13620":{"name":"isMethod","type":"propertyDef","startIndex":4541,"stopIndex":4556,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13621},"className":"StPrimitveMethodNode","_owner":{"__isSmartRef__":true,"id":13619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13621":{"name":"default category","type":"categoryDef","startIndex":4537,"stopIndex":4848,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13620},{"__isSmartRef__":true,"id":13622},{"__isSmartRef__":true,"id":13623},{"__isSmartRef__":true,"id":13624}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13622":{"name":"isPrimitive","type":"propertyDef","startIndex":4560,"stopIndex":4578,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13621},"className":"StPrimitveMethodNode","_owner":{"__isSmartRef__":true,"id":13619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13623":{"name":"initialize","type":"propertyDef","startIndex":4582,"stopIndex":4749,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13621},"className":"StPrimitveMethodNode","_owner":{"__isSmartRef__":true,"id":13619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13624":{"name":"toString","type":"propertyDef","startIndex":4752,"stopIndex":4846,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13621},"className":"StPrimitveMethodNode","_owner":{"__isSmartRef__":true,"id":13619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13625":{"name":null,"type":"comment","startIndex":4852,"stopIndex":4852,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13626":{"name":"StClassNode","type":"klassDef","startIndex":4853,"stopIndex":5321,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13627},{"__isSmartRef__":true,"id":13629},{"__isSmartRef__":true,"id":13630}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13628}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13627":{"name":"isClass","type":"propertyDef","startIndex":4888,"stopIndex":4902,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13628},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13628":{"name":"default category","type":"categoryDef","startIndex":4884,"stopIndex":5318,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13627},{"__isSmartRef__":true,"id":13629},{"__isSmartRef__":true,"id":13630}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13629":{"name":"initialize","type":"propertyDef","startIndex":4906,"stopIndex":5229,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13628},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13630":{"name":"toString","type":"propertyDef","startIndex":5232,"stopIndex":5315,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13628},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13631":{"name":null,"type":"comment","startIndex":5322,"stopIndex":5322,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13632":{"name":"StFileNode","type":"klassDef","startIndex":5323,"stopIndex":5896,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13633},{"__isSmartRef__":true,"id":13635},{"__isSmartRef__":true,"id":13636},{"__isSmartRef__":true,"id":13637}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13634}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13633":{"name":"isFile","type":"propertyDef","startIndex":5358,"stopIndex":5372,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13634},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13634":{"name":"default category","type":"categoryDef","startIndex":5353,"stopIndex":5893,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13633},{"__isSmartRef__":true,"id":13635},{"__isSmartRef__":true,"id":13636},{"__isSmartRef__":true,"id":13637}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13635":{"name":"initialize","type":"propertyDef","startIndex":5377,"stopIndex":5470,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13634},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13636":{"name":"toString","type":"propertyDef","startIndex":5475,"stopIndex":5614,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13634},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13637":{"name":"setFileName","type":"propertyDef","startIndex":5618,"stopIndex":5888,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13634},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13638":{"name":null,"type":"comment","startIndex":5897,"stopIndex":5899,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13639":{"name":"StVariableNode","type":"klassDef","startIndex":5900,"stopIndex":6112,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13640},{"__isSmartRef__":true,"id":13642},{"__isSmartRef__":true,"id":13643}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13641}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13640":{"name":"isVariable","type":"propertyDef","startIndex":5938,"stopIndex":5955,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13641},"className":"StVariableNode","_owner":{"__isSmartRef__":true,"id":13639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13641":{"name":"default category","type":"categoryDef","startIndex":5934,"stopIndex":6109,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13640},{"__isSmartRef__":true,"id":13642},{"__isSmartRef__":true,"id":13643}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13642":{"name":"initialize","type":"propertyDef","startIndex":5959,"stopIndex":6031,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13641},"className":"StVariableNode","_owner":{"__isSmartRef__":true,"id":13639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13643":{"name":"toString","type":"propertyDef","startIndex":6034,"stopIndex":6107,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13641},"className":"StVariableNode","_owner":{"__isSmartRef__":true,"id":13639},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13644":{"name":null,"type":"comment","startIndex":6113,"stopIndex":6113,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13645":{"name":"StInstanceVariableNode","type":"klassDef","startIndex":6114,"stopIndex":6191,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13646}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StVariableNode","categories":[{"__isSmartRef__":true,"id":13647}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13646":{"name":"isInstance","type":"propertyDef","startIndex":6168,"stopIndex":6185,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13647},"className":"StInstanceVariableNode","_owner":{"__isSmartRef__":true,"id":13645},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13647":{"name":"default category","type":"categoryDef","startIndex":6164,"stopIndex":6188,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13646}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13648":{"name":null,"type":"comment","startIndex":6192,"stopIndex":6192,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13649":{"name":"StLiteralNode","type":"klassDef","startIndex":6193,"stopIndex":6440,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13650},{"__isSmartRef__":true,"id":13652},{"__isSmartRef__":true,"id":13653}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13651}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13650":{"name":"isLiteral","type":"propertyDef","startIndex":6230,"stopIndex":6246,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13651},"className":"StLiteralNode","_owner":{"__isSmartRef__":true,"id":13649},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13651":{"name":"default category","type":"categoryDef","startIndex":6226,"stopIndex":6437,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13650},{"__isSmartRef__":true,"id":13652},{"__isSmartRef__":true,"id":13653}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13652":{"name":"initialize","type":"propertyDef","startIndex":6250,"stopIndex":6325,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13651},"className":"StLiteralNode","_owner":{"__isSmartRef__":true,"id":13649},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13653":{"name":"toString","type":"propertyDef","startIndex":6328,"stopIndex":6435,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13651},"className":"StLiteralNode","_owner":{"__isSmartRef__":true,"id":13649},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13654":{"name":null,"type":"comment","startIndex":6441,"stopIndex":6441,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13655":{"name":"StArrayLiteralNode","type":"klassDef","startIndex":6442,"stopIndex":6676,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13656},{"__isSmartRef__":true,"id":13658},{"__isSmartRef__":true,"id":13659}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13657}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13656":{"name":"isArrayLiteral","type":"propertyDef","startIndex":6484,"stopIndex":6505,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13657},"className":"StArrayLiteralNode","_owner":{"__isSmartRef__":true,"id":13655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13657":{"name":"default category","type":"categoryDef","startIndex":6480,"stopIndex":6673,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13656},{"__isSmartRef__":true,"id":13658},{"__isSmartRef__":true,"id":13659}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13658":{"name":"initialize","type":"propertyDef","startIndex":6509,"stopIndex":6593,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13657},"className":"StArrayLiteralNode","_owner":{"__isSmartRef__":true,"id":13655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13659":{"name":"toString","type":"propertyDef","startIndex":6597,"stopIndex":6671,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13657},"className":"StArrayLiteralNode","_owner":{"__isSmartRef__":true,"id":13655},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13660":{"name":null,"type":"comment","startIndex":6677,"stopIndex":6677,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13661":{"name":"StReturnNode","type":"klassDef","startIndex":6678,"stopIndex":6812,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13662},{"__isSmartRef__":true,"id":13664}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"StNode","categories":[{"__isSmartRef__":true,"id":13663}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13662":{"name":"isReturn","type":"propertyDef","startIndex":6713,"stopIndex":6728,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13663},"className":"StReturnNode","_owner":{"__isSmartRef__":true,"id":13661},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13663":{"name":"default category","type":"categoryDef","startIndex":6710,"stopIndex":6809,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13662},{"__isSmartRef__":true,"id":13664}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13664":{"name":"initialize","type":"propertyDef","startIndex":6732,"stopIndex":6807,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13663},"className":"StReturnNode","_owner":{"__isSmartRef__":true,"id":13661},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13665":{"name":null,"type":"comment","startIndex":6813,"stopIndex":6955,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13666":{"name":"StNode","type":"klassExtensionDef","startIndex":6956,"stopIndex":7607,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13667},{"__isSmartRef__":true,"id":13669},{"__isSmartRef__":true,"id":13670},{"__isSmartRef__":true,"id":13671},{"__isSmartRef__":true,"id":13672}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13668}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13667":{"name":"toSmalltalk","type":"propertyDef","startIndex":6977,"stopIndex":7023,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13668},"className":"StNode","_owner":{"__isSmartRef__":true,"id":13666},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13668":{"name":"default category","type":"categoryDef","startIndex":6974,"stopIndex":7604,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13667},{"__isSmartRef__":true,"id":13669},{"__isSmartRef__":true,"id":13670},{"__isSmartRef__":true,"id":13671},{"__isSmartRef__":true,"id":13672}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13669":{"name":"mangleMethodName","type":"propertyDef","startIndex":7026,"stopIndex":7258,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13668},"className":"StNode","_owner":{"__isSmartRef__":true,"id":13666},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13670":{"name":"mangleBinaryChar","type":"propertyDef","startIndex":7263,"stopIndex":7482,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13668},"className":"StNode","_owner":{"__isSmartRef__":true,"id":13666},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13671":{"name":"toJavaScript","type":"propertyDef","startIndex":7487,"stopIndex":7534,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13668},"className":"StNode","_owner":{"__isSmartRef__":true,"id":13666},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13672":{"name":"eval","type":"propertyDef","startIndex":7537,"stopIndex":7599,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13668},"className":"StNode","_owner":{"__isSmartRef__":true,"id":13666},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13673":{"name":null,"type":"comment","startIndex":7608,"stopIndex":7608,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13674":{"name":"StAssignmentNode","type":"klassExtensionDef","startIndex":7609,"stopIndex":7856,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13675},{"__isSmartRef__":true,"id":13677}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13676}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13675":{"name":"toSmalltalk","type":"propertyDef","startIndex":7640,"stopIndex":7738,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13676},"className":"StAssignmentNode","_owner":{"__isSmartRef__":true,"id":13674},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13676":{"name":"default category","type":"categoryDef","startIndex":7637,"stopIndex":7853,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13675},{"__isSmartRef__":true,"id":13677}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13677":{"name":"toJavaScript","type":"propertyDef","startIndex":7741,"stopIndex":7850,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13676},"className":"StAssignmentNode","_owner":{"__isSmartRef__":true,"id":13674},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13678":{"name":null,"type":"comment","startIndex":7857,"stopIndex":7857,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13679":{"name":"StCascadeNode","type":"klassExtensionDef","startIndex":7858,"stopIndex":8935,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13680},{"__isSmartRef__":true,"id":13682}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13681}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13680":{"name":"toSmalltalk","type":"propertyDef","startIndex":7886,"stopIndex":8220,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13681},"className":"StCascadeNode","_owner":{"__isSmartRef__":true,"id":13679},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13681":{"name":"default category","type":"categoryDef","startIndex":7883,"stopIndex":8932,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13680},{"__isSmartRef__":true,"id":13682}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13682":{"name":"toJavaScript","type":"propertyDef","startIndex":8223,"stopIndex":8929,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13681},"className":"StCascadeNode","_owner":{"__isSmartRef__":true,"id":13679},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13683":{"name":null,"type":"comment","startIndex":8936,"stopIndex":8936,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13684":{"name":"StMessageNode","type":"klassExtensionDef","startIndex":8937,"stopIndex":9065,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13685}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13685":{"name":"toJavaScriptWithoutReceiver","type":"propertyDef","startIndex":8965,"stopIndex":9061,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13686},"className":"StMessageNode","_owner":{"__isSmartRef__":true,"id":13684},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13686":{"name":"default category","type":"categoryDef","startIndex":8962,"stopIndex":9062,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13685}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13687":{"name":null,"type":"comment","startIndex":9066,"stopIndex":9066,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13688":{"name":"StUnaryMessageNode","type":"klassExtensionDef","startIndex":9067,"stopIndex":9395,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13689},{"__isSmartRef__":true,"id":13691},{"__isSmartRef__":true,"id":13692}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13690}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13689":{"name":"toSmalltalk","type":"propertyDef","startIndex":9100,"stopIndex":9196,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13690},"className":"StUnaryMessageNode","_owner":{"__isSmartRef__":true,"id":13688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13690":{"name":"default category","type":"categoryDef","startIndex":9097,"stopIndex":9392,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13689},{"__isSmartRef__":true,"id":13691},{"__isSmartRef__":true,"id":13692}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13691":{"name":"toJavaScript","type":"propertyDef","startIndex":9199,"stopIndex":9304,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13690},"className":"StUnaryMessageNode","_owner":{"__isSmartRef__":true,"id":13688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13692":{"name":"toJavaScriptWithoutReceiver","type":"propertyDef","startIndex":9307,"stopIndex":9391,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13690},"className":"StUnaryMessageNode","_owner":{"__isSmartRef__":true,"id":13688},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13693":{"name":null,"type":"comment","startIndex":9396,"stopIndex":9396,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13694":{"name":"StBinaryMessageNode","type":"klassExtensionDef","startIndex":9397,"stopIndex":10303,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13695},{"__isSmartRef__":true,"id":13697}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13696}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13695":{"name":"toSmalltalk","type":"propertyDef","startIndex":9431,"stopIndex":9848,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13696},"className":"StBinaryMessageNode","_owner":{"__isSmartRef__":true,"id":13694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13696":{"name":"default category","type":"categoryDef","startIndex":9428,"stopIndex":10300,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13695},{"__isSmartRef__":true,"id":13697}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13697":{"name":"toJavaScript","type":"propertyDef","startIndex":9851,"stopIndex":10297,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13696},"className":"StBinaryMessageNode","_owner":{"__isSmartRef__":true,"id":13694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13698":{"name":null,"type":"comment","startIndex":10304,"stopIndex":10304,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13699":{"name":"StKeywordMessageNode","type":"klassExtensionDef","startIndex":10305,"stopIndex":11380,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13700},{"__isSmartRef__":true,"id":13702},{"__isSmartRef__":true,"id":13703}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13701}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13700":{"name":"toSmalltalk","type":"propertyDef","startIndex":10340,"stopIndex":10892,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13701},"className":"StKeywordMessageNode","_owner":{"__isSmartRef__":true,"id":13699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13701":{"name":"default category","type":"categoryDef","startIndex":10337,"stopIndex":11377,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13700},{"__isSmartRef__":true,"id":13702},{"__isSmartRef__":true,"id":13703}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13702":{"name":"toJavaScript","type":"propertyDef","startIndex":10895,"stopIndex":11123,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13701},"className":"StKeywordMessageNode","_owner":{"__isSmartRef__":true,"id":13699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13703":{"name":"toJavaScriptWithoutReceiver","type":"propertyDef","startIndex":11126,"stopIndex":11374,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13701},"className":"StKeywordMessageNode","_owner":{"__isSmartRef__":true,"id":13699},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13704":{"name":null,"type":"comment","startIndex":11381,"stopIndex":11381,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13705":{"name":"StSequenceNode","type":"klassExtensionDef","startIndex":11382,"stopIndex":12213,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13706},{"__isSmartRef__":true,"id":13708}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13707}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13706":{"name":"toSmalltalk","type":"propertyDef","startIndex":11411,"stopIndex":11665,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13707},"className":"StSequenceNode","_owner":{"__isSmartRef__":true,"id":13705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13707":{"name":"default category","type":"categoryDef","startIndex":11408,"stopIndex":12210,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13706},{"__isSmartRef__":true,"id":13708}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13708":{"name":"toJavaScript","type":"propertyDef","startIndex":11668,"stopIndex":12207,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13707},"className":"StSequenceNode","_owner":{"__isSmartRef__":true,"id":13705},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13709":{"name":null,"type":"comment","startIndex":12214,"stopIndex":12214,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13710":{"name":"StPropertyNode","type":"klassExtensionDef","startIndex":12215,"stopIndex":12496,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13711},{"__isSmartRef__":true,"id":13713}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13712}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13711":{"name":"toSmalltalk","type":"propertyDef","startIndex":12244,"stopIndex":12353,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13712},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13710},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13712":{"name":"default category","type":"categoryDef","startIndex":12241,"stopIndex":12493,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13711},{"__isSmartRef__":true,"id":13713}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13713":{"name":"toJavaScript","type":"propertyDef","startIndex":12356,"stopIndex":12492,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13712},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13710},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13714":{"name":null,"type":"comment","startIndex":12497,"stopIndex":12497,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13715":{"name":"StInvokableNode","type":"klassExtensionDef","startIndex":12498,"stopIndex":14843,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13716},{"__isSmartRef__":true,"id":13718},{"__isSmartRef__":true,"id":13719},{"__isSmartRef__":true,"id":13720},{"__isSmartRef__":true,"id":13721}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13717}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13716":{"name":"methodHeadString","type":"propertyDef","startIndex":12528,"stopIndex":13021,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13717},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13715},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13717":{"name":"default category","type":"categoryDef","startIndex":12525,"stopIndex":14840,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13716},{"__isSmartRef__":true,"id":13718},{"__isSmartRef__":true,"id":13719},{"__isSmartRef__":true,"id":13720},{"__isSmartRef__":true,"id":13721}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13718":{"name":"declaredVarsString","type":"propertyDef","startIndex":13024,"stopIndex":13340,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13717},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13715},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13719":{"name":"toSmalltalk","type":"propertyDef","startIndex":13343,"stopIndex":13911,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13717},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13715},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13720":{"name":"toJavaScriptMethodHeader","type":"propertyDef","startIndex":13914,"stopIndex":14259,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13717},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13715},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13721":{"name":"toJavaScript","type":"propertyDef","startIndex":14262,"stopIndex":14837,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13717},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13715},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13722":{"name":null,"type":"comment","startIndex":14844,"stopIndex":14844,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13723":{"name":"StPrimitveMethodNode","type":"klassExtensionDef","startIndex":14845,"stopIndex":15154,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13724},{"__isSmartRef__":true,"id":13726}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13725}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13724":{"name":"toSmalltalk","type":"propertyDef","startIndex":14880,"stopIndex":14974,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13725},"className":"StPrimitveMethodNode","_owner":{"__isSmartRef__":true,"id":13723},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13725":{"name":"default category","type":"categoryDef","startIndex":14877,"stopIndex":15151,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13724},{"__isSmartRef__":true,"id":13726}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13726":{"name":"toJavaScript","type":"propertyDef","startIndex":14977,"stopIndex":15148,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13725},"className":"StPrimitveMethodNode","_owner":{"__isSmartRef__":true,"id":13723},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13727":{"name":null,"type":"comment","startIndex":15155,"stopIndex":15155,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13728":{"name":"StClassNode","type":"klassExtensionDef","startIndex":15156,"stopIndex":17311,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13729},{"__isSmartRef__":true,"id":13731},{"__isSmartRef__":true,"id":13732},{"__isSmartRef__":true,"id":13733},{"__isSmartRef__":true,"id":13734},{"__isSmartRef__":true,"id":13735},{"__isSmartRef__":true,"id":13736}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13730}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13729":{"name":"toSmalltalk","type":"propertyDef","startIndex":15182,"stopIndex":15692,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13730},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13730":{"name":"default category","type":"categoryDef","startIndex":15179,"stopIndex":17308,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13729},{"__isSmartRef__":true,"id":13731},{"__isSmartRef__":true,"id":13732},{"__isSmartRef__":true,"id":13733},{"__isSmartRef__":true,"id":13734},{"__isSmartRef__":true,"id":13735},{"__isSmartRef__":true,"id":13736}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13731":{"name":"instMethods","type":"propertyDef","startIndex":15695,"stopIndex":15794,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13730},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13732":{"name":"instProperties","type":"propertyDef","startIndex":15797,"stopIndex":15902,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13730},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13733":{"name":"classMethods","type":"propertyDef","startIndex":15905,"stopIndex":16004,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13730},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13734":{"name":"classProperties","type":"propertyDef","startIndex":16007,"stopIndex":16112,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13730},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13735":{"name":"methodsAndPropertiesToJavaScript","type":"propertyDef","startIndex":16115,"stopIndex":16596,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13730},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13736":{"name":"toJavaScript","type":"propertyDef","startIndex":16599,"stopIndex":17307,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13730},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13728},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13737":{"name":"StFileNode","type":"klassExtensionDef","startIndex":17312,"stopIndex":17574,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13738},{"__isSmartRef__":true,"id":13740}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13739}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13738":{"name":"toSmalltalk","type":"propertyDef","startIndex":17336,"stopIndex":17451,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13739},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13737},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13739":{"name":"default category","type":"categoryDef","startIndex":17334,"stopIndex":17571,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13738},{"__isSmartRef__":true,"id":13740}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13740":{"name":"toJavaScript","type":"propertyDef","startIndex":17453,"stopIndex":17570,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13739},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13737},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13741":{"name":"StVariableNode","type":"klassExtensionDef","startIndex":17575,"stopIndex":17719,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13742},{"__isSmartRef__":true,"id":13744}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13743}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13742":{"name":"toSmalltalk","type":"propertyDef","startIndex":17604,"stopIndex":17657,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13743},"className":"StVariableNode","_owner":{"__isSmartRef__":true,"id":13741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13743":{"name":"default category","type":"categoryDef","startIndex":17601,"stopIndex":17716,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13742},{"__isSmartRef__":true,"id":13744}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13744":{"name":"toJavaScript","type":"propertyDef","startIndex":17660,"stopIndex":17714,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13743},"className":"StVariableNode","_owner":{"__isSmartRef__":true,"id":13741},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13745":{"name":null,"type":"comment","startIndex":17720,"stopIndex":17720,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13746":{"name":"StInstanceVariableNode","type":"klassExtensionDef","startIndex":17721,"stopIndex":17927,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13747},{"__isSmartRef__":true,"id":13749}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13748}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13747":{"name":"toSmalltalk","type":"propertyDef","startIndex":17758,"stopIndex":17811,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13748},"className":"StInstanceVariableNode","_owner":{"__isSmartRef__":true,"id":13746},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13748":{"name":"default category","type":"categoryDef","startIndex":17755,"stopIndex":17924,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13747},{"__isSmartRef__":true,"id":13749}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13749":{"name":"toJavaScript","type":"propertyDef","startIndex":17814,"stopIndex":17921,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13748},"className":"StInstanceVariableNode","_owner":{"__isSmartRef__":true,"id":13746},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13750":{"name":null,"type":"comment","startIndex":17928,"stopIndex":17928,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13751":{"name":"StLiteralNode","type":"klassExtensionDef","startIndex":17929,"stopIndex":18235,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13752},{"__isSmartRef__":true,"id":13754}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13753}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13752":{"name":"toSmalltalk","type":"propertyDef","startIndex":17957,"stopIndex":18090,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13753},"className":"StLiteralNode","_owner":{"__isSmartRef__":true,"id":13751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13753":{"name":"default category","type":"categoryDef","startIndex":17954,"stopIndex":18232,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13752},{"__isSmartRef__":true,"id":13754}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13754":{"name":"toJavaScript","type":"propertyDef","startIndex":18093,"stopIndex":18229,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13753},"className":"StLiteralNode","_owner":{"__isSmartRef__":true,"id":13751},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13755":{"name":null,"type":"comment","startIndex":18236,"stopIndex":18236,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13756":{"name":"StArrayLiteralNode","type":"klassExtensionDef","startIndex":18237,"stopIndex":18501,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13757},{"__isSmartRef__":true,"id":13759}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13758}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13757":{"name":"toSmalltalk","type":"propertyDef","startIndex":18270,"stopIndex":18354,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13758},"className":"StArrayLiteralNode","_owner":{"__isSmartRef__":true,"id":13756},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13758":{"name":"default category","type":"categoryDef","startIndex":18267,"stopIndex":18498,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13757},{"__isSmartRef__":true,"id":13759}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13759":{"name":"toJavaScript","type":"propertyDef","startIndex":18357,"stopIndex":18497,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13758},"className":"StArrayLiteralNode","_owner":{"__isSmartRef__":true,"id":13756},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13760":{"name":null,"type":"comment","startIndex":18502,"stopIndex":18502,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13761":{"name":"StReturnNode","type":"klassExtensionDef","startIndex":18503,"stopIndex":18753,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13762},{"__isSmartRef__":true,"id":13764}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13763}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13762":{"name":"toSmalltalk","type":"propertyDef","startIndex":18530,"stopIndex":18605,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13763},"className":"StReturnNode","_owner":{"__isSmartRef__":true,"id":13761},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13763":{"name":"default category","type":"categoryDef","startIndex":18527,"stopIndex":18750,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13762},{"__isSmartRef__":true,"id":13764}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13764":{"name":"toJavaScript","type":"propertyDef","startIndex":18608,"stopIndex":18747,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13763},"className":"StReturnNode","_owner":{"__isSmartRef__":true,"id":13761},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13765":{"name":null,"type":"comment","startIndex":18754,"stopIndex":18859,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13766":{"name":"StNodeBrowserSupportMixin","type":"objectDef","startIndex":18860,"stopIndex":22320,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13767},{"__isSmartRef__":true,"id":13769},{"__isSmartRef__":true,"id":13770},{"__isSmartRef__":true,"id":13771},{"__isSmartRef__":true,"id":13772},{"__isSmartRef__":true,"id":13773},{"__isSmartRef__":true,"id":13774},{"__isSmartRef__":true,"id":13775},{"__isSmartRef__":true,"id":13776},{"__isSmartRef__":true,"id":13777},{"__isSmartRef__":true,"id":13778},{"__isSmartRef__":true,"id":13779},{"__isSmartRef__":true,"id":13780},{"__isSmartRef__":true,"id":13781},{"__isSmartRef__":true,"id":13782},{"__isSmartRef__":true,"id":13783},{"__isSmartRef__":true,"id":13784},{"__isSmartRef__":true,"id":13785},{"__isSmartRef__":true,"id":13786},{"__isSmartRef__":true,"id":13787},{"__isSmartRef__":true,"id":13788}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13767":{"name":"startIndex","type":"propertyDef","startIndex":18890,"stopIndex":18908,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13768":{"name":"default category","type":"categoryDef","startIndex":28,"stopIndex":3458,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13767},{"__isSmartRef__":true,"id":13769},{"__isSmartRef__":true,"id":13770},{"__isSmartRef__":true,"id":13771},{"__isSmartRef__":true,"id":13772},{"__isSmartRef__":true,"id":13773},{"__isSmartRef__":true,"id":13774},{"__isSmartRef__":true,"id":13775},{"__isSmartRef__":true,"id":13776},{"__isSmartRef__":true,"id":13777},{"__isSmartRef__":true,"id":13778},{"__isSmartRef__":true,"id":13779},{"__isSmartRef__":true,"id":13780},{"__isSmartRef__":true,"id":13781},{"__isSmartRef__":true,"id":13782},{"__isSmartRef__":true,"id":13783},{"__isSmartRef__":true,"id":13784},{"__isSmartRef__":true,"id":13785},{"__isSmartRef__":true,"id":13786},{"__isSmartRef__":true,"id":13787},{"__isSmartRef__":true,"id":13788}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13769":{"name":"stopIndex","type":"propertyDef","startIndex":18910,"stopIndex":18927,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13770":{"name":"type","type":"propertyDef","startIndex":18929,"stopIndex":18941,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13771":{"name":"directSubElements","type":"propertyDef","startIndex":18942,"stopIndex":19065,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13772":{"name":"adoptStateFrom","type":"propertyDef","startIndex":19067,"stopIndex":19132,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13773":{"name":"eq","type":"propertyDef","startIndex":19134,"stopIndex":19393,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13774":{"name":"subElements","type":"propertyDef","startIndex":19395,"stopIndex":19623,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13775":{"name":"flattened","type":"propertyDef","startIndex":19625,"stopIndex":19763,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13776":{"name":"reparse","type":"propertyDef","startIndex":19765,"stopIndex":20281,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13777":{"name":"reparseAndCheck","type":"propertyDef","startIndex":20283,"stopIndex":20746,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13778":{"name":"updateIndices","type":"propertyDef","startIndex":20748,"stopIndex":21558,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13779":{"name":"getSourceControl","type":"propertyDef","startIndex":21560,"stopIndex":21630,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13780":{"name":"getFileString","type":"propertyDef","startIndex":21632,"stopIndex":21696,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13781":{"name":"getSourceCode","type":"propertyDef","startIndex":21697,"stopIndex":21778,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13782":{"name":"fragmentsOfOwnFile","type":"propertyDef","startIndex":21780,"stopIndex":21854,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13783":{"name":"findOwnerFragment","type":"propertyDef","startIndex":21856,"stopIndex":21928,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13784":{"name":"checkConsistency","type":"propertyDef","startIndex":21930,"stopIndex":22000,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13785":{"name":"getSourceCodeWithoutSubElements","type":"propertyDef","startIndex":22002,"stopIndex":22102,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13786":{"name":"putSourceCode","type":"propertyDef","startIndex":22104,"stopIndex":22168,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13787":{"name":"buildNewFileString","type":"propertyDef","startIndex":22170,"stopIndex":22244,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13788":{"name":"getSourceControl","type":"propertyDef","startIndex":22246,"stopIndex":22316,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13768},"_owner":{"__isSmartRef__":true,"id":13766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13789":{"name":null,"type":"unknown","startIndex":22321,"stopIndex":22370,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13790":{"name":null,"type":"unknown","startIndex":22371,"stopIndex":22421,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13791":{"name":null,"type":"unknown","startIndex":22422,"stopIndex":22476,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13792":{"name":null,"type":"unknown","startIndex":22477,"stopIndex":22530,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13793":{"name":null,"type":"comment","startIndex":22531,"stopIndex":22531,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13794":{"name":"StNode","type":"klassExtensionDef","startIndex":22532,"stopIndex":22612,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13795}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13796}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13795":{"name":"getName","type":"propertyDef","startIndex":22552,"stopIndex":22607,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13796},"className":"StNode","_owner":{"__isSmartRef__":true,"id":13794},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13796":{"name":"default category","type":"categoryDef","startIndex":22550,"stopIndex":22609,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13795}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13797":{"name":"StFileNode","type":"klassExtensionDef","startIndex":22613,"stopIndex":22838,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13798},{"__isSmartRef__":true,"id":13800}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13799}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13798":{"name":"directSubElements","type":"propertyDef","startIndex":22637,"stopIndex":22699,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13799},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13799":{"name":"default category","type":"categoryDef","startIndex":22635,"stopIndex":22835,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13798},{"__isSmartRef__":true,"id":13800}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13800":{"name":"adoptStateFrom","type":"propertyDef","startIndex":22701,"stopIndex":22833,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13799},"className":"StFileNode","_owner":{"__isSmartRef__":true,"id":13797},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13801":{"name":"StClassNode","type":"klassExtensionDef","startIndex":22839,"stopIndex":23206,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13802},{"__isSmartRef__":true,"id":13804}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13803}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13802":{"name":"directSubElements","type":"propertyDef","startIndex":22864,"stopIndex":22950,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13803},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13803":{"name":"default category","type":"categoryDef","startIndex":22862,"stopIndex":23203,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13802},{"__isSmartRef__":true,"id":13804}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13804":{"name":"adoptStateFrom","type":"propertyDef","startIndex":22952,"stopIndex":23201,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13803},"className":"StClassNode","_owner":{"__isSmartRef__":true,"id":13801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13805":{"name":"StInvokableNode","type":"klassExtensionDef","startIndex":23207,"stopIndex":23611,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13806},{"__isSmartRef__":true,"id":13808},{"__isSmartRef__":true,"id":13809}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13807}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13806":{"name":"directSubElements","type":"propertyDef","startIndex":23236,"stopIndex":23281,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13807},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13807":{"name":"default category","type":"categoryDef","startIndex":23234,"stopIndex":23608,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13806},{"__isSmartRef__":true,"id":13808},{"__isSmartRef__":true,"id":13809}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13808":{"name":"adoptStateFrom","type":"propertyDef","startIndex":23283,"stopIndex":23553,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13807},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13809":{"name":"simpleName","type":"propertyDef","startIndex":23555,"stopIndex":23606,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13807},"className":"StInvokableNode","_owner":{"__isSmartRef__":true,"id":13805},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13810":{"name":"StPropertyNode","type":"klassExtensionDef","startIndex":23612,"stopIndex":23928,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13811},{"__isSmartRef__":true,"id":13813},{"__isSmartRef__":true,"id":13814}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13812}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13811":{"name":"directSubElements","type":"propertyDef","startIndex":23640,"stopIndex":23685,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13812},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13810},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13812":{"name":"default category","type":"categoryDef","startIndex":23638,"stopIndex":23924,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13811},{"__isSmartRef__":true,"id":13813},{"__isSmartRef__":true,"id":13814}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13813":{"name":"adoptStateFrom","type":"propertyDef","startIndex":23687,"stopIndex":23855,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13812},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13810},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13814":{"name":"simpleName","type":"propertyDef","startIndex":23857,"stopIndex":23922,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13812},"className":"StPropertyNode","_owner":{"__isSmartRef__":true,"id":13810},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13815":{"name":"StBrowserFileNode","type":"klassDef","startIndex":23929,"stopIndex":25348,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13816},{"__isSmartRef__":true,"id":13818},{"__isSmartRef__":true,"id":13819},{"__isSmartRef__":true,"id":13820},{"__isSmartRef__":true,"id":13821},{"__isSmartRef__":true,"id":13822}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.ide.CompleteFileFragmentNode","categories":[{"__isSmartRef__":true,"id":13817}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13816":{"name":"childNodes","type":"propertyDef","startIndex":23999,"stopIndex":24205,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13817},"className":"StBrowserFileNode","_owner":{"__isSmartRef__":true,"id":13815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13817":{"name":"default category","type":"categoryDef","startIndex":23995,"stopIndex":25345,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13816},{"__isSmartRef__":true,"id":13818},{"__isSmartRef__":true,"id":13819},{"__isSmartRef__":true,"id":13820},{"__isSmartRef__":true,"id":13821},{"__isSmartRef__":true,"id":13822}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13818":{"name":"buttonSpecs","type":"propertyDef","startIndex":24209,"stopIndex":24251,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13817},"className":"StBrowserFileNode","_owner":{"__isSmartRef__":true,"id":13815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13819":{"name":"loadModule","type":"propertyDef","startIndex":24255,"stopIndex":24357,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13817},"className":"StBrowserFileNode","_owner":{"__isSmartRef__":true,"id":13815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13820":{"name":"saveSource","type":"propertyDef","startIndex":24360,"stopIndex":25110,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13817},"className":"StBrowserFileNode","_owner":{"__isSmartRef__":true,"id":13815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13821":{"name":"evalSource","type":"propertyDef","startIndex":25114,"stopIndex":25272,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13817},"className":"StBrowserFileNode","_owner":{"__isSmartRef__":true,"id":13815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13822":{"name":"onSelect","type":"propertyDef","startIndex":25275,"stopIndex":25343,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13817},"className":"StBrowserFileNode","_owner":{"__isSmartRef__":true,"id":13815},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13823":{"name":"StBrowserClassNode","type":"klassDef","startIndex":25349,"stopIndex":26021,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13824},{"__isSmartRef__":true,"id":13826},{"__isSmartRef__":true,"id":13827},{"__isSmartRef__":true,"id":13828},{"__isSmartRef__":true,"id":13829},{"__isSmartRef__":true,"id":13830}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.ide.CategorizedClassFragmentNode","categories":[{"__isSmartRef__":true,"id":13825}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13824":{"name":"isClassNode","type":"propertyDef","startIndex":25425,"stopIndex":25444,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13825},"className":"StBrowserClassNode","_owner":{"__isSmartRef__":true,"id":13823},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13825":{"name":"default category","type":"categoryDef","startIndex":25420,"stopIndex":26018,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13824},{"__isSmartRef__":true,"id":13826},{"__isSmartRef__":true,"id":13827},{"__isSmartRef__":true,"id":13828},{"__isSmartRef__":true,"id":13829},{"__isSmartRef__":true,"id":13830}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13826":{"name":"childNodes","type":"propertyDef","startIndex":25449,"stopIndex":25663,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13825},"className":"StBrowserClassNode","_owner":{"__isSmartRef__":true,"id":13823},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13827":{"name":"menuSpec","type":"propertyDef","startIndex":25668,"stopIndex":25701,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13825},"className":"StBrowserClassNode","_owner":{"__isSmartRef__":true,"id":13823},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13828":{"name":"saveSource","type":"propertyDef","startIndex":25706,"stopIndex":25758,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13825},"className":"StBrowserClassNode","_owner":{"__isSmartRef__":true,"id":13823},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13829":{"name":"evalSource","type":"propertyDef","startIndex":25763,"stopIndex":25933,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13825},"className":"StBrowserClassNode","_owner":{"__isSmartRef__":true,"id":13823},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13830":{"name":"asString","type":"propertyDef","startIndex":25942,"stopIndex":26016,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13825},"className":"StBrowserClassNode","_owner":{"__isSmartRef__":true,"id":13823},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13831":{"name":null,"type":"comment","startIndex":26022,"stopIndex":26022,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13832":{"name":"StBrowserMemberNode","type":"klassDef","startIndex":26023,"stopIndex":26754,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13833},{"__isSmartRef__":true,"id":13835},{"__isSmartRef__":true,"id":13836},{"__isSmartRef__":true,"id":13837},{"__isSmartRef__":true,"id":13838},{"__isSmartRef__":true,"id":13839}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.ide.FileFragmentNode","categories":[{"__isSmartRef__":true,"id":13834}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13833":{"name":"isMemberNode","type":"propertyDef","startIndex":26086,"stopIndex":26106,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13834},"className":"StBrowserMemberNode","_owner":{"__isSmartRef__":true,"id":13832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13834":{"name":"default category","type":"categoryDef","startIndex":26083,"stopIndex":26751,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13833},{"__isSmartRef__":true,"id":13835},{"__isSmartRef__":true,"id":13836},{"__isSmartRef__":true,"id":13837},{"__isSmartRef__":true,"id":13838},{"__isSmartRef__":true,"id":13839}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13835":{"name":"asString","type":"propertyDef","startIndex":26111,"stopIndex":26198,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13834},"className":"StBrowserMemberNode","_owner":{"__isSmartRef__":true,"id":13832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13836":{"name":"sourceString","type":"propertyDef","startIndex":26200,"stopIndex":26331,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13834},"className":"StBrowserMemberNode","_owner":{"__isSmartRef__":true,"id":13832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13837":{"name":"saveSource","type":"propertyDef","startIndex":26337,"stopIndex":26389,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13834},"className":"StBrowserMemberNode","_owner":{"__isSmartRef__":true,"id":13832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13838":{"name":"evalSource","type":"propertyDef","startIndex":26394,"stopIndex":26694,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13834},"className":"StBrowserMemberNode","_owner":{"__isSmartRef__":true,"id":13832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13839":{"name":"menuSpec","type":"propertyDef","startIndex":26699,"stopIndex":26748,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13834},"className":"StBrowserMemberNode","_owner":{"__isSmartRef__":true,"id":13832},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13840":{"name":null,"type":"comment","startIndex":26755,"stopIndex":26827,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13841":{"name":"TextMorph","type":"klassExtensionDef","startIndex":26828,"stopIndex":28509,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13842}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13843}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13842":{"name":"tryBoundEval","type":"propertyDef","startIndex":26851,"stopIndex":28505,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13843},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":13841},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13843":{"name":"default category","type":"categoryDef","startIndex":26849,"stopIndex":28506,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13842}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13844":{"name":null,"type":"comment","startIndex":28510,"stopIndex":28608,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13845":{"name":"Object","type":"klassExtensionDef","startIndex":28609,"stopIndex":28762,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13846},{"__isSmartRef__":true,"id":13848}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13847}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13846":{"name":"getVar","type":"propertyDef","startIndex":28629,"stopIndex":28682,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13847},"className":"Object","_owner":{"__isSmartRef__":true,"id":13845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13847":{"name":"default category","type":"categoryDef","startIndex":28627,"stopIndex":28759,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13846},{"__isSmartRef__":true,"id":13848}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13848":{"name":"setVarvalue","type":"propertyDef","startIndex":28684,"stopIndex":28757,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13847},"className":"Object","_owner":{"__isSmartRef__":true,"id":13845},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13849":{"name":"Morph","type":"klassExtensionDef","startIndex":28763,"stopIndex":28846,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13850}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13851}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13850":{"name":"getSubmorphs","type":"propertyDef","startIndex":28782,"stopIndex":28841,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13851},"className":"Morph","_owner":{"__isSmartRef__":true,"id":13849},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13851":{"name":"default category","type":"categoryDef","startIndex":28780,"stopIndex":28843,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13850}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13852":{"name":null,"type":"comment","startIndex":28847,"stopIndex":28847,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13853":{"name":"Array","type":"klassExtensionDef","startIndex":28848,"stopIndex":28995,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13854},{"__isSmartRef__":true,"id":13856}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13855}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13854":{"name":"at","type":"propertyDef","startIndex":28867,"stopIndex":28918,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13855},"className":"Array","_owner":{"__isSmartRef__":true,"id":13853},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13855":{"name":"default category","type":"categoryDef","startIndex":28865,"stopIndex":28992,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13854},{"__isSmartRef__":true,"id":13856}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13856":{"name":"atput","type":"propertyDef","startIndex":28920,"stopIndex":28991,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13855},"className":"Array","_owner":{"__isSmartRef__":true,"id":13853},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13857":{"name":null,"type":"comment","startIndex":28996,"stopIndex":28996,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13858":{"name":"Function","type":"klassExtensionDef","startIndex":28997,"stopIndex":29091,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13859}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13860}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13859":{"name":"value","type":"propertyDef","startIndex":29019,"stopIndex":29087,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13860},"className":"Function","_owner":{"__isSmartRef__":true,"id":13858},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13860":{"name":"default category","type":"categoryDef","startIndex":29017,"stopIndex":29088,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[{"__isSmartRef__":true,"id":13859}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13861":{"name":null,"type":"comment","startIndex":29092,"stopIndex":29092,"fileName":"lively/SmalltalkParserSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13862":{"target":{"__isSmartRef__":true,"id":13863},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/SmartRefSerialization.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13863":{"name":"lively.SmartRefSerialization","type":"moduleDef","startIndex":0,"stopIndex":190,"fileName":"lively/SmartRefSerialization.js","_subElements":[{"__isSmartRef__":true,"id":13864}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13864":{"name":null,"type":"comment","startIndex":100,"stopIndex":169,"fileName":"lively/SmartRefSerialization.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13865":{"target":{"__isSmartRef__":true,"id":13866},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/SpellChecker.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13866":{"name":"lively.SpellChecker","type":"moduleDef","startIndex":1136,"stopIndex":8569,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13867},{"__isSmartRef__":true,"id":13868},{"__isSmartRef__":true,"id":13869},{"__isSmartRef__":true,"id":13874},{"__isSmartRef__":true,"id":13875},{"__isSmartRef__":true,"id":13881},{"__isSmartRef__":true,"id":13891},{"__isSmartRef__":true,"id":13892},{"__isSmartRef__":true,"id":13899}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13867":{"name":null,"type":"unknown","startIndex":1247,"stopIndex":1280,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13868":{"name":null,"type":"comment","startIndex":1281,"stopIndex":1353,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13869":{"name":"SpellChecker","type":"klassDef","startIndex":1354,"stopIndex":2324,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13870},{"__isSmartRef__":true,"id":13872},{"__isSmartRef__":true,"id":13873}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":13871}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13870":{"name":"querySpellCheckService","type":"propertyDef","startIndex":1389,"stopIndex":1859,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13871},"className":"SpellChecker","_owner":{"__isSmartRef__":true,"id":13869},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13871":{"name":"default category","type":"categoryDef","startIndex":1386,"stopIndex":2321,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13870},{"__isSmartRef__":true,"id":13872},{"__isSmartRef__":true,"id":13873}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13872":{"name":"extractSpellCheck","type":"propertyDef","startIndex":1863,"stopIndex":2218,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13871},"className":"SpellChecker","_owner":{"__isSmartRef__":true,"id":13869},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13873":{"name":"onResponse","type":"propertyDef","startIndex":2221,"stopIndex":2320,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13871},"className":"SpellChecker","_owner":{"__isSmartRef__":true,"id":13869},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13874":{"name":null,"type":"comment","startIndex":2325,"stopIndex":2325,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13875":{"name":"SpellChecker","type":"klassExtensionDef","startIndex":2326,"stopIndex":2986,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13876},{"__isSmartRef__":true,"id":13878},{"__isSmartRef__":true,"id":13879},{"__isSmartRef__":true,"id":13880}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":13877}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13876":{"name":"genIngoreListName","type":"propertyDef","startIndex":2357,"stopIndex":2461,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13877},"className":"SpellChecker","_owner":{"__isSmartRef__":true,"id":13875},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13877":{"name":"default category","type":"categoryDef","startIndex":2354,"stopIndex":2983,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13876},{"__isSmartRef__":true,"id":13878},{"__isSmartRef__":true,"id":13879},{"__isSmartRef__":true,"id":13880}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13878":{"name":"getIgnoreList","type":"propertyDef","startIndex":2464,"stopIndex":2695,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13877},"className":"SpellChecker","_owner":{"__isSmartRef__":true,"id":13875},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13879":{"name":"setIgnoreList","type":"propertyDef","startIndex":2698,"stopIndex":2809,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13877},"className":"SpellChecker","_owner":{"__isSmartRef__":true,"id":13875},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13880":{"name":"addIgnoreWord","type":"propertyDef","startIndex":2813,"stopIndex":2981,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":13877},"className":"SpellChecker","_owner":{"__isSmartRef__":true,"id":13875},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13881":{"name":"SpellCheckerLayer","type":"copDef","startIndex":2987,"stopIndex":6486,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13882}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13882":{"name":"TextMorph","type":"copSubElement","startIndex":3019,"stopIndex":6484,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13883},{"__isSmartRef__":true,"id":13885},{"__isSmartRef__":true,"id":13886},{"__isSmartRef__":true,"id":13887},{"__isSmartRef__":true,"id":13888},{"__isSmartRef__":true,"id":13889},{"__isSmartRef__":true,"id":13890}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":13881},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13883":{"name":"correctWithSuggestion","type":"propertyDef","startIndex":3046,"stopIndex":3470,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13884},"_owner":{"__isSmartRef__":true,"id":13882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13884":{"name":"default category","type":"categoryDef","startIndex":56,"stopIndex":3496,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":13883},{"__isSmartRef__":true,"id":13885},{"__isSmartRef__":true,"id":13886},{"__isSmartRef__":true,"id":13887},{"__isSmartRef__":true,"id":13888},{"__isSmartRef__":true,"id":13889},{"__isSmartRef__":true,"id":13890}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13885":{"name":"ignoreWordWhileSpellChecking","type":"propertyDef","startIndex":3474,"stopIndex":3587,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13884},"_owner":{"__isSmartRef__":true,"id":13882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13886":{"name":"morphMenu","type":"propertyDef","startIndex":3590,"stopIndex":4362,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13884},"_owner":{"__isSmartRef__":true,"id":13882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13887":{"name":"getSpellCheckLang","type":"propertyDef","startIndex":4365,"stopIndex":4439,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13884},"_owner":{"__isSmartRef__":true,"id":13882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13888":{"name":"spellCheckAll","type":"propertyDef","startIndex":4442,"stopIndex":5265,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13884},"_owner":{"__isSmartRef__":true,"id":13882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13889":{"name":"unspellCheckAll","type":"propertyDef","startIndex":5267,"stopIndex":5756,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13884},"_owner":{"__isSmartRef__":true,"id":13882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13890":{"name":"spellCheckUnderMouse","type":"propertyDef","startIndex":5760,"stopIndex":6480,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13884},"_owner":{"__isSmartRef__":true,"id":13882},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13891":{"name":null,"type":"comment","startIndex":6487,"stopIndex":6487,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13892":{"name":"lively.SpellChecker.SpellCheckerTest","type":"klassDef","startIndex":6488,"stopIndex":8565,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13893},{"__isSmartRef__":true,"id":13895},{"__isSmartRef__":true,"id":13896},{"__isSmartRef__":true,"id":13897},{"__isSmartRef__":true,"id":13898}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TestCase","categories":[{"__isSmartRef__":true,"id":13894}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13893":{"name":"testQuerySpellCheckService","type":"propertyDef","startIndex":6549,"stopIndex":6932,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13894},"className":"lively.SpellChecker.SpellCheckerTest","_owner":{"__isSmartRef__":true,"id":13892},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13894":{"name":"default category","type":"categoryDef","startIndex":6546,"stopIndex":8562,"fileName":"lively/SpellChecker.js","_subElements":[{"__isSmartRef__":true,"id":13893},{"__isSmartRef__":true,"id":13895},{"__isSmartRef__":true,"id":13896},{"__isSmartRef__":true,"id":13897},{"__isSmartRef__":true,"id":13898}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13895":{"name":"testQuerySpellCheckServiceGerman","type":"propertyDef","startIndex":6935,"stopIndex":7398,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13894},"className":"lively.SpellChecker.SpellCheckerTest","_owner":{"__isSmartRef__":true,"id":13892},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13896":{"name":"testExtractSuggestions","type":"propertyDef","startIndex":7401,"stopIndex":8158,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13894},"className":"lively.SpellChecker.SpellCheckerTest","_owner":{"__isSmartRef__":true,"id":13892},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13897":{"name":"testSetGetIngoreList","type":"propertyDef","startIndex":8161,"stopIndex":8340,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13894},"className":"lively.SpellChecker.SpellCheckerTest","_owner":{"__isSmartRef__":true,"id":13892},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13898":{"name":"testAddIgnoreWord","type":"propertyDef","startIndex":8344,"stopIndex":8560,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13894},"className":"lively.SpellChecker.SpellCheckerTest","_owner":{"__isSmartRef__":true,"id":13892},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13899":{"name":null,"type":"comment","startIndex":8566,"stopIndex":8566,"fileName":"lively/SpellChecker.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13900":{"target":{"__isSmartRef__":true,"id":13901},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Storage.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"13901":{"name":"lively.Storage","type":"moduleDef","startIndex":1243,"stopIndex":28445,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13902},{"__isSmartRef__":true,"id":13903},{"__isSmartRef__":true,"id":13916},{"__isSmartRef__":true,"id":13917},{"__isSmartRef__":true,"id":13930},{"__isSmartRef__":true,"id":13931},{"__isSmartRef__":true,"id":13945},{"__isSmartRef__":true,"id":13946},{"__isSmartRef__":true,"id":13965},{"__isSmartRef__":true,"id":13966},{"__isSmartRef__":true,"id":13978},{"__isSmartRef__":true,"id":13979},{"__isSmartRef__":true,"id":13984},{"__isSmartRef__":true,"id":13985},{"__isSmartRef__":true,"id":13994},{"__isSmartRef__":true,"id":13995},{"__isSmartRef__":true,"id":14000},{"__isSmartRef__":true,"id":14001},{"__isSmartRef__":true,"id":14009},{"__isSmartRef__":true,"id":14010},{"__isSmartRef__":true,"id":14019},{"__isSmartRef__":true,"id":14020},{"__isSmartRef__":true,"id":14021}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13902":{"name":null,"type":"comment","startIndex":1353,"stopIndex":1354,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13903":{"name":"PackageMorph","type":"klassDef","startIndex":1355,"stopIndex":4847,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13904},{"__isSmartRef__":true,"id":13906},{"__isSmartRef__":true,"id":13907},{"__isSmartRef__":true,"id":13908},{"__isSmartRef__":true,"id":13909},{"__isSmartRef__":true,"id":13910},{"__isSmartRef__":true,"id":13911},{"__isSmartRef__":true,"id":13912},{"__isSmartRef__":true,"id":13913},{"__isSmartRef__":true,"id":13914},{"__isSmartRef__":true,"id":13915}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":13905}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13904":{"name":"documentation","type":"propertyDef","startIndex":1391,"stopIndex":1456,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13905":{"name":"default category","type":"categoryDef","startIndex":1389,"stopIndex":4844,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13904},{"__isSmartRef__":true,"id":13906},{"__isSmartRef__":true,"id":13907},{"__isSmartRef__":true,"id":13908},{"__isSmartRef__":true,"id":13909},{"__isSmartRef__":true,"id":13910},{"__isSmartRef__":true,"id":13911},{"__isSmartRef__":true,"id":13912},{"__isSmartRef__":true,"id":13913},{"__isSmartRef__":true,"id":13914},{"__isSmartRef__":true,"id":13915}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13906":{"name":"style","type":"propertyDef","startIndex":1458,"stopIndex":1765,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13907":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":1767,"stopIndex":1796,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13908":{"name":"suppressHandles","type":"propertyDef","startIndex":1798,"stopIndex":1823,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13909":{"name":"size","type":"propertyDef","startIndex":1825,"stopIndex":1837,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13910":{"name":"initialize","type":"propertyDef","startIndex":1844,"stopIndex":2797,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13911":{"name":"getHelpText","type":"propertyDef","startIndex":2800,"stopIndex":2858,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13912":{"name":"openIn","type":"propertyDef","startIndex":2865,"stopIndex":2942,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13913":{"name":"morphMenu","type":"propertyDef","startIndex":2949,"stopIndex":3687,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13914":{"name":"unpackageAt","type":"propertyDef","startIndex":3690,"stopIndex":4522,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13915":{"name":"restoreFromSubnode","type":"propertyDef","startIndex":4525,"stopIndex":4843,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13905},"className":"PackageMorph","_owner":{"__isSmartRef__":true,"id":13903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13916":{"name":null,"type":"comment","startIndex":4848,"stopIndex":4849,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13917":{"name":"lively.Storage.CollectionItem","type":"klassDef","startIndex":4850,"stopIndex":6865,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13918},{"__isSmartRef__":true,"id":13920},{"__isSmartRef__":true,"id":13921},{"__isSmartRef__":true,"id":13922},{"__isSmartRef__":true,"id":13923},{"__isSmartRef__":true,"id":13924},{"__isSmartRef__":true,"id":13925},{"__isSmartRef__":true,"id":13926},{"__isSmartRef__":true,"id":13927},{"__isSmartRef__":true,"id":13928},{"__isSmartRef__":true,"id":13929}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":13919}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13918":{"name":"documentation","type":"propertyDef","startIndex":4914,"stopIndex":4993,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13919":{"name":"default category","type":"categoryDef","startIndex":4912,"stopIndex":6862,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13918},{"__isSmartRef__":true,"id":13920},{"__isSmartRef__":true,"id":13921},{"__isSmartRef__":true,"id":13922},{"__isSmartRef__":true,"id":13923},{"__isSmartRef__":true,"id":13924},{"__isSmartRef__":true,"id":13925},{"__isSmartRef__":true,"id":13926},{"__isSmartRef__":true,"id":13927},{"__isSmartRef__":true,"id":13928},{"__isSmartRef__":true,"id":13929}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13920":{"name":"nameQ","type":"propertyDef","startIndex":4996,"stopIndex":5026,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13921":{"name":"propertiesQ","type":"propertyDef","startIndex":5028,"stopIndex":5068,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13922":{"name":"initialize","type":"propertyDef","startIndex":5075,"stopIndex":5175,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13923":{"name":"name","type":"propertyDef","startIndex":5182,"stopIndex":5479,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13924":{"name":"toURL","type":"propertyDef","startIndex":5482,"stopIndex":5628,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13925":{"name":"toURL2","type":"propertyDef","startIndex":5631,"stopIndex":5705,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13926":{"name":"toString","type":"propertyDef","startIndex":5708,"stopIndex":5798,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13927":{"name":"shortName","type":"propertyDef","startIndex":5801,"stopIndex":5974,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13928":{"name":"properties","type":"propertyDef","startIndex":5981,"stopIndex":6095,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13929":{"name":"asSVNVersionInfo","type":"propertyDef","startIndex":6098,"stopIndex":6860,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13919},"className":"lively.Storage.CollectionItem","_owner":{"__isSmartRef__":true,"id":13917},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13930":{"name":null,"type":"comment","startIndex":6866,"stopIndex":6867,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13931":{"name":"lively.Storage.WebFile","type":"klassDef","startIndex":6868,"stopIndex":9787,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13932},{"__isSmartRef__":true,"id":13934},{"__isSmartRef__":true,"id":13935},{"__isSmartRef__":true,"id":13936},{"__isSmartRef__":true,"id":13937},{"__isSmartRef__":true,"id":13938},{"__isSmartRef__":true,"id":13939},{"__isSmartRef__":true,"id":13940},{"__isSmartRef__":true,"id":13941},{"__isSmartRef__":true,"id":13942},{"__isSmartRef__":true,"id":13943},{"__isSmartRef__":true,"id":13944}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["NetRequestReporterTrait"],"superclassName":"View","categories":[{"__isSmartRef__":true,"id":13933}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13932":{"name":"documentation","type":"propertyDef","startIndex":6936,"stopIndex":6972,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13933":{"name":"default category","type":"categoryDef","startIndex":6933,"stopIndex":9784,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13932},{"__isSmartRef__":true,"id":13934},{"__isSmartRef__":true,"id":13935},{"__isSmartRef__":true,"id":13936},{"__isSmartRef__":true,"id":13937},{"__isSmartRef__":true,"id":13938},{"__isSmartRef__":true,"id":13939},{"__isSmartRef__":true,"id":13940},{"__isSmartRef__":true,"id":13941},{"__isSmartRef__":true,"id":13942},{"__isSmartRef__":true,"id":13943},{"__isSmartRef__":true,"id":13944}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13934":{"name":"formals","type":"propertyDef","startIndex":6973,"stopIndex":7085,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13935":{"name":"initialize","type":"propertyDef","startIndex":7088,"stopIndex":7172,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13936":{"name":"deserialize","type":"propertyDef","startIndex":7175,"stopIndex":7273,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13937":{"name":"toString","type":"propertyDef","startIndex":7277,"stopIndex":7369,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13938":{"name":"startFetchingFile","type":"propertyDef","startIndex":7372,"stopIndex":7485,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13939":{"name":"updateView","type":"propertyDef","startIndex":7488,"stopIndex":7958,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13940":{"name":"fetchContent","type":"propertyDef","startIndex":7965,"stopIndex":8637,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13941":{"name":"pvtSetDirectoryContent","type":"propertyDef","startIndex":8641,"stopIndex":9141,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13942":{"name":"saveFileContent","type":"propertyDef","startIndex":9144,"stopIndex":9242,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13943":{"name":"pvtSetFileContent","type":"propertyDef","startIndex":9245,"stopIndex":9347,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13944":{"name":"arrangeFiles","type":"propertyDef","startIndex":9350,"stopIndex":9783,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13933},"className":"lively.Storage.WebFile","_owner":{"__isSmartRef__":true,"id":13931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13945":{"name":null,"type":"comment","startIndex":9788,"stopIndex":9790,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13946":{"name":"TwoPaneBrowser","type":"klassDef","startIndex":9791,"stopIndex":17165,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13947},{"__isSmartRef__":true,"id":13949},{"__isSmartRef__":true,"id":13950},{"__isSmartRef__":true,"id":13951},{"__isSmartRef__":true,"id":13952},{"__isSmartRef__":true,"id":13953},{"__isSmartRef__":true,"id":13954},{"__isSmartRef__":true,"id":13955},{"__isSmartRef__":true,"id":13956},{"__isSmartRef__":true,"id":13957},{"__isSmartRef__":true,"id":13958},{"__isSmartRef__":true,"id":13959},{"__isSmartRef__":true,"id":13960},{"__isSmartRef__":true,"id":13961},{"__isSmartRef__":true,"id":13962},{"__isSmartRef__":true,"id":13963},{"__isSmartRef__":true,"id":13964}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":13948}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13947":{"name":"pins","type":"propertyDef","startIndex":9859,"stopIndex":10184,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13948":{"name":"default category","type":"categoryDef","startIndex":9825,"stopIndex":17162,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13947},{"__isSmartRef__":true,"id":13949},{"__isSmartRef__":true,"id":13950},{"__isSmartRef__":true,"id":13951},{"__isSmartRef__":true,"id":13952},{"__isSmartRef__":true,"id":13953},{"__isSmartRef__":true,"id":13954},{"__isSmartRef__":true,"id":13955},{"__isSmartRef__":true,"id":13956},{"__isSmartRef__":true,"id":13957},{"__isSmartRef__":true,"id":13958},{"__isSmartRef__":true,"id":13959},{"__isSmartRef__":true,"id":13960},{"__isSmartRef__":true,"id":13961},{"__isSmartRef__":true,"id":13962},{"__isSmartRef__":true,"id":13963},{"__isSmartRef__":true,"id":13964}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13949":{"name":"initialize","type":"propertyDef","startIndex":10191,"stopIndex":11688,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13950":{"name":"UPLINK","type":"propertyDef","startIndex":11691,"stopIndex":11709,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13951":{"name":"SELFLINK","type":"propertyDef","startIndex":11711,"stopIndex":11732,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13952":{"name":"getSelectedLowerNode","type":"propertyDef","startIndex":11739,"stopIndex":11835,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13953":{"name":"setSelectedLowerNode","type":"propertyDef","startIndex":11842,"stopIndex":11989,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13954":{"name":"getSelectedUpperNode","type":"propertyDef","startIndex":11996,"stopIndex":12092,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13955":{"name":"setSelectedUpperNode","type":"propertyDef","startIndex":12095,"stopIndex":12249,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13956":{"name":"clearLowerNodes","type":"propertyDef","startIndex":12252,"stopIndex":12531,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13957":{"name":"getRootNode","type":"propertyDef","startIndex":12534,"stopIndex":12612,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13958":{"name":"getTopNode","type":"propertyDef","startIndex":12619,"stopIndex":12695,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13959":{"name":"handleUpperNodeSelection","type":"propertyDef","startIndex":12698,"stopIndex":13682,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13960":{"name":"handleLowerNameSelection","type":"propertyDef","startIndex":13685,"stopIndex":14653,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13961":{"name":"updateView","type":"propertyDef","startIndex":14656,"stopIndex":15522,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13962":{"name":"removeNode","type":"propertyDef","startIndex":15525,"stopIndex":15603,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13963":{"name":"buildView","type":"propertyDef","startIndex":15610,"stopIndex":16774,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13964":{"name":"getViewTitle","type":"propertyDef","startIndex":16777,"stopIndex":17161,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13948},"className":"TwoPaneBrowser","_owner":{"__isSmartRef__":true,"id":13946},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13965":{"name":null,"type":"comment","startIndex":17166,"stopIndex":17167,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13966":{"name":"FileBrowser","type":"klassDef","startIndex":17168,"stopIndex":22667,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13967},{"__isSmartRef__":true,"id":13969},{"__isSmartRef__":true,"id":13970},{"__isSmartRef__":true,"id":13971},{"__isSmartRef__":true,"id":13972},{"__isSmartRef__":true,"id":13973},{"__isSmartRef__":true,"id":13974},{"__isSmartRef__":true,"id":13975},{"__isSmartRef__":true,"id":13976},{"__isSmartRef__":true,"id":13977}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TwoPaneBrowser","categories":[{"__isSmartRef__":true,"id":13968}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13967":{"name":"initialize","type":"propertyDef","startIndex":17210,"stopIndex":20514,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13968":{"name":"default category","type":"categoryDef","startIndex":17207,"stopIndex":22664,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13967},{"__isSmartRef__":true,"id":13969},{"__isSmartRef__":true,"id":13970},{"__isSmartRef__":true,"id":13971},{"__isSmartRef__":true,"id":13972},{"__isSmartRef__":true,"id":13973},{"__isSmartRef__":true,"id":13974},{"__isSmartRef__":true,"id":13975},{"__isSmartRef__":true,"id":13976},{"__isSmartRef__":true,"id":13977}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13969":{"name":"isGraphicFile","type":"propertyDef","startIndex":20521,"stopIndex":20710,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13970":{"name":"onMenuAddQueryMorph","type":"propertyDef","startIndex":20714,"stopIndex":21022,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13971":{"name":"onMenuShowModificationTime","type":"propertyDef","startIndex":21025,"stopIndex":21442,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13972":{"name":"removeNode","type":"propertyDef","startIndex":21449,"stopIndex":22115,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13973":{"name":"retrieveParentNode","type":"propertyDef","startIndex":22119,"stopIndex":22189,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13974":{"name":"nodesToNames","type":"propertyDef","startIndex":22192,"stopIndex":22441,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13975":{"name":"isLeafNode","type":"propertyDef","startIndex":22444,"stopIndex":22500,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13976":{"name":"deriveChildNode","type":"propertyDef","startIndex":22503,"stopIndex":22603,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13977":{"name":"nodeEqual","type":"propertyDef","startIndex":22606,"stopIndex":22659,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13968},"className":"FileBrowser","_owner":{"__isSmartRef__":true,"id":13966},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13978":{"name":null,"type":"comment","startIndex":22668,"stopIndex":22669,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13979":{"name":"lively.Storage.DOMFetcher","type":"klassDef","startIndex":22670,"stopIndex":23775,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13980},{"__isSmartRef__":true,"id":13982},{"__isSmartRef__":true,"id":13983}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"View","categories":[{"__isSmartRef__":true,"id":13981}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13980":{"name":"initialize","type":"propertyDef","startIndex":22716,"stopIndex":22800,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13981},"className":"lively.Storage.DOMFetcher","_owner":{"__isSmartRef__":true,"id":13979},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13981":{"name":"default category","type":"categoryDef","startIndex":22713,"stopIndex":23772,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13980},{"__isSmartRef__":true,"id":13982},{"__isSmartRef__":true,"id":13983}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13982":{"name":"updateView","type":"propertyDef","startIndex":22803,"stopIndex":23095,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13981},"className":"lively.Storage.DOMFetcher","_owner":{"__isSmartRef__":true,"id":13979},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13983":{"name":"fetchContent","type":"propertyDef","startIndex":23102,"stopIndex":23771,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13981},"className":"lively.Storage.DOMFetcher","_owner":{"__isSmartRef__":true,"id":13979},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13984":{"name":null,"type":"comment","startIndex":23776,"stopIndex":23777,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13985":{"name":"DOMBrowser","type":"klassDef","startIndex":23778,"stopIndex":25264,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13986},{"__isSmartRef__":true,"id":13988},{"__isSmartRef__":true,"id":13989},{"__isSmartRef__":true,"id":13990},{"__isSmartRef__":true,"id":13991},{"__isSmartRef__":true,"id":13992},{"__isSmartRef__":true,"id":13993}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TwoPaneBrowser","categories":[{"__isSmartRef__":true,"id":13987}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13986":{"name":"nodeTypes","type":"propertyDef","startIndex":23819,"stopIndex":24038,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13987},"className":"DOMBrowser","_owner":{"__isSmartRef__":true,"id":13985},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13987":{"name":"default category","type":"categoryDef","startIndex":23816,"stopIndex":25261,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13986},{"__isSmartRef__":true,"id":13988},{"__isSmartRef__":true,"id":13989},{"__isSmartRef__":true,"id":13990},{"__isSmartRef__":true,"id":13991},{"__isSmartRef__":true,"id":13992},{"__isSmartRef__":true,"id":13993}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13988":{"name":"initialize","type":"propertyDef","startIndex":24041,"stopIndex":24186,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13987},"className":"DOMBrowser","_owner":{"__isSmartRef__":true,"id":13985},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13989":{"name":"nodesToNames","type":"propertyDef","startIndex":24189,"stopIndex":24791,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13987},"className":"DOMBrowser","_owner":{"__isSmartRef__":true,"id":13985},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13990":{"name":"retrieveParentNode","type":"propertyDef","startIndex":24794,"stopIndex":24865,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13987},"className":"DOMBrowser","_owner":{"__isSmartRef__":true,"id":13985},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13991":{"name":"isLeafNode","type":"propertyDef","startIndex":24868,"stopIndex":24948,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13987},"className":"DOMBrowser","_owner":{"__isSmartRef__":true,"id":13985},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13992":{"name":"deriveChildNode","type":"propertyDef","startIndex":24951,"stopIndex":25194,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13987},"className":"DOMBrowser","_owner":{"__isSmartRef__":true,"id":13985},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13993":{"name":"nodeEqual","type":"propertyDef","startIndex":25197,"stopIndex":25260,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13987},"className":"DOMBrowser","_owner":{"__isSmartRef__":true,"id":13985},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13994":{"name":null,"type":"comment","startIndex":25265,"stopIndex":25284,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13995":{"name":"ObjectFetcher","type":"klassDef","startIndex":25285,"stopIndex":26109,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13996},{"__isSmartRef__":true,"id":13998},{"__isSmartRef__":true,"id":13999}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"View","categories":[{"__isSmartRef__":true,"id":13997}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13996":{"name":"initialize","type":"propertyDef","startIndex":25319,"stopIndex":25403,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13997},"className":"ObjectFetcher","_owner":{"__isSmartRef__":true,"id":13995},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13997":{"name":"default category","type":"categoryDef","startIndex":25316,"stopIndex":26106,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":13996},{"__isSmartRef__":true,"id":13998},{"__isSmartRef__":true,"id":13999}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13998":{"name":"updateView","type":"propertyDef","startIndex":25406,"stopIndex":25698,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13997},"className":"ObjectFetcher","_owner":{"__isSmartRef__":true,"id":13995},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"13999":{"name":"fetchContent","type":"propertyDef","startIndex":25705,"stopIndex":26105,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":13997},"className":"ObjectFetcher","_owner":{"__isSmartRef__":true,"id":13995},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14000":{"name":null,"type":"comment","startIndex":26110,"stopIndex":26112,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14001":{"name":"TwoPaneObjectBrowser","type":"klassDef","startIndex":26113,"stopIndex":26992,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":14002},{"__isSmartRef__":true,"id":14004},{"__isSmartRef__":true,"id":14005},{"__isSmartRef__":true,"id":14006},{"__isSmartRef__":true,"id":14007},{"__isSmartRef__":true,"id":14008}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TwoPaneBrowser","categories":[{"__isSmartRef__":true,"id":14003}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14002":{"name":"initialize","type":"propertyDef","startIndex":26198,"stopIndex":26311,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14003},"className":"TwoPaneObjectBrowser","_owner":{"__isSmartRef__":true,"id":14001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14003":{"name":"default category","type":"categoryDef","startIndex":26161,"stopIndex":26989,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":14002},{"__isSmartRef__":true,"id":14004},{"__isSmartRef__":true,"id":14005},{"__isSmartRef__":true,"id":14006},{"__isSmartRef__":true,"id":14007},{"__isSmartRef__":true,"id":14008}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14004":{"name":"nodesToNames","type":"propertyDef","startIndex":26314,"stopIndex":26659,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14003},"className":"TwoPaneObjectBrowser","_owner":{"__isSmartRef__":true,"id":14001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14005":{"name":"retrieveParentNode","type":"propertyDef","startIndex":26663,"stopIndex":26744,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14003},"className":"TwoPaneObjectBrowser","_owner":{"__isSmartRef__":true,"id":14001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14006":{"name":"isLeafNode","type":"propertyDef","startIndex":26747,"stopIndex":26827,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14003},"className":"TwoPaneObjectBrowser","_owner":{"__isSmartRef__":true,"id":14001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14007":{"name":"deriveChildNode","type":"propertyDef","startIndex":26830,"stopIndex":26922,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14003},"className":"TwoPaneObjectBrowser","_owner":{"__isSmartRef__":true,"id":14001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14008":{"name":"nodeEqual","type":"propertyDef","startIndex":26925,"stopIndex":26988,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14003},"className":"TwoPaneObjectBrowser","_owner":{"__isSmartRef__":true,"id":14001},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14009":{"name":null,"type":"comment","startIndex":26993,"stopIndex":27009,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14010":{"name":"Subversion","type":"klassDef","startIndex":27010,"stopIndex":28394,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":14011},{"__isSmartRef__":true,"id":14013},{"__isSmartRef__":true,"id":14014},{"__isSmartRef__":true,"id":14015},{"__isSmartRef__":true,"id":14016},{"__isSmartRef__":true,"id":14017},{"__isSmartRef__":true,"id":14018}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["NetRequestReporterTrait"],"superclassName":"View","categories":[{"__isSmartRef__":true,"id":14012}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14011":{"name":"documentation","type":"propertyDef","startIndex":27066,"stopIndex":27113,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14012},"className":"Subversion","_owner":{"__isSmartRef__":true,"id":14010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14012":{"name":"default category","type":"categoryDef","startIndex":27064,"stopIndex":28391,"fileName":"lively/Storage.js","_subElements":[{"__isSmartRef__":true,"id":14011},{"__isSmartRef__":true,"id":14013},{"__isSmartRef__":true,"id":14014},{"__isSmartRef__":true,"id":14015},{"__isSmartRef__":true,"id":14016},{"__isSmartRef__":true,"id":14017},{"__isSmartRef__":true,"id":14018}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14013":{"name":"pins","type":"propertyDef","startIndex":27120,"stopIndex":27147,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14012},"className":"Subversion","_owner":{"__isSmartRef__":true,"id":14010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14014":{"name":"initialize","type":"propertyDef","startIndex":27150,"stopIndex":27430,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14012},"className":"Subversion","_owner":{"__isSmartRef__":true,"id":14010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14015":{"name":"diff","type":"propertyDef","startIndex":27433,"stopIndex":27704,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14012},"className":"Subversion","_owner":{"__isSmartRef__":true,"id":14010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14016":{"name":"info","type":"propertyDef","startIndex":27707,"stopIndex":27975,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14012},"className":"Subversion","_owner":{"__isSmartRef__":true,"id":14010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14017":{"name":"commit","type":"propertyDef","startIndex":27982,"stopIndex":28290,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14012},"className":"Subversion","_owner":{"__isSmartRef__":true,"id":14010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14018":{"name":"setSubversionResponse","type":"propertyDef","startIndex":28293,"stopIndex":28390,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14012},"className":"Subversion","_owner":{"__isSmartRef__":true,"id":14010},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14019":{"name":null,"type":"comment","startIndex":28395,"stopIndex":28395,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14020":{"name":null,"type":"unknown","startIndex":28396,"stopIndex":28422,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14021":{"name":null,"type":"comment","startIndex":28423,"stopIndex":28424,"fileName":"lively/Storage.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14022":{"target":{"__isSmartRef__":true,"id":14023},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/StyleAdditions.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14023":{"name":"lively.StyleAdditions","type":"moduleDef","startIndex":0,"stopIndex":4762,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14024},{"__isSmartRef__":true,"id":14025},{"__isSmartRef__":true,"id":14031},{"__isSmartRef__":true,"id":14032},{"__isSmartRef__":true,"id":14040},{"__isSmartRef__":true,"id":14041},{"__isSmartRef__":true,"id":14045},{"__isSmartRef__":true,"id":14049},{"__isSmartRef__":true,"id":14053},{"__isSmartRef__":true,"id":14061}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14024":{"name":null,"type":"comment","startIndex":75,"stopIndex":75,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14025":{"name":"CrayonColorItemMorph","type":"klassDef","startIndex":76,"stopIndex":409,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14026},{"__isSmartRef__":true,"id":14028},{"__isSmartRef__":true,"id":14029},{"__isSmartRef__":true,"id":14030}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":14027}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14026":{"name":"handlesMouseDown","type":"propertyDef","startIndex":120,"stopIndex":153,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14027},"className":"CrayonColorItemMorph","_owner":{"__isSmartRef__":true,"id":14025},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14027":{"name":"default category","type":"categoryDef","startIndex":118,"stopIndex":406,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14026},{"__isSmartRef__":true,"id":14028},{"__isSmartRef__":true,"id":14029},{"__isSmartRef__":true,"id":14030}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14028":{"name":"onMouseDown","type":"propertyDef","startIndex":155,"stopIndex":308,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14027},"className":"CrayonColorItemMorph","_owner":{"__isSmartRef__":true,"id":14025},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14029":{"name":"onMouseMove","type":"propertyDef","startIndex":310,"stopIndex":348,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14027},"className":"CrayonColorItemMorph","_owner":{"__isSmartRef__":true,"id":14025},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14030":{"name":"getHelpText","type":"propertyDef","startIndex":351,"stopIndex":404,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14027},"className":"CrayonColorItemMorph","_owner":{"__isSmartRef__":true,"id":14025},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14031":{"name":null,"type":"comment","startIndex":410,"stopIndex":410,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14032":{"name":"CrayonColorChooserMorph","type":"klassDef","startIndex":411,"stopIndex":1495,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14033},{"__isSmartRef__":true,"id":14035},{"__isSmartRef__":true,"id":14036},{"__isSmartRef__":true,"id":14037},{"__isSmartRef__":true,"id":14038},{"__isSmartRef__":true,"id":14039}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":14034}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14033":{"name":"initialize","type":"propertyDef","startIndex":458,"stopIndex":1128,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14034},"className":"CrayonColorChooserMorph","_owner":{"__isSmartRef__":true,"id":14032},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14034":{"name":"default category","type":"categoryDef","startIndex":456,"stopIndex":1492,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14033},{"__isSmartRef__":true,"id":14035},{"__isSmartRef__":true,"id":14036},{"__isSmartRef__":true,"id":14037},{"__isSmartRef__":true,"id":14038},{"__isSmartRef__":true,"id":14039}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14035":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":1131,"stopIndex":1166,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14034},"className":"CrayonColorChooserMorph","_owner":{"__isSmartRef__":true,"id":14032},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14036":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":1168,"stopIndex":1318,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14034},"className":"CrayonColorChooserMorph","_owner":{"__isSmartRef__":true,"id":14032},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14037":{"name":"handlesMouseDown","type":"propertyDef","startIndex":1320,"stopIndex":1353,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14034},"className":"CrayonColorChooserMorph","_owner":{"__isSmartRef__":true,"id":14032},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14038":{"name":"onMouseDown","type":"propertyDef","startIndex":1355,"stopIndex":1443,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14034},"className":"CrayonColorChooserMorph","_owner":{"__isSmartRef__":true,"id":14032},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14039":{"name":"onMouseMove","type":"propertyDef","startIndex":1445,"stopIndex":1490,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14034},"className":"CrayonColorChooserMorph","_owner":{"__isSmartRef__":true,"id":14032},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14040":{"name":null,"type":"comment","startIndex":1496,"stopIndex":1496,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14041":{"name":"Morph","type":"klassExtensionDef","startIndex":1497,"stopIndex":1860,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14042},{"__isSmartRef__":true,"id":14044}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14043}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14042":{"name":"getCustomStyle","type":"propertyDef","startIndex":1516,"stopIndex":1789,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14043},"className":"Morph","_owner":{"__isSmartRef__":true,"id":14041},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14043":{"name":"default category","type":"categoryDef","startIndex":1514,"stopIndex":1857,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14042},{"__isSmartRef__":true,"id":14044}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14044":{"name":"applyCustomStyle","type":"propertyDef","startIndex":1791,"stopIndex":1855,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14043},"className":"Morph","_owner":{"__isSmartRef__":true,"id":14041},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14045":{"name":"TextMorph","type":"klassExtensionDef","startIndex":1861,"stopIndex":2247,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14046},{"__isSmartRef__":true,"id":14048}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14047}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14046":{"name":"getCustomStyle","type":"propertyDef","startIndex":1884,"stopIndex":2112,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14047},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14045},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14047":{"name":"default category","type":"categoryDef","startIndex":1882,"stopIndex":2244,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14046},{"__isSmartRef__":true,"id":14048}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14048":{"name":"applyCustomStyle","type":"propertyDef","startIndex":2114,"stopIndex":2242,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14047},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14045},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14049":{"name":"StyleCopier","type":"klassDef","startIndex":2248,"stopIndex":2690,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14050},{"__isSmartRef__":true,"id":14052}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14051}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14050":{"name":"copyFromMorph","type":"propertyDef","startIndex":2281,"stopIndex":2472,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14051},"className":"StyleCopier","_owner":{"__isSmartRef__":true,"id":14049},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14051":{"name":"default category","type":"categoryDef","startIndex":2279,"stopIndex":2687,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14050},{"__isSmartRef__":true,"id":14052}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14052":{"name":"pasteToMorph","type":"propertyDef","startIndex":2475,"stopIndex":2686,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14051},"className":"StyleCopier","_owner":{"__isSmartRef__":true,"id":14049},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14053":{"name":"StyleEditor","type":"klassDef","startIndex":2691,"stopIndex":4742,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14054},{"__isSmartRef__":true,"id":14056},{"__isSmartRef__":true,"id":14057},{"__isSmartRef__":true,"id":14058},{"__isSmartRef__":true,"id":14059},{"__isSmartRef__":true,"id":14060}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14055}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14054":{"name":"showCrayonColorsSetter","type":"propertyDef","startIndex":2725,"stopIndex":3206,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14055},"className":"StyleEditor","_owner":{"__isSmartRef__":true,"id":14053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14055":{"name":"default category","type":"categoryDef","startIndex":2722,"stopIndex":4739,"fileName":"lively/StyleAdditions.js","_subElements":[{"__isSmartRef__":true,"id":14054},{"__isSmartRef__":true,"id":14056},{"__isSmartRef__":true,"id":14057},{"__isSmartRef__":true,"id":14058},{"__isSmartRef__":true,"id":14059},{"__isSmartRef__":true,"id":14060}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14056":{"name":"showCrayonColorsSetterMenuItem","type":"propertyDef","startIndex":3211,"stopIndex":3449,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14055},"className":"StyleEditor","_owner":{"__isSmartRef__":true,"id":14053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14057":{"name":"createFontSizeMenu","type":"propertyDef","startIndex":3452,"stopIndex":3617,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14055},"className":"StyleEditor","_owner":{"__isSmartRef__":true,"id":14053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14058":{"name":"createFontFamilyMenu","type":"propertyDef","startIndex":3620,"stopIndex":3789,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14055},"className":"StyleEditor","_owner":{"__isSmartRef__":true,"id":14053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14059":{"name":"fontMenuItems","type":"propertyDef","startIndex":3793,"stopIndex":4055,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14055},"className":"StyleEditor","_owner":{"__isSmartRef__":true,"id":14053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14060":{"name":"styleEditorMenuItems","type":"propertyDef","startIndex":4059,"stopIndex":4737,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14055},"className":"StyleEditor","_owner":{"__isSmartRef__":true,"id":14053},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14061":{"name":null,"type":"comment","startIndex":4743,"stopIndex":4743,"fileName":"lively/StyleAdditions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14062":{"target":{"__isSmartRef__":true,"id":14063},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Styles.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14063":{"name":"lively.Styles","type":"moduleDef","startIndex":1133,"stopIndex":18043,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14064},{"__isSmartRef__":true,"id":14065},{"__isSmartRef__":true,"id":14207},{"__isSmartRef__":true,"id":14208},{"__isSmartRef__":true,"id":14212},{"__isSmartRef__":true,"id":14213},{"__isSmartRef__":true,"id":14214},{"__isSmartRef__":true,"id":14221},{"__isSmartRef__":true,"id":14222},{"__isSmartRef__":true,"id":14223},{"__isSmartRef__":true,"id":14224},{"__isSmartRef__":true,"id":14229},{"__isSmartRef__":true,"id":14230},{"__isSmartRef__":true,"id":14231},{"__isSmartRef__":true,"id":14232},{"__isSmartRef__":true,"id":14233},{"__isSmartRef__":true,"id":14260},{"__isSmartRef__":true,"id":14261},{"__isSmartRef__":true,"id":14281},{"__isSmartRef__":true,"id":14282},{"__isSmartRef__":true,"id":14311}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14064":{"name":null,"type":"comment","startIndex":1271,"stopIndex":1272,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14065":{"name":"Color.web","type":"objectDef","startIndex":1273,"stopIndex":6169,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14066},{"__isSmartRef__":true,"id":14068},{"__isSmartRef__":true,"id":14069},{"__isSmartRef__":true,"id":14070},{"__isSmartRef__":true,"id":14071},{"__isSmartRef__":true,"id":14072},{"__isSmartRef__":true,"id":14073},{"__isSmartRef__":true,"id":14074},{"__isSmartRef__":true,"id":14075},{"__isSmartRef__":true,"id":14076},{"__isSmartRef__":true,"id":14077},{"__isSmartRef__":true,"id":14078},{"__isSmartRef__":true,"id":14079},{"__isSmartRef__":true,"id":14080},{"__isSmartRef__":true,"id":14081},{"__isSmartRef__":true,"id":14082},{"__isSmartRef__":true,"id":14083},{"__isSmartRef__":true,"id":14084},{"__isSmartRef__":true,"id":14085},{"__isSmartRef__":true,"id":14086},{"__isSmartRef__":true,"id":14087},{"__isSmartRef__":true,"id":14088},{"__isSmartRef__":true,"id":14089},{"__isSmartRef__":true,"id":14090},{"__isSmartRef__":true,"id":14091},{"__isSmartRef__":true,"id":14092},{"__isSmartRef__":true,"id":14093},{"__isSmartRef__":true,"id":14094},{"__isSmartRef__":true,"id":14095},{"__isSmartRef__":true,"id":14096},{"__isSmartRef__":true,"id":14097},{"__isSmartRef__":true,"id":14098},{"__isSmartRef__":true,"id":14099},{"__isSmartRef__":true,"id":14100},{"__isSmartRef__":true,"id":14101},{"__isSmartRef__":true,"id":14102},{"__isSmartRef__":true,"id":14103},{"__isSmartRef__":true,"id":14104},{"__isSmartRef__":true,"id":14105},{"__isSmartRef__":true,"id":14106},{"__isSmartRef__":true,"id":14107},{"__isSmartRef__":true,"id":14108},{"__isSmartRef__":true,"id":14109},{"__isSmartRef__":true,"id":14110},{"__isSmartRef__":true,"id":14111},{"__isSmartRef__":true,"id":14112},{"__isSmartRef__":true,"id":14113},{"__isSmartRef__":true,"id":14114},{"__isSmartRef__":true,"id":14115},{"__isSmartRef__":true,"id":14116},{"__isSmartRef__":true,"id":14117},{"__isSmartRef__":true,"id":14118},{"__isSmartRef__":true,"id":14119},{"__isSmartRef__":true,"id":14120},{"__isSmartRef__":true,"id":14121},{"__isSmartRef__":true,"id":14122},{"__isSmartRef__":true,"id":14123},{"__isSmartRef__":true,"id":14124},{"__isSmartRef__":true,"id":14125},{"__isSmartRef__":true,"id":14126},{"__isSmartRef__":true,"id":14127},{"__isSmartRef__":true,"id":14128},{"__isSmartRef__":true,"id":14129},{"__isSmartRef__":true,"id":14130},{"__isSmartRef__":true,"id":14131},{"__isSmartRef__":true,"id":14132},{"__isSmartRef__":true,"id":14133},{"__isSmartRef__":true,"id":14134},{"__isSmartRef__":true,"id":14135},{"__isSmartRef__":true,"id":14136},{"__isSmartRef__":true,"id":14137},{"__isSmartRef__":true,"id":14138},{"__isSmartRef__":true,"id":14139},{"__isSmartRef__":true,"id":14140},{"__isSmartRef__":true,"id":14141},{"__isSmartRef__":true,"id":14142},{"__isSmartRef__":true,"id":14143},{"__isSmartRef__":true,"id":14144},{"__isSmartRef__":true,"id":14145},{"__isSmartRef__":true,"id":14146},{"__isSmartRef__":true,"id":14147},{"__isSmartRef__":true,"id":14148},{"__isSmartRef__":true,"id":14149},{"__isSmartRef__":true,"id":14150},{"__isSmartRef__":true,"id":14151},{"__isSmartRef__":true,"id":14152},{"__isSmartRef__":true,"id":14153},{"__isSmartRef__":true,"id":14154},{"__isSmartRef__":true,"id":14155},{"__isSmartRef__":true,"id":14156},{"__isSmartRef__":true,"id":14157},{"__isSmartRef__":true,"id":14158},{"__isSmartRef__":true,"id":14159},{"__isSmartRef__":true,"id":14160},{"__isSmartRef__":true,"id":14161},{"__isSmartRef__":true,"id":14162},{"__isSmartRef__":true,"id":14163},{"__isSmartRef__":true,"id":14164},{"__isSmartRef__":true,"id":14165},{"__isSmartRef__":true,"id":14166},{"__isSmartRef__":true,"id":14167},{"__isSmartRef__":true,"id":14168},{"__isSmartRef__":true,"id":14169},{"__isSmartRef__":true,"id":14170},{"__isSmartRef__":true,"id":14171},{"__isSmartRef__":true,"id":14172},{"__isSmartRef__":true,"id":14173},{"__isSmartRef__":true,"id":14174},{"__isSmartRef__":true,"id":14175},{"__isSmartRef__":true,"id":14176},{"__isSmartRef__":true,"id":14177},{"__isSmartRef__":true,"id":14178},{"__isSmartRef__":true,"id":14179},{"__isSmartRef__":true,"id":14180},{"__isSmartRef__":true,"id":14181},{"__isSmartRef__":true,"id":14182},{"__isSmartRef__":true,"id":14183},{"__isSmartRef__":true,"id":14184},{"__isSmartRef__":true,"id":14185},{"__isSmartRef__":true,"id":14186},{"__isSmartRef__":true,"id":14187},{"__isSmartRef__":true,"id":14188},{"__isSmartRef__":true,"id":14189},{"__isSmartRef__":true,"id":14190},{"__isSmartRef__":true,"id":14191},{"__isSmartRef__":true,"id":14192},{"__isSmartRef__":true,"id":14193},{"__isSmartRef__":true,"id":14194},{"__isSmartRef__":true,"id":14195},{"__isSmartRef__":true,"id":14196},{"__isSmartRef__":true,"id":14197},{"__isSmartRef__":true,"id":14198},{"__isSmartRef__":true,"id":14199},{"__isSmartRef__":true,"id":14200},{"__isSmartRef__":true,"id":14201},{"__isSmartRef__":true,"id":14202},{"__isSmartRef__":true,"id":14203},{"__isSmartRef__":true,"id":14204},{"__isSmartRef__":true,"id":14205},{"__isSmartRef__":true,"id":14206}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14066":{"name":"maroon","type":"propertyDef","startIndex":1287,"stopIndex":1314,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14067":{"name":"default category","type":"categoryDef","startIndex":12,"stopIndex":4894,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14066},{"__isSmartRef__":true,"id":14068},{"__isSmartRef__":true,"id":14069},{"__isSmartRef__":true,"id":14070},{"__isSmartRef__":true,"id":14071},{"__isSmartRef__":true,"id":14072},{"__isSmartRef__":true,"id":14073},{"__isSmartRef__":true,"id":14074},{"__isSmartRef__":true,"id":14075},{"__isSmartRef__":true,"id":14076},{"__isSmartRef__":true,"id":14077},{"__isSmartRef__":true,"id":14078},{"__isSmartRef__":true,"id":14079},{"__isSmartRef__":true,"id":14080},{"__isSmartRef__":true,"id":14081},{"__isSmartRef__":true,"id":14082},{"__isSmartRef__":true,"id":14083},{"__isSmartRef__":true,"id":14084},{"__isSmartRef__":true,"id":14085},{"__isSmartRef__":true,"id":14086},{"__isSmartRef__":true,"id":14087},{"__isSmartRef__":true,"id":14088},{"__isSmartRef__":true,"id":14089},{"__isSmartRef__":true,"id":14090},{"__isSmartRef__":true,"id":14091},{"__isSmartRef__":true,"id":14092},{"__isSmartRef__":true,"id":14093},{"__isSmartRef__":true,"id":14094},{"__isSmartRef__":true,"id":14095},{"__isSmartRef__":true,"id":14096},{"__isSmartRef__":true,"id":14097},{"__isSmartRef__":true,"id":14098},{"__isSmartRef__":true,"id":14099},{"__isSmartRef__":true,"id":14100},{"__isSmartRef__":true,"id":14101},{"__isSmartRef__":true,"id":14102},{"__isSmartRef__":true,"id":14103},{"__isSmartRef__":true,"id":14104},{"__isSmartRef__":true,"id":14105},{"__isSmartRef__":true,"id":14106},{"__isSmartRef__":true,"id":14107},{"__isSmartRef__":true,"id":14108},{"__isSmartRef__":true,"id":14109},{"__isSmartRef__":true,"id":14110},{"__isSmartRef__":true,"id":14111},{"__isSmartRef__":true,"id":14112},{"__isSmartRef__":true,"id":14113},{"__isSmartRef__":true,"id":14114},{"__isSmartRef__":true,"id":14115},{"__isSmartRef__":true,"id":14116},{"__isSmartRef__":true,"id":14117},{"__isSmartRef__":true,"id":14118},{"__isSmartRef__":true,"id":14119},{"__isSmartRef__":true,"id":14120},{"__isSmartRef__":true,"id":14121},{"__isSmartRef__":true,"id":14122},{"__isSmartRef__":true,"id":14123},{"__isSmartRef__":true,"id":14124},{"__isSmartRef__":true,"id":14125},{"__isSmartRef__":true,"id":14126},{"__isSmartRef__":true,"id":14127},{"__isSmartRef__":true,"id":14128},{"__isSmartRef__":true,"id":14129},{"__isSmartRef__":true,"id":14130},{"__isSmartRef__":true,"id":14131},{"__isSmartRef__":true,"id":14132},{"__isSmartRef__":true,"id":14133},{"__isSmartRef__":true,"id":14134},{"__isSmartRef__":true,"id":14135},{"__isSmartRef__":true,"id":14136},{"__isSmartRef__":true,"id":14137},{"__isSmartRef__":true,"id":14138},{"__isSmartRef__":true,"id":14139},{"__isSmartRef__":true,"id":14140},{"__isSmartRef__":true,"id":14141},{"__isSmartRef__":true,"id":14142},{"__isSmartRef__":true,"id":14143},{"__isSmartRef__":true,"id":14144},{"__isSmartRef__":true,"id":14145},{"__isSmartRef__":true,"id":14146},{"__isSmartRef__":true,"id":14147},{"__isSmartRef__":true,"id":14148},{"__isSmartRef__":true,"id":14149},{"__isSmartRef__":true,"id":14150},{"__isSmartRef__":true,"id":14151},{"__isSmartRef__":true,"id":14152},{"__isSmartRef__":true,"id":14153},{"__isSmartRef__":true,"id":14154},{"__isSmartRef__":true,"id":14155},{"__isSmartRef__":true,"id":14156},{"__isSmartRef__":true,"id":14157},{"__isSmartRef__":true,"id":14158},{"__isSmartRef__":true,"id":14159},{"__isSmartRef__":true,"id":14160},{"__isSmartRef__":true,"id":14161},{"__isSmartRef__":true,"id":14162},{"__isSmartRef__":true,"id":14163},{"__isSmartRef__":true,"id":14164},{"__isSmartRef__":true,"id":14165},{"__isSmartRef__":true,"id":14166},{"__isSmartRef__":true,"id":14167},{"__isSmartRef__":true,"id":14168},{"__isSmartRef__":true,"id":14169},{"__isSmartRef__":true,"id":14170},{"__isSmartRef__":true,"id":14171},{"__isSmartRef__":true,"id":14172},{"__isSmartRef__":true,"id":14173},{"__isSmartRef__":true,"id":14174},{"__isSmartRef__":true,"id":14175},{"__isSmartRef__":true,"id":14176},{"__isSmartRef__":true,"id":14177},{"__isSmartRef__":true,"id":14178},{"__isSmartRef__":true,"id":14179},{"__isSmartRef__":true,"id":14180},{"__isSmartRef__":true,"id":14181},{"__isSmartRef__":true,"id":14182},{"__isSmartRef__":true,"id":14183},{"__isSmartRef__":true,"id":14184},{"__isSmartRef__":true,"id":14185},{"__isSmartRef__":true,"id":14186},{"__isSmartRef__":true,"id":14187},{"__isSmartRef__":true,"id":14188},{"__isSmartRef__":true,"id":14189},{"__isSmartRef__":true,"id":14190},{"__isSmartRef__":true,"id":14191},{"__isSmartRef__":true,"id":14192},{"__isSmartRef__":true,"id":14193},{"__isSmartRef__":true,"id":14194},{"__isSmartRef__":true,"id":14195},{"__isSmartRef__":true,"id":14196},{"__isSmartRef__":true,"id":14197},{"__isSmartRef__":true,"id":14198},{"__isSmartRef__":true,"id":14199},{"__isSmartRef__":true,"id":14200},{"__isSmartRef__":true,"id":14201},{"__isSmartRef__":true,"id":14202},{"__isSmartRef__":true,"id":14203},{"__isSmartRef__":true,"id":14204},{"__isSmartRef__":true,"id":14205},{"__isSmartRef__":true,"id":14206}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14068":{"name":"darkred","type":"propertyDef","startIndex":1316,"stopIndex":1344,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14069":{"name":"firebrick","type":"propertyDef","startIndex":1346,"stopIndex":1378,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14070":{"name":"brown","type":"propertyDef","startIndex":1380,"stopIndex":1408,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14071":{"name":"crimson","type":"propertyDef","startIndex":1410,"stopIndex":1440,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14072":{"name":"red","type":"propertyDef","startIndex":1442,"stopIndex":1466,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14073":{"name":"orangered","type":"propertyDef","startIndex":1468,"stopIndex":1499,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14074":{"name":"indianred","type":"propertyDef","startIndex":1501,"stopIndex":1533,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14075":{"name":"darksalmon","type":"propertyDef","startIndex":1535,"stopIndex":1570,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14076":{"name":"lightsalmon","type":"propertyDef","startIndex":1572,"stopIndex":1608,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14077":{"name":"coral","type":"propertyDef","startIndex":1610,"stopIndex":1639,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14078":{"name":"tomato","type":"propertyDef","startIndex":1641,"stopIndex":1670,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14079":{"name":"salmon","type":"propertyDef","startIndex":1672,"stopIndex":1703,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14080":{"name":"lightcoral","type":"propertyDef","startIndex":1705,"stopIndex":1740,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14081":{"name":"palevioletred","type":"propertyDef","startIndex":1742,"stopIndex":1780,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14082":{"name":"mediumvioletred","type":"propertyDef","startIndex":1782,"stopIndex":1821,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14083":{"name":"deeppink","type":"propertyDef","startIndex":1823,"stopIndex":1855,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14084":{"name":"fuchsia","type":"propertyDef","startIndex":1857,"stopIndex":1887,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14085":{"name":"magenta","type":"propertyDef","startIndex":1889,"stopIndex":1919,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14086":{"name":"hotpink","type":"propertyDef","startIndex":1921,"stopIndex":1953,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14087":{"name":"lightpink","type":"propertyDef","startIndex":1955,"stopIndex":1989,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14088":{"name":"pink","type":"propertyDef","startIndex":1991,"stopIndex":2020,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14089":{"name":"thistle","type":"propertyDef","startIndex":2022,"stopIndex":2054,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14090":{"name":"plum","type":"propertyDef","startIndex":2056,"stopIndex":2085,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14091":{"name":"violet","type":"propertyDef","startIndex":2087,"stopIndex":2118,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14092":{"name":"orchid","type":"propertyDef","startIndex":2120,"stopIndex":2151,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14093":{"name":"mediumorchid","type":"propertyDef","startIndex":2153,"stopIndex":2189,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14094":{"name":"darkorchid","type":"propertyDef","startIndex":2191,"stopIndex":2225,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14095":{"name":"darkviolet","type":"propertyDef","startIndex":2227,"stopIndex":2260,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14096":{"name":"purple","type":"propertyDef","startIndex":2262,"stopIndex":2291,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14097":{"name":"darkmagenta","type":"propertyDef","startIndex":2293,"stopIndex":2327,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14098":{"name":"indigo","type":"propertyDef","startIndex":2329,"stopIndex":2357,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14099":{"name":"blueviolet","type":"propertyDef","startIndex":2359,"stopIndex":2393,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14100":{"name":"mediumpurple","type":"propertyDef","startIndex":2395,"stopIndex":2432,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14101":{"name":"mediumslateblue","type":"propertyDef","startIndex":2434,"stopIndex":2474,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14102":{"name":"slateblue","type":"propertyDef","startIndex":2476,"stopIndex":2509,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14103":{"name":"darkslateblue","type":"propertyDef","startIndex":2511,"stopIndex":2547,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14104":{"name":"midnightblue","type":"propertyDef","startIndex":2549,"stopIndex":2584,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14105":{"name":"navy","type":"propertyDef","startIndex":2586,"stopIndex":2611,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14106":{"name":"darkblue","type":"propertyDef","startIndex":2613,"stopIndex":2642,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14107":{"name":"mediumblue","type":"propertyDef","startIndex":2644,"stopIndex":2675,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14108":{"name":"blue","type":"propertyDef","startIndex":2677,"stopIndex":2702,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14109":{"name":"royalblue","type":"propertyDef","startIndex":2704,"stopIndex":2737,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14110":{"name":"cornflowerblue","type":"propertyDef","startIndex":2739,"stopIndex":2778,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14111":{"name":"steelblue","type":"propertyDef","startIndex":2780,"stopIndex":2813,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14112":{"name":"dodgerblue","type":"propertyDef","startIndex":2815,"stopIndex":2849,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14113":{"name":"deepskyblue","type":"propertyDef","startIndex":2851,"stopIndex":2885,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14114":{"name":"lightskyblue","type":"propertyDef","startIndex":2887,"stopIndex":2924,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14115":{"name":"skyblue","type":"propertyDef","startIndex":2926,"stopIndex":2958,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14116":{"name":"lightsteelblue","type":"propertyDef","startIndex":2960,"stopIndex":2999,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14117":{"name":"lightblue","type":"propertyDef","startIndex":3001,"stopIndex":3035,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14118":{"name":"powderblue","type":"propertyDef","startIndex":3037,"stopIndex":3072,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14119":{"name":"paleturquoise","type":"propertyDef","startIndex":3074,"stopIndex":3112,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14120":{"name":"mediumturquoise","type":"propertyDef","startIndex":3114,"stopIndex":3153,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14121":{"name":"lightseagreen","type":"propertyDef","startIndex":3155,"stopIndex":3192,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14122":{"name":"darkcyan","type":"propertyDef","startIndex":3194,"stopIndex":3225,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14123":{"name":"teal","type":"propertyDef","startIndex":3227,"stopIndex":3254,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14124":{"name":"cadetblue","type":"propertyDef","startIndex":3256,"stopIndex":3289,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14125":{"name":"darkturquoise","type":"propertyDef","startIndex":3291,"stopIndex":3327,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14126":{"name":"aqua","type":"propertyDef","startIndex":3329,"stopIndex":3356,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14127":{"name":"cyan","type":"propertyDef","startIndex":3358,"stopIndex":3385,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14128":{"name":"turquoise","type":"propertyDef","startIndex":3387,"stopIndex":3420,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14129":{"name":"aquamarine","type":"propertyDef","startIndex":3422,"stopIndex":3457,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14130":{"name":"mediumaquamarine","type":"propertyDef","startIndex":3459,"stopIndex":3500,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14131":{"name":"darkseagreen","type":"propertyDef","startIndex":3502,"stopIndex":3539,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14132":{"name":"mediumseagreen","type":"propertyDef","startIndex":3541,"stopIndex":3579,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14133":{"name":"seagreen","type":"propertyDef","startIndex":3581,"stopIndex":3612,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14134":{"name":"darkgreen","type":"propertyDef","startIndex":3614,"stopIndex":3644,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14135":{"name":"green","type":"propertyDef","startIndex":3646,"stopIndex":3672,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14136":{"name":"forestgreen","type":"propertyDef","startIndex":3674,"stopIndex":3708,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14137":{"name":"limegreen","type":"propertyDef","startIndex":3710,"stopIndex":3742,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14138":{"name":"springgreen","type":"propertyDef","startIndex":3744,"stopIndex":3778,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14139":{"name":"mediumspringgreen","type":"propertyDef","startIndex":3780,"stopIndex":3820,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14140":{"name":"palegreen","type":"propertyDef","startIndex":3822,"stopIndex":3856,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14141":{"name":"lightgreen","type":"propertyDef","startIndex":3858,"stopIndex":3893,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14142":{"name":"lime","type":"propertyDef","startIndex":3895,"stopIndex":3920,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14143":{"name":"chartreuse","type":"propertyDef","startIndex":3922,"stopIndex":3955,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14144":{"name":"lawngreen","type":"propertyDef","startIndex":3957,"stopIndex":3989,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14145":{"name":"greenyellow","type":"propertyDef","startIndex":3991,"stopIndex":4026,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14146":{"name":"yellowgreen","type":"propertyDef","startIndex":4028,"stopIndex":4063,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14147":{"name":"darkolivegreen","type":"propertyDef","startIndex":4065,"stopIndex":4102,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14148":{"name":"olivedrab","type":"propertyDef","startIndex":4104,"stopIndex":4137,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14149":{"name":"olive","type":"propertyDef","startIndex":4139,"stopIndex":4167,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14150":{"name":"darkkhaki","type":"propertyDef","startIndex":4169,"stopIndex":4203,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14151":{"name":"darkgoldenrod","type":"propertyDef","startIndex":4205,"stopIndex":4242,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14152":{"name":"goldenrod","type":"propertyDef","startIndex":4244,"stopIndex":4277,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14153":{"name":"gold","type":"propertyDef","startIndex":4279,"stopIndex":4306,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14154":{"name":"yellow","type":"propertyDef","startIndex":4308,"stopIndex":4337,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14155":{"name":"khaki","type":"propertyDef","startIndex":4339,"stopIndex":4369,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14156":{"name":"palegoldenrod","type":"propertyDef","startIndex":4371,"stopIndex":4409,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14157":{"name":"sandybrown","type":"propertyDef","startIndex":4411,"stopIndex":4445,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14158":{"name":"orange","type":"propertyDef","startIndex":4447,"stopIndex":4476,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14159":{"name":"darkorange","type":"propertyDef","startIndex":4478,"stopIndex":4511,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14160":{"name":"chocolate","type":"propertyDef","startIndex":4513,"stopIndex":4546,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14161":{"name":"saddlebrown","type":"propertyDef","startIndex":4548,"stopIndex":4582,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14162":{"name":"sienna","type":"propertyDef","startIndex":4584,"stopIndex":4613,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14163":{"name":"peru","type":"propertyDef","startIndex":4615,"stopIndex":4643,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14164":{"name":"burlywood","type":"propertyDef","startIndex":4645,"stopIndex":4679,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14165":{"name":"tan","type":"propertyDef","startIndex":4681,"stopIndex":4709,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14166":{"name":"wheat","type":"propertyDef","startIndex":4711,"stopIndex":4741,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14167":{"name":"navajowhite","type":"propertyDef","startIndex":4743,"stopIndex":4779,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14168":{"name":"moccasin","type":"propertyDef","startIndex":4781,"stopIndex":4814,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14169":{"name":"blanchedalmond","type":"propertyDef","startIndex":4816,"stopIndex":4855,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14170":{"name":"rosybrown","type":"propertyDef","startIndex":4857,"stopIndex":4891,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14171":{"name":"mistyrose","type":"propertyDef","startIndex":4893,"stopIndex":4927,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14172":{"name":"lavenderblush","type":"propertyDef","startIndex":4929,"stopIndex":4967,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14173":{"name":"lavender","type":"propertyDef","startIndex":4969,"stopIndex":5002,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14174":{"name":"ghostwhite","type":"propertyDef","startIndex":5004,"stopIndex":5039,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14175":{"name":"azure","type":"propertyDef","startIndex":5041,"stopIndex":5071,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14176":{"name":"lightcyan","type":"propertyDef","startIndex":5073,"stopIndex":5107,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14177":{"name":"aliceblue","type":"propertyDef","startIndex":5109,"stopIndex":5143,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14178":{"name":"mintcream","type":"propertyDef","startIndex":5145,"stopIndex":5179,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14179":{"name":"honeydew","type":"propertyDef","startIndex":5181,"stopIndex":5214,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14180":{"name":"lightgoldenrodyellow","type":"propertyDef","startIndex":5216,"stopIndex":5261,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14181":{"name":"lemonchiffon","type":"propertyDef","startIndex":5263,"stopIndex":5300,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14182":{"name":"beige","type":"propertyDef","startIndex":5302,"stopIndex":5332,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14183":{"name":"lightyellow","type":"propertyDef","startIndex":5334,"stopIndex":5370,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14184":{"name":"ivory","type":"propertyDef","startIndex":5372,"stopIndex":5402,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14185":{"name":"floralwhite","type":"propertyDef","startIndex":5404,"stopIndex":5440,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14186":{"name":"linen","type":"propertyDef","startIndex":5442,"stopIndex":5472,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14187":{"name":"oldlace","type":"propertyDef","startIndex":5474,"stopIndex":5506,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14188":{"name":"cornsilk","type":"propertyDef","startIndex":5508,"stopIndex":5541,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14189":{"name":"antiquewhite","type":"propertyDef","startIndex":5543,"stopIndex":5580,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14190":{"name":"bisque","type":"propertyDef","startIndex":5582,"stopIndex":5613,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14191":{"name":"peachpuff","type":"propertyDef","startIndex":5615,"stopIndex":5649,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14192":{"name":"papayawhip","type":"propertyDef","startIndex":5651,"stopIndex":5686,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14193":{"name":"seashell","type":"propertyDef","startIndex":5688,"stopIndex":5721,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14194":{"name":"snow","type":"propertyDef","startIndex":5723,"stopIndex":5752,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14195":{"name":"white","type":"propertyDef","startIndex":5754,"stopIndex":5784,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14196":{"name":"whitesmoke","type":"propertyDef","startIndex":5786,"stopIndex":5821,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14197":{"name":"gainsboro","type":"propertyDef","startIndex":5823,"stopIndex":5857,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14198":{"name":"lightgrey","type":"propertyDef","startIndex":5859,"stopIndex":5893,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14199":{"name":"silver","type":"propertyDef","startIndex":5895,"stopIndex":5926,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14200":{"name":"darkgray","type":"propertyDef","startIndex":5928,"stopIndex":5961,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14201":{"name":"gray","type":"propertyDef","startIndex":5963,"stopIndex":5992,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14202":{"name":"dimgray","type":"propertyDef","startIndex":5994,"stopIndex":6026,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14203":{"name":"lightslategray","type":"propertyDef","startIndex":6028,"stopIndex":6067,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14204":{"name":"slategray","type":"propertyDef","startIndex":6069,"stopIndex":6103,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14205":{"name":"darkslategray","type":"propertyDef","startIndex":6105,"stopIndex":6140,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14206":{"name":"black","type":"propertyDef","startIndex":6142,"stopIndex":6166,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14067},"_owner":{"__isSmartRef__":true,"id":14065},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14207":{"name":null,"type":"comment","startIndex":6170,"stopIndex":6170,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14208":{"name":"Color","type":"klassExtensionDef","startIndex":6171,"stopIndex":6774,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14209},{"__isSmartRef__":true,"id":14211}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14210}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14209":{"name":"webColorTableMorph","type":"propertyDef","startIndex":6196,"stopIndex":6689,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14210},"className":"Color","_owner":{"__isSmartRef__":true,"id":14208},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14210":{"name":"default category","type":"categoryDef","startIndex":6192,"stopIndex":6771,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14209},{"__isSmartRef__":true,"id":14211}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14211":{"name":"showWebColorTable","type":"propertyDef","startIndex":6694,"stopIndex":6770,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14210},"className":"Color","_owner":{"__isSmartRef__":true,"id":14208},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14212":{"name":null,"type":"comment","startIndex":6775,"stopIndex":6775,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14213":{"name":"Styles","type":"klassDef","startIndex":6776,"stopIndex":6802,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14214":{"name":"Styles","type":"klassExtensionDef","startIndex":6803,"stopIndex":8720,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14215},{"__isSmartRef__":true,"id":14217},{"__isSmartRef__":true,"id":14218},{"__isSmartRef__":true,"id":14219},{"__isSmartRef__":true,"id":14220}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14216}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14215":{"name":"titleBarButtonGradient","type":"propertyDef","startIndex":6827,"stopIndex":7177,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14216},"className":"Styles","_owner":{"__isSmartRef__":true,"id":14214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14216":{"name":"default category","type":"categoryDef","startIndex":6825,"stopIndex":8717,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14215},{"__isSmartRef__":true,"id":14217},{"__isSmartRef__":true,"id":14218},{"__isSmartRef__":true,"id":14219},{"__isSmartRef__":true,"id":14220}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14217":{"name":"linearGradient","type":"propertyDef","startIndex":7180,"stopIndex":7538,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14216},"className":"Styles","_owner":{"__isSmartRef__":true,"id":14214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14218":{"name":"radialGradient","type":"propertyDef","startIndex":7541,"stopIndex":7815,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14216},"className":"Styles","_owner":{"__isSmartRef__":true,"id":14214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14219":{"name":"sliderGradient","type":"propertyDef","startIndex":7819,"stopIndex":8317,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14216},"className":"Styles","_owner":{"__isSmartRef__":true,"id":14214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14220":{"name":"sliderBackgroundGradient","type":"propertyDef","startIndex":8320,"stopIndex":8714,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14216},"className":"Styles","_owner":{"__isSmartRef__":true,"id":14214},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14221":{"name":null,"type":"unknown","startIndex":8721,"stopIndex":8748,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14222":{"name":"Global.DisplayThemes","type":"objectDef","startIndex":8749,"stopIndex":8775,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14223":{"name":null,"type":"comment","startIndex":8776,"stopIndex":8776,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14224":{"name":"DisplayThemes","type":"klassExtensionDef","startIndex":8777,"stopIndex":8971,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14225},{"__isSmartRef__":true,"id":14227},{"__isSmartRef__":true,"id":14228}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14226}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14225":{"name":"primitive","type":"propertyDef","startIndex":8929,"stopIndex":8943,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14226},"className":"DisplayThemes","_owner":{"__isSmartRef__":true,"id":14224},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14226":{"name":"default category","type":"categoryDef","startIndex":8806,"stopIndex":8968,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14225},{"__isSmartRef__":true,"id":14227},{"__isSmartRef__":true,"id":14228}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14227":{"name":"lively","type":"propertyDef","startIndex":8945,"stopIndex":8956,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14226},"className":"DisplayThemes","_owner":{"__isSmartRef__":true,"id":14224},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14228":{"name":"hpi","type":"propertyDef","startIndex":8958,"stopIndex":8966,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14226},"className":"DisplayThemes","_owner":{"__isSmartRef__":true,"id":14224},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14229":{"name":null,"type":"comment","startIndex":8972,"stopIndex":8972,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14230":{"name":"__proto__","type":"propertyDef","startIndex":8973,"stopIndex":9030,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"DisplayThemes.lively","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14231":{"name":"__proto__","type":"propertyDef","startIndex":9031,"stopIndex":9082,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"DisplayThemes.hpi","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14232":{"name":null,"type":"comment","startIndex":9083,"stopIndex":9083,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14233":{"name":"DisplayThemes.primitive","type":"klassExtensionDef","startIndex":9084,"stopIndex":11486,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14234},{"__isSmartRef__":true,"id":14236},{"__isSmartRef__":true,"id":14237},{"__isSmartRef__":true,"id":14238},{"__isSmartRef__":true,"id":14239},{"__isSmartRef__":true,"id":14240},{"__isSmartRef__":true,"id":14241},{"__isSmartRef__":true,"id":14242},{"__isSmartRef__":true,"id":14243},{"__isSmartRef__":true,"id":14244},{"__isSmartRef__":true,"id":14245},{"__isSmartRef__":true,"id":14246},{"__isSmartRef__":true,"id":14247},{"__isSmartRef__":true,"id":14248},{"__isSmartRef__":true,"id":14249},{"__isSmartRef__":true,"id":14250},{"__isSmartRef__":true,"id":14251},{"__isSmartRef__":true,"id":14252},{"__isSmartRef__":true,"id":14253},{"__isSmartRef__":true,"id":14254},{"__isSmartRef__":true,"id":14255},{"__isSmartRef__":true,"id":14256},{"__isSmartRef__":true,"id":14257},{"__isSmartRef__":true,"id":14258},{"__isSmartRef__":true,"id":14259}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14235}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14234":{"name":"styleName","type":"propertyDef","startIndex":9126,"stopIndex":9224,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14235":{"name":"default category","type":"categoryDef","startIndex":9123,"stopIndex":11483,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14234},{"__isSmartRef__":true,"id":14236},{"__isSmartRef__":true,"id":14237},{"__isSmartRef__":true,"id":14238},{"__isSmartRef__":true,"id":14239},{"__isSmartRef__":true,"id":14240},{"__isSmartRef__":true,"id":14241},{"__isSmartRef__":true,"id":14242},{"__isSmartRef__":true,"id":14243},{"__isSmartRef__":true,"id":14244},{"__isSmartRef__":true,"id":14245},{"__isSmartRef__":true,"id":14246},{"__isSmartRef__":true,"id":14247},{"__isSmartRef__":true,"id":14248},{"__isSmartRef__":true,"id":14249},{"__isSmartRef__":true,"id":14250},{"__isSmartRef__":true,"id":14251},{"__isSmartRef__":true,"id":14252},{"__isSmartRef__":true,"id":14253},{"__isSmartRef__":true,"id":14254},{"__isSmartRef__":true,"id":14255},{"__isSmartRef__":true,"id":14256},{"__isSmartRef__":true,"id":14257},{"__isSmartRef__":true,"id":14258},{"__isSmartRef__":true,"id":14259}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14236":{"name":"widgetPanel","type":"propertyDef","startIndex":9241,"stopIndex":9351,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14237":{"name":"panel","type":"propertyDef","startIndex":9354,"stopIndex":9443,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14238":{"name":"link","type":"propertyDef","startIndex":9446,"stopIndex":9525,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14239":{"name":"helpText","type":"propertyDef","startIndex":9528,"stopIndex":9624,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14240":{"name":"button","type":"propertyDef","startIndex":9629,"stopIndex":9734,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14241":{"name":"Browser_codePane","type":"propertyDef","startIndex":9752,"stopIndex":9798,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14242":{"name":"Browser_codePaneText","type":"propertyDef","startIndex":9801,"stopIndex":9930,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14243":{"name":"Browser_locationInput","type":"propertyDef","startIndex":9933,"stopIndex":9984,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14244":{"name":"Browser_resizer","type":"propertyDef","startIndex":9987,"stopIndex":10042,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14245":{"name":"Browser_commentPane","type":"propertyDef","startIndex":10045,"stopIndex":10094,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14246":{"name":"Browser_commentPaneText","type":"propertyDef","startIndex":10097,"stopIndex":10150,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14247":{"name":"slider","type":"propertyDef","startIndex":10169,"stopIndex":10288,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14248":{"name":"slider_background","type":"propertyDef","startIndex":10292,"stopIndex":10389,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14249":{"name":"slider_horizontal","type":"propertyDef","startIndex":10392,"stopIndex":10522,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14250":{"name":"slider_background_horizontal","type":"propertyDef","startIndex":10525,"stopIndex":10633,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14251":{"name":"titleBar","type":"propertyDef","startIndex":10652,"stopIndex":10772,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14252":{"name":"titleBar_closeButton","type":"propertyDef","startIndex":10775,"stopIndex":10831,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14253":{"name":"titleBar_menuButton","type":"propertyDef","startIndex":10834,"stopIndex":10881,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14254":{"name":"titleBar_collapseButton","type":"propertyDef","startIndex":10884,"stopIndex":10944,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14255":{"name":"clock","type":"propertyDef","startIndex":10971,"stopIndex":11125,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14256":{"name":"fabrik","type":"propertyDef","startIndex":11128,"stopIndex":11254,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14257":{"name":"fabrik_componentBox","type":"propertyDef","startIndex":11257,"stopIndex":11395,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14258":{"name":"fabrik_listPane","type":"propertyDef","startIndex":11398,"stopIndex":11443,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14259":{"name":"world","type":"propertyDef","startIndex":11446,"stopIndex":11479,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14235},"className":"DisplayThemes.primitive","_owner":{"__isSmartRef__":true,"id":14233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14260":{"name":null,"type":"comment","startIndex":11487,"stopIndex":11487,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14261":{"name":"DisplayThemes.lively","type":"klassExtensionDef","startIndex":11488,"stopIndex":14648,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14262},{"__isSmartRef__":true,"id":14264},{"__isSmartRef__":true,"id":14265},{"__isSmartRef__":true,"id":14266},{"__isSmartRef__":true,"id":14267},{"__isSmartRef__":true,"id":14268},{"__isSmartRef__":true,"id":14269},{"__isSmartRef__":true,"id":14270},{"__isSmartRef__":true,"id":14271},{"__isSmartRef__":true,"id":14272},{"__isSmartRef__":true,"id":14273},{"__isSmartRef__":true,"id":14274},{"__isSmartRef__":true,"id":14275},{"__isSmartRef__":true,"id":14276},{"__isSmartRef__":true,"id":14277},{"__isSmartRef__":true,"id":14278},{"__isSmartRef__":true,"id":14279},{"__isSmartRef__":true,"id":14280}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14263}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14262":{"name":"styleName","type":"propertyDef","startIndex":11527,"stopIndex":11547,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14263":{"name":"default category","type":"categoryDef","startIndex":11524,"stopIndex":14645,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14262},{"__isSmartRef__":true,"id":14264},{"__isSmartRef__":true,"id":14265},{"__isSmartRef__":true,"id":14266},{"__isSmartRef__":true,"id":14267},{"__isSmartRef__":true,"id":14268},{"__isSmartRef__":true,"id":14269},{"__isSmartRef__":true,"id":14270},{"__isSmartRef__":true,"id":14271},{"__isSmartRef__":true,"id":14272},{"__isSmartRef__":true,"id":14273},{"__isSmartRef__":true,"id":14274},{"__isSmartRef__":true,"id":14275},{"__isSmartRef__":true,"id":14276},{"__isSmartRef__":true,"id":14277},{"__isSmartRef__":true,"id":14278},{"__isSmartRef__":true,"id":14279},{"__isSmartRef__":true,"id":14280}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14264":{"name":"raisedBorder","type":"propertyDef","startIndex":11564,"stopIndex":11728,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14265":{"name":"button","type":"propertyDef","startIndex":11731,"stopIndex":11930,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14266":{"name":"widgetPanel","type":"propertyDef","startIndex":11934,"stopIndex":12063,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14267":{"name":"panel","type":"propertyDef","startIndex":12068,"stopIndex":12166,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14268":{"name":"link","type":"propertyDef","startIndex":12169,"stopIndex":12247,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14269":{"name":"helpText","type":"propertyDef","startIndex":12250,"stopIndex":12347,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14270":{"name":"slider","type":"propertyDef","startIndex":12364,"stopIndex":12652,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14271":{"name":"slider_background","type":"propertyDef","startIndex":12655,"stopIndex":12949,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14272":{"name":"slider_horizontal","type":"propertyDef","startIndex":12952,"stopIndex":13249,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14273":{"name":"slider_background_horizontal","type":"propertyDef","startIndex":13252,"stopIndex":13546,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14274":{"name":"titleBar","type":"propertyDef","startIndex":13566,"stopIndex":13814,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14275":{"name":"titleBar_closeButton","type":"propertyDef","startIndex":13817,"stopIndex":13904,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14276":{"name":"titleBar_menuButton","type":"propertyDef","startIndex":13907,"stopIndex":13992,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14277":{"name":"titleBar_collapseButton","type":"propertyDef","startIndex":13995,"stopIndex":14086,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14278":{"name":"clock","type":"propertyDef","startIndex":14104,"stopIndex":14276,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14279":{"name":"fabrik","type":"propertyDef","startIndex":14280,"stopIndex":14405,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14280":{"name":"world","type":"propertyDef","startIndex":14408,"stopIndex":14644,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14263},"className":"DisplayThemes.lively","_owner":{"__isSmartRef__":true,"id":14261},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14281":{"name":null,"type":"comment","startIndex":14649,"stopIndex":14649,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14282":{"name":"DisplayThemes.hpi","type":"klassExtensionDef","startIndex":14650,"stopIndex":18037,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14283},{"__isSmartRef__":true,"id":14285},{"__isSmartRef__":true,"id":14286},{"__isSmartRef__":true,"id":14287},{"__isSmartRef__":true,"id":14288},{"__isSmartRef__":true,"id":14289},{"__isSmartRef__":true,"id":14290},{"__isSmartRef__":true,"id":14291},{"__isSmartRef__":true,"id":14292},{"__isSmartRef__":true,"id":14293},{"__isSmartRef__":true,"id":14294},{"__isSmartRef__":true,"id":14295},{"__isSmartRef__":true,"id":14296},{"__isSmartRef__":true,"id":14297},{"__isSmartRef__":true,"id":14298},{"__isSmartRef__":true,"id":14299},{"__isSmartRef__":true,"id":14300},{"__isSmartRef__":true,"id":14301},{"__isSmartRef__":true,"id":14302},{"__isSmartRef__":true,"id":14303},{"__isSmartRef__":true,"id":14304},{"__isSmartRef__":true,"id":14305},{"__isSmartRef__":true,"id":14306},{"__isSmartRef__":true,"id":14307},{"__isSmartRef__":true,"id":14308},{"__isSmartRef__":true,"id":14309},{"__isSmartRef__":true,"id":14310}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14284}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14283":{"name":"styleName","type":"propertyDef","startIndex":14686,"stopIndex":14703,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14284":{"name":"default category","type":"categoryDef","startIndex":14683,"stopIndex":18034,"fileName":"lively/Styles.js","_subElements":[{"__isSmartRef__":true,"id":14283},{"__isSmartRef__":true,"id":14285},{"__isSmartRef__":true,"id":14286},{"__isSmartRef__":true,"id":14287},{"__isSmartRef__":true,"id":14288},{"__isSmartRef__":true,"id":14289},{"__isSmartRef__":true,"id":14290},{"__isSmartRef__":true,"id":14291},{"__isSmartRef__":true,"id":14292},{"__isSmartRef__":true,"id":14293},{"__isSmartRef__":true,"id":14294},{"__isSmartRef__":true,"id":14295},{"__isSmartRef__":true,"id":14296},{"__isSmartRef__":true,"id":14297},{"__isSmartRef__":true,"id":14298},{"__isSmartRef__":true,"id":14299},{"__isSmartRef__":true,"id":14300},{"__isSmartRef__":true,"id":14301},{"__isSmartRef__":true,"id":14302},{"__isSmartRef__":true,"id":14303},{"__isSmartRef__":true,"id":14304},{"__isSmartRef__":true,"id":14305},{"__isSmartRef__":true,"id":14306},{"__isSmartRef__":true,"id":14307},{"__isSmartRef__":true,"id":14308},{"__isSmartRef__":true,"id":14309},{"__isSmartRef__":true,"id":14310}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14285":{"name":"raisedBorder","type":"propertyDef","startIndex":14721,"stopIndex":14860,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14286":{"name":"button","type":"propertyDef","startIndex":14863,"stopIndex":15156,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14287":{"name":"widgetPanel","type":"propertyDef","startIndex":15159,"stopIndex":15300,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14288":{"name":"focusHalo","type":"propertyDef","startIndex":15303,"stopIndex":15391,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14289":{"name":"panel","type":"propertyDef","startIndex":15394,"stopIndex":15496,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14290":{"name":"link","type":"propertyDef","startIndex":15499,"stopIndex":15577,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14291":{"name":"helpText","type":"propertyDef","startIndex":15580,"stopIndex":15677,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14292":{"name":"menu_items","type":"propertyDef","startIndex":15695,"stopIndex":15760,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14293":{"name":"menu_list","type":"propertyDef","startIndex":15763,"stopIndex":15806,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14294":{"name":"slider","type":"propertyDef","startIndex":15823,"stopIndex":16027,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14295":{"name":"slider_background","type":"propertyDef","startIndex":16030,"stopIndex":16207,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14296":{"name":"slider_horizontal","type":"propertyDef","startIndex":16210,"stopIndex":16395,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14297":{"name":"slider_background_horizontal","type":"propertyDef","startIndex":16398,"stopIndex":16569,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14298":{"name":"titleBar","type":"propertyDef","startIndex":16590,"stopIndex":16885,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14299":{"name":"titleBar_label","type":"propertyDef","startIndex":16888,"stopIndex":16923,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14300":{"name":"titleBar_label_highlight","type":"propertyDef","startIndex":16926,"stopIndex":16998,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14301":{"name":"titleBar_button_label","type":"propertyDef","startIndex":17001,"stopIndex":17091,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14302":{"name":"titleBar_closeButton","type":"propertyDef","startIndex":17094,"stopIndex":17171,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14303":{"name":"titleBar_menuButton","type":"propertyDef","startIndex":17174,"stopIndex":17251,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14304":{"name":"titleBar_collapseButton","type":"propertyDef","startIndex":17254,"stopIndex":17337,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14305":{"name":"titleBar_closeButton_highlight","type":"propertyDef","startIndex":17340,"stopIndex":17438,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14306":{"name":"titleBar_menuButton_highlight","type":"propertyDef","startIndex":17441,"stopIndex":17558,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14307":{"name":"titleBar_collapseButton_highlight","type":"propertyDef","startIndex":17561,"stopIndex":17692,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14308":{"name":"clock","type":"propertyDef","startIndex":17709,"stopIndex":17863,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14309":{"name":"fabrik","type":"propertyDef","startIndex":17868,"stopIndex":17993,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14310":{"name":"world","type":"propertyDef","startIndex":17996,"stopIndex":18030,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14284},"className":"DisplayThemes.hpi","_owner":{"__isSmartRef__":true,"id":14282},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14311":{"name":null,"type":"comment","startIndex":18038,"stopIndex":18040,"fileName":"lively/Styles.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14312":{"target":{"__isSmartRef__":true,"id":14313},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/SyntaxHighlighting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14313":{"name":"lively.SyntaxHighlighting","type":"moduleDef","startIndex":0,"stopIndex":102,"fileName":"lively/SyntaxHighlighting.js","_subElements":[{"__isSmartRef__":true,"id":14314}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14314":{"name":null,"type":"comment","startIndex":66,"stopIndex":83,"fileName":"lively/SyntaxHighlighting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14315":{"target":{"__isSmartRef__":true,"id":14316},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/TestFramework.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14316":{"name":"lively/TestFramework.js","type":"completeFileDef","startIndex":0,"stopIndex":30308,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14317},{"__isSmartRef__":true,"id":14318},{"__isSmartRef__":true,"id":14319},{"__isSmartRef__":true,"id":14320},{"__isSmartRef__":true,"id":14321},{"__isSmartRef__":true,"id":14322}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14317":{"name":null,"type":"comment","startIndex":0,"stopIndex":1598,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14318":{"name":null,"type":"unknown","startIndex":1599,"stopIndex":1633,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14319":{"name":null,"type":"unknown","startIndex":1634,"stopIndex":1657,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14320":{"name":null,"type":"unknown","startIndex":1658,"stopIndex":1696,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14321":{"name":null,"type":"comment","startIndex":1697,"stopIndex":1697,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14322":{"name":"lively.TestFramework","type":"moduleDef","startIndex":1698,"stopIndex":30308,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14323},{"__isSmartRef__":true,"id":14324},{"__isSmartRef__":true,"id":14328},{"__isSmartRef__":true,"id":14329},{"__isSmartRef__":true,"id":14371},{"__isSmartRef__":true,"id":14372},{"__isSmartRef__":true,"id":14386},{"__isSmartRef__":true,"id":14387},{"__isSmartRef__":true,"id":14393},{"__isSmartRef__":true,"id":14396},{"__isSmartRef__":true,"id":14399},{"__isSmartRef__":true,"id":14402},{"__isSmartRef__":true,"id":14403},{"__isSmartRef__":true,"id":14411},{"__isSmartRef__":true,"id":14412},{"__isSmartRef__":true,"id":14426},{"__isSmartRef__":true,"id":14427},{"__isSmartRef__":true,"id":14428},{"__isSmartRef__":true,"id":14432},{"__isSmartRef__":true,"id":14433},{"__isSmartRef__":true,"id":14463},{"__isSmartRef__":true,"id":14464},{"__isSmartRef__":true,"id":14465},{"__isSmartRef__":true,"id":14466},{"__isSmartRef__":true,"id":14479},{"__isSmartRef__":true,"id":14480},{"__isSmartRef__":true,"id":14481},{"__isSmartRef__":true,"id":14482},{"__isSmartRef__":true,"id":14483}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14323":{"name":null,"type":"comment","startIndex":1763,"stopIndex":2055,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14324":{"name":"Global","type":"klassExtensionDef","startIndex":2056,"stopIndex":2340,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14325},{"__isSmartRef__":true,"id":14327}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14326}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14325":{"name":"printError","type":"propertyDef","startIndex":2080,"stopIndex":2254,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14326},"className":"Global","_owner":{"__isSmartRef__":true,"id":14324},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14326":{"name":"default category","type":"categoryDef","startIndex":2078,"stopIndex":2337,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14325},{"__isSmartRef__":true,"id":14327}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14327":{"name":"logError","type":"propertyDef","startIndex":2257,"stopIndex":2335,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14326},"className":"Global","_owner":{"__isSmartRef__":true,"id":14324},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14328":{"name":null,"type":"comment","startIndex":2341,"stopIndex":2341,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14329":{"name":"TestCase","type":"klassDef","startIndex":2342,"stopIndex":10949,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14330},{"__isSmartRef__":true,"id":14332},{"__isSmartRef__":true,"id":14333},{"__isSmartRef__":true,"id":14335},{"__isSmartRef__":true,"id":14336},{"__isSmartRef__":true,"id":14338},{"__isSmartRef__":true,"id":14339},{"__isSmartRef__":true,"id":14340},{"__isSmartRef__":true,"id":14341},{"__isSmartRef__":true,"id":14342},{"__isSmartRef__":true,"id":14344},{"__isSmartRef__":true,"id":14345},{"__isSmartRef__":true,"id":14346},{"__isSmartRef__":true,"id":14347},{"__isSmartRef__":true,"id":14348},{"__isSmartRef__":true,"id":14349},{"__isSmartRef__":true,"id":14351},{"__isSmartRef__":true,"id":14352},{"__isSmartRef__":true,"id":14353},{"__isSmartRef__":true,"id":14354},{"__isSmartRef__":true,"id":14355},{"__isSmartRef__":true,"id":14356},{"__isSmartRef__":true,"id":14358},{"__isSmartRef__":true,"id":14359},{"__isSmartRef__":true,"id":14360},{"__isSmartRef__":true,"id":14361},{"__isSmartRef__":true,"id":14362},{"__isSmartRef__":true,"id":14363},{"__isSmartRef__":true,"id":14364},{"__isSmartRef__":true,"id":14366},{"__isSmartRef__":true,"id":14368},{"__isSmartRef__":true,"id":14370}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14331},{"__isSmartRef__":true,"id":14334},{"__isSmartRef__":true,"id":14337},{"__isSmartRef__":true,"id":14343},{"__isSmartRef__":true,"id":14350},{"__isSmartRef__":true,"id":14357},{"__isSmartRef__":true,"id":14365},{"__isSmartRef__":true,"id":14367},{"__isSmartRef__":true,"id":14369}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14330":{"name":"shouldRun","type":"propertyDef","startIndex":2459,"stopIndex":2478,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14331},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14331":{"name":"settings","type":"categoryDef","startIndex":2445,"stopIndex":2507,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14330},{"__isSmartRef__":true,"id":14332}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14332":{"name":"verbose","type":"propertyDef","startIndex":2480,"stopIndex":2504,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14331},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14333":{"name":"initialize","type":"propertyDef","startIndex":2532,"stopIndex":2709,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14334},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14334":{"name":"initializing","type":"categoryDef","startIndex":2509,"stopIndex":2867,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14333},{"__isSmartRef__":true,"id":14335}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14335":{"name":"createTests","type":"propertyDef","startIndex":2715,"stopIndex":2863,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14334},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14336":{"name":"name","type":"propertyDef","startIndex":2884,"stopIndex":2934,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14337},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14337":{"name":"accessing","type":"categoryDef","startIndex":2869,"stopIndex":3395,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14336},{"__isSmartRef__":true,"id":14338},{"__isSmartRef__":true,"id":14339},{"__isSmartRef__":true,"id":14340},{"__isSmartRef__":true,"id":14341}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14338":{"name":"testName","type":"propertyDef","startIndex":2936,"stopIndex":3010,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14337},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14339":{"name":"id","type":"propertyDef","startIndex":3015,"stopIndex":3083,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14337},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14340":{"name":"allTestSelectors","type":"propertyDef","startIndex":3086,"stopIndex":3290,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14337},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14341":{"name":"toString","type":"propertyDef","startIndex":3293,"stopIndex":3391,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14337},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14342":{"name":"runAll","type":"propertyDef","startIndex":3411,"stopIndex":3713,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14343},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14343":{"name":"running","type":"categoryDef","startIndex":3397,"stopIndex":4584,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14342},{"__isSmartRef__":true,"id":14344},{"__isSmartRef__":true,"id":14345},{"__isSmartRef__":true,"id":14346},{"__isSmartRef__":true,"id":14347},{"__isSmartRef__":true,"id":14348}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14344":{"name":"runAllThenDo","type":"propertyDef","startIndex":3715,"stopIndex":3826,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14343},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14345":{"name":"setUp","type":"propertyDef","startIndex":3831,"stopIndex":3852,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14343},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14346":{"name":"tearDown","type":"propertyDef","startIndex":3856,"stopIndex":3880,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14343},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14347":{"name":"runTest","type":"propertyDef","startIndex":3884,"stopIndex":4338,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14343},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14348":{"name":"debugTest","type":"propertyDef","startIndex":4342,"stopIndex":4581,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14343},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14349":{"name":"show","type":"propertyDef","startIndex":4609,"stopIndex":4653,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14350},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14350":{"name":"running (private)","type":"categoryDef","startIndex":4586,"stopIndex":5587,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14349},{"__isSmartRef__":true,"id":14351},{"__isSmartRef__":true,"id":14352},{"__isSmartRef__":true,"id":14353},{"__isSmartRef__":true,"id":14354},{"__isSmartRef__":true,"id":14355}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14351":{"name":"running","type":"propertyDef","startIndex":4656,"stopIndex":4785,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14350},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14352":{"name":"success","type":"propertyDef","startIndex":4788,"stopIndex":4930,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14350},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14353":{"name":"failure","type":"propertyDef","startIndex":4933,"stopIndex":5319,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14350},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14354":{"name":"addAndSignalSuccess","type":"propertyDef","startIndex":5322,"stopIndex":5448,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14350},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14355":{"name":"addAndSignalFailure","type":"propertyDef","startIndex":5451,"stopIndex":5582,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14350},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14356":{"name":"assert","type":"propertyDef","startIndex":5604,"stopIndex":5846,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14357},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14357":{"name":"assertion","type":"categoryDef","startIndex":5589,"stopIndex":8793,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14356},{"__isSmartRef__":true,"id":14358},{"__isSmartRef__":true,"id":14359},{"__isSmartRef__":true,"id":14360},{"__isSmartRef__":true,"id":14361},{"__isSmartRef__":true,"id":14362},{"__isSmartRef__":true,"id":14363}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14358":{"name":"assertEqual","type":"propertyDef","startIndex":5855,"stopIndex":5977,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14357},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14359":{"name":"assertEquals","type":"propertyDef","startIndex":5981,"stopIndex":6640,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14357},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14360":{"name":"assertIdentity","type":"propertyDef","startIndex":6644,"stopIndex":6831,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14357},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14361":{"name":"assertEqualState","type":"propertyDef","startIndex":6834,"stopIndex":7803,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14357},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14362":{"name":"assertMatches","type":"propertyDef","startIndex":7807,"stopIndex":8542,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14357},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14363":{"name":"assertIncludesAll","type":"propertyDef","startIndex":8546,"stopIndex":8789,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14357},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14364":{"name":"log","type":"propertyDef","startIndex":8808,"stopIndex":8899,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14365},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14365":{"name":"logging","type":"categoryDef","startIndex":8795,"stopIndex":8902,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14364}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14366":{"name":"answerPromptsDuring","type":"propertyDef","startIndex":8928,"stopIndex":9688,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14367},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14367":{"name":"world test support","type":"categoryDef","startIndex":8904,"stopIndex":9691,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14366}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14368":{"name":"createMouseEvent","type":"propertyDef","startIndex":9790,"stopIndex":10322,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14369},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14369":{"name":"event test support","type":"categoryDef","startIndex":9693,"stopIndex":10946,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14368},{"__isSmartRef__":true,"id":14370}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14370":{"name":"doMouseEvent","type":"propertyDef","startIndex":10325,"stopIndex":10943,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14369},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14329},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14371":{"name":null,"type":"comment","startIndex":10950,"stopIndex":10950,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14372":{"name":"AsyncTestCase","type":"klassDef","startIndex":10951,"stopIndex":13290,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14373},{"__isSmartRef__":true,"id":14375},{"__isSmartRef__":true,"id":14376},{"__isSmartRef__":true,"id":14377},{"__isSmartRef__":true,"id":14378},{"__isSmartRef__":true,"id":14379},{"__isSmartRef__":true,"id":14380},{"__isSmartRef__":true,"id":14381},{"__isSmartRef__":true,"id":14382},{"__isSmartRef__":true,"id":14383},{"__isSmartRef__":true,"id":14384},{"__isSmartRef__":true,"id":14385}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TestCase","categories":[{"__isSmartRef__":true,"id":14374}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14373":{"name":"initialize","type":"propertyDef","startIndex":10989,"stopIndex":11142,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14374":{"name":"default category","type":"categoryDef","startIndex":10986,"stopIndex":13287,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14373},{"__isSmartRef__":true,"id":14375},{"__isSmartRef__":true,"id":14376},{"__isSmartRef__":true,"id":14377},{"__isSmartRef__":true,"id":14378},{"__isSmartRef__":true,"id":14379},{"__isSmartRef__":true,"id":14380},{"__isSmartRef__":true,"id":14381},{"__isSmartRef__":true,"id":14382},{"__isSmartRef__":true,"id":14383},{"__isSmartRef__":true,"id":14384},{"__isSmartRef__":true,"id":14385}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14375":{"name":"setMaxWaitDelay","type":"propertyDef","startIndex":11145,"stopIndex":11203,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14376":{"name":"show","type":"propertyDef","startIndex":11206,"stopIndex":11253,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14377":{"name":"done","type":"propertyDef","startIndex":11256,"stopIndex":11299,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14378":{"name":"isDone","type":"propertyDef","startIndex":11302,"stopIndex":11343,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14379":{"name":"delay","type":"propertyDef","startIndex":11346,"stopIndex":11648,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14380":{"name":"runTest","type":"propertyDef","startIndex":11651,"stopIndex":11901,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14381":{"name":"runAll","type":"propertyDef","startIndex":11904,"stopIndex":12323,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14382":{"name":"runAllThenDo","type":"propertyDef","startIndex":12325,"stopIndex":12428,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14383":{"name":"runAndDoWhenDone","type":"propertyDef","startIndex":12432,"stopIndex":13140,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14384":{"name":"scheduled","type":"propertyDef","startIndex":13143,"stopIndex":13205,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14385":{"name":"success","type":"propertyDef","startIndex":13208,"stopIndex":13284,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14374},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14386":{"name":null,"type":"comment","startIndex":13291,"stopIndex":13291,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14387":{"name":"MorphTestCase","type":"klassDef","startIndex":13292,"stopIndex":13760,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14388},{"__isSmartRef__":true,"id":14390},{"__isSmartRef__":true,"id":14391},{"__isSmartRef__":true,"id":14392}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TestCase","categories":[{"__isSmartRef__":true,"id":14389}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14388":{"name":"setUp","type":"propertyDef","startIndex":13331,"stopIndex":13411,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14389},"className":"MorphTestCase","_owner":{"__isSmartRef__":true,"id":14387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14389":{"name":"default category","type":"categoryDef","startIndex":13327,"stopIndex":13757,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14388},{"__isSmartRef__":true,"id":14390},{"__isSmartRef__":true,"id":14391},{"__isSmartRef__":true,"id":14392}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14390":{"name":"tearDown","type":"propertyDef","startIndex":13415,"stopIndex":13557,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14389},"className":"MorphTestCase","_owner":{"__isSmartRef__":true,"id":14387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14391":{"name":"openMorph","type":"propertyDef","startIndex":13561,"stopIndex":13649,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14389},"className":"MorphTestCase","_owner":{"__isSmartRef__":true,"id":14387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14392":{"name":"openMorphAt","type":"propertyDef","startIndex":13652,"stopIndex":13754,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14389},"className":"MorphTestCase","_owner":{"__isSmartRef__":true,"id":14387},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14393":{"name":"TestCase","type":"klassExtensionDef","startIndex":13761,"stopIndex":13808,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14394}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14395}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14394":{"name":"isAbstract","type":"propertyDef","startIndex":13787,"stopIndex":13804,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14395},"className":"TestCase","_owner":{"__isSmartRef__":true,"id":14393},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14395":{"name":"default category","type":"categoryDef","startIndex":13785,"stopIndex":13805,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14394}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14396":{"name":"AsyncTestCase","type":"klassExtensionDef","startIndex":13809,"stopIndex":13861,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14397}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14398}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14397":{"name":"isAbstract","type":"propertyDef","startIndex":13840,"stopIndex":13857,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14398},"className":"AsyncTestCase","_owner":{"__isSmartRef__":true,"id":14396},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14398":{"name":"default category","type":"categoryDef","startIndex":13838,"stopIndex":13858,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14397}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14399":{"name":"MorphTestCase","type":"klassExtensionDef","startIndex":13862,"stopIndex":13914,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14400}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14401}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14400":{"name":"isAbstract","type":"propertyDef","startIndex":13893,"stopIndex":13910,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14401},"className":"MorphTestCase","_owner":{"__isSmartRef__":true,"id":14399},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14401":{"name":"default category","type":"categoryDef","startIndex":13891,"stopIndex":13911,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14400}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14402":{"name":null,"type":"comment","startIndex":13915,"stopIndex":13916,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14403":{"name":"TestSuite","type":"klassDef","startIndex":13917,"stopIndex":14999,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14404},{"__isSmartRef__":true,"id":14406},{"__isSmartRef__":true,"id":14407},{"__isSmartRef__":true,"id":14408},{"__isSmartRef__":true,"id":14409},{"__isSmartRef__":true,"id":14410}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14405}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14404":{"name":"initialize","type":"propertyDef","startIndex":13948,"stopIndex":14063,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14405},"className":"TestSuite","_owner":{"__isSmartRef__":true,"id":14403},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14405":{"name":"default category","type":"categoryDef","startIndex":13946,"stopIndex":14996,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14404},{"__isSmartRef__":true,"id":14406},{"__isSmartRef__":true,"id":14407},{"__isSmartRef__":true,"id":14408},{"__isSmartRef__":true,"id":14409},{"__isSmartRef__":true,"id":14410}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14406":{"name":"setTestCases","type":"propertyDef","startIndex":14067,"stopIndex":14153,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14405},"className":"TestSuite","_owner":{"__isSmartRef__":true,"id":14403},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14407":{"name":"addTestCases","type":"propertyDef","startIndex":14155,"stopIndex":14259,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14405},"className":"TestSuite","_owner":{"__isSmartRef__":true,"id":14403},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14408":{"name":"testCasesFromModule","type":"propertyDef","startIndex":14264,"stopIndex":14530,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14405},"className":"TestSuite","_owner":{"__isSmartRef__":true,"id":14403},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14409":{"name":"runAll","type":"propertyDef","startIndex":14534,"stopIndex":14665,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14405},"className":"TestSuite","_owner":{"__isSmartRef__":true,"id":14403},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14410":{"name":"runDelayed","type":"propertyDef","startIndex":14669,"stopIndex":14993,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14405},"className":"TestSuite","_owner":{"__isSmartRef__":true,"id":14403},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14411":{"name":null,"type":"comment","startIndex":15000,"stopIndex":15001,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14412":{"name":"TestResult","type":"klassDef","startIndex":15002,"stopIndex":17540,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14413},{"__isSmartRef__":true,"id":14415},{"__isSmartRef__":true,"id":14416},{"__isSmartRef__":true,"id":14417},{"__isSmartRef__":true,"id":14418},{"__isSmartRef__":true,"id":14419},{"__isSmartRef__":true,"id":14420},{"__isSmartRef__":true,"id":14421},{"__isSmartRef__":true,"id":14422},{"__isSmartRef__":true,"id":14423},{"__isSmartRef__":true,"id":14424},{"__isSmartRef__":true,"id":14425}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14414}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14413":{"name":"initialize","type":"propertyDef","startIndex":15034,"stopIndex":15128,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14414":{"name":"default category","type":"categoryDef","startIndex":15032,"stopIndex":17537,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14413},{"__isSmartRef__":true,"id":14415},{"__isSmartRef__":true,"id":14416},{"__isSmartRef__":true,"id":14417},{"__isSmartRef__":true,"id":14418},{"__isSmartRef__":true,"id":14419},{"__isSmartRef__":true,"id":14420},{"__isSmartRef__":true,"id":14421},{"__isSmartRef__":true,"id":14422},{"__isSmartRef__":true,"id":14423},{"__isSmartRef__":true,"id":14424},{"__isSmartRef__":true,"id":14425}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14415":{"name":"setTimeToRun","type":"propertyDef","startIndex":15132,"stopIndex":15227,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14416":{"name":"getTimeToRun","type":"propertyDef","startIndex":15231,"stopIndex":15314,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14417":{"name":"addSuccess","type":"propertyDef","startIndex":15318,"stopIndex":15441,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14418":{"name":"addFailure","type":"propertyDef","startIndex":15445,"stopIndex":15764,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14419":{"name":"runs","type":"propertyDef","startIndex":15768,"stopIndex":15878,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14420":{"name":"toString","type":"propertyDef","startIndex":15882,"stopIndex":15965,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14421":{"name":"printResult","type":"propertyDef","startIndex":15969,"stopIndex":16628,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14422":{"name":"shortResult","type":"propertyDef","startIndex":16632,"stopIndex":16923,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14423":{"name":"getFileNameFromError","type":"propertyDef","startIndex":16927,"stopIndex":17081,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14424":{"name":"failureList","type":"propertyDef","startIndex":17085,"stopIndex":17412,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14425":{"name":"successList","type":"propertyDef","startIndex":17416,"stopIndex":17536,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14414},"className":"TestResult","_owner":{"__isSmartRef__":true,"id":14412},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14426":{"name":null,"type":"comment","startIndex":17541,"stopIndex":17541,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14427":{"name":null,"type":"unknown","startIndex":17542,"stopIndex":17611,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14428":{"name":"TestRunnerPanel","type":"klassDef","startIndex":17612,"stopIndex":18001,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14429},{"__isSmartRef__":true,"id":14431}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PanelMorph","categories":[{"__isSmartRef__":true,"id":14430}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14429":{"name":"documentation","type":"propertyDef","startIndex":17654,"stopIndex":17711,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14430},"className":"TestRunnerPanel","_owner":{"__isSmartRef__":true,"id":14428},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14430":{"name":"default category","type":"categoryDef","startIndex":17651,"stopIndex":17998,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14429},{"__isSmartRef__":true,"id":14431}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14431":{"name":"onDeserialize","type":"propertyDef","startIndex":17715,"stopIndex":17997,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14430},"className":"TestRunnerPanel","_owner":{"__isSmartRef__":true,"id":14428},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14432":{"name":null,"type":"comment","startIndex":18002,"stopIndex":18002,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14433":{"name":"TestRunner","type":"klassDef","startIndex":18003,"stopIndex":24963,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14434},{"__isSmartRef__":true,"id":14436},{"__isSmartRef__":true,"id":14437},{"__isSmartRef__":true,"id":14438},{"__isSmartRef__":true,"id":14439},{"__isSmartRef__":true,"id":14440},{"__isSmartRef__":true,"id":14442},{"__isSmartRef__":true,"id":14443},{"__isSmartRef__":true,"id":14445},{"__isSmartRef__":true,"id":14446},{"__isSmartRef__":true,"id":14447},{"__isSmartRef__":true,"id":14449},{"__isSmartRef__":true,"id":14450},{"__isSmartRef__":true,"id":14451},{"__isSmartRef__":true,"id":14452},{"__isSmartRef__":true,"id":14453},{"__isSmartRef__":true,"id":14455},{"__isSmartRef__":true,"id":14456},{"__isSmartRef__":true,"id":14457},{"__isSmartRef__":true,"id":14458},{"__isSmartRef__":true,"id":14460},{"__isSmartRef__":true,"id":14462}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":14435},{"__isSmartRef__":true,"id":14441},{"__isSmartRef__":true,"id":14444},{"__isSmartRef__":true,"id":14448},{"__isSmartRef__":true,"id":14454},{"__isSmartRef__":true,"id":14459},{"__isSmartRef__":true,"id":14461}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14434":{"name":"viewTitle","type":"propertyDef","startIndex":18049,"stopIndex":18073,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14435},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14435":{"name":"settings","type":"categoryDef","startIndex":18034,"stopIndex":18296,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14434},{"__isSmartRef__":true,"id":14436},{"__isSmartRef__":true,"id":14437},{"__isSmartRef__":true,"id":14438},{"__isSmartRef__":true,"id":14439}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14436":{"name":"documentation","type":"propertyDef","startIndex":18075,"stopIndex":18162,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14435},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14437":{"name":"initialViewExtent","type":"propertyDef","startIndex":18164,"stopIndex":18195,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14435},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14438":{"name":"formals","type":"propertyDef","startIndex":18197,"stopIndex":18283,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14435},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14439":{"name":"ctx","type":"propertyDef","startIndex":18285,"stopIndex":18293,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14435},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14440":{"name":"initialize","type":"propertyDef","startIndex":18320,"stopIndex":18794,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14441},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14441":{"name":"initialization","type":"categoryDef","startIndex":18298,"stopIndex":18947,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14440},{"__isSmartRef__":true,"id":14442}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14442":{"name":"refresh","type":"propertyDef","startIndex":18797,"stopIndex":18944,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14441},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14443":{"name":"buildView","type":"propertyDef","startIndex":18959,"stopIndex":21598,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14444},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14444":{"name":"view","type":"categoryDef","startIndex":18949,"stopIndex":22099,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14443},{"__isSmartRef__":true,"id":14445},{"__isSmartRef__":true,"id":14446}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14445":{"name":"setBarColor","type":"propertyDef","startIndex":21603,"stopIndex":21674,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14444},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14446":{"name":"openErrorStackViewer","type":"propertyDef","startIndex":21678,"stopIndex":22096,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14444},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14447":{"name":"onTestClassesUpdate","type":"propertyDef","startIndex":22120,"stopIndex":22156,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14448},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14448":{"name":"model related","type":"categoryDef","startIndex":22101,"stopIndex":22312,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14447},{"__isSmartRef__":true,"id":14449},{"__isSmartRef__":true,"id":14450},{"__isSmartRef__":true,"id":14451},{"__isSmartRef__":true,"id":14452}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14449":{"name":"onSelectedTestClassUpdate","type":"propertyDef","startIndex":22158,"stopIndex":22200,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14448},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14450":{"name":"onResultTextUpdate","type":"propertyDef","startIndex":22202,"stopIndex":22237,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14448},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14451":{"name":"onFailureListUpdate","type":"propertyDef","startIndex":22239,"stopIndex":22275,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14448},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14452":{"name":"onFailureUpdate","type":"propertyDef","startIndex":22277,"stopIndex":22309,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14448},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14453":{"name":"runTests","type":"propertyDef","startIndex":22329,"stopIndex":22385,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14454},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14454":{"name":"running","type":"categoryDef","startIndex":22314,"stopIndex":23731,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14453},{"__isSmartRef__":true,"id":14455},{"__isSmartRef__":true,"id":14456},{"__isSmartRef__":true,"id":14457}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14455":{"name":"runAllTests","type":"propertyDef","startIndex":22388,"stopIndex":22443,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14454},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14456":{"name":"runSelectedTestCase","type":"propertyDef","startIndex":22446,"stopIndex":22860,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14454},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14457":{"name":"runAllTestCases","type":"propertyDef","startIndex":22864,"stopIndex":23727,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14454},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14458":{"name":"setResultOf","type":"propertyDef","startIndex":23749,"stopIndex":24197,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14459},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14459":{"name":"results","type":"categoryDef","startIndex":23733,"stopIndex":24201,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14458}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14460":{"name":"testClassesOfModule","type":"propertyDef","startIndex":24218,"stopIndex":24586,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14461},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14461":{"name":"accessing","type":"categoryDef","startIndex":24203,"stopIndex":24960,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14460},{"__isSmartRef__":true,"id":14462}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14462":{"name":"allTestClasses","type":"propertyDef","startIndex":24589,"stopIndex":24956,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14461},"className":"TestRunner","_owner":{"__isSmartRef__":true,"id":14433},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14463":{"name":null,"type":"comment","startIndex":24964,"stopIndex":24964,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14464":{"name":"openIn","type":"propertyDef","startIndex":24965,"stopIndex":25127,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"TestRunner","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14465":{"name":null,"type":"comment","startIndex":25128,"stopIndex":25128,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14466":{"name":"ErrorStackViewer","type":"klassDef","startIndex":25129,"stopIndex":29903,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14467},{"__isSmartRef__":true,"id":14469},{"__isSmartRef__":true,"id":14470},{"__isSmartRef__":true,"id":14471},{"__isSmartRef__":true,"id":14472},{"__isSmartRef__":true,"id":14473},{"__isSmartRef__":true,"id":14474},{"__isSmartRef__":true,"id":14475},{"__isSmartRef__":true,"id":14476},{"__isSmartRef__":true,"id":14477},{"__isSmartRef__":true,"id":14478}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":14468}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14467":{"name":"defaultViewTitle","type":"propertyDef","startIndex":25168,"stopIndex":25205,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14468":{"name":"default category","type":"categoryDef","startIndex":25165,"stopIndex":29900,"fileName":"lively/TestFramework.js","_subElements":[{"__isSmartRef__":true,"id":14467},{"__isSmartRef__":true,"id":14469},{"__isSmartRef__":true,"id":14470},{"__isSmartRef__":true,"id":14471},{"__isSmartRef__":true,"id":14472},{"__isSmartRef__":true,"id":14473},{"__isSmartRef__":true,"id":14474},{"__isSmartRef__":true,"id":14475},{"__isSmartRef__":true,"id":14476},{"__isSmartRef__":true,"id":14477},{"__isSmartRef__":true,"id":14478}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14469":{"name":"defaultViewExtent","type":"propertyDef","startIndex":25207,"stopIndex":25238,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14470":{"name":"initialize","type":"propertyDef","startIndex":25242,"stopIndex":25855,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14471":{"name":"setStackList","type":"propertyDef","startIndex":25859,"stopIndex":25937,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14472":{"name":"buildView","type":"propertyDef","startIndex":25941,"stopIndex":27701,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14473":{"name":"getCallerList","type":"propertyDef","startIndex":27705,"stopIndex":28082,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14474":{"name":"setCaller","type":"propertyDef","startIndex":28086,"stopIndex":28744,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14475":{"name":"inspectCaller","type":"propertyDef","startIndex":28748,"stopIndex":28951,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14476":{"name":"getArgumentValueNamePairs","type":"propertyDef","startIndex":28955,"stopIndex":29428,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14477":{"name":"extractArgumentString","type":"propertyDef","startIndex":29432,"stopIndex":29659,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14478":{"name":"getArgumentNames","type":"propertyDef","startIndex":29663,"stopIndex":29899,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14468},"className":"ErrorStackViewer","_owner":{"__isSmartRef__":true,"id":14466},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14479":{"name":null,"type":"comment","startIndex":29904,"stopIndex":29904,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14480":{"name":"openStackViewer","type":"propertyDef","startIndex":29905,"stopIndex":30262,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Global","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14481":{"name":null,"type":"comment","startIndex":30263,"stopIndex":30263,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14482":{"name":null,"type":"unknown","startIndex":30264,"stopIndex":30303,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14483":{"name":null,"type":"comment","startIndex":30304,"stopIndex":30304,"fileName":"lively/TestFramework.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14484":{"target":{"__isSmartRef__":true,"id":14485},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/TestModule.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14485":{"name":"lively.TestModule","type":"moduleDef","startIndex":0,"stopIndex":160,"fileName":"lively/TestModule.js","_subElements":[{"__isSmartRef__":true,"id":14486},{"__isSmartRef__":true,"id":14487}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14486":{"name":null,"type":"comment","startIndex":58,"stopIndex":68,"fileName":"lively/TestModule.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14487":{"name":"TestClass","type":"klassDef","startIndex":69,"stopIndex":157,"fileName":"lively/TestModule.js","_subElements":[{"__isSmartRef__":true,"id":14488},{"__isSmartRef__":true,"id":14490}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14489}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14488":{"name":"field","type":"propertyDef","startIndex":100,"stopIndex":114,"fileName":"lively/TestModule.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14489},"className":"TestClass","_owner":{"__isSmartRef__":true,"id":14487},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14489":{"name":"default category","type":"categoryDef","startIndex":98,"stopIndex":154,"fileName":"lively/TestModule.js","_subElements":[{"__isSmartRef__":true,"id":14488},{"__isSmartRef__":true,"id":14490}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14490":{"name":"m1","type":"propertyDef","startIndex":116,"stopIndex":153,"fileName":"lively/TestModule.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14489},"className":"TestClass","_owner":{"__isSmartRef__":true,"id":14487},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14491":{"target":{"__isSmartRef__":true,"id":14492},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/TestRunnerExtensions.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14492":{"name":"lively.TestRunnerExtensions","type":"moduleDef","startIndex":1228,"stopIndex":3186,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14493},{"__isSmartRef__":true,"id":14494},{"__isSmartRef__":true,"id":14505},{"__isSmartRef__":true,"id":14511},{"__isSmartRef__":true,"id":14512},{"__isSmartRef__":true,"id":14516},{"__isSmartRef__":true,"id":14517},{"__isSmartRef__":true,"id":14518},{"__isSmartRef__":true,"id":14523}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14493":{"name":null,"type":"comment","startIndex":1349,"stopIndex":1350,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14494":{"name":"TimeEachTestLayer","type":"copDef","startIndex":1351,"stopIndex":2401,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14495},{"__isSmartRef__":true,"id":14498},{"__isSmartRef__":true,"id":14502}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14495":{"name":"TestCase","type":"copSubElement","startIndex":1383,"stopIndex":1612,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14496}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":14494},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14496":{"name":"runTest","type":"propertyDef","startIndex":1408,"stopIndex":1609,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14497},"_owner":{"__isSmartRef__":true,"id":14495},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14497":{"name":"default category","type":"categoryDef","startIndex":55,"stopIndex":260,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14496}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14498":{"name":"TestResult","type":"copSubElement","startIndex":1613,"stopIndex":2127,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14499},{"__isSmartRef__":true,"id":14501}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":14494},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14499":{"name":"setTimeOfTestRun","type":"propertyDef","startIndex":1642,"stopIndex":1787,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14500},"_owner":{"__isSmartRef__":true,"id":14498},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14500":{"name":"default category","type":"categoryDef","startIndex":288,"stopIndex":775,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14499},{"__isSmartRef__":true,"id":14501}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14501":{"name":"getSortedTimesOfTestRuns","type":"propertyDef","startIndex":1790,"stopIndex":2125,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14500},"_owner":{"__isSmartRef__":true,"id":14498},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14502":{"name":"TestRunner","type":"copSubElement","startIndex":2128,"stopIndex":2399,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14503}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":14494},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14503":{"name":"setResultOf","type":"propertyDef","startIndex":2156,"stopIndex":2396,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14504},"_owner":{"__isSmartRef__":true,"id":14502},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14504":{"name":"default category","type":"categoryDef","startIndex":803,"stopIndex":1047,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14503}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14505":{"name":"TimeTestLayer","type":"copDef","startIndex":2402,"stopIndex":2744,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14506},{"__isSmartRef__":true,"id":14507}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14506":{"name":"beGlobal()","type":"copSubElement","startIndex":2430,"stopIndex":2440,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":14505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14507":{"name":"TestRunner","type":"copSubElement","startIndex":2441,"stopIndex":2742,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14508},{"__isSmartRef__":true,"id":14510}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":14505},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14508":{"name":"layersForTestRun","type":"propertyDef","startIndex":2470,"stopIndex":2623,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14509},"_owner":{"__isSmartRef__":true,"id":14507},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14509":{"name":"default category","type":"categoryDef","startIndex":65,"stopIndex":339,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14508},{"__isSmartRef__":true,"id":14510}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14510":{"name":"runSelectedTestCase","type":"propertyDef","startIndex":2626,"stopIndex":2740,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14509},"_owner":{"__isSmartRef__":true,"id":14507},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14511":{"name":null,"type":"comment","startIndex":2745,"stopIndex":2745,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14512":{"name":"ProfileEachTestLayer","type":"copDef","startIndex":2746,"stopIndex":2992,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14513}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14513":{"name":"TestCase","type":"copSubElement","startIndex":2781,"stopIndex":2990,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14514}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":14512},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14514":{"name":"runTest","type":"propertyDef","startIndex":2806,"stopIndex":2987,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14515},"_owner":{"__isSmartRef__":true,"id":14513},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14515":{"name":"default category","type":"categoryDef","startIndex":58,"stopIndex":243,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14514}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14516":{"name":"profileTestRuns","type":"propertyDef","startIndex":2993,"stopIndex":3023,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Config","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14517":{"name":null,"type":"comment","startIndex":3024,"stopIndex":3024,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14518":{"name":"DebugTestCaseLayer","type":"copDef","startIndex":3025,"stopIndex":3182,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14519},{"__isSmartRef__":true,"id":14520}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14519":{"name":"beGlobal()","type":"copSubElement","startIndex":3058,"stopIndex":3068,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":14518},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14520":{"name":"TestCase","type":"copSubElement","startIndex":3069,"stopIndex":3180,"fileName":"lively/TestRunnerExtensions.js","_subElements":[{"__isSmartRef__":true,"id":14521}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":14518},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14521":{"name":"assert","type":"propertyDef","startIndex":3095,"stopIndex":3178,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14522},"_owner":{"__isSmartRef__":true,"id":14520},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14522":{"name":"default category","type":"categoryDef","startIndex":68,"stopIndex":154,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14521}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14523":{"name":null,"type":"comment","startIndex":3183,"stopIndex":3183,"fileName":"lively/TestRunnerExtensions.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14524":{"target":{"__isSmartRef__":true,"id":14525},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Text.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14525":{"name":"lively.Text","type":"moduleDef","startIndex":1236,"stopIndex":120569,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14526},{"__isSmartRef__":true,"id":14527},{"__isSmartRef__":true,"id":14532},{"__isSmartRef__":true,"id":14533},{"__isSmartRef__":true,"id":14556},{"__isSmartRef__":true,"id":14557},{"__isSmartRef__":true,"id":14561},{"__isSmartRef__":true,"id":14562},{"__isSmartRef__":true,"id":14584},{"__isSmartRef__":true,"id":14585},{"__isSmartRef__":true,"id":14614},{"__isSmartRef__":true,"id":14615},{"__isSmartRef__":true,"id":14623},{"__isSmartRef__":true,"id":14624},{"__isSmartRef__":true,"id":14625},{"__isSmartRef__":true,"id":14626},{"__isSmartRef__":true,"id":14636},{"__isSmartRef__":true,"id":14637},{"__isSmartRef__":true,"id":14645},{"__isSmartRef__":true,"id":14646},{"__isSmartRef__":true,"id":14846},{"__isSmartRef__":true,"id":14847},{"__isSmartRef__":true,"id":14851},{"__isSmartRef__":true,"id":14852},{"__isSmartRef__":true,"id":14863},{"__isSmartRef__":true,"id":14864},{"__isSmartRef__":true,"id":14870},{"__isSmartRef__":true,"id":14871},{"__isSmartRef__":true,"id":14883},{"__isSmartRef__":true,"id":14884},{"__isSmartRef__":true,"id":14903},{"__isSmartRef__":true,"id":14904},{"__isSmartRef__":true,"id":14908},{"__isSmartRef__":true,"id":14909},{"__isSmartRef__":true,"id":14921},{"__isSmartRef__":true,"id":14922},{"__isSmartRef__":true,"id":14927}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14526":{"name":null,"type":"comment","startIndex":1304,"stopIndex":1304,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14527":{"name":"lively.Text.CharacterInfo","type":"klassDef","startIndex":1305,"stopIndex":1622,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14528},{"__isSmartRef__":true,"id":14530},{"__isSmartRef__":true,"id":14531}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14529}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14528":{"name":"documentation","type":"propertyDef","startIndex":1352,"stopIndex":1456,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14529},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":14527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14529":{"name":"default category","type":"categoryDef","startIndex":1350,"stopIndex":1619,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14528},{"__isSmartRef__":true,"id":14530},{"__isSmartRef__":true,"id":14531}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14530":{"name":"initialize","type":"propertyDef","startIndex":1459,"stopIndex":1546,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14529},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":14527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14531":{"name":"toString","type":"propertyDef","startIndex":1549,"stopIndex":1616,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14529},"className":"lively.Text.CharacterInfo","_owner":{"__isSmartRef__":true,"id":14527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14532":{"name":null,"type":"comment","startIndex":1623,"stopIndex":1624,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14533":{"name":"lively.Text.Font","type":"klassDef","startIndex":1625,"stopIndex":9771,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14534},{"__isSmartRef__":true,"id":14536},{"__isSmartRef__":true,"id":14537},{"__isSmartRef__":true,"id":14538},{"__isSmartRef__":true,"id":14539},{"__isSmartRef__":true,"id":14540},{"__isSmartRef__":true,"id":14541},{"__isSmartRef__":true,"id":14542},{"__isSmartRef__":true,"id":14543},{"__isSmartRef__":true,"id":14544},{"__isSmartRef__":true,"id":14545},{"__isSmartRef__":true,"id":14546},{"__isSmartRef__":true,"id":14547},{"__isSmartRef__":true,"id":14548},{"__isSmartRef__":true,"id":14549},{"__isSmartRef__":true,"id":14550},{"__isSmartRef__":true,"id":14551},{"__isSmartRef__":true,"id":14552},{"__isSmartRef__":true,"id":14553},{"__isSmartRef__":true,"id":14554},{"__isSmartRef__":true,"id":14555}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14535}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14534":{"name":"documentation","type":"propertyDef","startIndex":1664,"stopIndex":1706,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14535":{"name":"default category","type":"categoryDef","startIndex":1661,"stopIndex":9768,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14534},{"__isSmartRef__":true,"id":14536},{"__isSmartRef__":true,"id":14537},{"__isSmartRef__":true,"id":14538},{"__isSmartRef__":true,"id":14539},{"__isSmartRef__":true,"id":14540},{"__isSmartRef__":true,"id":14541},{"__isSmartRef__":true,"id":14542},{"__isSmartRef__":true,"id":14543},{"__isSmartRef__":true,"id":14544},{"__isSmartRef__":true,"id":14545},{"__isSmartRef__":true,"id":14546},{"__isSmartRef__":true,"id":14547},{"__isSmartRef__":true,"id":14548},{"__isSmartRef__":true,"id":14549},{"__isSmartRef__":true,"id":14550},{"__isSmartRef__":true,"id":14551},{"__isSmartRef__":true,"id":14552},{"__isSmartRef__":true,"id":14553},{"__isSmartRef__":true,"id":14554},{"__isSmartRef__":true,"id":14555}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14536":{"name":"baselineFactor","type":"propertyDef","startIndex":1708,"stopIndex":1729,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14537":{"name":"doNotSerialize","type":"propertyDef","startIndex":1733,"stopIndex":1761,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14538":{"name":"initialize","type":"propertyDef","startIndex":1763,"stopIndex":2006,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14539":{"name":"computeExtents","type":"propertyDef","startIndex":2008,"stopIndex":2126,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14540":{"name":"getSize","type":"propertyDef","startIndex":2128,"stopIndex":2173,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14541":{"name":"getBaselineHeight","type":"propertyDef","startIndex":2176,"stopIndex":2315,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14542":{"name":"getFamily","type":"propertyDef","startIndex":2318,"stopIndex":2367,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14543":{"name":"toString","type":"propertyDef","startIndex":2370,"stopIndex":2441,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14544":{"name":"getCharWidth","type":"propertyDef","startIndex":2444,"stopIndex":2694,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14545":{"name":"getCharHeight","type":"propertyDef","startIndex":2697,"stopIndex":2938,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14546":{"name":"getCharExtentFor","type":"propertyDef","startIndex":2941,"stopIndex":3276,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14547":{"name":"applyTo","type":"propertyDef","startIndex":3279,"stopIndex":3999,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14548":{"name":"computeExtents","type":"propertyDef","startIndex":4003,"stopIndex":4410,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14549":{"name":"computeExtentsUsingFakeMetrics","type":"propertyDef","startIndex":4414,"stopIndex":5220,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14550":{"name":"computeExtentsUsingHTML","type":"propertyDef","startIndex":5224,"stopIndex":6313,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14551":{"name":"computeExtentOnTheFlyUsingHTML","type":"propertyDef","startIndex":6315,"stopIndex":6695,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14552":{"name":"computeExtentOnTheFlyUsingSVG","type":"propertyDef","startIndex":6697,"stopIndex":7484,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14553":{"name":"setupHTMLElementForFontMeasure","type":"propertyDef","startIndex":7487,"stopIndex":7903,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14554":{"name":"computeExtentsUsingSVG","type":"propertyDef","startIndex":7909,"stopIndex":9345,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14555":{"name":"computeExtentOnTheFly","type":"propertyDef","startIndex":9347,"stopIndex":9764,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14535},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14556":{"name":null,"type":"comment","startIndex":9772,"stopIndex":9774,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14557":{"name":"lively.Text.Font","type":"klassExtensionDef","startIndex":9775,"stopIndex":10379,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14558},{"__isSmartRef__":true,"id":14560}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14559}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14558":{"name":"fontCache","type":"propertyDef","startIndex":9809,"stopIndex":9823,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14559},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14557},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14559":{"name":"default category","type":"categoryDef","startIndex":9807,"stopIndex":10376,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14558},{"__isSmartRef__":true,"id":14560}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14560":{"name":"forFamily","type":"propertyDef","startIndex":9825,"stopIndex":10374,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14559},"className":"lively.Text.Font","_owner":{"__isSmartRef__":true,"id":14557},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14561":{"name":null,"type":"comment","startIndex":10380,"stopIndex":10382,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14562":{"name":"lively.Text.TextWord","type":"klassDef","startIndex":10383,"stopIndex":15474,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14563},{"__isSmartRef__":true,"id":14565},{"__isSmartRef__":true,"id":14566},{"__isSmartRef__":true,"id":14567},{"__isSmartRef__":true,"id":14568},{"__isSmartRef__":true,"id":14569},{"__isSmartRef__":true,"id":14570},{"__isSmartRef__":true,"id":14571},{"__isSmartRef__":true,"id":14572},{"__isSmartRef__":true,"id":14573},{"__isSmartRef__":true,"id":14574},{"__isSmartRef__":true,"id":14575},{"__isSmartRef__":true,"id":14576},{"__isSmartRef__":true,"id":14577},{"__isSmartRef__":true,"id":14578},{"__isSmartRef__":true,"id":14579},{"__isSmartRef__":true,"id":14580},{"__isSmartRef__":true,"id":14581},{"__isSmartRef__":true,"id":14582},{"__isSmartRef__":true,"id":14583}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":14564}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14563":{"name":"documentation","type":"propertyDef","startIndex":10439,"stopIndex":10531,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14564":{"name":"default category","type":"categoryDef","startIndex":10436,"stopIndex":15471,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14563},{"__isSmartRef__":true,"id":14565},{"__isSmartRef__":true,"id":14566},{"__isSmartRef__":true,"id":14567},{"__isSmartRef__":true,"id":14568},{"__isSmartRef__":true,"id":14569},{"__isSmartRef__":true,"id":14570},{"__isSmartRef__":true,"id":14571},{"__isSmartRef__":true,"id":14572},{"__isSmartRef__":true,"id":14573},{"__isSmartRef__":true,"id":14574},{"__isSmartRef__":true,"id":14575},{"__isSmartRef__":true,"id":14576},{"__isSmartRef__":true,"id":14577},{"__isSmartRef__":true,"id":14578},{"__isSmartRef__":true,"id":14579},{"__isSmartRef__":true,"id":14580},{"__isSmartRef__":true,"id":14581},{"__isSmartRef__":true,"id":14582},{"__isSmartRef__":true,"id":14583}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14565":{"name":"isWhite","type":"propertyDef","startIndex":10534,"stopIndex":10549,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14566":{"name":"isNewLine","type":"propertyDef","startIndex":10551,"stopIndex":10568,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14567":{"name":"isTab","type":"propertyDef","startIndex":10570,"stopIndex":10583,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14568":{"name":"initialize","type":"propertyDef","startIndex":10586,"stopIndex":10780,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14569":{"name":"adjustAfterEdits","type":"propertyDef","startIndex":10783,"stopIndex":11116,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14570":{"name":"deserialize","type":"propertyDef","startIndex":11119,"stopIndex":11191,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14571":{"name":"adjustAfterComposition","type":"propertyDef","startIndex":11195,"stopIndex":11762,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14572":{"name":"allocRawNode","type":"propertyDef","startIndex":11766,"stopIndex":11842,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14573":{"name":"compose","type":"propertyDef","startIndex":11846,"stopIndex":12972,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14574":{"name":"getStopIndex","type":"propertyDef","startIndex":12976,"stopIndex":13053,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14575":{"name":"getNextStartIndex","type":"propertyDef","startIndex":13056,"stopIndex":13131,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14576":{"name":"getContent","type":"propertyDef","startIndex":13134,"stopIndex":13228,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14577":{"name":"indexForX","type":"propertyDef","startIndex":13231,"stopIndex":13755,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14578":{"name":"getBounds","type":"propertyDef","startIndex":13759,"stopIndex":14476,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14579":{"name":"isSpaces","type":"propertyDef","startIndex":14479,"stopIndex":14562,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14580":{"name":"toString","type":"propertyDef","startIndex":14621,"stopIndex":15030,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14581":{"name":"asWhite","type":"propertyDef","startIndex":15034,"stopIndex":15169,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14582":{"name":"asNewLine","type":"propertyDef","startIndex":15173,"stopIndex":15327,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14583":{"name":"asTab","type":"propertyDef","startIndex":15331,"stopIndex":15470,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14564},"className":"lively.Text.TextWord","_owner":{"__isSmartRef__":true,"id":14562},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14584":{"name":null,"type":"comment","startIndex":15475,"stopIndex":15477,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14585":{"name":"lively.Text.TextLine","type":"klassDef","startIndex":15478,"stopIndex":25247,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14586},{"__isSmartRef__":true,"id":14588},{"__isSmartRef__":true,"id":14589},{"__isSmartRef__":true,"id":14590},{"__isSmartRef__":true,"id":14591},{"__isSmartRef__":true,"id":14592},{"__isSmartRef__":true,"id":14593},{"__isSmartRef__":true,"id":14594},{"__isSmartRef__":true,"id":14595},{"__isSmartRef__":true,"id":14596},{"__isSmartRef__":true,"id":14597},{"__isSmartRef__":true,"id":14598},{"__isSmartRef__":true,"id":14599},{"__isSmartRef__":true,"id":14600},{"__isSmartRef__":true,"id":14601},{"__isSmartRef__":true,"id":14602},{"__isSmartRef__":true,"id":14603},{"__isSmartRef__":true,"id":14604},{"__isSmartRef__":true,"id":14605},{"__isSmartRef__":true,"id":14606},{"__isSmartRef__":true,"id":14607},{"__isSmartRef__":true,"id":14608},{"__isSmartRef__":true,"id":14609},{"__isSmartRef__":true,"id":14610},{"__isSmartRef__":true,"id":14611},{"__isSmartRef__":true,"id":14612},{"__isSmartRef__":true,"id":14613}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14587}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14586":{"name":"documentation","type":"propertyDef","startIndex":15520,"stopIndex":15584,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14587":{"name":"default category","type":"categoryDef","startIndex":15518,"stopIndex":25244,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14586},{"__isSmartRef__":true,"id":14588},{"__isSmartRef__":true,"id":14589},{"__isSmartRef__":true,"id":14590},{"__isSmartRef__":true,"id":14591},{"__isSmartRef__":true,"id":14592},{"__isSmartRef__":true,"id":14593},{"__isSmartRef__":true,"id":14594},{"__isSmartRef__":true,"id":14595},{"__isSmartRef__":true,"id":14596},{"__isSmartRef__":true,"id":14597},{"__isSmartRef__":true,"id":14598},{"__isSmartRef__":true,"id":14599},{"__isSmartRef__":true,"id":14600},{"__isSmartRef__":true,"id":14601},{"__isSmartRef__":true,"id":14602},{"__isSmartRef__":true,"id":14603},{"__isSmartRef__":true,"id":14604},{"__isSmartRef__":true,"id":14605},{"__isSmartRef__":true,"id":14606},{"__isSmartRef__":true,"id":14607},{"__isSmartRef__":true,"id":14608},{"__isSmartRef__":true,"id":14609},{"__isSmartRef__":true,"id":14610},{"__isSmartRef__":true,"id":14611},{"__isSmartRef__":true,"id":14612},{"__isSmartRef__":true,"id":14613}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14588":{"name":"lineHeightFactor","type":"propertyDef","startIndex":15587,"stopIndex":15609,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14589":{"name":"whiteSpaceDict","type":"propertyDef","startIndex":15718,"stopIndex":15782,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14590":{"name":"initialize","type":"propertyDef","startIndex":15786,"stopIndex":16412,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14591":{"name":"adjustAfterEdits","type":"propertyDef","startIndex":16416,"stopIndex":16826,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14592":{"name":"lineHeight","type":"propertyDef","startIndex":16829,"stopIndex":16918,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14593":{"name":"isWhiteSpace","type":"propertyDef","startIndex":16922,"stopIndex":17121,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14594":{"name":"isNewLine","type":"propertyDef","startIndex":17125,"stopIndex":17258,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14595":{"name":"endsWithNewLine","type":"propertyDef","startIndex":17262,"stopIndex":17384,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14596":{"name":"baselineY","type":"propertyDef","startIndex":17388,"stopIndex":17479,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14597":{"name":"interline","type":"propertyDef","startIndex":17482,"stopIndex":17576,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14598":{"name":"getCharWidthAt","type":"propertyDef","startIndex":17579,"stopIndex":17687,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14599":{"name":"compose","type":"propertyDef","startIndex":17690,"stopIndex":20887,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14600":{"name":"adoptStyle","type":"propertyDef","startIndex":20891,"stopIndex":21646,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14601":{"name":"getStopIndex","type":"propertyDef","startIndex":21650,"stopIndex":21756,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14602":{"name":"getNextStartIndex","type":"propertyDef","startIndex":21760,"stopIndex":21876,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14603":{"name":"getTopY","type":"propertyDef","startIndex":21880,"stopIndex":21952,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14604":{"name":"getBounds","type":"propertyDef","startIndex":21955,"stopIndex":22257,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14605":{"name":"indexForX","type":"propertyDef","startIndex":22261,"stopIndex":22601,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14606":{"name":"containsThisIndex","type":"propertyDef","startIndex":22605,"stopIndex":22786,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14607":{"name":"testForIndex","type":"propertyDef","startIndex":22789,"stopIndex":23043,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14608":{"name":"testForY","type":"propertyDef","startIndex":23046,"stopIndex":23301,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14609":{"name":"adjustAfterComposition","type":"propertyDef","startIndex":23304,"stopIndex":24397,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14610":{"name":"render","type":"propertyDef","startIndex":24401,"stopIndex":24663,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14611":{"name":"removeRawNodes","type":"propertyDef","startIndex":24667,"stopIndex":24834,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14612":{"name":"setTabWidth","type":"propertyDef","startIndex":24838,"stopIndex":24932,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14613":{"name":"toString","type":"propertyDef","startIndex":24935,"stopIndex":25243,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14587},"className":"lively.Text.TextLine","_owner":{"__isSmartRef__":true,"id":14585},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14614":{"name":null,"type":"comment","startIndex":25248,"stopIndex":25291,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14615":{"name":"Locale","type":"objectDef","startIndex":25292,"stopIndex":28431,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14616},{"__isSmartRef__":true,"id":14618},{"__isSmartRef__":true,"id":14619},{"__isSmartRef__":true,"id":14620},{"__isSmartRef__":true,"id":14621},{"__isSmartRef__":true,"id":14622}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14616":{"name":"charSet","type":"propertyDef","startIndex":25308,"stopIndex":25328,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14617},"_owner":{"__isSmartRef__":true,"id":14615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14617":{"name":"default category","type":"categoryDef","startIndex":13,"stopIndex":3137,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":14616},{"__isSmartRef__":true,"id":14618},{"__isSmartRef__":true,"id":14619},{"__isSmartRef__":true,"id":14620},{"__isSmartRef__":true,"id":14621},{"__isSmartRef__":true,"id":14622}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14618":{"name":"selectWord","type":"propertyDef","startIndex":25330,"stopIndex":27443,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14617},"_owner":{"__isSmartRef__":true,"id":14615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14619":{"name":"isWhiteSpace","type":"propertyDef","startIndex":27446,"stopIndex":27511,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14617},"_owner":{"__isSmartRef__":true,"id":14615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14620":{"name":"periodWithDigit","type":"propertyDef","startIndex":27514,"stopIndex":27697,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14617},"_owner":{"__isSmartRef__":true,"id":14615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14621":{"name":"findLine","type":"propertyDef","startIndex":27700,"stopIndex":28055,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14617},"_owner":{"__isSmartRef__":true,"id":14615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14622":{"name":"matchBrackets","type":"propertyDef","startIndex":28058,"stopIndex":28428,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14617},"_owner":{"__isSmartRef__":true,"id":14615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14623":{"name":null,"type":"comment","startIndex":28432,"stopIndex":28433,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14624":{"name":"WrapStyle","type":"propertyDef","startIndex":28434,"stopIndex":28675,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"lively.Text","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14625":{"name":null,"type":"comment","startIndex":28676,"stopIndex":28676,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14626":{"name":"TextSelectionMorph","type":"klassDef","startIndex":28677,"stopIndex":29405,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14627},{"__isSmartRef__":true,"id":14629},{"__isSmartRef__":true,"id":14630},{"__isSmartRef__":true,"id":14631},{"__isSmartRef__":true,"id":14632},{"__isSmartRef__":true,"id":14633},{"__isSmartRef__":true,"id":14634},{"__isSmartRef__":true,"id":14635}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":14628}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14627":{"name":"documentation","type":"propertyDef","startIndex":28717,"stopIndex":28778,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14628":{"name":"default category","type":"categoryDef","startIndex":28714,"stopIndex":29402,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14627},{"__isSmartRef__":true,"id":14629},{"__isSmartRef__":true,"id":14630},{"__isSmartRef__":true,"id":14631},{"__isSmartRef__":true,"id":14632},{"__isSmartRef__":true,"id":14633},{"__isSmartRef__":true,"id":14634},{"__isSmartRef__":true,"id":14635}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14629":{"name":"style","type":"propertyDef","startIndex":28780,"stopIndex":28857,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14630":{"name":"isEpimorph","type":"propertyDef","startIndex":28860,"stopIndex":28877,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14631":{"name":"initialize","type":"propertyDef","startIndex":28881,"stopIndex":29023,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14632":{"name":"addRectangle","type":"propertyDef","startIndex":29026,"stopIndex":29238,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14633":{"name":"beCursor","type":"propertyDef","startIndex":29240,"stopIndex":29290,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14634":{"name":"beSelection","type":"propertyDef","startIndex":29292,"stopIndex":29346,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14635":{"name":"undraw","type":"propertyDef","startIndex":29351,"stopIndex":29401,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14628},"className":"TextSelectionMorph","_owner":{"__isSmartRef__":true,"id":14626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14636":{"name":null,"type":"comment","startIndex":29406,"stopIndex":29406,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14637":{"name":"lively.Text.ChunkStream","type":"klassDef","startIndex":29407,"stopIndex":31671,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14638},{"__isSmartRef__":true,"id":14640},{"__isSmartRef__":true,"id":14641},{"__isSmartRef__":true,"id":14642},{"__isSmartRef__":true,"id":14643},{"__isSmartRef__":true,"id":14644}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14639}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14638":{"name":"documentation","type":"propertyDef","startIndex":29453,"stopIndex":29532,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14639},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":14637},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14639":{"name":"default category","type":"categoryDef","startIndex":29450,"stopIndex":31668,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14638},{"__isSmartRef__":true,"id":14640},{"__isSmartRef__":true,"id":14641},{"__isSmartRef__":true,"id":14642},{"__isSmartRef__":true,"id":14643},{"__isSmartRef__":true,"id":14644}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14640":{"name":"whiteSpaceDict","type":"propertyDef","startIndex":29535,"stopIndex":29599,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14639},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":14637},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14641":{"name":"initialize","type":"propertyDef","startIndex":29602,"stopIndex":29727,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14639},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":14637},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14642":{"name":"nextChunk","type":"propertyDef","startIndex":29730,"stopIndex":30977,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14639},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":14637},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14643":{"name":"chunkLengthForSpaces","type":"propertyDef","startIndex":30980,"stopIndex":31421,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14639},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":14637},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14644":{"name":"chunkLengthForWord","type":"propertyDef","startIndex":31424,"stopIndex":31667,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14639},"className":"lively.Text.ChunkStream","_owner":{"__isSmartRef__":true,"id":14637},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14645":{"name":null,"type":"comment","startIndex":31672,"stopIndex":31673,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14646":{"name":"TextMorph","type":"klassDef","startIndex":31674,"stopIndex":104218,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14647},{"__isSmartRef__":true,"id":14649},{"__isSmartRef__":true,"id":14650},{"__isSmartRef__":true,"id":14651},{"__isSmartRef__":true,"id":14652},{"__isSmartRef__":true,"id":14653},{"__isSmartRef__":true,"id":14654},{"__isSmartRef__":true,"id":14655},{"__isSmartRef__":true,"id":14656},{"__isSmartRef__":true,"id":14657},{"__isSmartRef__":true,"id":14658},{"__isSmartRef__":true,"id":14659},{"__isSmartRef__":true,"id":14660},{"__isSmartRef__":true,"id":14661},{"__isSmartRef__":true,"id":14662},{"__isSmartRef__":true,"id":14663},{"__isSmartRef__":true,"id":14664},{"__isSmartRef__":true,"id":14665},{"__isSmartRef__":true,"id":14666},{"__isSmartRef__":true,"id":14667},{"__isSmartRef__":true,"id":14668},{"__isSmartRef__":true,"id":14669},{"__isSmartRef__":true,"id":14670},{"__isSmartRef__":true,"id":14671},{"__isSmartRef__":true,"id":14672},{"__isSmartRef__":true,"id":14673},{"__isSmartRef__":true,"id":14675},{"__isSmartRef__":true,"id":14676},{"__isSmartRef__":true,"id":14677},{"__isSmartRef__":true,"id":14678},{"__isSmartRef__":true,"id":14679},{"__isSmartRef__":true,"id":14680},{"__isSmartRef__":true,"id":14681},{"__isSmartRef__":true,"id":14682},{"__isSmartRef__":true,"id":14684},{"__isSmartRef__":true,"id":14685},{"__isSmartRef__":true,"id":14686},{"__isSmartRef__":true,"id":14688},{"__isSmartRef__":true,"id":14690},{"__isSmartRef__":true,"id":14691},{"__isSmartRef__":true,"id":14692},{"__isSmartRef__":true,"id":14693},{"__isSmartRef__":true,"id":14694},{"__isSmartRef__":true,"id":14695},{"__isSmartRef__":true,"id":14696},{"__isSmartRef__":true,"id":14697},{"__isSmartRef__":true,"id":14698},{"__isSmartRef__":true,"id":14699},{"__isSmartRef__":true,"id":14700},{"__isSmartRef__":true,"id":14701},{"__isSmartRef__":true,"id":14703},{"__isSmartRef__":true,"id":14704},{"__isSmartRef__":true,"id":14705},{"__isSmartRef__":true,"id":14706},{"__isSmartRef__":true,"id":14708},{"__isSmartRef__":true,"id":14709},{"__isSmartRef__":true,"id":14710},{"__isSmartRef__":true,"id":14711},{"__isSmartRef__":true,"id":14712},{"__isSmartRef__":true,"id":14713},{"__isSmartRef__":true,"id":14715},{"__isSmartRef__":true,"id":14716},{"__isSmartRef__":true,"id":14717},{"__isSmartRef__":true,"id":14718},{"__isSmartRef__":true,"id":14719},{"__isSmartRef__":true,"id":14721},{"__isSmartRef__":true,"id":14722},{"__isSmartRef__":true,"id":14724},{"__isSmartRef__":true,"id":14726},{"__isSmartRef__":true,"id":14727},{"__isSmartRef__":true,"id":14728},{"__isSmartRef__":true,"id":14730},{"__isSmartRef__":true,"id":14731},{"__isSmartRef__":true,"id":14732},{"__isSmartRef__":true,"id":14733},{"__isSmartRef__":true,"id":14734},{"__isSmartRef__":true,"id":14735},{"__isSmartRef__":true,"id":14736},{"__isSmartRef__":true,"id":14737},{"__isSmartRef__":true,"id":14738},{"__isSmartRef__":true,"id":14739},{"__isSmartRef__":true,"id":14740},{"__isSmartRef__":true,"id":14741},{"__isSmartRef__":true,"id":14743},{"__isSmartRef__":true,"id":14744},{"__isSmartRef__":true,"id":14746},{"__isSmartRef__":true,"id":14747},{"__isSmartRef__":true,"id":14748},{"__isSmartRef__":true,"id":14749},{"__isSmartRef__":true,"id":14750},{"__isSmartRef__":true,"id":14751},{"__isSmartRef__":true,"id":14752},{"__isSmartRef__":true,"id":14753},{"__isSmartRef__":true,"id":14755},{"__isSmartRef__":true,"id":14756},{"__isSmartRef__":true,"id":14757},{"__isSmartRef__":true,"id":14758},{"__isSmartRef__":true,"id":14759},{"__isSmartRef__":true,"id":14760},{"__isSmartRef__":true,"id":14761},{"__isSmartRef__":true,"id":14762},{"__isSmartRef__":true,"id":14763},{"__isSmartRef__":true,"id":14764},{"__isSmartRef__":true,"id":14765},{"__isSmartRef__":true,"id":14766},{"__isSmartRef__":true,"id":14767},{"__isSmartRef__":true,"id":14768},{"__isSmartRef__":true,"id":14769},{"__isSmartRef__":true,"id":14770},{"__isSmartRef__":true,"id":14771},{"__isSmartRef__":true,"id":14772},{"__isSmartRef__":true,"id":14773},{"__isSmartRef__":true,"id":14774},{"__isSmartRef__":true,"id":14775},{"__isSmartRef__":true,"id":14776},{"__isSmartRef__":true,"id":14777},{"__isSmartRef__":true,"id":14778},{"__isSmartRef__":true,"id":14779},{"__isSmartRef__":true,"id":14780},{"__isSmartRef__":true,"id":14781},{"__isSmartRef__":true,"id":14782},{"__isSmartRef__":true,"id":14783},{"__isSmartRef__":true,"id":14784},{"__isSmartRef__":true,"id":14785},{"__isSmartRef__":true,"id":14786},{"__isSmartRef__":true,"id":14787},{"__isSmartRef__":true,"id":14788},{"__isSmartRef__":true,"id":14789},{"__isSmartRef__":true,"id":14790},{"__isSmartRef__":true,"id":14791},{"__isSmartRef__":true,"id":14792},{"__isSmartRef__":true,"id":14793},{"__isSmartRef__":true,"id":14794},{"__isSmartRef__":true,"id":14795},{"__isSmartRef__":true,"id":14796},{"__isSmartRef__":true,"id":14797},{"__isSmartRef__":true,"id":14798},{"__isSmartRef__":true,"id":14800},{"__isSmartRef__":true,"id":14802},{"__isSmartRef__":true,"id":14803},{"__isSmartRef__":true,"id":14804},{"__isSmartRef__":true,"id":14806},{"__isSmartRef__":true,"id":14807},{"__isSmartRef__":true,"id":14808},{"__isSmartRef__":true,"id":14809},{"__isSmartRef__":true,"id":14810},{"__isSmartRef__":true,"id":14811},{"__isSmartRef__":true,"id":14812},{"__isSmartRef__":true,"id":14813},{"__isSmartRef__":true,"id":14814},{"__isSmartRef__":true,"id":14815},{"__isSmartRef__":true,"id":14816},{"__isSmartRef__":true,"id":14817},{"__isSmartRef__":true,"id":14818},{"__isSmartRef__":true,"id":14819},{"__isSmartRef__":true,"id":14820},{"__isSmartRef__":true,"id":14821},{"__isSmartRef__":true,"id":14822},{"__isSmartRef__":true,"id":14823},{"__isSmartRef__":true,"id":14824},{"__isSmartRef__":true,"id":14825},{"__isSmartRef__":true,"id":14826},{"__isSmartRef__":true,"id":14827},{"__isSmartRef__":true,"id":14828},{"__isSmartRef__":true,"id":14829},{"__isSmartRef__":true,"id":14830},{"__isSmartRef__":true,"id":14831},{"__isSmartRef__":true,"id":14832},{"__isSmartRef__":true,"id":14833},{"__isSmartRef__":true,"id":14835},{"__isSmartRef__":true,"id":14836},{"__isSmartRef__":true,"id":14837},{"__isSmartRef__":true,"id":14838},{"__isSmartRef__":true,"id":14840},{"__isSmartRef__":true,"id":14841},{"__isSmartRef__":true,"id":14842},{"__isSmartRef__":true,"id":14843},{"__isSmartRef__":true,"id":14844}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":14648},{"__isSmartRef__":true,"id":14674},{"__isSmartRef__":true,"id":14683},{"__isSmartRef__":true,"id":14687},{"__isSmartRef__":true,"id":14689},{"__isSmartRef__":true,"id":14702},{"__isSmartRef__":true,"id":14707},{"__isSmartRef__":true,"id":14714},{"__isSmartRef__":true,"id":14720},{"__isSmartRef__":true,"id":14723},{"__isSmartRef__":true,"id":14725},{"__isSmartRef__":true,"id":14729},{"__isSmartRef__":true,"id":14742},{"__isSmartRef__":true,"id":14745},{"__isSmartRef__":true,"id":14754},{"__isSmartRef__":true,"id":14799},{"__isSmartRef__":true,"id":14801},{"__isSmartRef__":true,"id":14805},{"__isSmartRef__":true,"id":14834},{"__isSmartRef__":true,"id":14839},{"__isSmartRef__":true,"id":14845}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14647":{"name":"documentation","type":"propertyDef","startIndex":31721,"stopIndex":31757,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14648":{"name":"settings","type":"categoryDef","startIndex":31705,"stopIndex":33149,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14647},{"__isSmartRef__":true,"id":14649},{"__isSmartRef__":true,"id":14650},{"__isSmartRef__":true,"id":14651},{"__isSmartRef__":true,"id":14652},{"__isSmartRef__":true,"id":14653},{"__isSmartRef__":true,"id":14654},{"__isSmartRef__":true,"id":14655},{"__isSmartRef__":true,"id":14656},{"__isSmartRef__":true,"id":14657},{"__isSmartRef__":true,"id":14658},{"__isSmartRef__":true,"id":14659},{"__isSmartRef__":true,"id":14660},{"__isSmartRef__":true,"id":14661},{"__isSmartRef__":true,"id":14662},{"__isSmartRef__":true,"id":14663},{"__isSmartRef__":true,"id":14664},{"__isSmartRef__":true,"id":14665},{"__isSmartRef__":true,"id":14666},{"__isSmartRef__":true,"id":14667},{"__isSmartRef__":true,"id":14668},{"__isSmartRef__":true,"id":14669},{"__isSmartRef__":true,"id":14670},{"__isSmartRef__":true,"id":14671},{"__isSmartRef__":true,"id":14672}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14649":{"name":"doNotSerialize","type":"propertyDef","startIndex":31759,"stopIndex":32022,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14650":{"name":"fontSize","type":"propertyDef","startIndex":32025,"stopIndex":32099,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14651":{"name":"fontFamily","type":"propertyDef","startIndex":32101,"stopIndex":32153,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14652":{"name":"textColor","type":"propertyDef","startIndex":32155,"stopIndex":32178,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14653":{"name":"backgroundColor","type":"propertyDef","startIndex":32180,"stopIndex":32217,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14654":{"name":"style","type":"propertyDef","startIndex":32219,"stopIndex":32270,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14655":{"name":"padding","type":"propertyDef","startIndex":32276,"stopIndex":32307,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14656":{"name":"autoAdjustPadding","type":"propertyDef","startIndex":32309,"stopIndex":32333,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14657":{"name":"suppressDropping","type":"propertyDef","startIndex":32335,"stopIndex":32358,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14658":{"name":"cursorColor","type":"propertyDef","startIndex":32360,"stopIndex":32385,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14659":{"name":"wrap","type":"propertyDef","startIndex":32388,"stopIndex":32455,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14660":{"name":"maxSafeSize","type":"propertyDef","startIndex":32458,"stopIndex":32477,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14661":{"name":"tabWidth","type":"propertyDef","startIndex":32480,"stopIndex":32492,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14662":{"name":"tabsAsSpaces","type":"propertyDef","startIndex":32494,"stopIndex":32513,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14663":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":32515,"stopIndex":32630,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14664":{"name":"locale","type":"propertyDef","startIndex":32632,"stopIndex":32647,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14665":{"name":"acceptInput","type":"propertyDef","startIndex":32649,"stopIndex":32667,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14666":{"name":"autoAccept","type":"propertyDef","startIndex":32668,"stopIndex":32757,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14667":{"name":"isSelecting","type":"propertyDef","startIndex":32759,"stopIndex":32778,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14668":{"name":"selectionPivot","type":"propertyDef","startIndex":32779,"stopIndex":32859,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14669":{"name":"lineNumberHint","type":"propertyDef","startIndex":32860,"stopIndex":32911,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14670":{"name":"hasKeyboardFocus","type":"propertyDef","startIndex":32913,"stopIndex":32937,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14671":{"name":"useChangeClue","type":"propertyDef","startIndex":32939,"stopIndex":32960,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14672":{"name":"formals","type":"propertyDef","startIndex":32963,"stopIndex":33146,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14648},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14673":{"name":"initializeTransientState","type":"propertyDef","startIndex":33170,"stopIndex":33532,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14674":{"name":"initializing","type":"categoryDef","startIndex":33151,"stopIndex":36373,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14673},{"__isSmartRef__":true,"id":14675},{"__isSmartRef__":true,"id":14676},{"__isSmartRef__":true,"id":14677},{"__isSmartRef__":true,"id":14678},{"__isSmartRef__":true,"id":14679},{"__isSmartRef__":true,"id":14680},{"__isSmartRef__":true,"id":14681}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14675":{"name":"initializePersistentState","type":"propertyDef","startIndex":33535,"stopIndex":33927,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14676":{"name":"initializeTextSelection","type":"propertyDef","startIndex":33930,"stopIndex":34198,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14677":{"name":"restoreFromSubnode","type":"propertyDef","startIndex":34201,"stopIndex":34706,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14678":{"name":"restorePersistentState","type":"propertyDef","startIndex":34709,"stopIndex":35036,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14679":{"name":"initialize","type":"propertyDef","startIndex":35039,"stopIndex":35918,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14680":{"name":"prepareForSerialization","type":"propertyDef","startIndex":35922,"stopIndex":36146,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14681":{"name":"onDeserialize","type":"propertyDef","startIndex":36149,"stopIndex":36369,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14674},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14682":{"name":"acceptsDropping","type":"propertyDef","startIndex":36388,"stopIndex":36857,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14683},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14683":{"name":"testing","type":"categoryDef","startIndex":36375,"stopIndex":37057,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14682},{"__isSmartRef__":true,"id":14684},{"__isSmartRef__":true,"id":14685}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14684":{"name":"showsSelectionWithoutFocus","type":"propertyDef","startIndex":36860,"stopIndex":36904,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14683},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14685":{"name":"hasUnsavedChanges","type":"propertyDef","startIndex":36935,"stopIndex":37052,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14683},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14686":{"name":"remove","type":"propertyDef","startIndex":37073,"stopIndex":37259,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14687},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14687":{"name":"morphic","type":"categoryDef","startIndex":37059,"stopIndex":37263,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14688":{"name":"bounds","type":"propertyDef","startIndex":37282,"stopIndex":37789,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14689":{"name":"accessing","type":"categoryDef","startIndex":37266,"stopIndex":39430,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14688},{"__isSmartRef__":true,"id":14690},{"__isSmartRef__":true,"id":14691},{"__isSmartRef__":true,"id":14692},{"__isSmartRef__":true,"id":14693},{"__isSmartRef__":true,"id":14694},{"__isSmartRef__":true,"id":14695},{"__isSmartRef__":true,"id":14696},{"__isSmartRef__":true,"id":14697},{"__isSmartRef__":true,"id":14698},{"__isSmartRef__":true,"id":14699},{"__isSmartRef__":true,"id":14700}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14690":{"name":"setTextColor","type":"propertyDef","startIndex":37792,"stopIndex":37895,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14691":{"name":"getTextColor","type":"propertyDef","startIndex":37899,"stopIndex":37954,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14692":{"name":"getTextSelection","type":"propertyDef","startIndex":37958,"stopIndex":38079,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14693":{"name":"getFontFamily","type":"propertyDef","startIndex":38083,"stopIndex":38142,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14694":{"name":"setFontFamily","type":"propertyDef","startIndex":38146,"stopIndex":38335,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14695":{"name":"getFontSize","type":"propertyDef","startIndex":38339,"stopIndex":38389,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14696":{"name":"setFontSize","type":"propertyDef","startIndex":38392,"stopIndex":38752,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14697":{"name":"setTextString","type":"propertyDef","startIndex":38755,"stopIndex":39110,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14698":{"name":"updateTextString","type":"propertyDef","startIndex":39114,"stopIndex":39217,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14699":{"name":"onTextUpdate","type":"propertyDef","startIndex":39220,"stopIndex":39349,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14700":{"name":"onSelectionUpdate","type":"propertyDef","startIndex":39352,"stopIndex":39426,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14689},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14701":{"name":"applyStyle","type":"propertyDef","startIndex":39446,"stopIndex":40085,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14702},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14702":{"name":"styling","type":"categoryDef","startIndex":39432,"stopIndex":41197,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14701},{"__isSmartRef__":true,"id":14703},{"__isSmartRef__":true,"id":14704},{"__isSmartRef__":true,"id":14705}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14703":{"name":"applyStyleDeferred","type":"propertyDef","startIndex":40088,"stopIndex":40435,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14702},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14704":{"name":"makeStyleSpec","type":"propertyDef","startIndex":40439,"stopIndex":40917,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14702},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14705":{"name":"setWrapStyle","type":"propertyDef","startIndex":40921,"stopIndex":41192,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14702},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14706":{"name":"nextHistoryEntry","type":"propertyDef","startIndex":41227,"stopIndex":41492,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14707},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14707":{"name":"command line support","type":"categoryDef","startIndex":41200,"stopIndex":42293,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14706},{"__isSmartRef__":true,"id":14708},{"__isSmartRef__":true,"id":14709},{"__isSmartRef__":true,"id":14710},{"__isSmartRef__":true,"id":14711},{"__isSmartRef__":true,"id":14712}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14708":{"name":"previousHistoryEntry","type":"propertyDef","startIndex":41496,"stopIndex":41782,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14707},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14709":{"name":"saveHistoryEntry","type":"propertyDef","startIndex":41786,"stopIndex":42170,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14707},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14710":{"name":"onHistoryCursorUpdate","type":"propertyDef","startIndex":42172,"stopIndex":42211,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14707},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14711":{"name":"onHistoryCursorUpdate","type":"propertyDef","startIndex":42214,"stopIndex":42253,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14707},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14712":{"name":"onHistoryUpdate","type":"propertyDef","startIndex":42256,"stopIndex":42289,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14707},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14713":{"name":"beLabel","type":"propertyDef","startIndex":42307,"stopIndex":42774,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14714},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14714":{"name":"modes","type":"categoryDef","startIndex":42295,"stopIndex":44990,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14713},{"__isSmartRef__":true,"id":14715},{"__isSmartRef__":true,"id":14716},{"__isSmartRef__":true,"id":14717},{"__isSmartRef__":true,"id":14718}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14715":{"name":"listItemMargin","type":"propertyDef","startIndex":42777,"stopIndex":42820,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14714},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14716":{"name":"beListItem","type":"propertyDef","startIndex":42823,"stopIndex":43371,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14714},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14717":{"name":"beInputLine","type":"propertyDef","startIndex":43375,"stopIndex":44549,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14714},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14718":{"name":"beHelpBalloonFor","type":"propertyDef","startIndex":44552,"stopIndex":44987,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14714},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14719":{"name":"subMenuItems","type":"propertyDef","startIndex":45002,"stopIndex":45149,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14720},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14720":{"name":"menu","type":"categoryDef","startIndex":44992,"stopIndex":46870,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14719},{"__isSmartRef__":true,"id":14721}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14721":{"name":"editMenuItems","type":"propertyDef","startIndex":45152,"stopIndex":46867,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14720},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14722":{"name":"setStatusMessage","type":"propertyDef","startIndex":46892,"stopIndex":47777,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14723},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14723":{"name":"status message","type":"categoryDef","startIndex":46872,"stopIndex":47780,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14722}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14724":{"name":"resetScrollPane","type":"propertyDef","startIndex":47797,"stopIndex":48058,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14725},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14725":{"name":"scrolling","type":"categoryDef","startIndex":47782,"stopIndex":48608,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14724},{"__isSmartRef__":true,"id":14726},{"__isSmartRef__":true,"id":14727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14726":{"name":"scrollSelectionIntoView","type":"propertyDef","startIndex":48062,"stopIndex":48380,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14725},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14727":{"name":"enclosingScrollPane","type":"propertyDef","startIndex":48384,"stopIndex":48604,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14725},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14728":{"name":"startSelection","type":"propertyDef","startIndex":48641,"stopIndex":49094,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14729":{"name":"text selection functions","type":"categoryDef","startIndex":48610,"stopIndex":53318,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14728},{"__isSmartRef__":true,"id":14730},{"__isSmartRef__":true,"id":14731},{"__isSmartRef__":true,"id":14732},{"__isSmartRef__":true,"id":14733},{"__isSmartRef__":true,"id":14734},{"__isSmartRef__":true,"id":14735},{"__isSmartRef__":true,"id":14736},{"__isSmartRef__":true,"id":14737},{"__isSmartRef__":true,"id":14738},{"__isSmartRef__":true,"id":14739},{"__isSmartRef__":true,"id":14740}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14730":{"name":"extendSelectionEvt","type":"propertyDef","startIndex":49097,"stopIndex":49332,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14731":{"name":"selectionString","type":"propertyDef","startIndex":49336,"stopIndex":49420,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14732":{"name":"getSelectionString","type":"propertyDef","startIndex":49424,"stopIndex":49603,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14733":{"name":"getSelectionText","type":"propertyDef","startIndex":49607,"stopIndex":49804,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14734":{"name":"replaceSelectionWith","type":"propertyDef","startIndex":49807,"stopIndex":51688,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14735":{"name":"setNullSelectionAt","type":"propertyDef","startIndex":51691,"stopIndex":51777,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14736":{"name":"hasNullSelection","type":"propertyDef","startIndex":51781,"stopIndex":51921,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14737":{"name":"setSelectionRange","type":"propertyDef","startIndex":51924,"stopIndex":52243,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14738":{"name":"extendSelection","type":"propertyDef","startIndex":52246,"stopIndex":52366,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14739":{"name":"getCursorPos","type":"propertyDef","startIndex":52369,"stopIndex":52960,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14740":{"name":"printAndSelect","type":"propertyDef","startIndex":52962,"stopIndex":53313,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14729},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14741":{"name":"setRichText","type":"propertyDef","startIndex":53337,"stopIndex":53559,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14742},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14742":{"name":"rich text","type":"categoryDef","startIndex":53320,"stopIndex":53660,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14741},{"__isSmartRef__":true,"id":14743}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14743":{"name":"getRichText","type":"propertyDef","startIndex":53563,"stopIndex":53657,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14742},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14744":{"name":"handlesMouseDown","type":"propertyDef","startIndex":53681,"stopIndex":54034,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14745":{"name":"mouse events","type":"categoryDef","startIndex":53662,"stopIndex":59288,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14744},{"__isSmartRef__":true,"id":14746},{"__isSmartRef__":true,"id":14747},{"__isSmartRef__":true,"id":14748},{"__isSmartRef__":true,"id":14749},{"__isSmartRef__":true,"id":14750},{"__isSmartRef__":true,"id":14751},{"__isSmartRef__":true,"id":14752}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14746":{"name":"onMouseDown","type":"propertyDef","startIndex":54037,"stopIndex":54649,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14747":{"name":"onMouseMove","type":"propertyDef","startIndex":54653,"stopIndex":55813,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14748":{"name":"onMouseOut","type":"propertyDef","startIndex":55816,"stopIndex":56012,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14749":{"name":"onMouseWheel","type":"propertyDef","startIndex":56015,"stopIndex":56606,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14750":{"name":"linkUnderMouse","type":"propertyDef","startIndex":56609,"stopIndex":56843,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14751":{"name":"doLinkThing","type":"propertyDef","startIndex":56847,"stopIndex":58406,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14752":{"name":"onMouseUp","type":"propertyDef","startIndex":58410,"stopIndex":59283,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14745},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14753":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":59312,"stopIndex":59386,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14754":{"name":"keyboard events","type":"categoryDef","startIndex":59290,"stopIndex":82776,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14753},{"__isSmartRef__":true,"id":14755},{"__isSmartRef__":true,"id":14756},{"__isSmartRef__":true,"id":14757},{"__isSmartRef__":true,"id":14758},{"__isSmartRef__":true,"id":14759},{"__isSmartRef__":true,"id":14760},{"__isSmartRef__":true,"id":14761},{"__isSmartRef__":true,"id":14762},{"__isSmartRef__":true,"id":14763},{"__isSmartRef__":true,"id":14764},{"__isSmartRef__":true,"id":14765},{"__isSmartRef__":true,"id":14766},{"__isSmartRef__":true,"id":14767},{"__isSmartRef__":true,"id":14768},{"__isSmartRef__":true,"id":14769},{"__isSmartRef__":true,"id":14770},{"__isSmartRef__":true,"id":14771},{"__isSmartRef__":true,"id":14772},{"__isSmartRef__":true,"id":14773},{"__isSmartRef__":true,"id":14774},{"__isSmartRef__":true,"id":14775},{"__isSmartRef__":true,"id":14776},{"__isSmartRef__":true,"id":14777},{"__isSmartRef__":true,"id":14778},{"__isSmartRef__":true,"id":14779},{"__isSmartRef__":true,"id":14780},{"__isSmartRef__":true,"id":14781},{"__isSmartRef__":true,"id":14782},{"__isSmartRef__":true,"id":14783},{"__isSmartRef__":true,"id":14784},{"__isSmartRef__":true,"id":14785},{"__isSmartRef__":true,"id":14786},{"__isSmartRef__":true,"id":14787},{"__isSmartRef__":true,"id":14788},{"__isSmartRef__":true,"id":14789},{"__isSmartRef__":true,"id":14790},{"__isSmartRef__":true,"id":14791},{"__isSmartRef__":true,"id":14792},{"__isSmartRef__":true,"id":14793},{"__isSmartRef__":true,"id":14794},{"__isSmartRef__":true,"id":14795},{"__isSmartRef__":true,"id":14796},{"__isSmartRef__":true,"id":14797}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14755":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":59418,"stopIndex":59525,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14756":{"name":"onFocus","type":"propertyDef","startIndex":59529,"stopIndex":59607,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14757":{"name":"onBlur","type":"propertyDef","startIndex":59610,"stopIndex":59728,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14758":{"name":"onKeyDown","type":"propertyDef","startIndex":59731,"stopIndex":64302,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14759":{"name":"onKeyPress","type":"propertyDef","startIndex":64307,"stopIndex":65127,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14760":{"name":"replaceSelectionfromKeyboard","type":"propertyDef","startIndex":65131,"stopIndex":65506,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14761":{"name":"modifySelectedLines","type":"propertyDef","startIndex":65510,"stopIndex":66236,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14762":{"name":"doCut","type":"propertyDef","startIndex":66240,"stopIndex":66354,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14763":{"name":"doCopy","type":"propertyDef","startIndex":66357,"stopIndex":66439,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14764":{"name":"doPaste","type":"propertyDef","startIndex":66442,"stopIndex":66628,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14765":{"name":"doSelectAll","type":"propertyDef","startIndex":66632,"stopIndex":66929,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14766":{"name":"doMore","type":"propertyDef","startIndex":66932,"stopIndex":67410,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14767":{"name":"doMuchMore","type":"propertyDef","startIndex":67413,"stopIndex":67588,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14768":{"name":"doExchange","type":"propertyDef","startIndex":67592,"stopIndex":68771,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14769":{"name":"doFind","type":"propertyDef","startIndex":68774,"stopIndex":69008,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14770":{"name":"doFindNext","type":"propertyDef","startIndex":69011,"stopIndex":69162,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14771":{"name":"doSearch","type":"propertyDef","startIndex":69166,"stopIndex":69627,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14772":{"name":"doBrowse","type":"propertyDef","startIndex":69630,"stopIndex":69909,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14773":{"name":"doInspect","type":"propertyDef","startIndex":69913,"stopIndex":70197,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14774":{"name":"doListProtocol","type":"propertyDef","startIndex":70199,"stopIndex":71572,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14775":{"name":"pvtStringAndOffsetToEval","type":"propertyDef","startIndex":71577,"stopIndex":71871,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14776":{"name":"doDoit","type":"propertyDef","startIndex":71875,"stopIndex":71919,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14777":{"name":"doPrintit","type":"propertyDef","startIndex":71922,"stopIndex":72030,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14778":{"name":"doSave","type":"propertyDef","startIndex":72033,"stopIndex":72121,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14779":{"name":"tryBoundEval","type":"propertyDef","startIndex":72124,"stopIndex":72742,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14780":{"name":"evalSelection","type":"propertyDef","startIndex":72744,"stopIndex":72897,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14781":{"name":"showError","type":"propertyDef","startIndex":72901,"stopIndex":74164,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14782":{"name":"doHelp","type":"propertyDef","startIndex":74167,"stopIndex":74273,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14783":{"name":"doUndo","type":"propertyDef","startIndex":74276,"stopIndex":74665,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14784":{"name":"processCommandKeys","type":"propertyDef","startIndex":74668,"stopIndex":78241,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14785":{"name":"detectTextStyleInRange","type":"propertyDef","startIndex":78244,"stopIndex":78401,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14786":{"name":"linkifySelection","type":"propertyDef","startIndex":78404,"stopIndex":78891,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14787":{"name":"colorSelection","type":"propertyDef","startIndex":78894,"stopIndex":79246,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14788":{"name":"setSelectionColor","type":"propertyDef","startIndex":79249,"stopIndex":79596,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14789":{"name":"indentSelection","type":"propertyDef","startIndex":79600,"stopIndex":79743,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14790":{"name":"outdentSelection","type":"propertyDef","startIndex":79747,"stopIndex":79960,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14791":{"name":"addOrRemoveComment","type":"propertyDef","startIndex":79964,"stopIndex":80506,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14792":{"name":"pvtCurrentLine","type":"propertyDef","startIndex":80510,"stopIndex":80685,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14793":{"name":"pvtCurrentLineString","type":"propertyDef","startIndex":80688,"stopIndex":80851,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14794":{"name":"saveContents","type":"propertyDef","startIndex":80854,"stopIndex":81177,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14795":{"name":"acceptChanges","type":"propertyDef","startIndex":81180,"stopIndex":81260,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14796":{"name":"boundEval","type":"propertyDef","startIndex":81264,"stopIndex":81479,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14797":{"name":"addOrRemoveBrackets","type":"propertyDef","startIndex":81483,"stopIndex":82772,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14754},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14798":{"name":"searchForFind","type":"propertyDef","startIndex":82794,"stopIndex":83165,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14799},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14799":{"name":"searching","type":"categoryDef","startIndex":82778,"stopIndex":83170,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14798}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14800":{"name":"addChangeClue","type":"propertyDef","startIndex":83189,"stopIndex":83466,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14801},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14801":{"name":"change clue","type":"categoryDef","startIndex":83172,"stopIndex":83685,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14800},{"__isSmartRef__":true,"id":14802},{"__isSmartRef__":true,"id":14803}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14802":{"name":"showChangeClue","type":"propertyDef","startIndex":83469,"stopIndex":83585,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14801},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14803":{"name":"hideChangeClue","type":"propertyDef","startIndex":83588,"stopIndex":83680,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14801},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14804":{"name":"textTopLeft","type":"propertyDef","startIndex":83715,"stopIndex":83903,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14805":{"name":"composition functions","type":"categoryDef","startIndex":83687,"stopIndex":100584,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14804},{"__isSmartRef__":true,"id":14806},{"__isSmartRef__":true,"id":14807},{"__isSmartRef__":true,"id":14808},{"__isSmartRef__":true,"id":14809},{"__isSmartRef__":true,"id":14810},{"__isSmartRef__":true,"id":14811},{"__isSmartRef__":true,"id":14812},{"__isSmartRef__":true,"id":14813},{"__isSmartRef__":true,"id":14814},{"__isSmartRef__":true,"id":14815},{"__isSmartRef__":true,"id":14816},{"__isSmartRef__":true,"id":14817},{"__isSmartRef__":true,"id":14818},{"__isSmartRef__":true,"id":14819},{"__isSmartRef__":true,"id":14820},{"__isSmartRef__":true,"id":14821},{"__isSmartRef__":true,"id":14822},{"__isSmartRef__":true,"id":14823},{"__isSmartRef__":true,"id":14824},{"__isSmartRef__":true,"id":14825},{"__isSmartRef__":true,"id":14826},{"__isSmartRef__":true,"id":14827},{"__isSmartRef__":true,"id":14828},{"__isSmartRef__":true,"id":14829},{"__isSmartRef__":true,"id":14830},{"__isSmartRef__":true,"id":14831},{"__isSmartRef__":true,"id":14832}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14806":{"name":"ensureRendered","type":"propertyDef","startIndex":83907,"stopIndex":84262,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14807":{"name":"resetRendering","type":"propertyDef","startIndex":84265,"stopIndex":84569,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14808":{"name":"renderAfterReplacement","type":"propertyDef","startIndex":84572,"stopIndex":90199,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14809":{"name":"ensureTextString","type":"propertyDef","startIndex":90202,"stopIndex":90288,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14810":{"name":"getCharBounds","type":"propertyDef","startIndex":90292,"stopIndex":90685,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14811":{"name":"renderText","type":"propertyDef","startIndex":90688,"stopIndex":91243,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14812":{"name":"composeLines","type":"propertyDef","startIndex":91246,"stopIndex":92462,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14813":{"name":"lineNumberSearch","type":"propertyDef","startIndex":92465,"stopIndex":92945,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14814":{"name":"lineNumberForIndex","type":"propertyDef","startIndex":92948,"stopIndex":93138,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14815":{"name":"lineForIndex","type":"propertyDef","startIndex":93141,"stopIndex":93241,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14816":{"name":"lineNumberForY","type":"propertyDef","startIndex":93244,"stopIndex":93425,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14817":{"name":"lineForY","type":"propertyDef","startIndex":93428,"stopIndex":93539,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14818":{"name":"hit","type":"propertyDef","startIndex":93543,"stopIndex":93648,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14819":{"name":"setTabWidth","type":"propertyDef","startIndex":93651,"stopIndex":93752,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14820":{"name":"compositionWidth","type":"propertyDef","startIndex":93755,"stopIndex":93966,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14821":{"name":"fitText","type":"propertyDef","startIndex":93969,"stopIndex":94233,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14822":{"name":"lineHeight","type":"propertyDef","startIndex":94236,"stopIndex":94344,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14823":{"name":"fitHeight","type":"propertyDef","startIndex":94347,"stopIndex":95164,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14824":{"name":"fitWidth","type":"propertyDef","startIndex":95167,"stopIndex":96712,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14825":{"name":"undrawSelection","type":"propertyDef","startIndex":96715,"stopIndex":96814,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14826":{"name":"removeTextSelection","type":"propertyDef","startIndex":96818,"stopIndex":96949,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14827":{"name":"selectionStyle","type":"propertyDef","startIndex":96952,"stopIndex":97121,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14828":{"name":"drawSelection","type":"propertyDef","startIndex":97125,"stopIndex":97528,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14829":{"name":"drawSelectionInRange","type":"propertyDef","startIndex":97530,"stopIndex":98983,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14830":{"name":"lineNo","type":"propertyDef","startIndex":98987,"stopIndex":99103,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14831":{"name":"lineRect","type":"propertyDef","startIndex":99107,"stopIndex":99358,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14832":{"name":"charOfPoint","type":"propertyDef","startIndex":99362,"stopIndex":100580,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14805},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14833":{"name":"emphasizeSelection","type":"propertyDef","startIndex":100606,"stopIndex":100763,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14834},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14834":{"name":"text emphasis","type":"categoryDef","startIndex":100586,"stopIndex":101680,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14833},{"__isSmartRef__":true,"id":14835},{"__isSmartRef__":true,"id":14836},{"__isSmartRef__":true,"id":14837}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14835":{"name":"emphasizeBoldItalic","type":"propertyDef","startIndex":100766,"stopIndex":101374,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14834},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14836":{"name":"emphasizeAll","type":"propertyDef","startIndex":101377,"stopIndex":101468,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14834},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14837":{"name":"emphasizeFromTo","type":"propertyDef","startIndex":101471,"stopIndex":101676,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14834},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14838":{"name":"pvtUpdateTextString","type":"propertyDef","startIndex":101695,"stopIndex":102581,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14839},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14839":{"name":"private","type":"categoryDef","startIndex":101682,"stopIndex":103892,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14838},{"__isSmartRef__":true,"id":14840},{"__isSmartRef__":true,"id":14841},{"__isSmartRef__":true,"id":14842},{"__isSmartRef__":true,"id":14843}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14840":{"name":"changeFontSizeByFactor","type":"propertyDef","startIndex":102583,"stopIndex":102685,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14839},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14841":{"name":"composeAfterEdits","type":"propertyDef","startIndex":102690,"stopIndex":103350,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14839},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14842":{"name":"pvtPositionInString","type":"propertyDef","startIndex":103353,"stopIndex":103542,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14839},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14843":{"name":"pvtReplaceBadControlCharactersInString","type":"propertyDef","startIndex":103545,"stopIndex":103888,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14839},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14844":{"name":"updateView","type":"propertyDef","startIndex":103923,"stopIndex":104213,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14845},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14646},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14845":{"name":"old model -- deprecated","type":"categoryDef","startIndex":103894,"stopIndex":104215,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14844}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14846":{"name":null,"type":"comment","startIndex":104219,"stopIndex":104219,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14847":{"name":"TextMorph","type":"klassExtensionDef","startIndex":104220,"stopIndex":104649,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14848},{"__isSmartRef__":true,"id":14850}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14849}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14848":{"name":"fromLiteral","type":"propertyDef","startIndex":104249,"stopIndex":104475,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14849},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14849":{"name":"default category","type":"categoryDef","startIndex":104245,"stopIndex":104646,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14848},{"__isSmartRef__":true,"id":14850}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14850":{"name":"makeLabel","type":"propertyDef","startIndex":104478,"stopIndex":104643,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14849},"className":"TextMorph","_owner":{"__isSmartRef__":true,"id":14847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14851":{"name":null,"type":"comment","startIndex":104650,"stopIndex":104685,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14852":{"name":"PrintMorph","type":"klassDef","startIndex":104686,"stopIndex":105907,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14853},{"__isSmartRef__":true,"id":14855},{"__isSmartRef__":true,"id":14856},{"__isSmartRef__":true,"id":14857},{"__isSmartRef__":true,"id":14858},{"__isSmartRef__":true,"id":14859},{"__isSmartRef__":true,"id":14860},{"__isSmartRef__":true,"id":14861},{"__isSmartRef__":true,"id":14862}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":14854}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14853":{"name":"documentation","type":"propertyDef","startIndex":104721,"stopIndex":104840,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14854":{"name":"default category","type":"categoryDef","startIndex":104719,"stopIndex":105904,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14853},{"__isSmartRef__":true,"id":14855},{"__isSmartRef__":true,"id":14856},{"__isSmartRef__":true,"id":14857},{"__isSmartRef__":true,"id":14858},{"__isSmartRef__":true,"id":14859},{"__isSmartRef__":true,"id":14860},{"__isSmartRef__":true,"id":14861},{"__isSmartRef__":true,"id":14862}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14855":{"name":"precision","type":"propertyDef","startIndex":104842,"stopIndex":104858,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14856":{"name":"updateView","type":"propertyDef","startIndex":104861,"stopIndex":105052,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14857":{"name":"onValueUpdate","type":"propertyDef","startIndex":105055,"stopIndex":105142,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14858":{"name":"getValue","type":"propertyDef","startIndex":105149,"stopIndex":105314,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14859":{"name":"setValue","type":"propertyDef","startIndex":105317,"stopIndex":105505,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14860":{"name":"formatValue","type":"propertyDef","startIndex":105508,"stopIndex":105692,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14861":{"name":"getText","type":"propertyDef","startIndex":105699,"stopIndex":105773,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14862":{"name":"setText","type":"propertyDef","startIndex":105780,"stopIndex":105903,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14854},"className":"PrintMorph","_owner":{"__isSmartRef__":true,"id":14852},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14863":{"name":null,"type":"comment","startIndex":105908,"stopIndex":105908,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14864":{"name":"TestTextMorph","type":"klassDef","startIndex":105909,"stopIndex":107698,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14865},{"__isSmartRef__":true,"id":14867},{"__isSmartRef__":true,"id":14868},{"__isSmartRef__":true,"id":14869}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":14866}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14865":{"name":"onMouseDown","type":"propertyDef","startIndex":106328,"stopIndex":106660,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14866},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":14864},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14866":{"name":"default category","type":"categoryDef","startIndex":105945,"stopIndex":107695,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14865},{"__isSmartRef__":true,"id":14867},{"__isSmartRef__":true,"id":14868},{"__isSmartRef__":true,"id":14869}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14867":{"name":"track","type":"propertyDef","startIndex":106662,"stopIndex":107461,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14866},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":14864},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14868":{"name":"onMouseMove","type":"propertyDef","startIndex":107463,"stopIndex":107587,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14866},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":14864},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14869":{"name":"onMouseUp","type":"propertyDef","startIndex":107589,"stopIndex":107694,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14866},"className":"TestTextMorph","_owner":{"__isSmartRef__":true,"id":14864},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14870":{"name":null,"type":"comment","startIndex":107699,"stopIndex":107699,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14871":{"name":"LabeledTextMorph","type":"klassDef","startIndex":107700,"stopIndex":111207,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14872},{"__isSmartRef__":true,"id":14874},{"__isSmartRef__":true,"id":14875},{"__isSmartRef__":true,"id":14876},{"__isSmartRef__":true,"id":14877},{"__isSmartRef__":true,"id":14878},{"__isSmartRef__":true,"id":14879},{"__isSmartRef__":true,"id":14880},{"__isSmartRef__":true,"id":14881},{"__isSmartRef__":true,"id":14882}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":14873}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14872":{"name":"documentation","type":"propertyDef","startIndex":107741,"stopIndex":107862,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14873":{"name":"default category","type":"categoryDef","startIndex":107738,"stopIndex":111204,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14872},{"__isSmartRef__":true,"id":14874},{"__isSmartRef__":true,"id":14875},{"__isSmartRef__":true,"id":14876},{"__isSmartRef__":true,"id":14877},{"__isSmartRef__":true,"id":14878},{"__isSmartRef__":true,"id":14879},{"__isSmartRef__":true,"id":14880},{"__isSmartRef__":true,"id":14881},{"__isSmartRef__":true,"id":14882}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14874":{"name":"labelOffset","type":"propertyDef","startIndex":107864,"stopIndex":107889,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14875":{"name":"maxExtent","type":"propertyDef","startIndex":107891,"stopIndex":107918,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14876":{"name":"initialize","type":"propertyDef","startIndex":107925,"stopIndex":109674,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14877":{"name":"maxExtent","type":"propertyDef","startIndex":109677,"stopIndex":109790,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14878":{"name":"reshape","type":"propertyDef","startIndex":109797,"stopIndex":110383,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14879":{"name":"textHeight","type":"propertyDef","startIndex":110390,"stopIndex":110493,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14880":{"name":"setToTextHeight","type":"propertyDef","startIndex":110500,"stopIndex":110660,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14881":{"name":"innerMorph","type":"propertyDef","startIndex":110668,"stopIndex":110728,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14882":{"name":"adoptToBoundsChange","type":"propertyDef","startIndex":110735,"stopIndex":111203,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14873},"className":"LabeledTextMorph","_owner":{"__isSmartRef__":true,"id":14871},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14883":{"name":null,"type":"comment","startIndex":111208,"stopIndex":111208,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14884":{"name":"RunArray","type":"klassDef","startIndex":111209,"stopIndex":116485,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14885},{"__isSmartRef__":true,"id":14887},{"__isSmartRef__":true,"id":14888},{"__isSmartRef__":true,"id":14889},{"__isSmartRef__":true,"id":14890},{"__isSmartRef__":true,"id":14891},{"__isSmartRef__":true,"id":14892},{"__isSmartRef__":true,"id":14893},{"__isSmartRef__":true,"id":14894},{"__isSmartRef__":true,"id":14895},{"__isSmartRef__":true,"id":14896},{"__isSmartRef__":true,"id":14897},{"__isSmartRef__":true,"id":14898},{"__isSmartRef__":true,"id":14899},{"__isSmartRef__":true,"id":14900},{"__isSmartRef__":true,"id":14901},{"__isSmartRef__":true,"id":14902}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14886}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14885":{"name":"initialize","type":"propertyDef","startIndex":111239,"stopIndex":111613,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14886":{"name":"default category","type":"categoryDef","startIndex":111237,"stopIndex":116482,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14885},{"__isSmartRef__":true,"id":14887},{"__isSmartRef__":true,"id":14888},{"__isSmartRef__":true,"id":14889},{"__isSmartRef__":true,"id":14890},{"__isSmartRef__":true,"id":14891},{"__isSmartRef__":true,"id":14892},{"__isSmartRef__":true,"id":14893},{"__isSmartRef__":true,"id":14894},{"__isSmartRef__":true,"id":14895},{"__isSmartRef__":true,"id":14896},{"__isSmartRef__":true,"id":14897},{"__isSmartRef__":true,"id":14898},{"__isSmartRef__":true,"id":14899},{"__isSmartRef__":true,"id":14900},{"__isSmartRef__":true,"id":14901},{"__isSmartRef__":true,"id":14902}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14887":{"name":"valueAt","type":"propertyDef","startIndex":111616,"stopIndex":111710,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14888":{"name":"runLengthAt","type":"propertyDef","startIndex":111713,"stopIndex":111820,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14889":{"name":"markAt","type":"propertyDef","startIndex":111823,"stopIndex":112685,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14890":{"name":"slice","type":"propertyDef","startIndex":112688,"stopIndex":113281,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14891":{"name":"substring","type":"propertyDef","startIndex":113284,"stopIndex":113393,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14892":{"name":"concat","type":"propertyDef","startIndex":113396,"stopIndex":114095,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14893":{"name":"asArray","type":"propertyDef","startIndex":114098,"stopIndex":114250,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14894":{"name":"length","type":"propertyDef","startIndex":114253,"stopIndex":114370,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14895":{"name":"clone","type":"propertyDef","startIndex":114373,"stopIndex":114503,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14896":{"name":"empty","type":"propertyDef","startIndex":114505,"stopIndex":114581,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14897":{"name":"mergeStyle","type":"propertyDef","startIndex":114584,"stopIndex":114972,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14898":{"name":"mergeAllStyle","type":"propertyDef","startIndex":114979,"stopIndex":115325,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14899":{"name":"coalesce","type":"propertyDef","startIndex":115328,"stopIndex":115848,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14900":{"name":"equalValues","type":"propertyDef","startIndex":115855,"stopIndex":116281,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14901":{"name":"toString","type":"propertyDef","startIndex":116284,"stopIndex":116379,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14902":{"name":"toLiteral","type":"propertyDef","startIndex":116382,"stopIndex":116480,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14886},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14884},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14903":{"name":null,"type":"comment","startIndex":116486,"stopIndex":116486,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14904":{"name":"RunArray","type":"klassExtensionDef","startIndex":116487,"stopIndex":117606,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14905},{"__isSmartRef__":true,"id":14907}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14906}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14905":{"name":"fromLiteral","type":"propertyDef","startIndex":116514,"stopIndex":116905,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14906},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14904},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14906":{"name":"default category","type":"categoryDef","startIndex":116511,"stopIndex":117603,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14905},{"__isSmartRef__":true,"id":14907}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14907":{"name":"test","type":"propertyDef","startIndex":116908,"stopIndex":117602,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14906},"className":"RunArray","_owner":{"__isSmartRef__":true,"id":14904},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14908":{"name":null,"type":"comment","startIndex":117607,"stopIndex":117640,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14909":{"name":"lively.Text.Text","type":"klassDef","startIndex":117641,"stopIndex":119390,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14910},{"__isSmartRef__":true,"id":14912},{"__isSmartRef__":true,"id":14913},{"__isSmartRef__":true,"id":14914},{"__isSmartRef__":true,"id":14915},{"__isSmartRef__":true,"id":14916},{"__isSmartRef__":true,"id":14917},{"__isSmartRef__":true,"id":14918},{"__isSmartRef__":true,"id":14919},{"__isSmartRef__":true,"id":14920}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14911}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14910":{"name":"initialize","type":"propertyDef","startIndex":117679,"stopIndex":118118,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14911":{"name":"default category","type":"categoryDef","startIndex":117677,"stopIndex":119387,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14910},{"__isSmartRef__":true,"id":14912},{"__isSmartRef__":true,"id":14913},{"__isSmartRef__":true,"id":14914},{"__isSmartRef__":true,"id":14915},{"__isSmartRef__":true,"id":14916},{"__isSmartRef__":true,"id":14917},{"__isSmartRef__":true,"id":14918},{"__isSmartRef__":true,"id":14919},{"__isSmartRef__":true,"id":14920}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14912":{"name":"emphasize","type":"propertyDef","startIndex":118120,"stopIndex":118438,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14913":{"name":"emphasisAt","type":"propertyDef","startIndex":118440,"stopIndex":118509,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14914":{"name":"asString","type":"propertyDef","startIndex":118511,"stopIndex":118595,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14915":{"name":"size","type":"propertyDef","startIndex":118597,"stopIndex":118649,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14916":{"name":"substring","type":"propertyDef","startIndex":118651,"stopIndex":118840,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14917":{"name":"subtext","type":"propertyDef","startIndex":118842,"stopIndex":119029,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14918":{"name":"concat","type":"propertyDef","startIndex":119031,"stopIndex":119211,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14919":{"name":"toString","type":"propertyDef","startIndex":119213,"stopIndex":119300,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14920":{"name":"asMorph","type":"propertyDef","startIndex":119302,"stopIndex":119385,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14911},"className":"lively.Text.Text","_owner":{"__isSmartRef__":true,"id":14909},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14921":{"name":null,"type":"comment","startIndex":119391,"stopIndex":119392,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14922":{"name":"TextEmphasis","type":"klassDef","startIndex":119393,"stopIndex":120522,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14923},{"__isSmartRef__":true,"id":14925},{"__isSmartRef__":true,"id":14926}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14924}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14923":{"name":"initialize","type":"propertyDef","startIndex":119427,"stopIndex":119526,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14924},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":14922},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14924":{"name":"default category","type":"categoryDef","startIndex":119425,"stopIndex":120519,"fileName":"lively/Text.js","_subElements":[{"__isSmartRef__":true,"id":14923},{"__isSmartRef__":true,"id":14925},{"__isSmartRef__":true,"id":14926}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14925":{"name":"merge","type":"propertyDef","startIndex":119528,"stopIndex":120356,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14924},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":14922},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14926":{"name":"toString","type":"propertyDef","startIndex":120358,"stopIndex":120518,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14924},"className":"TextEmphasis","_owner":{"__isSmartRef__":true,"id":14922},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14927":{"name":null,"type":"comment","startIndex":120523,"stopIndex":120523,"fileName":"lively/Text.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14928":{"target":{"__isSmartRef__":true,"id":14929},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/TextSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14929":{"name":"lively.TextSupport","type":"moduleDef","startIndex":0,"stopIndex":13767,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14930},{"__isSmartRef__":true,"id":14931},{"__isSmartRef__":true,"id":14955},{"__isSmartRef__":true,"id":14956},{"__isSmartRef__":true,"id":14959},{"__isSmartRef__":true,"id":14960},{"__isSmartRef__":true,"id":14974},{"__isSmartRef__":true,"id":14975},{"__isSmartRef__":true,"id":14991}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14930":{"name":null,"type":"comment","startIndex":59,"stopIndex":59,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14931":{"name":"lively.RunArray","type":"klassDef","startIndex":60,"stopIndex":6598,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14932},{"__isSmartRef__":true,"id":14934},{"__isSmartRef__":true,"id":14936},{"__isSmartRef__":true,"id":14937},{"__isSmartRef__":true,"id":14938},{"__isSmartRef__":true,"id":14939},{"__isSmartRef__":true,"id":14940},{"__isSmartRef__":true,"id":14941},{"__isSmartRef__":true,"id":14942},{"__isSmartRef__":true,"id":14943},{"__isSmartRef__":true,"id":14944},{"__isSmartRef__":true,"id":14945},{"__isSmartRef__":true,"id":14946},{"__isSmartRef__":true,"id":14947},{"__isSmartRef__":true,"id":14949},{"__isSmartRef__":true,"id":14950},{"__isSmartRef__":true,"id":14952},{"__isSmartRef__":true,"id":14953}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14933},{"__isSmartRef__":true,"id":14935},{"__isSmartRef__":true,"id":14948},{"__isSmartRef__":true,"id":14951},{"__isSmartRef__":true,"id":14954}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14932":{"name":"initialize","type":"propertyDef","startIndex":113,"stopIndex":487,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14933},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14933":{"name":"initializing","type":"categoryDef","startIndex":95,"stopIndex":490,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14932}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14934":{"name":"valueAt","type":"propertyDef","startIndex":507,"stopIndex":601,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14935":{"name":"accessing","type":"categoryDef","startIndex":492,"stopIndex":5035,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14934},{"__isSmartRef__":true,"id":14936},{"__isSmartRef__":true,"id":14937},{"__isSmartRef__":true,"id":14938},{"__isSmartRef__":true,"id":14939},{"__isSmartRef__":true,"id":14940},{"__isSmartRef__":true,"id":14941},{"__isSmartRef__":true,"id":14942},{"__isSmartRef__":true,"id":14943},{"__isSmartRef__":true,"id":14944},{"__isSmartRef__":true,"id":14945},{"__isSmartRef__":true,"id":14946}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14936":{"name":"runLengthAt","type":"propertyDef","startIndex":604,"stopIndex":711,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14937":{"name":"markAt","type":"propertyDef","startIndex":714,"stopIndex":1576,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14938":{"name":"slice","type":"propertyDef","startIndex":1579,"stopIndex":2186,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14939":{"name":"substring","type":"propertyDef","startIndex":2189,"stopIndex":2298,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14940":{"name":"concat","type":"propertyDef","startIndex":2301,"stopIndex":3028,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14941":{"name":"length","type":"propertyDef","startIndex":3031,"stopIndex":3148,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14942":{"name":"clone","type":"propertyDef","startIndex":3151,"stopIndex":3369,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14943":{"name":"mergeStyle","type":"propertyDef","startIndex":3372,"stopIndex":3895,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14944":{"name":"mergeAllStyle","type":"propertyDef","startIndex":3902,"stopIndex":4255,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14945":{"name":"mergeStyleFromRunArray","type":"propertyDef","startIndex":4257,"stopIndex":4501,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14946":{"name":"coalesce","type":"propertyDef","startIndex":4505,"stopIndex":5032,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14935},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14947":{"name":"empty","type":"propertyDef","startIndex":5050,"stopIndex":5126,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14948},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14948":{"name":"testing","type":"categoryDef","startIndex":5037,"stopIndex":5559,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14947},{"__isSmartRef__":true,"id":14949}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14949":{"name":"equalValues","type":"propertyDef","startIndex":5129,"stopIndex":5555,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14948},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14950":{"name":"asArray","type":"propertyDef","startIndex":5577,"stopIndex":5729,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14951},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14951":{"name":"conversion","type":"categoryDef","startIndex":5561,"stopIndex":5824,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14950},{"__isSmartRef__":true,"id":14952}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14952":{"name":"toString","type":"propertyDef","startIndex":5731,"stopIndex":5820,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14951},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14953":{"name":"valuesAndRangesDo","type":"propertyDef","startIndex":5843,"stopIndex":6591,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14954},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14954":{"name":"enumeration","type":"categoryDef","startIndex":5826,"stopIndex":6595,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14953}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14955":{"name":null,"type":"comment","startIndex":6599,"stopIndex":6599,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14956":{"name":"lively.RunArray","type":"klassExtensionDef","startIndex":6600,"stopIndex":7349,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14957}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":14958}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14957":{"name":"test","type":"propertyDef","startIndex":6633,"stopIndex":7345,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":14958},"className":"lively.RunArray","_owner":{"__isSmartRef__":true,"id":14956},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14958":{"name":"default category","type":"categoryDef","startIndex":6631,"stopIndex":7346,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14957}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14959":{"name":null,"type":"comment","startIndex":7350,"stopIndex":7354,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14960":{"name":"lively.RichText","type":"klassDef","startIndex":7355,"stopIndex":9318,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14961},{"__isSmartRef__":true,"id":14963},{"__isSmartRef__":true,"id":14965},{"__isSmartRef__":true,"id":14966},{"__isSmartRef__":true,"id":14967},{"__isSmartRef__":true,"id":14968},{"__isSmartRef__":true,"id":14969},{"__isSmartRef__":true,"id":14970},{"__isSmartRef__":true,"id":14971},{"__isSmartRef__":true,"id":14972}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14962},{"__isSmartRef__":true,"id":14964},{"__isSmartRef__":true,"id":14973}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14961":{"name":"initialize","type":"propertyDef","startIndex":7408,"stopIndex":7879,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14962},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14962":{"name":"initializing","type":"categoryDef","startIndex":7390,"stopIndex":7882,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14961}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14963":{"name":"emphasize","type":"propertyDef","startIndex":7909,"stopIndex":8235,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14964":{"name":"rich text interface","type":"categoryDef","startIndex":7884,"stopIndex":9098,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14963},{"__isSmartRef__":true,"id":14965},{"__isSmartRef__":true,"id":14966},{"__isSmartRef__":true,"id":14967},{"__isSmartRef__":true,"id":14968},{"__isSmartRef__":true,"id":14969},{"__isSmartRef__":true,"id":14970},{"__isSmartRef__":true,"id":14971}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14965":{"name":"emphasisAt","type":"propertyDef","startIndex":8237,"stopIndex":8306,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14966":{"name":"asString","type":"propertyDef","startIndex":8308,"stopIndex":8392,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14967":{"name":"size","type":"propertyDef","startIndex":8394,"stopIndex":8446,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14968":{"name":"substring","type":"propertyDef","startIndex":8448,"stopIndex":8636,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14969":{"name":"subtext","type":"propertyDef","startIndex":8638,"stopIndex":8825,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14970":{"name":"concat","type":"propertyDef","startIndex":8827,"stopIndex":9006,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14971":{"name":"toString","type":"propertyDef","startIndex":9008,"stopIndex":9095,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14964},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14972":{"name":"applyToMorph","type":"propertyDef","startIndex":9115,"stopIndex":9313,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14973},"className":"lively.RichText","_owner":{"__isSmartRef__":true,"id":14960},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14973":{"name":"rendering","type":"categoryDef","startIndex":9100,"stopIndex":9315,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14972}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14974":{"name":null,"type":"comment","startIndex":9319,"stopIndex":9320,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14975":{"name":"lively.TextEmphasis","type":"klassDef","startIndex":9321,"stopIndex":13745,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14976},{"__isSmartRef__":true,"id":14978},{"__isSmartRef__":true,"id":14979},{"__isSmartRef__":true,"id":14981},{"__isSmartRef__":true,"id":14983},{"__isSmartRef__":true,"id":14984},{"__isSmartRef__":true,"id":14985},{"__isSmartRef__":true,"id":14987},{"__isSmartRef__":true,"id":14989}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14977},{"__isSmartRef__":true,"id":14980},{"__isSmartRef__":true,"id":14982},{"__isSmartRef__":true,"id":14986},{"__isSmartRef__":true,"id":14988},{"__isSmartRef__":true,"id":14990}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14976":{"name":"initialize","type":"propertyDef","startIndex":9378,"stopIndex":9477,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14977},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14977":{"name":"initializing","type":"categoryDef","startIndex":9360,"stopIndex":9542,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14976},{"__isSmartRef__":true,"id":14978}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14978":{"name":"clone","type":"propertyDef","startIndex":9479,"stopIndex":9539,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14977},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14979":{"name":"merge","type":"propertyDef","startIndex":9557,"stopIndex":10557,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14980},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14980":{"name":"merging","type":"categoryDef","startIndex":9544,"stopIndex":10560,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14979}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14981":{"name":"applyToMorph","type":"propertyDef","startIndex":10576,"stopIndex":10674,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14982},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14982":{"name":"applying","type":"categoryDef","startIndex":10562,"stopIndex":13196,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14981},{"__isSmartRef__":true,"id":14983},{"__isSmartRef__":true,"id":14984}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14983":{"name":"applyToMorphHTML","type":"propertyDef","startIndex":10677,"stopIndex":12391,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14982},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14984":{"name":"applyToMorphSelectionHTML","type":"propertyDef","startIndex":12393,"stopIndex":13193,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14982},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14985":{"name":"setBold","type":"propertyDef","startIndex":13211,"stopIndex":13433,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14986},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14986":{"name":"styling","type":"categoryDef","startIndex":13198,"stopIndex":13436,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14985}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14987":{"name":"isBold","type":"propertyDef","startIndex":13451,"stopIndex":13553,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14988},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14988":{"name":"testing","type":"categoryDef","startIndex":13438,"stopIndex":13556,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14987}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14989":{"name":"toString","type":"propertyDef","startIndex":13574,"stopIndex":13740,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14990},"className":"lively.TextEmphasis","_owner":{"__isSmartRef__":true,"id":14975},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14990":{"name":"conversion","type":"categoryDef","startIndex":13558,"stopIndex":13742,"fileName":"lively/TextSupport.js","_subElements":[{"__isSmartRef__":true,"id":14989}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14991":{"name":null,"type":"comment","startIndex":13746,"stopIndex":13746,"fileName":"lively/TextSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14992":{"target":{"__isSmartRef__":true,"id":14993},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/TileScripting.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"14993":{"name":"lively.TileScripting","type":"moduleDef","startIndex":1187,"stopIndex":30468,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":14994},{"__isSmartRef__":true,"id":14995},{"__isSmartRef__":true,"id":15001},{"__isSmartRef__":true,"id":15002},{"__isSmartRef__":true,"id":15006},{"__isSmartRef__":true,"id":15007},{"__isSmartRef__":true,"id":15011},{"__isSmartRef__":true,"id":15012},{"__isSmartRef__":true,"id":15015},{"__isSmartRef__":true,"id":15016},{"__isSmartRef__":true,"id":15017},{"__isSmartRef__":true,"id":15018},{"__isSmartRef__":true,"id":15023},{"__isSmartRef__":true,"id":15024},{"__isSmartRef__":true,"id":15028},{"__isSmartRef__":true,"id":15035},{"__isSmartRef__":true,"id":15036},{"__isSmartRef__":true,"id":15039},{"__isSmartRef__":true,"id":15040},{"__isSmartRef__":true,"id":15047},{"__isSmartRef__":true,"id":15048},{"__isSmartRef__":true,"id":15051},{"__isSmartRef__":true,"id":15052},{"__isSmartRef__":true,"id":15068},{"__isSmartRef__":true,"id":15069},{"__isSmartRef__":true,"id":15079},{"__isSmartRef__":true,"id":15080},{"__isSmartRef__":true,"id":15087},{"__isSmartRef__":true,"id":15088},{"__isSmartRef__":true,"id":15100},{"__isSmartRef__":true,"id":15101},{"__isSmartRef__":true,"id":15104},{"__isSmartRef__":true,"id":15105},{"__isSmartRef__":true,"id":15115},{"__isSmartRef__":true,"id":15116},{"__isSmartRef__":true,"id":15122},{"__isSmartRef__":true,"id":15123},{"__isSmartRef__":true,"id":15128},{"__isSmartRef__":true,"id":15129},{"__isSmartRef__":true,"id":15140},{"__isSmartRef__":true,"id":15141},{"__isSmartRef__":true,"id":15155}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14994":{"name":null,"type":"comment","startIndex":1248,"stopIndex":1311,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14995":{"name":"Layout","type":"klassDef","startIndex":1312,"stopIndex":2562,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":14996},{"__isSmartRef__":true,"id":14998},{"__isSmartRef__":true,"id":14999},{"__isSmartRef__":true,"id":15000}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":14997}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14996":{"name":"initialize","type":"propertyDef","startIndex":1345,"stopIndex":1480,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14997},"className":"Layout","_owner":{"__isSmartRef__":true,"id":14995},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14997":{"name":"default category","type":"categoryDef","startIndex":1338,"stopIndex":2559,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":14996},{"__isSmartRef__":true,"id":14998},{"__isSmartRef__":true,"id":14999},{"__isSmartRef__":true,"id":15000}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14998":{"name":"layout","type":"propertyDef","startIndex":1487,"stopIndex":2413,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14997},"className":"Layout","_owner":{"__isSmartRef__":true,"id":14995},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"14999":{"name":"newPosition","type":"propertyDef","startIndex":2420,"stopIndex":2520,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14997},"className":"Layout","_owner":{"__isSmartRef__":true,"id":14995},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15000":{"name":"centerMorphs","type":"propertyDef","startIndex":2527,"stopIndex":2558,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":14997},"className":"Layout","_owner":{"__isSmartRef__":true,"id":14995},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15001":{"name":null,"type":"comment","startIndex":2563,"stopIndex":2563,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15002":{"name":"VLayout","type":"klassDef","startIndex":2564,"stopIndex":3016,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15003},{"__isSmartRef__":true,"id":15005}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Layout","categories":[{"__isSmartRef__":true,"id":15004}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15003":{"name":"newPosition","type":"propertyDef","startIndex":2598,"stopIndex":2748,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15004},"className":"VLayout","_owner":{"__isSmartRef__":true,"id":15002},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15004":{"name":"default category","type":"categoryDef","startIndex":2591,"stopIndex":3013,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15003},{"__isSmartRef__":true,"id":15005}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15005":{"name":"centerMorphs","type":"propertyDef","startIndex":2755,"stopIndex":3012,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15004},"className":"VLayout","_owner":{"__isSmartRef__":true,"id":15002},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15006":{"name":null,"type":"comment","startIndex":3017,"stopIndex":3017,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15007":{"name":"HLayout","type":"klassDef","startIndex":3018,"stopIndex":3462,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15008},{"__isSmartRef__":true,"id":15010}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Layout","categories":[{"__isSmartRef__":true,"id":15009}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15008":{"name":"newPosition","type":"propertyDef","startIndex":3052,"stopIndex":3194,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15009},"className":"HLayout","_owner":{"__isSmartRef__":true,"id":15007},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15009":{"name":"default category","type":"categoryDef","startIndex":3045,"stopIndex":3459,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15008},{"__isSmartRef__":true,"id":15010}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15010":{"name":"centerMorphs","type":"propertyDef","startIndex":3201,"stopIndex":3458,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15009},"className":"HLayout","_owner":{"__isSmartRef__":true,"id":15007},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15011":{"name":null,"type":"comment","startIndex":3463,"stopIndex":3519,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15012":{"name":"Morph","type":"klassExtensionDef","startIndex":3520,"stopIndex":3752,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15013}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15014}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15013":{"name":"layout","type":"propertyDef","startIndex":3539,"stopIndex":3748,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15014},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15012},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15014":{"name":"default category","type":"categoryDef","startIndex":3537,"stopIndex":3749,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15013}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15015":{"name":null,"type":"comment","startIndex":3753,"stopIndex":3753,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15016":{"name":"removeMorph","type":"propertyDef","startIndex":3754,"stopIndex":3903,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Morph","_isStatic":false,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15017":{"name":null,"type":"comment","startIndex":3904,"stopIndex":3905,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15018":{"name":"Morph","type":"klassExtensionDef","startIndex":3906,"stopIndex":4445,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15019},{"__isSmartRef__":true,"id":15021},{"__isSmartRef__":true,"id":15022}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15020}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15019":{"name":"layout","type":"propertyDef","startIndex":3925,"stopIndex":4139,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15020},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15018},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15020":{"name":"default category","type":"categoryDef","startIndex":3923,"stopIndex":4442,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15019},{"__isSmartRef__":true,"id":15021},{"__isSmartRef__":true,"id":15022}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15021":{"name":"asTile","type":"propertyDef","startIndex":4141,"stopIndex":4222,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15020},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15018},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15022":{"name":"morphMenu","type":"propertyDef","startIndex":4224,"stopIndex":4440,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15020},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15018},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15023":{"name":null,"type":"comment","startIndex":4446,"stopIndex":4446,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15024":{"name":"lively.TileScripting.TileBoxPanel","type":"klassDef","startIndex":4447,"stopIndex":4932,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15025},{"__isSmartRef__":true,"id":15027}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PanelMorph","categories":[{"__isSmartRef__":true,"id":15026}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15025":{"name":"documentation","type":"propertyDef","startIndex":4507,"stopIndex":4611,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15026},"className":"lively.TileScripting.TileBoxPanel","_owner":{"__isSmartRef__":true,"id":15024},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15026":{"name":"default category","type":"categoryDef","startIndex":4504,"stopIndex":4930,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15025},{"__isSmartRef__":true,"id":15027}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15027":{"name":"onDeserialize","type":"propertyDef","startIndex":4614,"stopIndex":4929,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15026},"className":"lively.TileScripting.TileBoxPanel","_owner":{"__isSmartRef__":true,"id":15024},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15028":{"name":"lively.TileScripting.TileBox","type":"klassDef","startIndex":4933,"stopIndex":7479,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15029},{"__isSmartRef__":true,"id":15031},{"__isSmartRef__":true,"id":15032},{"__isSmartRef__":true,"id":15033},{"__isSmartRef__":true,"id":15034}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":15030}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15029":{"name":"documentation","type":"propertyDef","startIndex":4984,"stopIndex":5040,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15030},"className":"lively.TileScripting.TileBox","_owner":{"__isSmartRef__":true,"id":15028},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15030":{"name":"default category","type":"categoryDef","startIndex":4981,"stopIndex":7476,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15029},{"__isSmartRef__":true,"id":15031},{"__isSmartRef__":true,"id":15032},{"__isSmartRef__":true,"id":15033},{"__isSmartRef__":true,"id":15034}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15031":{"name":"viewTitle","type":"propertyDef","startIndex":5043,"stopIndex":5068,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15030},"className":"lively.TileScripting.TileBox","_owner":{"__isSmartRef__":true,"id":15028},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15032":{"name":"viewExtent","type":"propertyDef","startIndex":5070,"stopIndex":5097,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15030},"className":"lively.TileScripting.TileBox","_owner":{"__isSmartRef__":true,"id":15028},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15033":{"name":"add","type":"propertyDef","startIndex":5108,"stopIndex":6175,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15030},"className":"lively.TileScripting.TileBox","_owner":{"__isSmartRef__":true,"id":15028},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15034":{"name":"buildView","type":"propertyDef","startIndex":6182,"stopIndex":7475,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15030},"className":"lively.TileScripting.TileBox","_owner":{"__isSmartRef__":true,"id":15028},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15035":{"name":null,"type":"comment","startIndex":7480,"stopIndex":7480,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15036":{"name":"lively.TileScripting.TileBox","type":"klassExtensionDef","startIndex":7481,"stopIndex":7687,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15037}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15038}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15037":{"name":"open","type":"propertyDef","startIndex":7527,"stopIndex":7683,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15038},"className":"lively.TileScripting.TileBox","_owner":{"__isSmartRef__":true,"id":15036},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15038":{"name":"default category","type":"categoryDef","startIndex":7525,"stopIndex":7684,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15037}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15039":{"name":null,"type":"comment","startIndex":7688,"stopIndex":7688,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15040":{"name":"lively.TileScripting.ScriptEnvironment","type":"klassDef","startIndex":7689,"stopIndex":10097,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15041},{"__isSmartRef__":true,"id":15043},{"__isSmartRef__":true,"id":15044},{"__isSmartRef__":true,"id":15045},{"__isSmartRef__":true,"id":15046}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":15042}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15041":{"name":"documentation","type":"propertyDef","startIndex":7754,"stopIndex":7828,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15042},"className":"lively.TileScripting.ScriptEnvironment","_owner":{"__isSmartRef__":true,"id":15040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15042":{"name":"default category","type":"categoryDef","startIndex":7747,"stopIndex":10094,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15041},{"__isSmartRef__":true,"id":15043},{"__isSmartRef__":true,"id":15044},{"__isSmartRef__":true,"id":15045},{"__isSmartRef__":true,"id":15046}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15043":{"name":"viewTitle","type":"propertyDef","startIndex":7831,"stopIndex":7857,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15042},"className":"lively.TileScripting.ScriptEnvironment","_owner":{"__isSmartRef__":true,"id":15040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15044":{"name":"viewExtent","type":"propertyDef","startIndex":7859,"stopIndex":7886,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15042},"className":"lively.TileScripting.ScriptEnvironment","_owner":{"__isSmartRef__":true,"id":15040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15045":{"name":"buildView","type":"propertyDef","startIndex":7893,"stopIndex":9478,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15042},"className":"lively.TileScripting.ScriptEnvironment","_owner":{"__isSmartRef__":true,"id":15040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15046":{"name":"openIn","type":"propertyDef","startIndex":9480,"stopIndex":10093,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15042},"className":"lively.TileScripting.ScriptEnvironment","_owner":{"__isSmartRef__":true,"id":15040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15047":{"name":null,"type":"comment","startIndex":10098,"stopIndex":10101,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15048":{"name":"lively.TileScripting.ScriptEnvironment","type":"klassExtensionDef","startIndex":10102,"stopIndex":10325,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15049}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15050}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15049":{"name":"open","type":"propertyDef","startIndex":10158,"stopIndex":10321,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15050},"className":"lively.TileScripting.ScriptEnvironment","_owner":{"__isSmartRef__":true,"id":15048},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15050":{"name":"default category","type":"categoryDef","startIndex":10156,"stopIndex":10322,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15049}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15051":{"name":null,"type":"comment","startIndex":10326,"stopIndex":10326,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15052":{"name":"lively.TileScripting.TileHolder","type":"klassDef","startIndex":10327,"stopIndex":14162,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15053},{"__isSmartRef__":true,"id":15055},{"__isSmartRef__":true,"id":15056},{"__isSmartRef__":true,"id":15057},{"__isSmartRef__":true,"id":15058},{"__isSmartRef__":true,"id":15059},{"__isSmartRef__":true,"id":15060},{"__isSmartRef__":true,"id":15061},{"__isSmartRef__":true,"id":15062},{"__isSmartRef__":true,"id":15063},{"__isSmartRef__":true,"id":15064},{"__isSmartRef__":true,"id":15065},{"__isSmartRef__":true,"id":15066},{"__isSmartRef__":true,"id":15067}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15054}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15053":{"name":"documentation","type":"propertyDef","startIndex":10387,"stopIndex":10449,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15054":{"name":"default category","type":"categoryDef","startIndex":10380,"stopIndex":14159,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15053},{"__isSmartRef__":true,"id":15055},{"__isSmartRef__":true,"id":15056},{"__isSmartRef__":true,"id":15057},{"__isSmartRef__":true,"id":15058},{"__isSmartRef__":true,"id":15059},{"__isSmartRef__":true,"id":15060},{"__isSmartRef__":true,"id":15061},{"__isSmartRef__":true,"id":15062},{"__isSmartRef__":true,"id":15063},{"__isSmartRef__":true,"id":15064},{"__isSmartRef__":true,"id":15065},{"__isSmartRef__":true,"id":15066},{"__isSmartRef__":true,"id":15067}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15055":{"name":"layoutSpec","type":"propertyDef","startIndex":10452,"stopIndex":10492,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15056":{"name":"dropAreaExtent","type":"propertyDef","startIndex":10494,"stopIndex":10523,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15057":{"name":"formals","type":"propertyDef","startIndex":10525,"stopIndex":10547,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15058":{"name":"initialize","type":"propertyDef","startIndex":10554,"stopIndex":10851,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15059":{"name":"onDeserialize","type":"propertyDef","startIndex":10858,"stopIndex":11285,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15060":{"name":"addMorph","type":"propertyDef","startIndex":11292,"stopIndex":11547,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15061":{"name":"ensureEmptyDropAreaExists","type":"propertyDef","startIndex":11554,"stopIndex":11730,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15062":{"name":"addDropArea","type":"propertyDef","startIndex":11737,"stopIndex":12282,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15063":{"name":"tilesAsJs","type":"propertyDef","startIndex":12289,"stopIndex":12495,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15064":{"name":"runScript","type":"propertyDef","startIndex":12502,"stopIndex":12919,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15065":{"name":"repeatScript","type":"propertyDef","startIndex":12926,"stopIndex":13460,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15066":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":13467,"stopIndex":13502,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15067":{"name":"layoutChanged","type":"propertyDef","startIndex":13510,"stopIndex":14158,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15054},"className":"lively.TileScripting.TileHolder","_owner":{"__isSmartRef__":true,"id":15052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15068":{"name":null,"type":"comment","startIndex":14163,"stopIndex":14163,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15069":{"name":"lively.TileScripting.Tile","type":"klassDef","startIndex":14164,"stopIndex":14907,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15070},{"__isSmartRef__":true,"id":15072},{"__isSmartRef__":true,"id":15073},{"__isSmartRef__":true,"id":15074},{"__isSmartRef__":true,"id":15075},{"__isSmartRef__":true,"id":15076},{"__isSmartRef__":true,"id":15077},{"__isSmartRef__":true,"id":15078}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15071}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15070":{"name":"documentation","type":"propertyDef","startIndex":14214,"stopIndex":14245,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15071":{"name":"default category","type":"categoryDef","startIndex":14211,"stopIndex":14904,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15070},{"__isSmartRef__":true,"id":15072},{"__isSmartRef__":true,"id":15073},{"__isSmartRef__":true,"id":15074},{"__isSmartRef__":true,"id":15075},{"__isSmartRef__":true,"id":15076},{"__isSmartRef__":true,"id":15077},{"__isSmartRef__":true,"id":15078}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15072":{"name":"isTile","type":"propertyDef","startIndex":14248,"stopIndex":14264,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15073":{"name":"defaultExtent","type":"propertyDef","startIndex":14266,"stopIndex":14295,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15074":{"name":"layoutSpec","type":"propertyDef","startIndex":14297,"stopIndex":14351,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15075":{"name":"style","type":"propertyDef","startIndex":14353,"stopIndex":14413,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15076":{"name":"initialize","type":"propertyDef","startIndex":14420,"stopIndex":14571,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15077":{"name":"addMorph","type":"propertyDef","startIndex":14578,"stopIndex":14691,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15078":{"name":"asJs","type":"propertyDef","startIndex":14856,"stopIndex":14903,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15071},"className":"lively.TileScripting.Tile","_owner":{"__isSmartRef__":true,"id":15069},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15079":{"name":null,"type":"comment","startIndex":14908,"stopIndex":14908,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15080":{"name":"lively.TileScripting.DebugTile","type":"klassDef","startIndex":14909,"stopIndex":15502,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15081},{"__isSmartRef__":true,"id":15083},{"__isSmartRef__":true,"id":15084},{"__isSmartRef__":true,"id":15085},{"__isSmartRef__":true,"id":15086}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.TileScripting.Tile","categories":[{"__isSmartRef__":true,"id":15082}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15081":{"name":"documentation","type":"propertyDef","startIndex":14985,"stopIndex":15030,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15082},"className":"lively.TileScripting.DebugTile","_owner":{"__isSmartRef__":true,"id":15080},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15082":{"name":"default category","type":"categoryDef","startIndex":14978,"stopIndex":15499,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15081},{"__isSmartRef__":true,"id":15083},{"__isSmartRef__":true,"id":15084},{"__isSmartRef__":true,"id":15085},{"__isSmartRef__":true,"id":15086}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15083":{"name":"defaultExtent","type":"propertyDef","startIndex":15033,"stopIndex":15062,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15082},"className":"lively.TileScripting.DebugTile","_owner":{"__isSmartRef__":true,"id":15080},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15084":{"name":"layoutSpec","type":"propertyDef","startIndex":15064,"stopIndex":15101,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15082},"className":"lively.TileScripting.DebugTile","_owner":{"__isSmartRef__":true,"id":15080},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15085":{"name":"initialize","type":"propertyDef","startIndex":15108,"stopIndex":15426,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15082},"className":"lively.TileScripting.DebugTile","_owner":{"__isSmartRef__":true,"id":15080},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15086":{"name":"asJs","type":"propertyDef","startIndex":15433,"stopIndex":15498,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15082},"className":"lively.TileScripting.DebugTile","_owner":{"__isSmartRef__":true,"id":15080},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15087":{"name":null,"type":"comment","startIndex":15503,"stopIndex":15503,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15088":{"name":"lively.TileScripting.ObjectTile","type":"klassDef","startIndex":15504,"stopIndex":17730,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15089},{"__isSmartRef__":true,"id":15091},{"__isSmartRef__":true,"id":15092},{"__isSmartRef__":true,"id":15093},{"__isSmartRef__":true,"id":15094},{"__isSmartRef__":true,"id":15095},{"__isSmartRef__":true,"id":15096},{"__isSmartRef__":true,"id":15097},{"__isSmartRef__":true,"id":15098},{"__isSmartRef__":true,"id":15099}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.TileScripting.Tile","categories":[{"__isSmartRef__":true,"id":15090}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15089":{"name":"documentation","type":"propertyDef","startIndex":15581,"stopIndex":15638,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15090":{"name":"default category","type":"categoryDef","startIndex":15574,"stopIndex":17727,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15089},{"__isSmartRef__":true,"id":15091},{"__isSmartRef__":true,"id":15092},{"__isSmartRef__":true,"id":15093},{"__isSmartRef__":true,"id":15094},{"__isSmartRef__":true,"id":15095},{"__isSmartRef__":true,"id":15096},{"__isSmartRef__":true,"id":15097},{"__isSmartRef__":true,"id":15098},{"__isSmartRef__":true,"id":15099}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15091":{"name":"initialize","type":"propertyDef","startIndex":15641,"stopIndex":16038,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15092":{"name":"onDeserialize","type":"propertyDef","startIndex":16045,"stopIndex":16169,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15093":{"name":"createAlias","type":"propertyDef","startIndex":16176,"stopIndex":16356,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15094":{"name":"objectId","type":"propertyDef","startIndex":16363,"stopIndex":16433,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15095":{"name":"objectName","type":"propertyDef","startIndex":16435,"stopIndex":16558,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15096":{"name":"addMenuButton","type":"propertyDef","startIndex":16570,"stopIndex":16935,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15097":{"name":"addFunctionTile","type":"propertyDef","startIndex":16942,"stopIndex":17161,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15098":{"name":"openMenu","type":"propertyDef","startIndex":17168,"stopIndex":17497,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15099":{"name":"asJs","type":"propertyDef","startIndex":17504,"stopIndex":17726,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15090},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15088},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15100":{"name":null,"type":"comment","startIndex":17731,"stopIndex":17731,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15101":{"name":"lively.TileScripting.ObjectTile","type":"klassExtensionDef","startIndex":17732,"stopIndex":17991,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15102}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15103}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15102":{"name":"findMorph","type":"propertyDef","startIndex":17781,"stopIndex":17986,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15103},"className":"lively.TileScripting.ObjectTile","_owner":{"__isSmartRef__":true,"id":15101},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15103":{"name":"default category","type":"categoryDef","startIndex":17779,"stopIndex":17988,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15102}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15104":{"name":null,"type":"comment","startIndex":17992,"stopIndex":17992,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15105":{"name":"lively.TileScripting.TileMenuCreator","type":"klassDef","startIndex":17993,"stopIndex":25257,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15106},{"__isSmartRef__":true,"id":15108},{"__isSmartRef__":true,"id":15109},{"__isSmartRef__":true,"id":15110},{"__isSmartRef__":true,"id":15111},{"__isSmartRef__":true,"id":15112},{"__isSmartRef__":true,"id":15113},{"__isSmartRef__":true,"id":15114}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15107}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15106":{"name":"documentation","type":"propertyDef","startIndex":18056,"stopIndex":18142,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15107":{"name":"default category","type":"categoryDef","startIndex":18049,"stopIndex":25254,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15106},{"__isSmartRef__":true,"id":15108},{"__isSmartRef__":true,"id":15109},{"__isSmartRef__":true,"id":15110},{"__isSmartRef__":true,"id":15111},{"__isSmartRef__":true,"id":15112},{"__isSmartRef__":true,"id":15113},{"__isSmartRef__":true,"id":15114}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15108":{"name":"initialize","type":"propertyDef","startIndex":18145,"stopIndex":18247,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15109":{"name":"classes","type":"propertyDef","startIndex":18254,"stopIndex":18445,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15110":{"name":"classNames","type":"propertyDef","startIndex":18452,"stopIndex":18531,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15111":{"name":"methodNamesFor","type":"propertyDef","startIndex":18538,"stopIndex":18803,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15112":{"name":"createMenu","type":"propertyDef","startIndex":18810,"stopIndex":19003,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15113":{"name":"addClassMenuItem","type":"propertyDef","startIndex":19010,"stopIndex":19294,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15114":{"name":"ignoredMethods","type":"propertyDef","startIndex":19301,"stopIndex":25253,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15107},"className":"lively.TileScripting.TileMenuCreator","_owner":{"__isSmartRef__":true,"id":15105},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15115":{"name":null,"type":"comment","startIndex":25258,"stopIndex":25258,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15116":{"name":"lively.TileScripting.FunctionTile","type":"klassDef","startIndex":25259,"stopIndex":26413,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15117},{"__isSmartRef__":true,"id":15119},{"__isSmartRef__":true,"id":15120},{"__isSmartRef__":true,"id":15121}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.TileScripting.Tile","categories":[{"__isSmartRef__":true,"id":15118}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15117":{"name":"documentation","type":"propertyDef","startIndex":25338,"stopIndex":25383,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15118},"className":"lively.TileScripting.FunctionTile","_owner":{"__isSmartRef__":true,"id":15116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15118":{"name":"default category","type":"categoryDef","startIndex":25331,"stopIndex":26410,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15117},{"__isSmartRef__":true,"id":15119},{"__isSmartRef__":true,"id":15120},{"__isSmartRef__":true,"id":15121}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15119":{"name":"initialize","type":"propertyDef","startIndex":25386,"stopIndex":25797,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15118},"className":"lively.TileScripting.FunctionTile","_owner":{"__isSmartRef__":true,"id":15116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15120":{"name":"addDropArea","type":"propertyDef","startIndex":25804,"stopIndex":26114,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15118},"className":"lively.TileScripting.FunctionTile","_owner":{"__isSmartRef__":true,"id":15116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15121":{"name":"asJs","type":"propertyDef","startIndex":26121,"stopIndex":26409,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15118},"className":"lively.TileScripting.FunctionTile","_owner":{"__isSmartRef__":true,"id":15116},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15122":{"name":null,"type":"comment","startIndex":26414,"stopIndex":26414,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15123":{"name":"lively.TileScripting.IfTile","type":"klassDef","startIndex":26415,"stopIndex":27087,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15124},{"__isSmartRef__":true,"id":15126},{"__isSmartRef__":true,"id":15127}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.TileScripting.Tile","categories":[{"__isSmartRef__":true,"id":15125}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15124":{"name":"documentation","type":"propertyDef","startIndex":26488,"stopIndex":26522,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15125},"className":"lively.TileScripting.IfTile","_owner":{"__isSmartRef__":true,"id":15123},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15125":{"name":"default category","type":"categoryDef","startIndex":26481,"stopIndex":27084,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15124},{"__isSmartRef__":true,"id":15126},{"__isSmartRef__":true,"id":15127}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15126":{"name":"initialize","type":"propertyDef","startIndex":26525,"stopIndex":26939,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15125},"className":"lively.TileScripting.IfTile","_owner":{"__isSmartRef__":true,"id":15123},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15127":{"name":"asJs","type":"propertyDef","startIndex":26946,"stopIndex":27083,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15125},"className":"lively.TileScripting.IfTile","_owner":{"__isSmartRef__":true,"id":15123},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15128":{"name":null,"type":"comment","startIndex":27088,"stopIndex":27088,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15129":{"name":"lively.TileScripting.NumberTile","type":"klassDef","startIndex":27089,"stopIndex":28837,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15130},{"__isSmartRef__":true,"id":15132},{"__isSmartRef__":true,"id":15133},{"__isSmartRef__":true,"id":15134},{"__isSmartRef__":true,"id":15135},{"__isSmartRef__":true,"id":15136},{"__isSmartRef__":true,"id":15137},{"__isSmartRef__":true,"id":15138},{"__isSmartRef__":true,"id":15139}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"lively.TileScripting.Tile","categories":[{"__isSmartRef__":true,"id":15131}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15130":{"name":"documentation","type":"propertyDef","startIndex":27166,"stopIndex":27203,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15131":{"name":"default category","type":"categoryDef","startIndex":27159,"stopIndex":28834,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15130},{"__isSmartRef__":true,"id":15132},{"__isSmartRef__":true,"id":15133},{"__isSmartRef__":true,"id":15134},{"__isSmartRef__":true,"id":15135},{"__isSmartRef__":true,"id":15136},{"__isSmartRef__":true,"id":15137},{"__isSmartRef__":true,"id":15138},{"__isSmartRef__":true,"id":15139}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15132":{"name":"layoutSpec","type":"propertyDef","startIndex":27206,"stopIndex":27257,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15133":{"name":"eps","type":"propertyDef","startIndex":27259,"stopIndex":27273,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15134":{"name":"initialize","type":"propertyDef","startIndex":27280,"stopIndex":27534,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15135":{"name":"onDeserialize","type":"propertyDef","startIndex":27541,"stopIndex":27677,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15136":{"name":"addUpDownButtons","type":"propertyDef","startIndex":27680,"stopIndex":28140,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15137":{"name":"countUp","type":"propertyDef","startIndex":28147,"stopIndex":28444,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15138":{"name":"countDown","type":"propertyDef","startIndex":28451,"stopIndex":28750,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15139":{"name":"asJs","type":"propertyDef","startIndex":28757,"stopIndex":28833,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15131},"className":"lively.TileScripting.NumberTile","_owner":{"__isSmartRef__":true,"id":15129},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15140":{"name":null,"type":"comment","startIndex":28838,"stopIndex":28838,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15141":{"name":"lively.TileScripting.DropArea","type":"klassDef","startIndex":28839,"stopIndex":30464,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15142},{"__isSmartRef__":true,"id":15144},{"__isSmartRef__":true,"id":15145},{"__isSmartRef__":true,"id":15146},{"__isSmartRef__":true,"id":15147},{"__isSmartRef__":true,"id":15148},{"__isSmartRef__":true,"id":15149},{"__isSmartRef__":true,"id":15150},{"__isSmartRef__":true,"id":15151},{"__isSmartRef__":true,"id":15152},{"__isSmartRef__":true,"id":15153},{"__isSmartRef__":true,"id":15154}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15143}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15142":{"name":"documentation","type":"propertyDef","startIndex":28893,"stopIndex":28949,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15143":{"name":"default category","type":"categoryDef","startIndex":28890,"stopIndex":30461,"fileName":"lively/TileScripting.js","_subElements":[{"__isSmartRef__":true,"id":15142},{"__isSmartRef__":true,"id":15144},{"__isSmartRef__":true,"id":15145},{"__isSmartRef__":true,"id":15146},{"__isSmartRef__":true,"id":15147},{"__isSmartRef__":true,"id":15148},{"__isSmartRef__":true,"id":15149},{"__isSmartRef__":true,"id":15150},{"__isSmartRef__":true,"id":15151},{"__isSmartRef__":true,"id":15152},{"__isSmartRef__":true,"id":15153},{"__isSmartRef__":true,"id":15154}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15144":{"name":"isDropArea","type":"propertyDef","startIndex":28952,"stopIndex":28972,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15145":{"name":"layoutSpec","type":"propertyDef","startIndex":28974,"stopIndex":29014,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15146":{"name":"style","type":"propertyDef","startIndex":29016,"stopIndex":29071,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15147":{"name":"initialize","type":"propertyDef","startIndex":29078,"stopIndex":29286,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15148":{"name":"styleNormal","type":"propertyDef","startIndex":29293,"stopIndex":29362,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15149":{"name":"styleCanReceiveTile","type":"propertyDef","startIndex":29369,"stopIndex":29457,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15150":{"name":"tile","type":"propertyDef","startIndex":29464,"stopIndex":29565,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15151":{"name":"addMorph","type":"propertyDef","startIndex":29576,"stopIndex":30042,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15152":{"name":"onMouseOver","type":"propertyDef","startIndex":30049,"stopIndex":30264,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15153":{"name":"onMouseOut","type":"propertyDef","startIndex":30271,"stopIndex":30336,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15154":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":30343,"stopIndex":30460,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15143},"className":"lively.TileScripting.DropArea","_owner":{"__isSmartRef__":true,"id":15141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15155":{"name":null,"type":"comment","startIndex":30465,"stopIndex":30465,"fileName":"lively/TileScripting.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15156":{"target":{"__isSmartRef__":true,"id":15157},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Tools.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"15157":{"name":"lively.Tools","type":"moduleDef","startIndex":1347,"stopIndex":86834,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15158},{"__isSmartRef__":true,"id":15159},{"__isSmartRef__":true,"id":15176},{"__isSmartRef__":true,"id":15177},{"__isSmartRef__":true,"id":15187},{"__isSmartRef__":true,"id":15188},{"__isSmartRef__":true,"id":15200},{"__isSmartRef__":true,"id":15203},{"__isSmartRef__":true,"id":15216},{"__isSmartRef__":true,"id":15219},{"__isSmartRef__":true,"id":15226},{"__isSmartRef__":true,"id":15229},{"__isSmartRef__":true,"id":15232},{"__isSmartRef__":true,"id":15233},{"__isSmartRef__":true,"id":15254},{"__isSmartRef__":true,"id":15255},{"__isSmartRef__":true,"id":15256},{"__isSmartRef__":true,"id":15257},{"__isSmartRef__":true,"id":15258},{"__isSmartRef__":true,"id":15259},{"__isSmartRef__":true,"id":15305},{"__isSmartRef__":true,"id":15306},{"__isSmartRef__":true,"id":15319},{"__isSmartRef__":true,"id":15320},{"__isSmartRef__":true,"id":15326},{"__isSmartRef__":true,"id":15327},{"__isSmartRef__":true,"id":15334},{"__isSmartRef__":true,"id":15335},{"__isSmartRef__":true,"id":15343},{"__isSmartRef__":true,"id":15344},{"__isSmartRef__":true,"id":15354},{"__isSmartRef__":true,"id":15355},{"__isSmartRef__":true,"id":15369},{"__isSmartRef__":true,"id":15370},{"__isSmartRef__":true,"id":15392},{"__isSmartRef__":true,"id":15417},{"__isSmartRef__":true,"id":15418},{"__isSmartRef__":true,"id":15419},{"__isSmartRef__":true,"id":15420},{"__isSmartRef__":true,"id":15421},{"__isSmartRef__":true,"id":15422},{"__isSmartRef__":true,"id":15428},{"__isSmartRef__":true,"id":15429},{"__isSmartRef__":true,"id":15434}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15158":{"name":null,"type":"comment","startIndex":1480,"stopIndex":1699,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15159":{"name":"SimpleBrowser","type":"klassDef","startIndex":1700,"stopIndex":8548,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15160},{"__isSmartRef__":true,"id":15162},{"__isSmartRef__":true,"id":15164},{"__isSmartRef__":true,"id":15165},{"__isSmartRef__":true,"id":15167},{"__isSmartRef__":true,"id":15168},{"__isSmartRef__":true,"id":15169},{"__isSmartRef__":true,"id":15170},{"__isSmartRef__":true,"id":15171},{"__isSmartRef__":true,"id":15172},{"__isSmartRef__":true,"id":15174}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":15161},{"__isSmartRef__":true,"id":15163},{"__isSmartRef__":true,"id":15166},{"__isSmartRef__":true,"id":15173},{"__isSmartRef__":true,"id":15175}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15160":{"name":"viewTitle","type":"propertyDef","startIndex":1747,"stopIndex":1784,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15161},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15161":{"name":"settings","type":"categoryDef","startIndex":1733,"stopIndex":1787,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15160}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15162":{"name":"initialize","type":"propertyDef","startIndex":1807,"stopIndex":2550,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15163},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15163":{"name":"initializing","type":"categoryDef","startIndex":1789,"stopIndex":3661,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15162},{"__isSmartRef__":true,"id":15164}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15164":{"name":"buildView","type":"propertyDef","startIndex":2552,"stopIndex":3658,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15163},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15165":{"name":"listClasses","type":"propertyDef","startIndex":3690,"stopIndex":3902,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15166},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15166":{"name":"browser functionality","type":"categoryDef","startIndex":3663,"stopIndex":6530,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15165},{"__isSmartRef__":true,"id":15167},{"__isSmartRef__":true,"id":15168},{"__isSmartRef__":true,"id":15169},{"__isSmartRef__":true,"id":15170},{"__isSmartRef__":true,"id":15171}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15167":{"name":"listMethodsFor","type":"propertyDef","startIndex":3905,"stopIndex":4321,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15166},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15168":{"name":"functionNames","type":"propertyDef","startIndex":4324,"stopIndex":4668,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15166},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15169":{"name":"getMethodStringFor","type":"propertyDef","startIndex":4671,"stopIndex":5135,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15166},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15170":{"name":"evalMethod","type":"propertyDef","startIndex":5138,"stopIndex":6041,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15166},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15171":{"name":"makeSubclass","type":"propertyDef","startIndex":6044,"stopIndex":6526,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15166},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15172":{"name":"getClassPaneMenu","type":"propertyDef","startIndex":6542,"stopIndex":8319,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15173},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15173":{"name":"menu","type":"categoryDef","startIndex":6532,"stopIndex":8322,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15172}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15174":{"name":"testTracing","type":"propertyDef","startIndex":8337,"stopIndex":8543,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15175},"className":"SimpleBrowser","_owner":{"__isSmartRef__":true,"id":15159},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15175":{"name":"tracing","type":"categoryDef","startIndex":8324,"stopIndex":8545,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15174}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15176":{"name":null,"type":"comment","startIndex":8549,"stopIndex":8739,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15177":{"name":"ObjectBrowser","type":"klassDef","startIndex":8740,"stopIndex":12003,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15178},{"__isSmartRef__":true,"id":15180},{"__isSmartRef__":true,"id":15181},{"__isSmartRef__":true,"id":15182},{"__isSmartRef__":true,"id":15183},{"__isSmartRef__":true,"id":15184},{"__isSmartRef__":true,"id":15185},{"__isSmartRef__":true,"id":15186}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"WidgetModel","categories":[{"__isSmartRef__":true,"id":15179}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15178":{"name":"viewTitle","type":"propertyDef","startIndex":8781,"stopIndex":8822,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15179":{"name":"default category","type":"categoryDef","startIndex":8778,"stopIndex":12000,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15178},{"__isSmartRef__":true,"id":15180},{"__isSmartRef__":true,"id":15181},{"__isSmartRef__":true,"id":15182},{"__isSmartRef__":true,"id":15183},{"__isSmartRef__":true,"id":15184},{"__isSmartRef__":true,"id":15185},{"__isSmartRef__":true,"id":15186}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15180":{"name":"openTriggerVariable","type":"propertyDef","startIndex":8824,"stopIndex":8864,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15181":{"name":"initialize","type":"propertyDef","startIndex":8867,"stopIndex":9221,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15182":{"name":"getObjectList","type":"propertyDef","startIndex":9224,"stopIndex":9704,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15183":{"name":"setObjectName","type":"propertyDef","startIndex":9707,"stopIndex":11111,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15184":{"name":"getObjectValue","type":"propertyDef","startIndex":11114,"stopIndex":11316,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15185":{"name":"setObjectValue","type":"propertyDef","startIndex":11319,"stopIndex":11373,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15186":{"name":"buildView","type":"propertyDef","startIndex":11376,"stopIndex":11999,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15179},"className":"ObjectBrowser","_owner":{"__isSmartRef__":true,"id":15177},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15187":{"name":null,"type":"comment","startIndex":12004,"stopIndex":12183,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15188":{"name":"SimpleInspector","type":"klassDef","startIndex":12184,"stopIndex":15678,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15189},{"__isSmartRef__":true,"id":15191},{"__isSmartRef__":true,"id":15192},{"__isSmartRef__":true,"id":15193},{"__isSmartRef__":true,"id":15194},{"__isSmartRef__":true,"id":15195},{"__isSmartRef__":true,"id":15196},{"__isSmartRef__":true,"id":15197},{"__isSmartRef__":true,"id":15198},{"__isSmartRef__":true,"id":15199}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":15190}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15189":{"name":"description","type":"propertyDef","startIndex":12222,"stopIndex":12288,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15190":{"name":"default category","type":"categoryDef","startIndex":12219,"stopIndex":15675,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15189},{"__isSmartRef__":true,"id":15191},{"__isSmartRef__":true,"id":15192},{"__isSmartRef__":true,"id":15193},{"__isSmartRef__":true,"id":15194},{"__isSmartRef__":true,"id":15195},{"__isSmartRef__":true,"id":15196},{"__isSmartRef__":true,"id":15197},{"__isSmartRef__":true,"id":15198},{"__isSmartRef__":true,"id":15199}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15191":{"name":"initialViewExtent","type":"propertyDef","startIndex":12291,"stopIndex":12325,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15192":{"name":"formals","type":"propertyDef","startIndex":12328,"stopIndex":12393,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15193":{"name":"initialize","type":"propertyDef","startIndex":12400,"stopIndex":12802,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15194":{"name":"onPropTextUpdate","type":"propertyDef","startIndex":12808,"stopIndex":13349,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15195":{"name":"onInspecteeUpdate","type":"propertyDef","startIndex":13352,"stopIndex":13453,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15196":{"name":"onPropNameUpdate","type":"propertyDef","startIndex":13456,"stopIndex":13721,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15197":{"name":"propValue","type":"propertyDef","startIndex":13729,"stopIndex":13866,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15198":{"name":"getViewTitle","type":"propertyDef","startIndex":13869,"stopIndex":13988,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15199":{"name":"buildView","type":"propertyDef","startIndex":14286,"stopIndex":15674,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15190},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15188},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15200":{"name":"SimpleInspector","type":"klassExtensionDef","startIndex":15679,"stopIndex":15824,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15201}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15202}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15201":{"name":"inspectObj","type":"propertyDef","startIndex":15712,"stopIndex":15820,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15202},"className":"SimpleInspector","_owner":{"__isSmartRef__":true,"id":15200},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15202":{"name":"default category","type":"categoryDef","startIndex":15710,"stopIndex":15821,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15201}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15203":{"name":"ColumnInspector","type":"klassDef","startIndex":15825,"stopIndex":18106,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15204},{"__isSmartRef__":true,"id":15206},{"__isSmartRef__":true,"id":15207},{"__isSmartRef__":true,"id":15208},{"__isSmartRef__":true,"id":15210},{"__isSmartRef__":true,"id":15212},{"__isSmartRef__":true,"id":15213},{"__isSmartRef__":true,"id":15214}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":15205},{"__isSmartRef__":true,"id":15209},{"__isSmartRef__":true,"id":15211},{"__isSmartRef__":true,"id":15215}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15204":{"name":"viewTitle","type":"propertyDef","startIndex":15874,"stopIndex":15897,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15205},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15205":{"name":"settings","type":"categoryDef","startIndex":15860,"stopIndex":15995,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15204},{"__isSmartRef__":true,"id":15206},{"__isSmartRef__":true,"id":15207}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15206":{"name":"initialViewExtent","type":"propertyDef","startIndex":15899,"stopIndex":15931,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15205},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15207":{"name":"defaultText","type":"propertyDef","startIndex":15933,"stopIndex":15992,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15205},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15208":{"name":"buildView","type":"propertyDef","startIndex":16007,"stopIndex":17759,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15209},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15209":{"name":"view","type":"categoryDef","startIndex":15997,"stopIndex":17763,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15208}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15210":{"name":"inspect","type":"propertyDef","startIndex":17781,"stopIndex":17856,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15211},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15211":{"name":"inspecting","type":"categoryDef","startIndex":17765,"stopIndex":18009,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15210},{"__isSmartRef__":true,"id":15212},{"__isSmartRef__":true,"id":15213}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15212":{"name":"doitContext","type":"propertyDef","startIndex":17858,"stopIndex":17927,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15211},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15213":{"name":"highlightObj","type":"propertyDef","startIndex":17929,"stopIndex":18005,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15211},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15214":{"name":"isSimpleObject","type":"propertyDef","startIndex":18024,"stopIndex":18101,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15215},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15203},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15215":{"name":"testing","type":"categoryDef","startIndex":18011,"stopIndex":18103,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15214}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15216":{"name":"ColumnInspector","type":"klassExtensionDef","startIndex":18107,"stopIndex":18248,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15217}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15218}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15217":{"name":"inspect","type":"propertyDef","startIndex":18140,"stopIndex":18243,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15218},"className":"ColumnInspector","_owner":{"__isSmartRef__":true,"id":15216},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15218":{"name":"default category","type":"categoryDef","startIndex":18138,"stopIndex":18245,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15217}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15219":{"name":"InspectorNode","type":"klassDef","startIndex":18249,"stopIndex":18979,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15220},{"__isSmartRef__":true,"id":15222},{"__isSmartRef__":true,"id":15224},{"__isSmartRef__":true,"id":15225}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ChainedListMorphNode","categories":[{"__isSmartRef__":true,"id":15221},{"__isSmartRef__":true,"id":15223}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15220":{"name":"initialize","type":"propertyDef","startIndex":18314,"stopIndex":18435,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15221},"className":"InspectorNode","_owner":{"__isSmartRef__":true,"id":15219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15221":{"name":"initializing","type":"categoryDef","startIndex":18296,"stopIndex":18438,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15220}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15222":{"name":"asString","type":"propertyDef","startIndex":18455,"stopIndex":18505,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15223},"className":"InspectorNode","_owner":{"__isSmartRef__":true,"id":15219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15223":{"name":"interface","type":"categoryDef","startIndex":18440,"stopIndex":18976,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15222},{"__isSmartRef__":true,"id":15224},{"__isSmartRef__":true,"id":15225}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15224":{"name":"getObject","type":"propertyDef","startIndex":18507,"stopIndex":18612,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15223},"className":"InspectorNode","_owner":{"__isSmartRef__":true,"id":15219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15225":{"name":"childNodes","type":"propertyDef","startIndex":18614,"stopIndex":18974,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15223},"className":"InspectorNode","_owner":{"__isSmartRef__":true,"id":15219},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15226":{"name":"lively.Tools","type":"klassExtensionDef","startIndex":18980,"stopIndex":19078,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15227}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15228}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15227":{"name":"inspect","type":"propertyDef","startIndex":19010,"stopIndex":19073,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15228},"className":"lively.Tools","_owner":{"__isSmartRef__":true,"id":15226},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15228":{"name":"default category","type":"categoryDef","startIndex":19008,"stopIndex":19075,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15227}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15229":{"name":"Global","type":"klassExtensionDef","startIndex":19079,"stopIndex":19138,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15230}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15231}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15230":{"name":"inspect","type":"propertyDef","startIndex":19103,"stopIndex":19133,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15231},"className":"Global","_owner":{"__isSmartRef__":true,"id":15229},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15231":{"name":"default category","type":"categoryDef","startIndex":19101,"stopIndex":19135,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15230}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15232":{"name":null,"type":"comment","startIndex":19139,"stopIndex":19319,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15233":{"name":"StylePanel","type":"klassDef","startIndex":19320,"stopIndex":27169,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15234},{"__isSmartRef__":true,"id":15236},{"__isSmartRef__":true,"id":15237},{"__isSmartRef__":true,"id":15238},{"__isSmartRef__":true,"id":15239},{"__isSmartRef__":true,"id":15240},{"__isSmartRef__":true,"id":15241},{"__isSmartRef__":true,"id":15242},{"__isSmartRef__":true,"id":15243},{"__isSmartRef__":true,"id":15244},{"__isSmartRef__":true,"id":15245},{"__isSmartRef__":true,"id":15246},{"__isSmartRef__":true,"id":15247},{"__isSmartRef__":true,"id":15248},{"__isSmartRef__":true,"id":15249},{"__isSmartRef__":true,"id":15250},{"__isSmartRef__":true,"id":15251},{"__isSmartRef__":true,"id":15252},{"__isSmartRef__":true,"id":15253}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":15235}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15234":{"name":"documentation","type":"propertyDef","startIndex":19353,"stopIndex":19406,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15235":{"name":"default category","type":"categoryDef","startIndex":19350,"stopIndex":27166,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15234},{"__isSmartRef__":true,"id":15236},{"__isSmartRef__":true,"id":15237},{"__isSmartRef__":true,"id":15238},{"__isSmartRef__":true,"id":15239},{"__isSmartRef__":true,"id":15240},{"__isSmartRef__":true,"id":15241},{"__isSmartRef__":true,"id":15242},{"__isSmartRef__":true,"id":15243},{"__isSmartRef__":true,"id":15244},{"__isSmartRef__":true,"id":15245},{"__isSmartRef__":true,"id":15246},{"__isSmartRef__":true,"id":15247},{"__isSmartRef__":true,"id":15248},{"__isSmartRef__":true,"id":15249},{"__isSmartRef__":true,"id":15250},{"__isSmartRef__":true,"id":15251},{"__isSmartRef__":true,"id":15252},{"__isSmartRef__":true,"id":15253}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15236":{"name":"initialViewExtent","type":"propertyDef","startIndex":19408,"stopIndex":19439,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15237":{"name":"viewTitle","type":"propertyDef","startIndex":19441,"stopIndex":19466,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15238":{"name":"initialize","type":"propertyDef","startIndex":19469,"stopIndex":20411,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15239":{"name":"onBorderWidthUpdate","type":"propertyDef","startIndex":20414,"stopIndex":20567,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15240":{"name":"onBorderColorUpdate","type":"propertyDef","startIndex":20570,"stopIndex":20757,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15241":{"name":"onBorderRadiusUpdate","type":"propertyDef","startIndex":20761,"stopIndex":20916,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15242":{"name":"onFillTypeUpdate","type":"propertyDef","startIndex":20919,"stopIndex":20994,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15243":{"name":"onFillDirUpdate","type":"propertyDef","startIndex":20996,"stopIndex":21068,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15244":{"name":"onColor1Update","type":"propertyDef","startIndex":21071,"stopIndex":21144,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15245":{"name":"onColor2Update","type":"propertyDef","startIndex":21146,"stopIndex":21219,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15246":{"name":"setFill","type":"propertyDef","startIndex":21223,"stopIndex":21998,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15247":{"name":"onFillOpacityUpdate","type":"propertyDef","startIndex":22004,"stopIndex":22261,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15248":{"name":"onStrokeOpacityUpdate","type":"propertyDef","startIndex":22264,"stopIndex":22445,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15249":{"name":"onTextColorUpdate","type":"propertyDef","startIndex":22448,"stopIndex":22631,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15250":{"name":"onFontFamilyUpdate","type":"propertyDef","startIndex":22634,"stopIndex":22790,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15251":{"name":"onFontSizeUpdate","type":"propertyDef","startIndex":22794,"stopIndex":22950,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15252":{"name":"needsControlFor","type":"propertyDef","startIndex":22953,"stopIndex":23247,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15253":{"name":"buildView","type":"propertyDef","startIndex":23250,"stopIndex":27165,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15235},"className":"StylePanel","_owner":{"__isSmartRef__":true,"id":15233},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15254":{"name":null,"type":"comment","startIndex":27170,"stopIndex":27361,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15255":{"name":"profiler","type":"propertyDef","startIndex":27362,"stopIndex":29186,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Object","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15256":{"name":null,"type":"comment","startIndex":29187,"stopIndex":29187,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15257":{"name":"showStatsViewer","type":"functionDef","startIndex":29188,"stopIndex":31153,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15258":{"name":null,"type":"comment","startIndex":31154,"stopIndex":31349,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15259":{"name":"","type":"usingDef","startIndex":31350,"stopIndex":46325,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15260},{"__isSmartRef__":true,"id":15261},{"__isSmartRef__":true,"id":15262},{"__isSmartRef__":true,"id":15263},{"__isSmartRef__":true,"id":15264},{"__isSmartRef__":true,"id":15265},{"__isSmartRef__":true,"id":15266},{"__isSmartRef__":true,"id":15276},{"__isSmartRef__":true,"id":15277},{"__isSmartRef__":true,"id":15286},{"__isSmartRef__":true,"id":15287},{"__isSmartRef__":true,"id":15295},{"__isSmartRef__":true,"id":15296},{"__isSmartRef__":true,"id":15299},{"__isSmartRef__":true,"id":15300},{"__isSmartRef__":true,"id":15301},{"__isSmartRef__":true,"id":15304}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15260":{"name":null,"type":"comment","startIndex":31401,"stopIndex":33582,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15261":{"name":null,"type":"unknown","startIndex":33583,"stopIndex":33599,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15262":{"name":null,"type":"unknown","startIndex":33600,"stopIndex":33619,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15263":{"name":null,"type":"comment","startIndex":33620,"stopIndex":33620,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15264":{"name":"getCurrentContext","type":"propertyDef","startIndex":33621,"stopIndex":33687,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Global","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15265":{"name":null,"type":"comment","startIndex":33688,"stopIndex":33688,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15266":{"name":"TracerStackNode","type":"klassDef","startIndex":33689,"stopIndex":35456,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15267},{"__isSmartRef__":true,"id":15269},{"__isSmartRef__":true,"id":15270},{"__isSmartRef__":true,"id":15271},{"__isSmartRef__":true,"id":15272},{"__isSmartRef__":true,"id":15273},{"__isSmartRef__":true,"id":15274},{"__isSmartRef__":true,"id":15275}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15268}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15267":{"name":"initialize","type":"propertyDef","startIndex":33728,"stopIndex":33964,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15268":{"name":"default category","type":"categoryDef","startIndex":33724,"stopIndex":35453,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15267},{"__isSmartRef__":true,"id":15269},{"__isSmartRef__":true,"id":15270},{"__isSmartRef__":true,"id":15271},{"__isSmartRef__":true,"id":15272},{"__isSmartRef__":true,"id":15273},{"__isSmartRef__":true,"id":15274},{"__isSmartRef__":true,"id":15275}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15269":{"name":"copyMe","type":"propertyDef","startIndex":33968,"stopIndex":34162,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15270":{"name":"traceCall","type":"propertyDef","startIndex":34166,"stopIndex":34776,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15271":{"name":"traceReturn","type":"propertyDef","startIndex":34780,"stopIndex":35009,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15272":{"name":"each","type":"propertyDef","startIndex":35013,"stopIndex":35151,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15273":{"name":"stackSize","type":"propertyDef","startIndex":35155,"stopIndex":35257,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15274":{"name":"dashes","type":"propertyDef","startIndex":35261,"stopIndex":35363,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15275":{"name":"toString","type":"propertyDef","startIndex":35367,"stopIndex":35449,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15268},"className":"TracerStackNode","_owner":{"__isSmartRef__":true,"id":15266},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15276":{"name":null,"type":"comment","startIndex":35457,"stopIndex":35461,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15277":{"name":"TracerTreeNode","type":"klassDef","startIndex":35462,"stopIndex":39479,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15278},{"__isSmartRef__":true,"id":15280},{"__isSmartRef__":true,"id":15281},{"__isSmartRef__":true,"id":15282},{"__isSmartRef__":true,"id":15283},{"__isSmartRef__":true,"id":15284},{"__isSmartRef__":true,"id":15285}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TracerStackNode","categories":[{"__isSmartRef__":true,"id":15279}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15278":{"name":"initialize","type":"propertyDef","startIndex":35509,"stopIndex":35734,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15279},"className":"TracerTreeNode","_owner":{"__isSmartRef__":true,"id":15277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15279":{"name":"default category","type":"categoryDef","startIndex":35505,"stopIndex":39476,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15278},{"__isSmartRef__":true,"id":15280},{"__isSmartRef__":true,"id":15281},{"__isSmartRef__":true,"id":15282},{"__isSmartRef__":true,"id":15283},{"__isSmartRef__":true,"id":15284},{"__isSmartRef__":true,"id":15285}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15280":{"name":"traceCall","type":"propertyDef","startIndex":35738,"stopIndex":36272,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15279},"className":"TracerTreeNode","_owner":{"__isSmartRef__":true,"id":15277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15281":{"name":"traceReturn","type":"propertyDef","startIndex":36276,"stopIndex":36657,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15279},"className":"TracerTreeNode","_owner":{"__isSmartRef__":true,"id":15277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15282":{"name":"each","type":"propertyDef","startIndex":36661,"stopIndex":37128,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15279},"className":"TracerTreeNode","_owner":{"__isSmartRef__":true,"id":15277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15283":{"name":"fullString","type":"propertyDef","startIndex":37132,"stopIndex":39027,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15279},"className":"TracerTreeNode","_owner":{"__isSmartRef__":true,"id":15277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15284":{"name":"toString","type":"propertyDef","startIndex":39031,"stopIndex":39234,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15279},"className":"TracerTreeNode","_owner":{"__isSmartRef__":true,"id":15277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15285":{"name":"ticksInMethod","type":"propertyDef","startIndex":39238,"stopIndex":39474,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15279},"className":"TracerTreeNode","_owner":{"__isSmartRef__":true,"id":15277},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15286":{"name":null,"type":"comment","startIndex":39480,"stopIndex":39484,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15287":{"name":"lively.lang.Execution","type":"klassExtensionDef","startIndex":39485,"stopIndex":44796,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15288},{"__isSmartRef__":true,"id":15290},{"__isSmartRef__":true,"id":15291},{"__isSmartRef__":true,"id":15292},{"__isSmartRef__":true,"id":15293},{"__isSmartRef__":true,"id":15294}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15289}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15288":{"name":"resetDebuggingStack","type":"propertyDef","startIndex":39525,"stopIndex":39755,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15289},"className":"lively.lang.Execution","_owner":{"__isSmartRef__":true,"id":15287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15289":{"name":"default category","type":"categoryDef","startIndex":39522,"stopIndex":44793,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15288},{"__isSmartRef__":true,"id":15290},{"__isSmartRef__":true,"id":15291},{"__isSmartRef__":true,"id":15292},{"__isSmartRef__":true,"id":15293},{"__isSmartRef__":true,"id":15294}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15290":{"name":"showStack","type":"propertyDef","startIndex":39758,"stopIndex":41162,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15289},"className":"lively.lang.Execution","_owner":{"__isSmartRef__":true,"id":15287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15291":{"name":"testTrace","type":"propertyDef","startIndex":41165,"stopIndex":41318,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15289},"className":"lively.lang.Execution","_owner":{"__isSmartRef__":true,"id":15287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15292":{"name":"trace","type":"propertyDef","startIndex":41321,"stopIndex":41856,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15289},"className":"lively.lang.Execution","_owner":{"__isSmartRef__":true,"id":15287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15293":{"name":"installStackTracers","type":"propertyDef","startIndex":41859,"stopIndex":43842,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15289},"className":"lively.lang.Execution","_owner":{"__isSmartRef__":true,"id":15287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15294":{"name":"tallyLOC","type":"propertyDef","startIndex":43846,"stopIndex":44789,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15289},"className":"lively.lang.Execution","_owner":{"__isSmartRef__":true,"id":15287},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15295":{"name":null,"type":"comment","startIndex":44797,"stopIndex":44801,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15296":{"name":"InspectHelper","type":"klassDef","startIndex":44802,"stopIndex":45263,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15297}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15298}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15297":{"name":"inspect","type":"propertyDef","startIndex":44839,"stopIndex":45256,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15298},"className":"InspectHelper","_owner":{"__isSmartRef__":true,"id":15296},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15298":{"name":"default category","type":"categoryDef","startIndex":44835,"stopIndex":45260,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15297}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15299":{"name":null,"type":"comment","startIndex":45264,"stopIndex":45264,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15300":{"name":"halt","type":"propertyDef","startIndex":45265,"stopIndex":45326,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Global","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15301":{"name":"Function.prototype","type":"klassExtensionDef","startIndex":45327,"stopIndex":46292,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15302}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15303}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15302":{"name":"tracingWrapper","type":"propertyDef","startIndex":45364,"stopIndex":46288,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15303},"className":"Function.prototype","_owner":{"__isSmartRef__":true,"id":15301},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15303":{"name":"default category","type":"categoryDef","startIndex":45361,"stopIndex":46289,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15302}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15304":{"name":null,"type":"comment","startIndex":46293,"stopIndex":46297,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15305":{"name":null,"type":"comment","startIndex":46326,"stopIndex":46506,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15306":{"name":"StackViewer","type":"klassDef","startIndex":46507,"stopIndex":50743,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15307},{"__isSmartRef__":true,"id":15309},{"__isSmartRef__":true,"id":15310},{"__isSmartRef__":true,"id":15311},{"__isSmartRef__":true,"id":15312},{"__isSmartRef__":true,"id":15313},{"__isSmartRef__":true,"id":15314},{"__isSmartRef__":true,"id":15315},{"__isSmartRef__":true,"id":15316},{"__isSmartRef__":true,"id":15317},{"__isSmartRef__":true,"id":15318}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"WidgetModel","categories":[{"__isSmartRef__":true,"id":15308}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15307":{"name":"viewTitle","type":"propertyDef","startIndex":46546,"stopIndex":46580,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15308":{"name":"default category","type":"categoryDef","startIndex":46543,"stopIndex":50740,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15307},{"__isSmartRef__":true,"id":15309},{"__isSmartRef__":true,"id":15310},{"__isSmartRef__":true,"id":15311},{"__isSmartRef__":true,"id":15312},{"__isSmartRef__":true,"id":15313},{"__isSmartRef__":true,"id":15314},{"__isSmartRef__":true,"id":15315},{"__isSmartRef__":true,"id":15316},{"__isSmartRef__":true,"id":15317},{"__isSmartRef__":true,"id":15318}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15309":{"name":"openTriggerVariable","type":"propertyDef","startIndex":46582,"stopIndex":46624,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15310":{"name":"initialize","type":"propertyDef","startIndex":46627,"stopIndex":47356,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15311":{"name":"getFunctionList","type":"propertyDef","startIndex":47363,"stopIndex":47577,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15312":{"name":"setFunctionName","type":"propertyDef","startIndex":47580,"stopIndex":47961,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15313":{"name":"getCodeValue","type":"propertyDef","startIndex":47964,"stopIndex":48081,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15314":{"name":"setCodeValue","type":"propertyDef","startIndex":48084,"stopIndex":48124,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15315":{"name":"getVariableList","type":"propertyDef","startIndex":48127,"stopIndex":48651,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15316":{"name":"setVariableName","type":"propertyDef","startIndex":48654,"stopIndex":49161,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15317":{"name":"getVariableValue","type":"propertyDef","startIndex":49164,"stopIndex":49256,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15318":{"name":"buildView","type":"propertyDef","startIndex":49259,"stopIndex":50739,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15308},"className":"StackViewer","_owner":{"__isSmartRef__":true,"id":15306},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15319":{"name":null,"type":"comment","startIndex":50744,"stopIndex":50921,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15320":{"name":"FrameRateMorph","type":"klassDef","startIndex":50922,"stopIndex":52026,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15321},{"__isSmartRef__":true,"id":15323},{"__isSmartRef__":true,"id":15324},{"__isSmartRef__":true,"id":15325}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":15322}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15321":{"name":"initialize","type":"propertyDef","startIndex":50962,"stopIndex":51165,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15322},"className":"FrameRateMorph","_owner":{"__isSmartRef__":true,"id":15320},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15322":{"name":"default category","type":"categoryDef","startIndex":50959,"stopIndex":52023,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15321},{"__isSmartRef__":true,"id":15323},{"__isSmartRef__":true,"id":15324},{"__isSmartRef__":true,"id":15325}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15323":{"name":"reset","type":"propertyDef","startIndex":51168,"stopIndex":51344,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15322},"className":"FrameRateMorph","_owner":{"__isSmartRef__":true,"id":15320},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15324":{"name":"nextStep","type":"propertyDef","startIndex":51347,"stopIndex":51944,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15322},"className":"FrameRateMorph","_owner":{"__isSmartRef__":true,"id":15320},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15325":{"name":"startSteppingScripts","type":"propertyDef","startIndex":51947,"stopIndex":52022,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15322},"className":"FrameRateMorph","_owner":{"__isSmartRef__":true,"id":15320},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15326":{"name":null,"type":"comment","startIndex":52027,"stopIndex":52204,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15327":{"name":"ClickTimeMorph","type":"klassDef","startIndex":52205,"stopIndex":53107,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15328},{"__isSmartRef__":true,"id":15330},{"__isSmartRef__":true,"id":15331},{"__isSmartRef__":true,"id":15332},{"__isSmartRef__":true,"id":15333}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":15329}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15328":{"name":"initialize","type":"propertyDef","startIndex":52334,"stopIndex":52572,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15329},"className":"ClickTimeMorph","_owner":{"__isSmartRef__":true,"id":15327},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15329":{"name":"default category","type":"categoryDef","startIndex":52242,"stopIndex":53104,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15328},{"__isSmartRef__":true,"id":15330},{"__isSmartRef__":true,"id":15331},{"__isSmartRef__":true,"id":15332},{"__isSmartRef__":true,"id":15333}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15330":{"name":"handlesMouseDown","type":"propertyDef","startIndex":52575,"stopIndex":52624,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15329},"className":"ClickTimeMorph","_owner":{"__isSmartRef__":true,"id":15327},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15331":{"name":"onMouseDown","type":"propertyDef","startIndex":52627,"stopIndex":52702,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15329},"className":"ClickTimeMorph","_owner":{"__isSmartRef__":true,"id":15327},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15332":{"name":"onMouseUp","type":"propertyDef","startIndex":52705,"stopIndex":52877,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15329},"className":"ClickTimeMorph","_owner":{"__isSmartRef__":true,"id":15327},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15333":{"name":"showStats","type":"propertyDef","startIndex":52880,"stopIndex":53103,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15329},"className":"ClickTimeMorph","_owner":{"__isSmartRef__":true,"id":15327},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15334":{"name":null,"type":"comment","startIndex":53108,"stopIndex":53283,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15335":{"name":"EllipseMakerMorph","type":"klassDef","startIndex":53284,"stopIndex":54451,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15336},{"__isSmartRef__":true,"id":15338},{"__isSmartRef__":true,"id":15339},{"__isSmartRef__":true,"id":15340},{"__isSmartRef__":true,"id":15341},{"__isSmartRef__":true,"id":15342}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ButtonMorph","categories":[{"__isSmartRef__":true,"id":15337}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15336":{"name":"documentation","type":"propertyDef","startIndex":53329,"stopIndex":53449,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15337},"className":"EllipseMakerMorph","_owner":{"__isSmartRef__":true,"id":15335},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15337":{"name":"default category","type":"categoryDef","startIndex":53326,"stopIndex":54448,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15336},{"__isSmartRef__":true,"id":15338},{"__isSmartRef__":true,"id":15339},{"__isSmartRef__":true,"id":15340},{"__isSmartRef__":true,"id":15341},{"__isSmartRef__":true,"id":15342}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15338":{"name":"initialize","type":"propertyDef","startIndex":53453,"stopIndex":53617,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15337},"className":"EllipseMakerMorph","_owner":{"__isSmartRef__":true,"id":15335},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15339":{"name":"makeNewEllipse","type":"propertyDef","startIndex":53620,"stopIndex":54178,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15337},"className":"EllipseMakerMorph","_owner":{"__isSmartRef__":true,"id":15335},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15340":{"name":"report","type":"propertyDef","startIndex":54181,"stopIndex":54274,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15337},"className":"EllipseMakerMorph","_owner":{"__isSmartRef__":true,"id":15335},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15341":{"name":"stepEllipses","type":"propertyDef","startIndex":54277,"stopIndex":54363,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15337},"className":"EllipseMakerMorph","_owner":{"__isSmartRef__":true,"id":15335},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15342":{"name":"startSteppingScripts","type":"propertyDef","startIndex":54366,"stopIndex":54445,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15337},"className":"EllipseMakerMorph","_owner":{"__isSmartRef__":true,"id":15335},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15343":{"name":null,"type":"comment","startIndex":54452,"stopIndex":54625,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15344":{"name":"Benchmarker","type":"klassDef","startIndex":54626,"stopIndex":56739,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15345},{"__isSmartRef__":true,"id":15347},{"__isSmartRef__":true,"id":15348},{"__isSmartRef__":true,"id":15349},{"__isSmartRef__":true,"id":15350},{"__isSmartRef__":true,"id":15351},{"__isSmartRef__":true,"id":15352},{"__isSmartRef__":true,"id":15353}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15346}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15345":{"name":"initialize","type":"propertyDef","startIndex":54660,"stopIndex":54768,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15346":{"name":"default category","type":"categoryDef","startIndex":54657,"stopIndex":56736,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15345},{"__isSmartRef__":true,"id":15347},{"__isSmartRef__":true,"id":15348},{"__isSmartRef__":true,"id":15349},{"__isSmartRef__":true,"id":15350},{"__isSmartRef__":true,"id":15351},{"__isSmartRef__":true,"id":15352},{"__isSmartRef__":true,"id":15353}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15347":{"name":"cleanWorld","type":"propertyDef","startIndex":54772,"stopIndex":55068,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15348":{"name":"reset","type":"propertyDef","startIndex":55072,"stopIndex":55488,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15349":{"name":"run","type":"propertyDef","startIndex":55492,"stopIndex":55696,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15350":{"name":"addFramerate","type":"propertyDef","startIndex":55700,"stopIndex":55762,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15351":{"name":"average","type":"propertyDef","startIndex":55766,"stopIndex":55913,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15352":{"name":"update","type":"propertyDef","startIndex":55917,"stopIndex":56441,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15353":{"name":"addEllipses","type":"propertyDef","startIndex":56444,"stopIndex":56732,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15346},"className":"Benchmarker","_owner":{"__isSmartRef__":true,"id":15344},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15354":{"name":null,"type":"comment","startIndex":56740,"stopIndex":56913,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15355":{"name":"FileParser","type":"klassDef","startIndex":56914,"stopIndex":65554,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15356},{"__isSmartRef__":true,"id":15358},{"__isSmartRef__":true,"id":15359},{"__isSmartRef__":true,"id":15360},{"__isSmartRef__":true,"id":15361},{"__isSmartRef__":true,"id":15362},{"__isSmartRef__":true,"id":15363},{"__isSmartRef__":true,"id":15364},{"__isSmartRef__":true,"id":15365},{"__isSmartRef__":true,"id":15366},{"__isSmartRef__":true,"id":15367},{"__isSmartRef__":true,"id":15368}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15357}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15356":{"name":"parseFile","type":"propertyDef","startIndex":57548,"stopIndex":59449,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15357":{"name":"default category","type":"categoryDef","startIndex":56944,"stopIndex":65551,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15356},{"__isSmartRef__":true,"id":15358},{"__isSmartRef__":true,"id":15359},{"__isSmartRef__":true,"id":15360},{"__isSmartRef__":true,"id":15361},{"__isSmartRef__":true,"id":15362},{"__isSmartRef__":true,"id":15363},{"__isSmartRef__":true,"id":15364},{"__isSmartRef__":true,"id":15365},{"__isSmartRef__":true,"id":15366},{"__isSmartRef__":true,"id":15367},{"__isSmartRef__":true,"id":15368}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15358":{"name":"scanComment","type":"propertyDef","startIndex":59452,"stopIndex":60746,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15359":{"name":"scanModuleDef","type":"propertyDef","startIndex":60749,"stopIndex":61193,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15360":{"name":"scanFunctionDef","type":"propertyDef","startIndex":61200,"stopIndex":61707,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15361":{"name":"scanClassDef","type":"propertyDef","startIndex":61714,"stopIndex":62334,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15362":{"name":"scanMethodDef","type":"propertyDef","startIndex":62337,"stopIndex":62725,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15363":{"name":"scanMainConfigBlock","type":"propertyDef","startIndex":62728,"stopIndex":63190,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15364":{"name":"processCurrentDef","type":"propertyDef","startIndex":63193,"stopIndex":64591,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15365":{"name":"scanBlankLine","type":"propertyDef","startIndex":64598,"stopIndex":64770,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15366":{"name":"scanOtherLine","type":"propertyDef","startIndex":64777,"stopIndex":64940,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15367":{"name":"matchStringInDef","type":"propertyDef","startIndex":64947,"stopIndex":65152,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15368":{"name":"nextLine","type":"propertyDef","startIndex":65159,"stopIndex":65550,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15357},"className":"FileParser","_owner":{"__isSmartRef__":true,"id":15355},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15369":{"name":null,"type":"comment","startIndex":65555,"stopIndex":65728,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15370":{"name":"ChangeList","type":"klassDef","startIndex":65729,"stopIndex":72787,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15371},{"__isSmartRef__":true,"id":15373},{"__isSmartRef__":true,"id":15374},{"__isSmartRef__":true,"id":15375},{"__isSmartRef__":true,"id":15377},{"__isSmartRef__":true,"id":15378},{"__isSmartRef__":true,"id":15379},{"__isSmartRef__":true,"id":15380},{"__isSmartRef__":true,"id":15382},{"__isSmartRef__":true,"id":15383},{"__isSmartRef__":true,"id":15384},{"__isSmartRef__":true,"id":15385},{"__isSmartRef__":true,"id":15386},{"__isSmartRef__":true,"id":15388},{"__isSmartRef__":true,"id":15389},{"__isSmartRef__":true,"id":15390},{"__isSmartRef__":true,"id":15391}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":15372},{"__isSmartRef__":true,"id":15376},{"__isSmartRef__":true,"id":15381},{"__isSmartRef__":true,"id":15387}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15371":{"name":"initialViewExtent","type":"propertyDef","startIndex":66283,"stopIndex":66314,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15372},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15372":{"name":"initialization","type":"categoryDef","startIndex":65760,"stopIndex":68476,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15371},{"__isSmartRef__":true,"id":15373},{"__isSmartRef__":true,"id":15374}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15373":{"name":"initialize","type":"propertyDef","startIndex":66317,"stopIndex":66539,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15372},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15374":{"name":"buildView","type":"propertyDef","startIndex":66542,"stopIndex":68473,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15372},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15375":{"name":"getViewTitle","type":"propertyDef","startIndex":68494,"stopIndex":68566,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15376},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15376":{"name":"accessing","type":"categoryDef","startIndex":68478,"stopIndex":69420,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15375},{"__isSmartRef__":true,"id":15377},{"__isSmartRef__":true,"id":15378},{"__isSmartRef__":true,"id":15379}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15377":{"name":"getSearchString","type":"propertyDef","startIndex":68569,"stopIndex":68630,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15376},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15378":{"name":"selectedItem","type":"propertyDef","startIndex":68633,"stopIndex":68704,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15376},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15379":{"name":"setChangeItemText","type":"propertyDef","startIndex":68707,"stopIndex":69416,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15376},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15380":{"name":"lineNoOfItem","type":"propertyDef","startIndex":69436,"stopIndex":69650,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15381},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15381":{"name":"private","type":"categoryDef","startIndex":69422,"stopIndex":71102,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15380},{"__isSmartRef__":true,"id":15382},{"__isSmartRef__":true,"id":15383},{"__isSmartRef__":true,"id":15384},{"__isSmartRef__":true,"id":15385}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15382":{"name":"bannerOfItem","type":"propertyDef","startIndex":69653,"stopIndex":70243,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15381},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15383":{"name":"reallySaveItemText","type":"propertyDef","startIndex":70245,"stopIndex":70572,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15381},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15384":{"name":"checkBracketError","type":"propertyDef","startIndex":70574,"stopIndex":70655,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15381},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15385":{"name":"checkBracketsAndSave","type":"propertyDef","startIndex":70657,"stopIndex":71098,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15381},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15386":{"name":"updateChangeList","type":"propertyDef","startIndex":71120,"stopIndex":71318,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15387},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15387":{"name":"changelist","type":"categoryDef","startIndex":71103,"stopIndex":72592,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15386},{"__isSmartRef__":true,"id":15388},{"__isSmartRef__":true,"id":15389},{"__isSmartRef__":true,"id":15390},{"__isSmartRef__":true,"id":15391}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15388":{"name":"updateChangeItemText","type":"propertyDef","startIndex":71321,"stopIndex":71600,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15387},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15389":{"name":"browseSelection","type":"propertyDef","startIndex":71603,"stopIndex":71670,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15387},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15390":{"name":"searchAgain","type":"propertyDef","startIndex":71673,"stopIndex":71897,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15387},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15391":{"name":"loadDefaultModules","type":"propertyDef","startIndex":71900,"stopIndex":72589,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15387},"className":"ChangeList","_owner":{"__isSmartRef__":true,"id":15370},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15392":{"name":"SourceDatabase","type":"klassDef","startIndex":72788,"stopIndex":84807,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15393},{"__isSmartRef__":true,"id":15395},{"__isSmartRef__":true,"id":15396},{"__isSmartRef__":true,"id":15397},{"__isSmartRef__":true,"id":15398},{"__isSmartRef__":true,"id":15399},{"__isSmartRef__":true,"id":15400},{"__isSmartRef__":true,"id":15401},{"__isSmartRef__":true,"id":15402},{"__isSmartRef__":true,"id":15403},{"__isSmartRef__":true,"id":15404},{"__isSmartRef__":true,"id":15405},{"__isSmartRef__":true,"id":15406},{"__isSmartRef__":true,"id":15407},{"__isSmartRef__":true,"id":15408},{"__isSmartRef__":true,"id":15409},{"__isSmartRef__":true,"id":15410},{"__isSmartRef__":true,"id":15411},{"__isSmartRef__":true,"id":15412},{"__isSmartRef__":true,"id":15413},{"__isSmartRef__":true,"id":15414},{"__isSmartRef__":true,"id":15415},{"__isSmartRef__":true,"id":15416}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ChangeList","categories":[{"__isSmartRef__":true,"id":15394}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15393":{"name":"codeBaseURL","type":"propertyDef","startIndex":75449,"stopIndex":75475,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15394":{"name":"default category","type":"categoryDef","startIndex":72826,"stopIndex":84804,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15393},{"__isSmartRef__":true,"id":15395},{"__isSmartRef__":true,"id":15396},{"__isSmartRef__":true,"id":15397},{"__isSmartRef__":true,"id":15398},{"__isSmartRef__":true,"id":15399},{"__isSmartRef__":true,"id":15400},{"__isSmartRef__":true,"id":15401},{"__isSmartRef__":true,"id":15402},{"__isSmartRef__":true,"id":15403},{"__isSmartRef__":true,"id":15404},{"__isSmartRef__":true,"id":15405},{"__isSmartRef__":true,"id":15406},{"__isSmartRef__":true,"id":15407},{"__isSmartRef__":true,"id":15408},{"__isSmartRef__":true,"id":15409},{"__isSmartRef__":true,"id":15410},{"__isSmartRef__":true,"id":15411},{"__isSmartRef__":true,"id":15412},{"__isSmartRef__":true,"id":15413},{"__isSmartRef__":true,"id":15414},{"__isSmartRef__":true,"id":15415},{"__isSmartRef__":true,"id":15416}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15395":{"name":"initialize","type":"propertyDef","startIndex":75479,"stopIndex":75647,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15396":{"name":"addFunctionDef","type":"propertyDef","startIndex":75650,"stopIndex":75811,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15397":{"name":"functionDefFor","type":"propertyDef","startIndex":75818,"stopIndex":75916,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15398":{"name":"methodDictFor","type":"propertyDef","startIndex":75923,"stopIndex":76317,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15399":{"name":"getSourceInClassForMethod","type":"propertyDef","startIndex":76320,"stopIndex":76774,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15400":{"name":"setDescriptorInClassForMethod","type":"propertyDef","startIndex":76777,"stopIndex":76964,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15401":{"name":"browseReferencesTo","type":"propertyDef","startIndex":76967,"stopIndex":77467,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15402":{"name":"searchFor","type":"propertyDef","startIndex":77470,"stopIndex":77831,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15403":{"name":"importKernelFiles","type":"propertyDef","startIndex":77834,"stopIndex":78098,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15404":{"name":"getSourceCodeRange","type":"propertyDef","startIndex":78105,"stopIndex":78476,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15405":{"name":"putSourceCodeRange","type":"propertyDef","startIndex":78479,"stopIndex":79548,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15406":{"name":"mapIndices","type":"propertyDef","startIndex":79551,"stopIndex":80735,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15407":{"name":"changeListForFileNamed","type":"propertyDef","startIndex":80738,"stopIndex":80957,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15408":{"name":"currentVersion","type":"propertyDef","startIndex":80960,"stopIndex":81131,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15409":{"name":"getViewTitle","type":"propertyDef","startIndex":81134,"stopIndex":81224,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15410":{"name":"testImportFiles","type":"propertyDef","startIndex":81227,"stopIndex":81365,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15411":{"name":"testMethodDefs","type":"propertyDef","startIndex":81372,"stopIndex":82316,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15412":{"name":"getCachedText","type":"propertyDef","startIndex":82323,"stopIndex":82642,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15413":{"name":"getCachedTextAsync","type":"propertyDef","startIndex":82649,"stopIndex":83250,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15414":{"name":"getFileContentsAsync","type":"propertyDef","startIndex":83257,"stopIndex":83839,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15415":{"name":"scanLKFiles","type":"propertyDef","startIndex":83846,"stopIndex":84255,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15416":{"name":"interestingLKFileNames","type":"propertyDef","startIndex":84262,"stopIndex":84801,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15394},"className":"SourceDatabase","_owner":{"__isSmartRef__":true,"id":15392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15417":{"name":null,"type":"comment","startIndex":84808,"stopIndex":84808,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15418":{"name":"SourceControl","type":"propertyDef","startIndex":84809,"stopIndex":84837,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"module","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15419":{"name":null,"type":"comment","startIndex":84838,"stopIndex":84838,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15420":{"name":"startSourceControl","type":"propertyDef","startIndex":84839,"stopIndex":85013,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"module","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15421":{"name":null,"type":"comment","startIndex":85014,"stopIndex":85198,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15422":{"name":"SourceCodeDescriptor","type":"klassDef","startIndex":85199,"stopIndex":86278,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15423},{"__isSmartRef__":true,"id":15425},{"__isSmartRef__":true,"id":15426},{"__isSmartRef__":true,"id":15427}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15424}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15423":{"name":"initialize","type":"propertyDef","startIndex":85242,"stopIndex":85831,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15424},"className":"SourceCodeDescriptor","_owner":{"__isSmartRef__":true,"id":15422},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15424":{"name":"default category","type":"categoryDef","startIndex":85239,"stopIndex":86275,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15423},{"__isSmartRef__":true,"id":15425},{"__isSmartRef__":true,"id":15426},{"__isSmartRef__":true,"id":15427}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15425":{"name":"getSourceCode","type":"propertyDef","startIndex":85834,"stopIndex":85989,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15424},"className":"SourceCodeDescriptor","_owner":{"__isSmartRef__":true,"id":15422},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15426":{"name":"putSourceCode","type":"propertyDef","startIndex":85992,"stopIndex":86160,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15424},"className":"SourceCodeDescriptor","_owner":{"__isSmartRef__":true,"id":15422},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15427":{"name":"newChangeList","type":"propertyDef","startIndex":86163,"stopIndex":86274,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15424},"className":"SourceCodeDescriptor","_owner":{"__isSmartRef__":true,"id":15422},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15428":{"name":null,"type":"comment","startIndex":86279,"stopIndex":86280,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15429":{"name":"EvalSourceRegistry","type":"klassDef","startIndex":86281,"stopIndex":86575,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15430},{"__isSmartRef__":true,"id":15432},{"__isSmartRef__":true,"id":15433}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15431}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15430":{"name":"initialize","type":"propertyDef","startIndex":86321,"stopIndex":86378,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15431},"className":"EvalSourceRegistry","_owner":{"__isSmartRef__":true,"id":15429},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15431":{"name":"default category","type":"categoryDef","startIndex":86319,"stopIndex":86572,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15430},{"__isSmartRef__":true,"id":15432},{"__isSmartRef__":true,"id":15433}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15432":{"name":"sourceReference","type":"propertyDef","startIndex":86381,"stopIndex":86464,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15431},"className":"EvalSourceRegistry","_owner":{"__isSmartRef__":true,"id":15429},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15433":{"name":"register","type":"propertyDef","startIndex":86467,"stopIndex":86571,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15431},"className":"EvalSourceRegistry","_owner":{"__isSmartRef__":true,"id":15429},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15434":{"name":"EvalSourceRegistry","type":"klassExtensionDef","startIndex":86576,"stopIndex":86804,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15435}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15436}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15435":{"name":"current","type":"propertyDef","startIndex":86612,"stopIndex":86800,"fileName":"lively/Tools.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15436},"className":"EvalSourceRegistry","_owner":{"__isSmartRef__":true,"id":15434},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15436":{"name":"default category","type":"categoryDef","startIndex":86610,"stopIndex":86801,"fileName":"lively/Tools.js","_subElements":[{"__isSmartRef__":true,"id":15435}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15437":{"target":{"__isSmartRef__":true,"id":15438},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/TouchSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"15438":{"name":"lively.TouchSupport","type":"moduleDef","startIndex":1136,"stopIndex":7049,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15439},{"__isSmartRef__":true,"id":15440},{"__isSmartRef__":true,"id":15441},{"__isSmartRef__":true,"id":15442},{"__isSmartRef__":true,"id":15443},{"__isSmartRef__":true,"id":15444},{"__isSmartRef__":true,"id":15445},{"__isSmartRef__":true,"id":15455},{"__isSmartRef__":true,"id":15456},{"__isSmartRef__":true,"id":15461},{"__isSmartRef__":true,"id":15462},{"__isSmartRef__":true,"id":15468},{"__isSmartRef__":true,"id":15469},{"__isSmartRef__":true,"id":15472}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15439":{"name":null,"type":"comment","startIndex":1208,"stopIndex":1208,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15440":{"name":null,"type":"unknown","startIndex":1209,"stopIndex":1240,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15441":{"name":null,"type":"comment","startIndex":1241,"stopIndex":1241,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15442":{"name":"touchEvents","type":"propertyDef","startIndex":1242,"stopIndex":1317,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Event","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15443":{"name":"basicInputEvents","type":"propertyDef","startIndex":1318,"stopIndex":1392,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Event","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15444":{"name":null,"type":"comment","startIndex":1393,"stopIndex":1395,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15445":{"name":"Event","type":"klassExtensionDef","startIndex":1396,"stopIndex":2609,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15446},{"__isSmartRef__":true,"id":15448},{"__isSmartRef__":true,"id":15449},{"__isSmartRef__":true,"id":15450},{"__isSmartRef__":true,"id":15451},{"__isSmartRef__":true,"id":15452},{"__isSmartRef__":true,"id":15453},{"__isSmartRef__":true,"id":15454}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15447}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15446":{"name":"capitalizer","type":"propertyDef","startIndex":1416,"stopIndex":1739,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15447":{"name":"default category","type":"categoryDef","startIndex":1413,"stopIndex":2606,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15446},{"__isSmartRef__":true,"id":15448},{"__isSmartRef__":true,"id":15449},{"__isSmartRef__":true,"id":15450},{"__isSmartRef__":true,"id":15451},{"__isSmartRef__":true,"id":15452},{"__isSmartRef__":true,"id":15453},{"__isSmartRef__":true,"id":15454}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15448":{"name":"isLeftMouseButtonDown","type":"propertyDef","startIndex":1742,"stopIndex":1841,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15449":{"name":"isTouchEvent","type":"propertyDef","startIndex":1846,"stopIndex":1932,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15450":{"name":"prepareMousePoint","type":"propertyDef","startIndex":1936,"stopIndex":2262,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15451":{"name":"isGesture","type":"propertyDef","startIndex":2265,"stopIndex":2324,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15452":{"name":"touches","type":"propertyDef","startIndex":2328,"stopIndex":2466,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15453":{"name":"targetTouches","type":"propertyDef","startIndex":2468,"stopIndex":2533,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15454":{"name":"changedTouches","type":"propertyDef","startIndex":2535,"stopIndex":2602,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15447},"className":"Event","_owner":{"__isSmartRef__":true,"id":15445},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15455":{"name":null,"type":"comment","startIndex":2610,"stopIndex":2640,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15456":{"name":"TouchSupportLayer","type":"copDef","startIndex":2641,"stopIndex":3356,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15457},{"__isSmartRef__":true,"id":15458}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15457":{"name":"beGlobal()","type":"copSubElement","startIndex":2673,"stopIndex":2683,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":15456},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15458":{"name":"HandMorph","type":"copSubElement","startIndex":2684,"stopIndex":3354,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15459}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":15456},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15459":{"name":"handleEvent","type":"propertyDef","startIndex":2712,"stopIndex":3350,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15460},"_owner":{"__isSmartRef__":true,"id":15458},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15460":{"name":"default category","type":"categoryDef","startIndex":68,"stopIndex":712,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":15459}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15461":{"name":null,"type":"comment","startIndex":3357,"stopIndex":3357,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15462":{"name":"Morph","type":"klassExtensionDef","startIndex":3358,"stopIndex":3556,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15463},{"__isSmartRef__":true,"id":15465},{"__isSmartRef__":true,"id":15466},{"__isSmartRef__":true,"id":15467}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15464}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15463":{"name":"onTouchStart","type":"propertyDef","startIndex":3377,"stopIndex":3436,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15464},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15464":{"name":"default category","type":"categoryDef","startIndex":3375,"stopIndex":3553,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15463},{"__isSmartRef__":true,"id":15465},{"__isSmartRef__":true,"id":15466},{"__isSmartRef__":true,"id":15467}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15465":{"name":"onTouchMove","type":"propertyDef","startIndex":3438,"stopIndex":3479,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15464},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15466":{"name":"onTouchEnd","type":"propertyDef","startIndex":3481,"stopIndex":3519,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15464},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15467":{"name":"onTouchCancel","type":"propertyDef","startIndex":3521,"stopIndex":3551,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15464},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15462},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15468":{"name":null,"type":"comment","startIndex":3557,"stopIndex":3569,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15469":{"name":"HandMorph","type":"klassExtensionDef","startIndex":3570,"stopIndex":7028,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15470}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15471}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15470":{"name":"handleTouch","type":"propertyDef","startIndex":3595,"stopIndex":3986,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15471},"className":"HandMorph","_owner":{"__isSmartRef__":true,"id":15469},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15471":{"name":"default category","type":"categoryDef","startIndex":3591,"stopIndex":7025,"fileName":"lively/TouchSupport.js","_subElements":[{"__isSmartRef__":true,"id":15470}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15472":{"name":null,"type":"comment","startIndex":7029,"stopIndex":7030,"fileName":"lively/TouchSupport.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15473":{"target":{"__isSmartRef__":true,"id":15474},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Traits.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"15474":{"name":"lively.Traits","type":"moduleDef","startIndex":0,"stopIndex":6556,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15475},{"__isSmartRef__":true,"id":15476},{"__isSmartRef__":true,"id":15507},{"__isSmartRef__":true,"id":15508},{"__isSmartRef__":true,"id":15512},{"__isSmartRef__":true,"id":15513}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15475":{"name":null,"type":"comment","startIndex":54,"stopIndex":54,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15476":{"name":"RealTrait","type":"klassDef","startIndex":55,"stopIndex":5776,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15477},{"__isSmartRef__":true,"id":15479},{"__isSmartRef__":true,"id":15480},{"__isSmartRef__":true,"id":15482},{"__isSmartRef__":true,"id":15484},{"__isSmartRef__":true,"id":15485},{"__isSmartRef__":true,"id":15487},{"__isSmartRef__":true,"id":15489},{"__isSmartRef__":true,"id":15491},{"__isSmartRef__":true,"id":15492},{"__isSmartRef__":true,"id":15494},{"__isSmartRef__":true,"id":15495},{"__isSmartRef__":true,"id":15496},{"__isSmartRef__":true,"id":15497},{"__isSmartRef__":true,"id":15498},{"__isSmartRef__":true,"id":15499},{"__isSmartRef__":true,"id":15501},{"__isSmartRef__":true,"id":15502},{"__isSmartRef__":true,"id":15503},{"__isSmartRef__":true,"id":15505}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15478},{"__isSmartRef__":true,"id":15481},{"__isSmartRef__":true,"id":15483},{"__isSmartRef__":true,"id":15486},{"__isSmartRef__":true,"id":15488},{"__isSmartRef__":true,"id":15490},{"__isSmartRef__":true,"id":15493},{"__isSmartRef__":true,"id":15500},{"__isSmartRef__":true,"id":15504},{"__isSmartRef__":true,"id":15506}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15477":{"name":"traitRegistry","type":"propertyDef","startIndex":102,"stopIndex":120,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15478},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15478":{"name":"global state","type":"categoryDef","startIndex":84,"stopIndex":139,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15477},{"__isSmartRef__":true,"id":15479}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15479":{"name":"isTrait","type":"propertyDef","startIndex":122,"stopIndex":136,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15478},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15480":{"name":"objectTraitConfig","type":"propertyDef","startIndex":157,"stopIndex":192,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15481},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15481":{"name":"properties","type":"categoryDef","startIndex":141,"stopIndex":195,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15480}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15482":{"name":"initialize","type":"propertyDef","startIndex":215,"stopIndex":561,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15483},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15483":{"name":"initializing","type":"categoryDef","startIndex":197,"stopIndex":685,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15482},{"__isSmartRef__":true,"id":15484}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15484":{"name":"createAnonymousTrait","type":"propertyDef","startIndex":563,"stopIndex":682,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15483},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15485":{"name":"extend","type":"propertyDef","startIndex":705,"stopIndex":1027,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15486},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15486":{"name":"manipulating","type":"categoryDef","startIndex":687,"stopIndex":1030,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15485}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15487":{"name":"equalOptions","type":"propertyDef","startIndex":1045,"stopIndex":1694,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15488},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15488":{"name":"testing","type":"categoryDef","startIndex":1032,"stopIndex":1697,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15487}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15489":{"name":"derive","type":"propertyDef","startIndex":1711,"stopIndex":1951,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15490},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15490":{"name":"derive","type":"categoryDef","startIndex":1699,"stopIndex":2269,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15489},{"__isSmartRef__":true,"id":15491}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15491":{"name":"findDerivedTrait","type":"propertyDef","startIndex":1953,"stopIndex":2265,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15490},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15492":{"name":"updateDependents","type":"propertyDef","startIndex":2285,"stopIndex":2931,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15493},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15493":{"name":"updating","type":"categoryDef","startIndex":2271,"stopIndex":4630,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15492},{"__isSmartRef__":true,"id":15494},{"__isSmartRef__":true,"id":15495},{"__isSmartRef__":true,"id":15496},{"__isSmartRef__":true,"id":15497},{"__isSmartRef__":true,"id":15498}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15494":{"name":"applyTo","type":"propertyDef","startIndex":2933,"stopIndex":3183,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15493},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15495":{"name":"applyToClass","type":"propertyDef","startIndex":3185,"stopIndex":3414,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15493},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15496":{"name":"applyToTrait","type":"propertyDef","startIndex":3416,"stopIndex":3808,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15493},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15497":{"name":"applyToObject","type":"propertyDef","startIndex":3810,"stopIndex":4053,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15493},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15498":{"name":"basicApplyTo","type":"propertyDef","startIndex":4056,"stopIndex":4627,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15493},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15499":{"name":"remove","type":"propertyDef","startIndex":4646,"stopIndex":4741,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15500},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15500":{"name":"removing","type":"categoryDef","startIndex":4632,"stopIndex":5598,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15499},{"__isSmartRef__":true,"id":15501},{"__isSmartRef__":true,"id":15502}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15501":{"name":"removeFrom","type":"propertyDef","startIndex":4743,"stopIndex":4950,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15500},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15502":{"name":"removeFromDependents","type":"propertyDef","startIndex":4952,"stopIndex":5595,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15500},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15503":{"name":"getCategoryNames","type":"propertyDef","startIndex":5616,"stopIndex":5688,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15504},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15504":{"name":"categories","type":"categoryDef","startIndex":5600,"stopIndex":5691,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15503}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15505":{"name":"toString","type":"propertyDef","startIndex":5708,"stopIndex":5771,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15506},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15476},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15506":{"name":"debugging","type":"categoryDef","startIndex":5693,"stopIndex":5773,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15505}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15507":{"name":null,"type":"comment","startIndex":5777,"stopIndex":5777,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15508":{"name":"RealTrait","type":"klassExtensionDef","startIndex":5778,"stopIndex":6153,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15509},{"__isSmartRef__":true,"id":15511}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15510}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15509":{"name":"named","type":"propertyDef","startIndex":5805,"stopIndex":5918,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15510},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15508},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15510":{"name":"default category","type":"categoryDef","startIndex":5803,"stopIndex":6150,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15509},{"__isSmartRef__":true,"id":15511}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15511":{"name":"createAnonymousTrait","type":"propertyDef","startIndex":5920,"stopIndex":6147,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15510},"className":"RealTrait","_owner":{"__isSmartRef__":true,"id":15508},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15512":{"name":null,"type":"comment","startIndex":6154,"stopIndex":6154,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15513":{"name":"Global","type":"klassExtensionDef","startIndex":6155,"stopIndex":6536,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15514}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15515}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15514":{"name":"Trait","type":"propertyDef","startIndex":6179,"stopIndex":6531,"fileName":"lively/Traits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15515},"className":"Global","_owner":{"__isSmartRef__":true,"id":15513},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15515":{"name":"default category","type":"categoryDef","startIndex":6177,"stopIndex":6533,"fileName":"lively/Traits.js","_subElements":[{"__isSmartRef__":true,"id":15514}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15516":{"target":{"__isSmartRef__":true,"id":15517},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Undo.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"15517":{"name":"lively.Undo","type":"moduleDef","startIndex":1163,"stopIndex":5608,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15518},{"__isSmartRef__":true,"id":15519},{"__isSmartRef__":true,"id":15527},{"__isSmartRef__":true,"id":15528},{"__isSmartRef__":true,"id":15532},{"__isSmartRef__":true,"id":15533},{"__isSmartRef__":true,"id":15538},{"__isSmartRef__":true,"id":15539},{"__isSmartRef__":true,"id":15544},{"__isSmartRef__":true,"id":15545},{"__isSmartRef__":true,"id":15557}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15518":{"name":null,"type":"comment","startIndex":1241,"stopIndex":1241,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15519":{"name":"UndoHistory","type":"klassDef","startIndex":1242,"stopIndex":1911,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15520},{"__isSmartRef__":true,"id":15522},{"__isSmartRef__":true,"id":15523},{"__isSmartRef__":true,"id":15524},{"__isSmartRef__":true,"id":15525},{"__isSmartRef__":true,"id":15526}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15521}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15520":{"name":"initialize","type":"propertyDef","startIndex":1275,"stopIndex":1349,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15521},"className":"UndoHistory","_owner":{"__isSmartRef__":true,"id":15519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15521":{"name":"default category","type":"categoryDef","startIndex":1273,"stopIndex":1908,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15520},{"__isSmartRef__":true,"id":15522},{"__isSmartRef__":true,"id":15523},{"__isSmartRef__":true,"id":15524},{"__isSmartRef__":true,"id":15525},{"__isSmartRef__":true,"id":15526}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15522":{"name":"addCommand","type":"propertyDef","startIndex":1352,"stopIndex":1463,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15521},"className":"UndoHistory","_owner":{"__isSmartRef__":true,"id":15519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15523":{"name":"undo","type":"propertyDef","startIndex":1466,"stopIndex":1610,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15521},"className":"UndoHistory","_owner":{"__isSmartRef__":true,"id":15519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15524":{"name":"redo","type":"propertyDef","startIndex":1613,"stopIndex":1757,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15521},"className":"UndoHistory","_owner":{"__isSmartRef__":true,"id":15519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15525":{"name":"hasUndoableCommand","type":"propertyDef","startIndex":1760,"stopIndex":1831,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15521},"className":"UndoHistory","_owner":{"__isSmartRef__":true,"id":15519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15526":{"name":"hasRedoableCommand","type":"propertyDef","startIndex":1834,"stopIndex":1905,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15521},"className":"UndoHistory","_owner":{"__isSmartRef__":true,"id":15519},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15527":{"name":null,"type":"comment","startIndex":1912,"stopIndex":1912,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15528":{"name":"UndoableCommand","type":"klassDef","startIndex":1913,"stopIndex":1999,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15529},{"__isSmartRef__":true,"id":15531}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15530}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15529":{"name":"undo","type":"propertyDef","startIndex":1951,"stopIndex":1971,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15530},"className":"UndoableCommand","_owner":{"__isSmartRef__":true,"id":15528},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15530":{"name":"default category","type":"categoryDef","startIndex":1948,"stopIndex":1996,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15529},{"__isSmartRef__":true,"id":15531}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15531":{"name":"redo","type":"propertyDef","startIndex":1974,"stopIndex":1994,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15530},"className":"UndoableCommand","_owner":{"__isSmartRef__":true,"id":15528},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15532":{"name":null,"type":"comment","startIndex":2000,"stopIndex":2000,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15533":{"name":"ReplaceTextCommand","type":"klassDef","startIndex":2001,"stopIndex":2807,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15534},{"__isSmartRef__":true,"id":15536},{"__isSmartRef__":true,"id":15537}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"UndoableCommand","categories":[{"__isSmartRef__":true,"id":15535}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15534":{"name":"initialize","type":"propertyDef","startIndex":2050,"stopIndex":2204,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15535},"className":"ReplaceTextCommand","_owner":{"__isSmartRef__":true,"id":15533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15535":{"name":"default category","type":"categoryDef","startIndex":2048,"stopIndex":2804,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15534},{"__isSmartRef__":true,"id":15536},{"__isSmartRef__":true,"id":15537}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15536":{"name":"undo","type":"propertyDef","startIndex":2207,"stopIndex":2495,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15535},"className":"ReplaceTextCommand","_owner":{"__isSmartRef__":true,"id":15533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15537":{"name":"redo","type":"propertyDef","startIndex":2498,"stopIndex":2801,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15535},"className":"ReplaceTextCommand","_owner":{"__isSmartRef__":true,"id":15533},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15538":{"name":null,"type":"comment","startIndex":2808,"stopIndex":2808,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15539":{"name":"RemoveMorphCommand","type":"klassDef","startIndex":2809,"stopIndex":3464,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15540},{"__isSmartRef__":true,"id":15542},{"__isSmartRef__":true,"id":15543}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"UndoableCommand","categories":[{"__isSmartRef__":true,"id":15541}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15540":{"name":"initialize","type":"propertyDef","startIndex":2858,"stopIndex":3049,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15541},"className":"RemoveMorphCommand","_owner":{"__isSmartRef__":true,"id":15539},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15541":{"name":"default category","type":"categoryDef","startIndex":2856,"stopIndex":3461,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15540},{"__isSmartRef__":true,"id":15542},{"__isSmartRef__":true,"id":15543}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15542":{"name":"undo","type":"propertyDef","startIndex":3052,"stopIndex":3343,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15541},"className":"RemoveMorphCommand","_owner":{"__isSmartRef__":true,"id":15539},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15543":{"name":"redo","type":"propertyDef","startIndex":3347,"stopIndex":3458,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15541},"className":"RemoveMorphCommand","_owner":{"__isSmartRef__":true,"id":15539},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15544":{"name":null,"type":"comment","startIndex":3465,"stopIndex":3466,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15545":{"name":"UndoLayer","type":"copDef","startIndex":3467,"stopIndex":5604,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15546},{"__isSmartRef__":true,"id":15547}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15546":{"name":"beGlobal()","type":"copSubElement","startIndex":3491,"stopIndex":3501,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_owner":{"__isSmartRef__":true,"id":15545},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15547":{"name":"TextMorph","type":"copSubElement","startIndex":3502,"stopIndex":5602,"fileName":"lively/Undo.js","_subElements":[{"__isSmartRef__":true,"id":15548},{"__isSmartRef__":true,"id":15550},{"__isSmartRef__":true,"id":15551},{"__isSmartRef__":true,"id":15552},{"__isSmartRef__":true,"id":15553},{"__isSmartRef__":true,"id":15554},{"__isSmartRef__":true,"id":15555},{"__isSmartRef__":true,"id":15556}],"sourceControl":{"__isSmartRef__":true,"id":4931},"refineSelector":"refineClass","_owner":{"__isSmartRef__":true,"id":15545},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15548":{"name":"getUndoHistory","type":"propertyDef","startIndex":3530,"stopIndex":3654,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15549":{"name":"default category","type":"categoryDef","startIndex":60,"stopIndex":2134,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":15548},{"__isSmartRef__":true,"id":15550},{"__isSmartRef__":true,"id":15551},{"__isSmartRef__":true,"id":15552},{"__isSmartRef__":true,"id":15553},{"__isSmartRef__":true,"id":15554},{"__isSmartRef__":true,"id":15555},{"__isSmartRef__":true,"id":15556}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15550":{"name":"processCommandKeys","type":"propertyDef","startIndex":3657,"stopIndex":3865,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15551":{"name":"doRedo","type":"propertyDef","startIndex":3868,"stopIndex":3989,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15552":{"name":"doUndo","type":"propertyDef","startIndex":3992,"stopIndex":4148,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15553":{"name":"textSliceFromTo","type":"propertyDef","startIndex":4150,"stopIndex":4373,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15554":{"name":"replaceSelectionWith","type":"propertyDef","startIndex":4377,"stopIndex":4806,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15555":{"name":"emphasizeFromTo","type":"propertyDef","startIndex":4809,"stopIndex":5212,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15556":{"name":"setTextString","type":"propertyDef","startIndex":5215,"stopIndex":5599,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15549},"_owner":{"__isSmartRef__":true,"id":15547},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15557":{"name":null,"type":"comment","startIndex":5605,"stopIndex":5606,"fileName":"lively/Undo.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15558":{"target":{"__isSmartRef__":true,"id":15559},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/WebPIM.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"15559":{"name":"lively/WebPIM.js","type":"completeFileDef","startIndex":0,"stopIndex":67010,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15560},{"__isSmartRef__":true,"id":15561},{"__isSmartRef__":true,"id":15562},{"__isSmartRef__":true,"id":15563},{"__isSmartRef__":true,"id":15564},{"__isSmartRef__":true,"id":15565},{"__isSmartRef__":true,"id":15566},{"__isSmartRef__":true,"id":15567},{"__isSmartRef__":true,"id":15568},{"__isSmartRef__":true,"id":15569},{"__isSmartRef__":true,"id":15570},{"__isSmartRef__":true,"id":15571},{"__isSmartRef__":true,"id":15572},{"__isSmartRef__":true,"id":15590},{"__isSmartRef__":true,"id":15591},{"__isSmartRef__":true,"id":15606},{"__isSmartRef__":true,"id":15607},{"__isSmartRef__":true,"id":15610},{"__isSmartRef__":true,"id":15611},{"__isSmartRef__":true,"id":15620},{"__isSmartRef__":true,"id":15621},{"__isSmartRef__":true,"id":15631},{"__isSmartRef__":true,"id":15632},{"__isSmartRef__":true,"id":15647},{"__isSmartRef__":true,"id":15648},{"__isSmartRef__":true,"id":15671},{"__isSmartRef__":true,"id":15672},{"__isSmartRef__":true,"id":15673},{"__isSmartRef__":true,"id":15674},{"__isSmartRef__":true,"id":15679},{"__isSmartRef__":true,"id":15680},{"__isSmartRef__":true,"id":15710},{"__isSmartRef__":true,"id":15711},{"__isSmartRef__":true,"id":15712},{"__isSmartRef__":true,"id":15713},{"__isSmartRef__":true,"id":15714}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15560":{"name":null,"type":"comment","startIndex":0,"stopIndex":1305,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15561":{"name":null,"type":"unknown","startIndex":1306,"stopIndex":1432,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15562":{"name":null,"type":"unknown","startIndex":1433,"stopIndex":1505,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15563":{"name":null,"type":"unknown","startIndex":1506,"stopIndex":1587,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15564":{"name":null,"type":"unknown","startIndex":1588,"stopIndex":1720,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15565":{"name":null,"type":"unknown","startIndex":1721,"stopIndex":1850,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15566":{"name":null,"type":"unknown","startIndex":1851,"stopIndex":1961,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15567":{"name":null,"type":"unknown","startIndex":1962,"stopIndex":1997,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15568":{"name":null,"type":"unknown","startIndex":1998,"stopIndex":2019,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15569":{"name":"GenerateNewId","type":"functionDef","startIndex":2020,"stopIndex":2106,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15570":{"name":null,"type":"unknown","startIndex":2107,"stopIndex":2138,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15571":{"name":null,"type":"comment","startIndex":2139,"stopIndex":2618,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15572":{"name":"SelectorItem","type":"klassDef","startIndex":2619,"stopIndex":4669,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15573},{"__isSmartRef__":true,"id":15575},{"__isSmartRef__":true,"id":15576},{"__isSmartRef__":true,"id":15577},{"__isSmartRef__":true,"id":15578},{"__isSmartRef__":true,"id":15579},{"__isSmartRef__":true,"id":15580},{"__isSmartRef__":true,"id":15581},{"__isSmartRef__":true,"id":15582},{"__isSmartRef__":true,"id":15583},{"__isSmartRef__":true,"id":15584},{"__isSmartRef__":true,"id":15585},{"__isSmartRef__":true,"id":15586},{"__isSmartRef__":true,"id":15587},{"__isSmartRef__":true,"id":15588},{"__isSmartRef__":true,"id":15589}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15574}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15573":{"name":"initialize","type":"propertyDef","startIndex":2654,"stopIndex":3040,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15574":{"name":"default category","type":"categoryDef","startIndex":2651,"stopIndex":4666,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15573},{"__isSmartRef__":true,"id":15575},{"__isSmartRef__":true,"id":15576},{"__isSmartRef__":true,"id":15577},{"__isSmartRef__":true,"id":15578},{"__isSmartRef__":true,"id":15579},{"__isSmartRef__":true,"id":15580},{"__isSmartRef__":true,"id":15581},{"__isSmartRef__":true,"id":15582},{"__isSmartRef__":true,"id":15583},{"__isSmartRef__":true,"id":15584},{"__isSmartRef__":true,"id":15585},{"__isSmartRef__":true,"id":15586},{"__isSmartRef__":true,"id":15587},{"__isSmartRef__":true,"id":15588},{"__isSmartRef__":true,"id":15589}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15575":{"name":"getId","type":"propertyDef","startIndex":3043,"stopIndex":3096,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15576":{"name":"getParent","type":"propertyDef","startIndex":3099,"stopIndex":3160,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15577":{"name":"setParent","type":"propertyDef","startIndex":3163,"stopIndex":3238,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15578":{"name":"getCaption","type":"propertyDef","startIndex":3241,"stopIndex":3405,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15579":{"name":"setCaption","type":"propertyDef","startIndex":3408,"stopIndex":3477,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15580":{"name":"getContents","type":"propertyDef","startIndex":3484,"stopIndex":3675,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15581":{"name":"setContents","type":"propertyDef","startIndex":3678,"stopIndex":3749,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15582":{"name":"getViewItem","type":"propertyDef","startIndex":3752,"stopIndex":3856,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15583":{"name":"setViewItem","type":"propertyDef","startIndex":3859,"stopIndex":3937,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15584":{"name":"updateView","type":"propertyDef","startIndex":3940,"stopIndex":3990,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15585":{"name":"isFolder","type":"propertyDef","startIndex":3993,"stopIndex":4096,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15586":{"name":"isOpenFolder","type":"propertyDef","startIndex":4099,"stopIndex":4157,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15587":{"name":"isEmptyFolder","type":"propertyDef","startIndex":4164,"stopIndex":4223,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15588":{"name":"isParentOf","type":"propertyDef","startIndex":4230,"stopIndex":4517,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15589":{"name":"isFound","type":"propertyDef","startIndex":4524,"stopIndex":4665,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15574},"className":"SelectorItem","_owner":{"__isSmartRef__":true,"id":15572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15590":{"name":null,"type":"comment","startIndex":4670,"stopIndex":4742,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15591":{"name":"SelectorFolder","type":"klassDef","startIndex":4743,"stopIndex":8143,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15592},{"__isSmartRef__":true,"id":15594},{"__isSmartRef__":true,"id":15595},{"__isSmartRef__":true,"id":15596},{"__isSmartRef__":true,"id":15597},{"__isSmartRef__":true,"id":15598},{"__isSmartRef__":true,"id":15599},{"__isSmartRef__":true,"id":15600},{"__isSmartRef__":true,"id":15601},{"__isSmartRef__":true,"id":15602},{"__isSmartRef__":true,"id":15603},{"__isSmartRef__":true,"id":15604},{"__isSmartRef__":true,"id":15605}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"SelectorItem","categories":[{"__isSmartRef__":true,"id":15593}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15592":{"name":"initialize","type":"propertyDef","startIndex":4786,"stopIndex":5017,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15593":{"name":"default category","type":"categoryDef","startIndex":4783,"stopIndex":8140,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15592},{"__isSmartRef__":true,"id":15594},{"__isSmartRef__":true,"id":15595},{"__isSmartRef__":true,"id":15596},{"__isSmartRef__":true,"id":15597},{"__isSmartRef__":true,"id":15598},{"__isSmartRef__":true,"id":15599},{"__isSmartRef__":true,"id":15600},{"__isSmartRef__":true,"id":15601},{"__isSmartRef__":true,"id":15602},{"__isSmartRef__":true,"id":15603},{"__isSmartRef__":true,"id":15604},{"__isSmartRef__":true,"id":15605}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15594":{"name":"open","type":"propertyDef","startIndex":5024,"stopIndex":5076,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15595":{"name":"close","type":"propertyDef","startIndex":5079,"stopIndex":5132,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15596":{"name":"isOpen","type":"propertyDef","startIndex":5135,"stopIndex":5199,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15597":{"name":"isClosed","type":"propertyDef","startIndex":5202,"stopIndex":5268,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15598":{"name":"isFolder","type":"propertyDef","startIndex":5271,"stopIndex":5324,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15599":{"name":"isOpenFolder","type":"propertyDef","startIndex":5331,"stopIndex":5396,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15600":{"name":"isEmptyFolder","type":"propertyDef","startIndex":5403,"stopIndex":5479,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15601":{"name":"updateView","type":"propertyDef","startIndex":5486,"stopIndex":5756,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15602":{"name":"getContents","type":"propertyDef","startIndex":5759,"stopIndex":6700,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15603":{"name":"setContents","type":"propertyDef","startIndex":6703,"stopIndex":6766,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15604":{"name":"calculateStatistics","type":"propertyDef","startIndex":6769,"stopIndex":7726,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15605":{"name":"containsFoundItems","type":"propertyDef","startIndex":7733,"stopIndex":8139,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15593},"className":"SelectorFolder","_owner":{"__isSmartRef__":true,"id":15591},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15606":{"name":null,"type":"comment","startIndex":8144,"stopIndex":8209,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15607":{"name":"SelectorNote","type":"klassDef","startIndex":8210,"stopIndex":8409,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15608}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"SelectorItem","categories":[{"__isSmartRef__":true,"id":15609}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15608":{"name":"initialize","type":"propertyDef","startIndex":8251,"stopIndex":8405,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15609},"className":"SelectorNote","_owner":{"__isSmartRef__":true,"id":15607},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15609":{"name":"default category","type":"categoryDef","startIndex":8248,"stopIndex":8406,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15608}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15610":{"name":null,"type":"comment","startIndex":8410,"stopIndex":9203,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15611":{"name":"CaptionTextMorph","type":"klassDef","startIndex":9204,"stopIndex":14180,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15612},{"__isSmartRef__":true,"id":15614},{"__isSmartRef__":true,"id":15615},{"__isSmartRef__":true,"id":15616},{"__isSmartRef__":true,"id":15617},{"__isSmartRef__":true,"id":15618},{"__isSmartRef__":true,"id":15619}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":15613}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15612":{"name":"initialize","type":"propertyDef","startIndex":9246,"stopIndex":9799,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15613},"className":"CaptionTextMorph","_owner":{"__isSmartRef__":true,"id":15611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15613":{"name":"default category","type":"categoryDef","startIndex":9243,"stopIndex":14177,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15612},{"__isSmartRef__":true,"id":15614},{"__isSmartRef__":true,"id":15615},{"__isSmartRef__":true,"id":15616},{"__isSmartRef__":true,"id":15617},{"__isSmartRef__":true,"id":15618},{"__isSmartRef__":true,"id":15619}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15614":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":9802,"stopIndex":9923,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15613},"className":"CaptionTextMorph","_owner":{"__isSmartRef__":true,"id":15611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15615":{"name":"getModel","type":"propertyDef","startIndex":9926,"stopIndex":9988,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15613},"className":"CaptionTextMorph","_owner":{"__isSmartRef__":true,"id":15611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15616":{"name":"getParent","type":"propertyDef","startIndex":9991,"stopIndex":10189,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15613},"className":"CaptionTextMorph","_owner":{"__isSmartRef__":true,"id":15611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15617":{"name":"onFocus","type":"propertyDef","startIndex":10192,"stopIndex":10620,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15613},"className":"CaptionTextMorph","_owner":{"__isSmartRef__":true,"id":15611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15618":{"name":"onBlur","type":"propertyDef","startIndex":10623,"stopIndex":10973,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15613},"className":"CaptionTextMorph","_owner":{"__isSmartRef__":true,"id":15611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15619":{"name":"onKeyDown","type":"propertyDef","startIndex":10976,"stopIndex":14176,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15613},"className":"CaptionTextMorph","_owner":{"__isSmartRef__":true,"id":15611},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15620":{"name":null,"type":"comment","startIndex":14181,"stopIndex":14396,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15621":{"name":"CaptionImageMorph","type":"klassDef","startIndex":14397,"stopIndex":19572,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15622},{"__isSmartRef__":true,"id":15624},{"__isSmartRef__":true,"id":15625},{"__isSmartRef__":true,"id":15626},{"__isSmartRef__":true,"id":15627},{"__isSmartRef__":true,"id":15628},{"__isSmartRef__":true,"id":15629},{"__isSmartRef__":true,"id":15630}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ImageMorph","categories":[{"__isSmartRef__":true,"id":15623}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15622":{"name":"ITEMHEIGHT","type":"propertyDef","startIndex":14441,"stopIndex":14476,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15623":{"name":"default category","type":"categoryDef","startIndex":14438,"stopIndex":19569,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15622},{"__isSmartRef__":true,"id":15624},{"__isSmartRef__":true,"id":15625},{"__isSmartRef__":true,"id":15626},{"__isSmartRef__":true,"id":15627},{"__isSmartRef__":true,"id":15628},{"__isSmartRef__":true,"id":15629},{"__isSmartRef__":true,"id":15630}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15624":{"name":"MOVETHRESHOLD","type":"propertyDef","startIndex":14478,"stopIndex":14498,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15625":{"name":"initialize","type":"propertyDef","startIndex":14501,"stopIndex":16399,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15626":{"name":"getParent","type":"propertyDef","startIndex":16402,"stopIndex":16601,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15627":{"name":"handlesMouseDown","type":"propertyDef","startIndex":16604,"stopIndex":16670,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15628":{"name":"onMouseDown","type":"propertyDef","startIndex":16673,"stopIndex":17100,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15629":{"name":"onMouseMove","type":"propertyDef","startIndex":17103,"stopIndex":17933,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15630":{"name":"onMouseUp","type":"propertyDef","startIndex":17936,"stopIndex":19568,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15623},"className":"CaptionImageMorph","_owner":{"__isSmartRef__":true,"id":15621},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15631":{"name":null,"type":"comment","startIndex":19573,"stopIndex":19753,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15632":{"name":"SelectorViewItem","type":"klassDef","startIndex":19754,"stopIndex":22114,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15633},{"__isSmartRef__":true,"id":15635},{"__isSmartRef__":true,"id":15636},{"__isSmartRef__":true,"id":15637},{"__isSmartRef__":true,"id":15638},{"__isSmartRef__":true,"id":15639},{"__isSmartRef__":true,"id":15640},{"__isSmartRef__":true,"id":15641},{"__isSmartRef__":true,"id":15642},{"__isSmartRef__":true,"id":15643},{"__isSmartRef__":true,"id":15644},{"__isSmartRef__":true,"id":15645},{"__isSmartRef__":true,"id":15646}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15634}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15633":{"name":"ICONLEFTPADDING","type":"propertyDef","startIndex":19795,"stopIndex":19853,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15634":{"name":"default category","type":"categoryDef","startIndex":19792,"stopIndex":22111,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15633},{"__isSmartRef__":true,"id":15635},{"__isSmartRef__":true,"id":15636},{"__isSmartRef__":true,"id":15637},{"__isSmartRef__":true,"id":15638},{"__isSmartRef__":true,"id":15639},{"__isSmartRef__":true,"id":15640},{"__isSmartRef__":true,"id":15641},{"__isSmartRef__":true,"id":15642},{"__isSmartRef__":true,"id":15643},{"__isSmartRef__":true,"id":15644},{"__isSmartRef__":true,"id":15645},{"__isSmartRef__":true,"id":15646}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15635":{"name":"ICONTOPPADDING","type":"propertyDef","startIndex":19855,"stopIndex":19876,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15636":{"name":"ICONWIDTH","type":"propertyDef","startIndex":19878,"stopIndex":19895,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15637":{"name":"ICONHEIGHT","type":"propertyDef","startIndex":19897,"stopIndex":19915,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15638":{"name":"TEXTLEFTPADDING","type":"propertyDef","startIndex":19918,"stopIndex":19977,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15639":{"name":"TEXTTOPPADDING","type":"propertyDef","startIndex":19979,"stopIndex":20000,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15640":{"name":"TEXTWIDTH","type":"propertyDef","startIndex":20002,"stopIndex":20020,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15641":{"name":"TEXTHEIGHT","type":"propertyDef","startIndex":20022,"stopIndex":20040,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15642":{"name":"initialize","type":"propertyDef","startIndex":20043,"stopIndex":21313,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15643":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":21316,"stopIndex":21437,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15644":{"name":"updateIcon","type":"propertyDef","startIndex":21440,"stopIndex":21854,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15645":{"name":"getParent","type":"propertyDef","startIndex":21857,"stopIndex":22044,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15646":{"name":"getModel","type":"propertyDef","startIndex":22047,"stopIndex":22110,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15634},"className":"SelectorViewItem","_owner":{"__isSmartRef__":true,"id":15632},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15647":{"name":null,"type":"comment","startIndex":22115,"stopIndex":22197,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15648":{"name":"SelectorView","type":"klassDef","startIndex":22198,"stopIndex":38502,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15649},{"__isSmartRef__":true,"id":15651},{"__isSmartRef__":true,"id":15652},{"__isSmartRef__":true,"id":15653},{"__isSmartRef__":true,"id":15654},{"__isSmartRef__":true,"id":15655},{"__isSmartRef__":true,"id":15656},{"__isSmartRef__":true,"id":15657},{"__isSmartRef__":true,"id":15658},{"__isSmartRef__":true,"id":15659},{"__isSmartRef__":true,"id":15660},{"__isSmartRef__":true,"id":15661},{"__isSmartRef__":true,"id":15662},{"__isSmartRef__":true,"id":15663},{"__isSmartRef__":true,"id":15664},{"__isSmartRef__":true,"id":15665},{"__isSmartRef__":true,"id":15666},{"__isSmartRef__":true,"id":15667},{"__isSmartRef__":true,"id":15668},{"__isSmartRef__":true,"id":15669},{"__isSmartRef__":true,"id":15670}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":15650}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15649":{"name":"LEFTPADDING","type":"propertyDef","startIndex":22232,"stopIndex":22286,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15650":{"name":"default category","type":"categoryDef","startIndex":22229,"stopIndex":38499,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15649},{"__isSmartRef__":true,"id":15651},{"__isSmartRef__":true,"id":15652},{"__isSmartRef__":true,"id":15653},{"__isSmartRef__":true,"id":15654},{"__isSmartRef__":true,"id":15655},{"__isSmartRef__":true,"id":15656},{"__isSmartRef__":true,"id":15657},{"__isSmartRef__":true,"id":15658},{"__isSmartRef__":true,"id":15659},{"__isSmartRef__":true,"id":15660},{"__isSmartRef__":true,"id":15661},{"__isSmartRef__":true,"id":15662},{"__isSmartRef__":true,"id":15663},{"__isSmartRef__":true,"id":15664},{"__isSmartRef__":true,"id":15665},{"__isSmartRef__":true,"id":15666},{"__isSmartRef__":true,"id":15667},{"__isSmartRef__":true,"id":15668},{"__isSmartRef__":true,"id":15669},{"__isSmartRef__":true,"id":15670}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15651":{"name":"INDENTFACTOR","type":"propertyDef","startIndex":22288,"stopIndex":22308,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15652":{"name":"ITEMWIDTH","type":"propertyDef","startIndex":22310,"stopIndex":22328,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15653":{"name":"ITEMHEIGHT","type":"propertyDef","startIndex":22330,"stopIndex":22348,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15654":{"name":"initialize","type":"propertyDef","startIndex":22351,"stopIndex":23385,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15655":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":23388,"stopIndex":23509,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15656":{"name":"getModel","type":"propertyDef","startIndex":23512,"stopIndex":23574,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15657":{"name":"setModel","type":"propertyDef","startIndex":23577,"stopIndex":23645,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15658":{"name":"getCurrentViewItem","type":"propertyDef","startIndex":23648,"stopIndex":23834,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15659":{"name":"setCurrentViewItem","type":"propertyDef","startIndex":23841,"stopIndex":25328,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15660":{"name":"updateView","type":"propertyDef","startIndex":25565,"stopIndex":26413,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15661":{"name":"updateFolder","type":"propertyDef","startIndex":26416,"stopIndex":27731,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15662":{"name":"addSearchColor","type":"propertyDef","startIndex":27734,"stopIndex":28233,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15663":{"name":"moveItem","type":"propertyDef","startIndex":28420,"stopIndex":32640,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15664":{"name":"insertAfterCurrentViewItem","type":"propertyDef","startIndex":32647,"stopIndex":33870,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15665":{"name":"deleteCurrentViewItem","type":"propertyDef","startIndex":33873,"stopIndex":35209,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15666":{"name":"findNextWithSameIndent","type":"propertyDef","startIndex":35216,"stopIndex":36216,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15667":{"name":"getSearchMode","type":"propertyDef","startIndex":36223,"stopIndex":36292,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15668":{"name":"setSearchMode","type":"propertyDef","startIndex":36295,"stopIndex":36428,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15669":{"name":"toggleSearchMode","type":"propertyDef","startIndex":36431,"stopIndex":36603,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15670":{"name":"setNextFoundAsCurrentViewItem","type":"propertyDef","startIndex":36610,"stopIndex":38498,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15650},"className":"SelectorView","_owner":{"__isSmartRef__":true,"id":15648},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15671":{"name":null,"type":"comment","startIndex":38503,"stopIndex":38579,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15672":{"name":"TreePane","type":"functionDef","startIndex":38580,"stopIndex":38693,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15673":{"name":null,"type":"comment","startIndex":38694,"stopIndex":38785,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15674":{"name":"IconPane","type":"klassDef","startIndex":38786,"stopIndex":41561,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15675},{"__isSmartRef__":true,"id":15677},{"__isSmartRef__":true,"id":15678}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ClipMorph","categories":[{"__isSmartRef__":true,"id":15676}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15675":{"name":"initialize","type":"propertyDef","startIndex":38820,"stopIndex":40734,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15676},"className":"IconPane","_owner":{"__isSmartRef__":true,"id":15674},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15676":{"name":"default category","type":"categoryDef","startIndex":38817,"stopIndex":41558,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15675},{"__isSmartRef__":true,"id":15677},{"__isSmartRef__":true,"id":15678}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15677":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":40741,"stopIndex":40862,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15676},"className":"IconPane","_owner":{"__isSmartRef__":true,"id":15674},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15678":{"name":"connectButtons","type":"propertyDef","startIndex":40865,"stopIndex":41557,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15676},"className":"IconPane","_owner":{"__isSmartRef__":true,"id":15674},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15679":{"name":null,"type":"comment","startIndex":41562,"stopIndex":41801,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15680":{"name":"WebPIM","type":"klassDef","startIndex":41802,"stopIndex":66810,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15681},{"__isSmartRef__":true,"id":15683},{"__isSmartRef__":true,"id":15684},{"__isSmartRef__":true,"id":15685},{"__isSmartRef__":true,"id":15686},{"__isSmartRef__":true,"id":15687},{"__isSmartRef__":true,"id":15688},{"__isSmartRef__":true,"id":15689},{"__isSmartRef__":true,"id":15690},{"__isSmartRef__":true,"id":15691},{"__isSmartRef__":true,"id":15692},{"__isSmartRef__":true,"id":15693},{"__isSmartRef__":true,"id":15694},{"__isSmartRef__":true,"id":15695},{"__isSmartRef__":true,"id":15696},{"__isSmartRef__":true,"id":15697},{"__isSmartRef__":true,"id":15698},{"__isSmartRef__":true,"id":15699},{"__isSmartRef__":true,"id":15700},{"__isSmartRef__":true,"id":15701},{"__isSmartRef__":true,"id":15702},{"__isSmartRef__":true,"id":15703},{"__isSmartRef__":true,"id":15704},{"__isSmartRef__":true,"id":15705},{"__isSmartRef__":true,"id":15706},{"__isSmartRef__":true,"id":15707},{"__isSmartRef__":true,"id":15708},{"__isSmartRef__":true,"id":15709}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":15682}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15681":{"name":"initialize","type":"propertyDef","startIndex":41831,"stopIndex":42958,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15682":{"name":"default category","type":"categoryDef","startIndex":41828,"stopIndex":66807,"fileName":"lively/WebPIM.js","_subElements":[{"__isSmartRef__":true,"id":15681},{"__isSmartRef__":true,"id":15683},{"__isSmartRef__":true,"id":15684},{"__isSmartRef__":true,"id":15685},{"__isSmartRef__":true,"id":15686},{"__isSmartRef__":true,"id":15687},{"__isSmartRef__":true,"id":15688},{"__isSmartRef__":true,"id":15689},{"__isSmartRef__":true,"id":15690},{"__isSmartRef__":true,"id":15691},{"__isSmartRef__":true,"id":15692},{"__isSmartRef__":true,"id":15693},{"__isSmartRef__":true,"id":15694},{"__isSmartRef__":true,"id":15695},{"__isSmartRef__":true,"id":15696},{"__isSmartRef__":true,"id":15697},{"__isSmartRef__":true,"id":15698},{"__isSmartRef__":true,"id":15699},{"__isSmartRef__":true,"id":15700},{"__isSmartRef__":true,"id":15701},{"__isSmartRef__":true,"id":15702},{"__isSmartRef__":true,"id":15703},{"__isSmartRef__":true,"id":15704},{"__isSmartRef__":true,"id":15705},{"__isSmartRef__":true,"id":15706},{"__isSmartRef__":true,"id":15707},{"__isSmartRef__":true,"id":15708},{"__isSmartRef__":true,"id":15709}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15683":{"name":"getParent","type":"propertyDef","startIndex":42961,"stopIndex":43015,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15684":{"name":"getId","type":"propertyDef","startIndex":43018,"stopIndex":43076,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15685":{"name":"getCaption","type":"propertyDef","startIndex":43079,"stopIndex":43132,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15686":{"name":"isFolder","type":"propertyDef","startIndex":43135,"stopIndex":43188,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15687":{"name":"isOpen","type":"propertyDef","startIndex":43191,"stopIndex":43242,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15688":{"name":"isOpenFolder","type":"propertyDef","startIndex":43245,"stopIndex":43302,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15689":{"name":"openIn","type":"propertyDef","startIndex":43305,"stopIndex":43691,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15690":{"name":"buildView","type":"propertyDef","startIndex":43694,"stopIndex":46477,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15691":{"name":"search","type":"propertyDef","startIndex":46484,"stopIndex":46694,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15692":{"name":"searchFolder","type":"propertyDef","startIndex":46697,"stopIndex":47684,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15693":{"name":"insertNewNote","type":"propertyDef","startIndex":47755,"stopIndex":48872,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15694":{"name":"insertNewFolder","type":"propertyDef","startIndex":48875,"stopIndex":49976,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15695":{"name":"deleteCurrentItem","type":"propertyDef","startIndex":49983,"stopIndex":50340,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15696":{"name":"openSearchDialog","type":"propertyDef","startIndex":50343,"stopIndex":50897,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15697":{"name":"findNextDialog","type":"propertyDef","startIndex":50900,"stopIndex":51066,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15698":{"name":"toggleSearchDialog","type":"propertyDef","startIndex":51069,"stopIndex":51457,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15699":{"name":"checkModelIntegrity","type":"propertyDef","startIndex":51464,"stopIndex":52386,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15700":{"name":"checkFolder","type":"propertyDef","startIndex":52393,"stopIndex":53065,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15701":{"name":"generateSamplePIMData","type":"propertyDef","startIndex":53072,"stopIndex":55032,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15702":{"name":"unserializeDataFromWebServer","type":"propertyDef","startIndex":55196,"stopIndex":55316,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15703":{"name":"serializeDataToWebServer","type":"propertyDef","startIndex":55323,"stopIndex":55407,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15704":{"name":"serializeFolder","type":"propertyDef","startIndex":55410,"stopIndex":56143,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15705":{"name":"serializeNote","type":"propertyDef","startIndex":56146,"stopIndex":56360,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15706":{"name":"parseDatabase","type":"propertyDef","startIndex":56363,"stopIndex":57286,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15707":{"name":"unserializeValue","type":"propertyDef","startIndex":57289,"stopIndex":59795,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15708":{"name":"generateBrowserData","type":"propertyDef","startIndex":59939,"stopIndex":60205,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15709":{"name":"generateFolderContents","type":"propertyDef","startIndex":60208,"stopIndex":66806,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15682},"className":"WebPIM","_owner":{"__isSmartRef__":true,"id":15680},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15710":{"name":null,"type":"comment","startIndex":66811,"stopIndex":66858,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15711":{"name":null,"type":"unknown","startIndex":66859,"stopIndex":66899,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15712":{"name":null,"type":"unknown","startIndex":66900,"stopIndex":66929,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15713":{"name":null,"type":"unknown","startIndex":66930,"stopIndex":67009,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15714":{"name":null,"type":"comment","startIndex":67010,"stopIndex":67010,"fileName":"lively/WebPIM.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15715":{"target":{"__isSmartRef__":true,"id":15716},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Widgets.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"15716":{"name":"lively.Widgets","type":"moduleDef","startIndex":1910,"stopIndex":194649,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15717},{"__isSmartRef__":true,"id":15718},{"__isSmartRef__":true,"id":15762},{"__isSmartRef__":true,"id":15763},{"__isSmartRef__":true,"id":15774},{"__isSmartRef__":true,"id":15775},{"__isSmartRef__":true,"id":15787},{"__isSmartRef__":true,"id":15788},{"__isSmartRef__":true,"id":15818},{"__isSmartRef__":true,"id":15821},{"__isSmartRef__":true,"id":15822},{"__isSmartRef__":true,"id":15828},{"__isSmartRef__":true,"id":15829},{"__isSmartRef__":true,"id":15843},{"__isSmartRef__":true,"id":15846},{"__isSmartRef__":true,"id":15847},{"__isSmartRef__":true,"id":15866},{"__isSmartRef__":true,"id":15867},{"__isSmartRef__":true,"id":15902},{"__isSmartRef__":true,"id":15903},{"__isSmartRef__":true,"id":15919},{"__isSmartRef__":true,"id":15920},{"__isSmartRef__":true,"id":15923},{"__isSmartRef__":true,"id":15924},{"__isSmartRef__":true,"id":15954},{"__isSmartRef__":true,"id":15955},{"__isSmartRef__":true,"id":16002},{"__isSmartRef__":true,"id":16003},{"__isSmartRef__":true,"id":16025},{"__isSmartRef__":true,"id":16026},{"__isSmartRef__":true,"id":16029},{"__isSmartRef__":true,"id":16030},{"__isSmartRef__":true,"id":16039},{"__isSmartRef__":true,"id":16040},{"__isSmartRef__":true,"id":16051},{"__isSmartRef__":true,"id":16052},{"__isSmartRef__":true,"id":16056},{"__isSmartRef__":true,"id":16057},{"__isSmartRef__":true,"id":16075},{"__isSmartRef__":true,"id":16076},{"__isSmartRef__":true,"id":16081},{"__isSmartRef__":true,"id":16082},{"__isSmartRef__":true,"id":16089},{"__isSmartRef__":true,"id":16090},{"__isSmartRef__":true,"id":16137},{"__isSmartRef__":true,"id":16140},{"__isSmartRef__":true,"id":16141},{"__isSmartRef__":true,"id":16170},{"__isSmartRef__":true,"id":16171},{"__isSmartRef__":true,"id":16227},{"__isSmartRef__":true,"id":16228},{"__isSmartRef__":true,"id":16238},{"__isSmartRef__":true,"id":16239},{"__isSmartRef__":true,"id":16253},{"__isSmartRef__":true,"id":16254},{"__isSmartRef__":true,"id":16272},{"__isSmartRef__":true,"id":16292},{"__isSmartRef__":true,"id":16302},{"__isSmartRef__":true,"id":16303},{"__isSmartRef__":true,"id":16325},{"__isSmartRef__":true,"id":16326},{"__isSmartRef__":true,"id":16330},{"__isSmartRef__":true,"id":16331},{"__isSmartRef__":true,"id":16342},{"__isSmartRef__":true,"id":16343},{"__isSmartRef__":true,"id":16362},{"__isSmartRef__":true,"id":16363},{"__isSmartRef__":true,"id":16371},{"__isSmartRef__":true,"id":16372},{"__isSmartRef__":true,"id":16380},{"__isSmartRef__":true,"id":16381},{"__isSmartRef__":true,"id":16390},{"__isSmartRef__":true,"id":16391},{"__isSmartRef__":true,"id":16392},{"__isSmartRef__":true,"id":16407},{"__isSmartRef__":true,"id":16408},{"__isSmartRef__":true,"id":16414},{"__isSmartRef__":true,"id":16415},{"__isSmartRef__":true,"id":16435},{"__isSmartRef__":true,"id":16436},{"__isSmartRef__":true,"id":16449},{"__isSmartRef__":true,"id":16450},{"__isSmartRef__":true,"id":16467},{"__isSmartRef__":true,"id":16468},{"__isSmartRef__":true,"id":16473},{"__isSmartRef__":true,"id":16474},{"__isSmartRef__":true,"id":16515},{"__isSmartRef__":true,"id":16516},{"__isSmartRef__":true,"id":16519},{"__isSmartRef__":true,"id":16520},{"__isSmartRef__":true,"id":16526},{"__isSmartRef__":true,"id":16527},{"__isSmartRef__":true,"id":16537},{"__isSmartRef__":true,"id":16541},{"__isSmartRef__":true,"id":16542},{"__isSmartRef__":true,"id":16543},{"__isSmartRef__":true,"id":16548},{"__isSmartRef__":true,"id":16549},{"__isSmartRef__":true,"id":16571},{"__isSmartRef__":true,"id":16572},{"__isSmartRef__":true,"id":16603},{"__isSmartRef__":true,"id":16604},{"__isSmartRef__":true,"id":16608},{"__isSmartRef__":true,"id":16609},{"__isSmartRef__":true,"id":16614},{"__isSmartRef__":true,"id":16615},{"__isSmartRef__":true,"id":16618},{"__isSmartRef__":true,"id":16619},{"__isSmartRef__":true,"id":16625},{"__isSmartRef__":true,"id":16626},{"__isSmartRef__":true,"id":16634},{"__isSmartRef__":true,"id":16635},{"__isSmartRef__":true,"id":16654},{"__isSmartRef__":true,"id":16657},{"__isSmartRef__":true,"id":16658},{"__isSmartRef__":true,"id":16671},{"__isSmartRef__":true,"id":16672},{"__isSmartRef__":true,"id":16694},{"__isSmartRef__":true,"id":16703},{"__isSmartRef__":true,"id":16707},{"__isSmartRef__":true,"id":16720},{"__isSmartRef__":true,"id":16721},{"__isSmartRef__":true,"id":16725},{"__isSmartRef__":true,"id":16726},{"__isSmartRef__":true,"id":16729},{"__isSmartRef__":true,"id":16730},{"__isSmartRef__":true,"id":16744},{"__isSmartRef__":true,"id":16765},{"__isSmartRef__":true,"id":16766},{"__isSmartRef__":true,"id":16772},{"__isSmartRef__":true,"id":16773},{"__isSmartRef__":true,"id":16777},{"__isSmartRef__":true,"id":16778}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15717":{"name":null,"type":"comment","startIndex":2035,"stopIndex":2035,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15718":{"name":"ButtonMorph","type":"klassDef","startIndex":2036,"stopIndex":8800,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15719},{"__isSmartRef__":true,"id":15721},{"__isSmartRef__":true,"id":15723},{"__isSmartRef__":true,"id":15724},{"__isSmartRef__":true,"id":15725},{"__isSmartRef__":true,"id":15726},{"__isSmartRef__":true,"id":15727},{"__isSmartRef__":true,"id":15728},{"__isSmartRef__":true,"id":15729},{"__isSmartRef__":true,"id":15730},{"__isSmartRef__":true,"id":15731},{"__isSmartRef__":true,"id":15733},{"__isSmartRef__":true,"id":15735},{"__isSmartRef__":true,"id":15737},{"__isSmartRef__":true,"id":15738},{"__isSmartRef__":true,"id":15739},{"__isSmartRef__":true,"id":15740},{"__isSmartRef__":true,"id":15741},{"__isSmartRef__":true,"id":15742},{"__isSmartRef__":true,"id":15743},{"__isSmartRef__":true,"id":15745},{"__isSmartRef__":true,"id":15746},{"__isSmartRef__":true,"id":15747},{"__isSmartRef__":true,"id":15748},{"__isSmartRef__":true,"id":15749},{"__isSmartRef__":true,"id":15750},{"__isSmartRef__":true,"id":15751},{"__isSmartRef__":true,"id":15752},{"__isSmartRef__":true,"id":15754},{"__isSmartRef__":true,"id":15755},{"__isSmartRef__":true,"id":15756},{"__isSmartRef__":true,"id":15758},{"__isSmartRef__":true,"id":15759},{"__isSmartRef__":true,"id":15761}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15720},{"__isSmartRef__":true,"id":15722},{"__isSmartRef__":true,"id":15732},{"__isSmartRef__":true,"id":15734},{"__isSmartRef__":true,"id":15736},{"__isSmartRef__":true,"id":15744},{"__isSmartRef__":true,"id":15753},{"__isSmartRef__":true,"id":15757},{"__isSmartRef__":true,"id":15760}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15719":{"name":"documentation","type":"propertyDef","startIndex":2088,"stopIndex":2173,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15720},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15720":{"name":"documentation","type":"categoryDef","startIndex":2069,"stopIndex":2176,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15719}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15721":{"name":"focusHaloBorderWidth","type":"propertyDef","startIndex":2202,"stopIndex":2229,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15722":{"name":"settings and state","type":"categoryDef","startIndex":2178,"stopIndex":2528,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15721},{"__isSmartRef__":true,"id":15723},{"__isSmartRef__":true,"id":15724},{"__isSmartRef__":true,"id":15725},{"__isSmartRef__":true,"id":15726},{"__isSmartRef__":true,"id":15727},{"__isSmartRef__":true,"id":15728},{"__isSmartRef__":true,"id":15729},{"__isSmartRef__":true,"id":15730}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15723":{"name":"label","type":"propertyDef","startIndex":2230,"stopIndex":2270,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15724":{"name":"toggle","type":"propertyDef","startIndex":2272,"stopIndex":2289,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15725":{"name":"styleClass","type":"propertyDef","startIndex":2290,"stopIndex":2362,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15726":{"name":"formals","type":"propertyDef","startIndex":2365,"stopIndex":2399,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15727":{"name":"connections","type":"propertyDef","startIndex":2401,"stopIndex":2444,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15728":{"name":"focusHaloBorderWidth","type":"propertyDef","startIndex":2447,"stopIndex":2471,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15729":{"name":"suppressHandles","type":"propertyDef","startIndex":2474,"stopIndex":2496,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15730":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":2499,"stopIndex":2525,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15722},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15731":{"name":"initialize","type":"propertyDef","startIndex":2548,"stopIndex":3230,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15732},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15732":{"name":"initializing","type":"categoryDef","startIndex":2530,"stopIndex":3233,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15731}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15733":{"name":"onDeserialize","type":"propertyDef","startIndex":3258,"stopIndex":3486,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15734},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15734":{"name":"XML serialization","type":"categoryDef","startIndex":3235,"stopIndex":3489,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15733}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15735":{"name":"setFill","type":"propertyDef","startIndex":3506,"stopIndex":3647,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15736},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15736":{"name":"accessing","type":"categoryDef","startIndex":3491,"stopIndex":4454,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15735},{"__isSmartRef__":true,"id":15737},{"__isSmartRef__":true,"id":15738},{"__isSmartRef__":true,"id":15739},{"__isSmartRef__":true,"id":15740},{"__isSmartRef__":true,"id":15741},{"__isSmartRef__":true,"id":15742}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15737":{"name":"getIsActive","type":"propertyDef","startIndex":3651,"stopIndex":3770,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15736},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15738":{"name":"getValue","type":"propertyDef","startIndex":3774,"stopIndex":3817,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15736},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15739":{"name":"setIsActive","type":"propertyDef","startIndex":3821,"stopIndex":3924,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15736},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15740":{"name":"setValue","type":"propertyDef","startIndex":3928,"stopIndex":4127,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15736},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15741":{"name":"setLabel","type":"propertyDef","startIndex":4130,"stopIndex":4356,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15736},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15742":{"name":"getLabel","type":"propertyDef","startIndex":4359,"stopIndex":4450,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15736},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15743":{"name":"handlesMouseDown","type":"propertyDef","startIndex":4476,"stopIndex":4574,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15744":{"name":"event handling","type":"categoryDef","startIndex":4456,"stopIndex":6043,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15743},{"__isSmartRef__":true,"id":15745},{"__isSmartRef__":true,"id":15746},{"__isSmartRef__":true,"id":15747},{"__isSmartRef__":true,"id":15748},{"__isSmartRef__":true,"id":15749},{"__isSmartRef__":true,"id":15750},{"__isSmartRef__":true,"id":15751}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15745":{"name":"onMouseDown","type":"propertyDef","startIndex":4581,"stopIndex":4794,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15746":{"name":"onMouseMove","type":"propertyDef","startIndex":4801,"stopIndex":4925,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15747":{"name":"onMouseUp","type":"propertyDef","startIndex":4928,"stopIndex":5113,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15748":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":5116,"stopIndex":5154,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15749":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":5196,"stopIndex":5232,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15750":{"name":"onKeyDown","type":"propertyDef","startIndex":5236,"stopIndex":5602,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15751":{"name":"onKeyUp","type":"propertyDef","startIndex":5605,"stopIndex":6039,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15744},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15752":{"name":"changeAppearanceFor","type":"propertyDef","startIndex":6058,"stopIndex":6256,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15753},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15753":{"name":"styling","type":"categoryDef","startIndex":6045,"stopIndex":7996,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15752},{"__isSmartRef__":true,"id":15754},{"__isSmartRef__":true,"id":15755}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15754":{"name":"initColor","type":"propertyDef","startIndex":6259,"stopIndex":7605,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15753},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15755":{"name":"applyStyle","type":"propertyDef","startIndex":7608,"stopIndex":7993,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15753},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15756":{"name":"updateView","type":"propertyDef","startIndex":8017,"stopIndex":8195,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15757},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15757":{"name":"model related","type":"categoryDef","startIndex":7998,"stopIndex":8478,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15756},{"__isSmartRef__":true,"id":15758}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15758":{"name":"buttonAction","type":"propertyDef","startIndex":8198,"stopIndex":8474,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15757},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15759":{"name":"onValueUpdate","type":"propertyDef","startIndex":8495,"stopIndex":8633,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15760},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15760":{"name":"callbacks","type":"categoryDef","startIndex":8480,"stopIndex":8797,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15759},{"__isSmartRef__":true,"id":15761}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15761":{"name":"onIsActiveUpdate","type":"propertyDef","startIndex":8637,"stopIndex":8794,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15760},"className":"ButtonMorph","_owner":{"__isSmartRef__":true,"id":15718},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15762":{"name":null,"type":"comment","startIndex":8801,"stopIndex":8801,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15763":{"name":"ButtonBehaviorMorph","type":"klassDef","startIndex":8802,"stopIndex":10114,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15764},{"__isSmartRef__":true,"id":15766},{"__isSmartRef__":true,"id":15767},{"__isSmartRef__":true,"id":15768},{"__isSmartRef__":true,"id":15769},{"__isSmartRef__":true,"id":15770},{"__isSmartRef__":true,"id":15771},{"__isSmartRef__":true,"id":15772},{"__isSmartRef__":true,"id":15773}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":15765}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15764":{"name":"documentation","type":"propertyDef","startIndex":8847,"stopIndex":8892,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15765":{"name":"default category","type":"categoryDef","startIndex":8840,"stopIndex":10111,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15764},{"__isSmartRef__":true,"id":15766},{"__isSmartRef__":true,"id":15767},{"__isSmartRef__":true,"id":15768},{"__isSmartRef__":true,"id":15769},{"__isSmartRef__":true,"id":15770},{"__isSmartRef__":true,"id":15771},{"__isSmartRef__":true,"id":15772},{"__isSmartRef__":true,"id":15773}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15766":{"name":"focusHaloBorderWidth","type":"propertyDef","startIndex":8894,"stopIndex":8921,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15767":{"name":"normalBorderFill","type":"propertyDef","startIndex":8922,"stopIndex":8973,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15768":{"name":"mouseOverFill","type":"propertyDef","startIndex":8975,"stopIndex":9004,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15769":{"name":"mousePressedFill","type":"propertyDef","startIndex":9006,"stopIndex":9040,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15770":{"name":"mouseDownAction","type":"propertyDef","startIndex":9042,"stopIndex":9080,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15771":{"name":"mouseUpAction","type":"propertyDef","startIndex":9082,"stopIndex":9118,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15772":{"name":"initialize","type":"propertyDef","startIndex":9122,"stopIndex":10083,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15773":{"name":"last","type":"propertyDef","startIndex":10086,"stopIndex":10110,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15765},"className":"ButtonBehaviorMorph","_owner":{"__isSmartRef__":true,"id":15763},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15774":{"name":null,"type":"comment","startIndex":10115,"stopIndex":10115,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15775":{"name":"ScriptableButtonMorph","type":"klassDef","startIndex":10116,"stopIndex":12092,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15776},{"__isSmartRef__":true,"id":15778},{"__isSmartRef__":true,"id":15779},{"__isSmartRef__":true,"id":15780},{"__isSmartRef__":true,"id":15781},{"__isSmartRef__":true,"id":15782},{"__isSmartRef__":true,"id":15783},{"__isSmartRef__":true,"id":15784},{"__isSmartRef__":true,"id":15785},{"__isSmartRef__":true,"id":15786}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ButtonMorph","categories":[{"__isSmartRef__":true,"id":15777}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15776":{"name":"documentation","type":"propertyDef","startIndex":10166,"stopIndex":10211,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15777":{"name":"default category","type":"categoryDef","startIndex":10162,"stopIndex":12089,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15776},{"__isSmartRef__":true,"id":15778},{"__isSmartRef__":true,"id":15779},{"__isSmartRef__":true,"id":15780},{"__isSmartRef__":true,"id":15781},{"__isSmartRef__":true,"id":15782},{"__isSmartRef__":true,"id":15783},{"__isSmartRef__":true,"id":15784},{"__isSmartRef__":true,"id":15785},{"__isSmartRef__":true,"id":15786}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15778":{"name":"initialize","type":"propertyDef","startIndex":10214,"stopIndex":10329,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15779":{"name":"setValue","type":"propertyDef","startIndex":10332,"stopIndex":10418,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15780":{"name":"getSourceForEval","type":"propertyDef","startIndex":10421,"stopIndex":10511,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15781":{"name":"doAction","type":"propertyDef","startIndex":10514,"stopIndex":10909,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15782":{"name":"morphMenu","type":"propertyDef","startIndex":10912,"stopIndex":11115,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15783":{"name":"editScript","type":"propertyDef","startIndex":11118,"stopIndex":11652,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15784":{"name":"editLabel","type":"propertyDef","startIndex":11656,"stopIndex":11809,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15785":{"name":"setLabel","type":"propertyDef","startIndex":11811,"stopIndex":11889,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15786":{"name":"centerAndAdjustLabel","type":"propertyDef","startIndex":11891,"stopIndex":12084,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15777},"className":"ScriptableButtonMorph","_owner":{"__isSmartRef__":true,"id":15775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15787":{"name":null,"type":"comment","startIndex":12093,"stopIndex":12093,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15788":{"name":"ImageMorph","type":"klassDef","startIndex":12094,"stopIndex":17231,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15789},{"__isSmartRef__":true,"id":15791},{"__isSmartRef__":true,"id":15792},{"__isSmartRef__":true,"id":15793},{"__isSmartRef__":true,"id":15794},{"__isSmartRef__":true,"id":15796},{"__isSmartRef__":true,"id":15798},{"__isSmartRef__":true,"id":15799},{"__isSmartRef__":true,"id":15801},{"__isSmartRef__":true,"id":15802},{"__isSmartRef__":true,"id":15803},{"__isSmartRef__":true,"id":15804},{"__isSmartRef__":true,"id":15805},{"__isSmartRef__":true,"id":15806},{"__isSmartRef__":true,"id":15808},{"__isSmartRef__":true,"id":15809},{"__isSmartRef__":true,"id":15811},{"__isSmartRef__":true,"id":15812},{"__isSmartRef__":true,"id":15813},{"__isSmartRef__":true,"id":15814},{"__isSmartRef__":true,"id":15815},{"__isSmartRef__":true,"id":15816}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15790},{"__isSmartRef__":true,"id":15795},{"__isSmartRef__":true,"id":15797},{"__isSmartRef__":true,"id":15800},{"__isSmartRef__":true,"id":15807},{"__isSmartRef__":true,"id":15810},{"__isSmartRef__":true,"id":15817}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15789":{"name":"documentation","type":"propertyDef","startIndex":12145,"stopIndex":12178,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15790},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15790":{"name":"initializing","type":"categoryDef","startIndex":12126,"stopIndex":12745,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15789},{"__isSmartRef__":true,"id":15791},{"__isSmartRef__":true,"id":15792},{"__isSmartRef__":true,"id":15793}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15791":{"name":"style","type":"propertyDef","startIndex":12180,"stopIndex":12233,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15790},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15792":{"name":"formals","type":"propertyDef","startIndex":12235,"stopIndex":12253,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15790},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15793":{"name":"initialize","type":"propertyDef","startIndex":12256,"stopIndex":12742,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15790},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15794":{"name":"restoreFromSubnode","type":"propertyDef","startIndex":12768,"stopIndex":13162,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15795},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15795":{"name":"deserializing","type":"categoryDef","startIndex":12747,"stopIndex":13165,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15794}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15796":{"name":"getURL","type":"propertyDef","startIndex":13183,"stopIndex":13236,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15797},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15797":{"name":"accessing","type":"categoryDef","startIndex":13167,"stopIndex":13433,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15796},{"__isSmartRef__":true,"id":15798}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15798":{"name":"setURL","type":"propertyDef","startIndex":13239,"stopIndex":13430,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15797},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15799":{"name":"loadGraphics","type":"propertyDef","startIndex":13448,"stopIndex":13585,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15800},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15800":{"name":"loading","type":"categoryDef","startIndex":13435,"stopIndex":14355,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15799},{"__isSmartRef__":true,"id":15801},{"__isSmartRef__":true,"id":15802},{"__isSmartRef__":true,"id":15803},{"__isSmartRef__":true,"id":15804},{"__isSmartRef__":true,"id":15805}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15801":{"name":"loadFromURL","type":"propertyDef","startIndex":13588,"stopIndex":13740,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15800},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15802":{"name":"reload","type":"propertyDef","startIndex":13743,"stopIndex":13790,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15800},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15803":{"name":"onURLUpdate","type":"propertyDef","startIndex":13793,"stopIndex":13850,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15800},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15804":{"name":"updateView","type":"propertyDef","startIndex":13853,"stopIndex":14011,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15800},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15805":{"name":"setOriginalImageSizeWhenLoaded","type":"propertyDef","startIndex":14014,"stopIndex":14351,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15800},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15806":{"name":"convertToBase64","type":"propertyDef","startIndex":14375,"stopIndex":15609,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15807},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15807":{"name":"inline image","type":"categoryDef","startIndex":14357,"stopIndex":15850,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15806},{"__isSmartRef__":true,"id":15808}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15808":{"name":"encodeOnServer","type":"propertyDef","startIndex":15611,"stopIndex":15846,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15807},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15809":{"name":"moveOriginBy","type":"propertyDef","startIndex":15870,"stopIndex":16123,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15810},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15810":{"name":"manipulation","type":"categoryDef","startIndex":15852,"stopIndex":16996,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15809},{"__isSmartRef__":true,"id":15811},{"__isSmartRef__":true,"id":15812},{"__isSmartRef__":true,"id":15813},{"__isSmartRef__":true,"id":15814},{"__isSmartRef__":true,"id":15815}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15811":{"name":"setOpacity","type":"propertyDef","startIndex":16126,"stopIndex":16182,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15810},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15812":{"name":"getOpacity","type":"propertyDef","startIndex":16185,"stopIndex":16248,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15810},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15813":{"name":"setExtent","type":"propertyDef","startIndex":16253,"stopIndex":16426,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15810},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15814":{"name":"reshape","type":"propertyDef","startIndex":16429,"stopIndex":16842,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15810},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15815":{"name":"editImageSrc","type":"propertyDef","startIndex":16846,"stopIndex":16993,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15810},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15816":{"name":"morphMenu","type":"propertyDef","startIndex":17009,"stopIndex":17224,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15817},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15788},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15817":{"name":"menu","type":"categoryDef","startIndex":16998,"stopIndex":17228,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15816}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15818":{"name":"ImageMorph","type":"klassExtensionDef","startIndex":17232,"stopIndex":17371,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15819}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15820}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15819":{"name":"forURL","type":"propertyDef","startIndex":17260,"stopIndex":17366,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15820},"className":"ImageMorph","_owner":{"__isSmartRef__":true,"id":15818},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15820":{"name":"default category","type":"categoryDef","startIndex":17258,"stopIndex":17368,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15819}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15821":{"name":null,"type":"comment","startIndex":17372,"stopIndex":17372,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15822":{"name":"ImageButtonMorph","type":"klassDef","startIndex":17373,"stopIndex":18232,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15823},{"__isSmartRef__":true,"id":15825},{"__isSmartRef__":true,"id":15826},{"__isSmartRef__":true,"id":15827}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ButtonMorph","categories":[{"__isSmartRef__":true,"id":15824}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15823":{"name":"documentation","type":"propertyDef","startIndex":17417,"stopIndex":17458,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15824},"className":"ImageButtonMorph","_owner":{"__isSmartRef__":true,"id":15822},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15824":{"name":"default category","type":"categoryDef","startIndex":17414,"stopIndex":18229,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15823},{"__isSmartRef__":true,"id":15825},{"__isSmartRef__":true,"id":15826},{"__isSmartRef__":true,"id":15827}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15825":{"name":"focusHaloBorderWidth","type":"propertyDef","startIndex":17460,"stopIndex":17487,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15824},"className":"ImageButtonMorph","_owner":{"__isSmartRef__":true,"id":15822},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15826":{"name":"initialize","type":"propertyDef","startIndex":17490,"stopIndex":17971,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15824},"className":"ImageButtonMorph","_owner":{"__isSmartRef__":true,"id":15822},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15827":{"name":"changeAppearanceFor","type":"propertyDef","startIndex":17978,"stopIndex":18228,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15824},"className":"ImageButtonMorph","_owner":{"__isSmartRef__":true,"id":15822},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15828":{"name":null,"type":"comment","startIndex":18233,"stopIndex":18233,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15829":{"name":"ClipMorph","type":"klassDef","startIndex":18234,"stopIndex":20242,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15830},{"__isSmartRef__":true,"id":15832},{"__isSmartRef__":true,"id":15833},{"__isSmartRef__":true,"id":15834},{"__isSmartRef__":true,"id":15835},{"__isSmartRef__":true,"id":15836},{"__isSmartRef__":true,"id":15837},{"__isSmartRef__":true,"id":15838},{"__isSmartRef__":true,"id":15839},{"__isSmartRef__":true,"id":15840},{"__isSmartRef__":true,"id":15841},{"__isSmartRef__":true,"id":15842}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15831}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15830":{"name":"documentation","type":"propertyDef","startIndex":18268,"stopIndex":18308,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15831":{"name":"default category","type":"categoryDef","startIndex":18265,"stopIndex":20239,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15830},{"__isSmartRef__":true,"id":15832},{"__isSmartRef__":true,"id":15833},{"__isSmartRef__":true,"id":15834},{"__isSmartRef__":true,"id":15835},{"__isSmartRef__":true,"id":15836},{"__isSmartRef__":true,"id":15837},{"__isSmartRef__":true,"id":15838},{"__isSmartRef__":true,"id":15839},{"__isSmartRef__":true,"id":15840},{"__isSmartRef__":true,"id":15841},{"__isSmartRef__":true,"id":15842}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15832":{"name":"style","type":"propertyDef","startIndex":18615,"stopIndex":18670,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15833":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":18674,"stopIndex":18700,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15834":{"name":"initialize","type":"propertyDef","startIndex":18703,"stopIndex":18828,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15835":{"name":"setupClipNode","type":"propertyDef","startIndex":18831,"stopIndex":19046,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15836":{"name":"restoreFromDefsNode","type":"propertyDef","startIndex":19050,"stopIndex":19360,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15837":{"name":"setBounds","type":"propertyDef","startIndex":19363,"stopIndex":19473,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15838":{"name":"bounds","type":"propertyDef","startIndex":19476,"stopIndex":19807,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15839":{"name":"innerMorph","type":"propertyDef","startIndex":19810,"stopIndex":19944,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15840":{"name":"layoutOnSubmorphLayout","type":"propertyDef","startIndex":19947,"stopIndex":20003,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15841":{"name":"copyFrom","type":"propertyDef","startIndex":20006,"stopIndex":20102,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15842":{"name":"reshape","type":"propertyDef","startIndex":20104,"stopIndex":20237,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15831},"className":"ClipMorph","_owner":{"__isSmartRef__":true,"id":15829},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15843":{"name":"Morph","type":"klassExtensionDef","startIndex":20243,"stopIndex":20826,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15844}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15845}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15844":{"name":"wrapInClip","type":"propertyDef","startIndex":20274,"stopIndex":20821,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15845},"className":"Morph","_owner":{"__isSmartRef__":true,"id":15843},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15845":{"name":"clipping","type":"categoryDef","startIndex":20260,"stopIndex":20823,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15844}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15846":{"name":null,"type":"comment","startIndex":20827,"stopIndex":21023,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15847":{"name":"HandleMorph","type":"klassDef","startIndex":21024,"stopIndex":26299,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15848},{"__isSmartRef__":true,"id":15850},{"__isSmartRef__":true,"id":15851},{"__isSmartRef__":true,"id":15852},{"__isSmartRef__":true,"id":15853},{"__isSmartRef__":true,"id":15854},{"__isSmartRef__":true,"id":15855},{"__isSmartRef__":true,"id":15856},{"__isSmartRef__":true,"id":15857},{"__isSmartRef__":true,"id":15858},{"__isSmartRef__":true,"id":15859},{"__isSmartRef__":true,"id":15860},{"__isSmartRef__":true,"id":15861},{"__isSmartRef__":true,"id":15862},{"__isSmartRef__":true,"id":15863},{"__isSmartRef__":true,"id":15864},{"__isSmartRef__":true,"id":15865}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":15849}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15848":{"name":"style","type":"propertyDef","startIndex":21058,"stopIndex":21119,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15849":{"name":"default category","type":"categoryDef","startIndex":21054,"stopIndex":26296,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15848},{"__isSmartRef__":true,"id":15850},{"__isSmartRef__":true,"id":15851},{"__isSmartRef__":true,"id":15852},{"__isSmartRef__":true,"id":15853},{"__isSmartRef__":true,"id":15854},{"__isSmartRef__":true,"id":15855},{"__isSmartRef__":true,"id":15856},{"__isSmartRef__":true,"id":15857},{"__isSmartRef__":true,"id":15858},{"__isSmartRef__":true,"id":15859},{"__isSmartRef__":true,"id":15860},{"__isSmartRef__":true,"id":15861},{"__isSmartRef__":true,"id":15862},{"__isSmartRef__":true,"id":15863},{"__isSmartRef__":true,"id":15864},{"__isSmartRef__":true,"id":15865}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15850":{"name":"controlHelpText","type":"propertyDef","startIndex":21122,"stopIndex":21304,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15851":{"name":"circleHelpText","type":"propertyDef","startIndex":21307,"stopIndex":21479,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15852":{"name":"maxHelpCount","type":"propertyDef","startIndex":21481,"stopIndex":21498,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15853":{"name":"helpCount","type":"propertyDef","startIndex":21500,"stopIndex":21513,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15854":{"name":"initialize","type":"propertyDef","startIndex":21515,"stopIndex":22168,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15855":{"name":"getHelpText","type":"propertyDef","startIndex":22172,"stopIndex":22303,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15856":{"name":"showHelp","type":"propertyDef","startIndex":22306,"stopIndex":22508,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15857":{"name":"okToDuplicate","type":"propertyDef","startIndex":22511,"stopIndex":22542,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15858":{"name":"handlesMouseDown","type":"propertyDef","startIndex":22545,"stopIndex":22593,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15859":{"name":"onMouseDown","type":"propertyDef","startIndex":22596,"stopIndex":22962,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15860":{"name":"onMouseMove","type":"propertyDef","startIndex":22965,"stopIndex":24773,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15861":{"name":"onMouseUp","type":"propertyDef","startIndex":24777,"stopIndex":25151,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15862":{"name":"handleReshape","type":"propertyDef","startIndex":25155,"stopIndex":25595,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15863":{"name":"inspect","type":"propertyDef","startIndex":25598,"stopIndex":25692,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15864":{"name":"scaleFor","type":"propertyDef","startIndex":25696,"stopIndex":25895,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15865":{"name":"normalize","type":"propertyDef","startIndex":25899,"stopIndex":26295,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15849},"className":"HandleMorph","_owner":{"__isSmartRef__":true,"id":15847},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15866":{"name":null,"type":"comment","startIndex":26300,"stopIndex":26300,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15867":{"name":"SelectionMorph","type":"klassDef","startIndex":26301,"stopIndex":36010,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15868},{"__isSmartRef__":true,"id":15870},{"__isSmartRef__":true,"id":15871},{"__isSmartRef__":true,"id":15872},{"__isSmartRef__":true,"id":15873},{"__isSmartRef__":true,"id":15874},{"__isSmartRef__":true,"id":15875},{"__isSmartRef__":true,"id":15876},{"__isSmartRef__":true,"id":15877},{"__isSmartRef__":true,"id":15878},{"__isSmartRef__":true,"id":15879},{"__isSmartRef__":true,"id":15880},{"__isSmartRef__":true,"id":15881},{"__isSmartRef__":true,"id":15882},{"__isSmartRef__":true,"id":15883},{"__isSmartRef__":true,"id":15884},{"__isSmartRef__":true,"id":15885},{"__isSmartRef__":true,"id":15886},{"__isSmartRef__":true,"id":15887},{"__isSmartRef__":true,"id":15888},{"__isSmartRef__":true,"id":15889},{"__isSmartRef__":true,"id":15890},{"__isSmartRef__":true,"id":15891},{"__isSmartRef__":true,"id":15892},{"__isSmartRef__":true,"id":15893},{"__isSmartRef__":true,"id":15894},{"__isSmartRef__":true,"id":15895},{"__isSmartRef__":true,"id":15896},{"__isSmartRef__":true,"id":15897},{"__isSmartRef__":true,"id":15898},{"__isSmartRef__":true,"id":15899},{"__isSmartRef__":true,"id":15900},{"__isSmartRef__":true,"id":15901}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15869}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15868":{"name":"documentation","type":"propertyDef","startIndex":26339,"stopIndex":26470,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15869":{"name":"default category","type":"categoryDef","startIndex":26337,"stopIndex":36007,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15868},{"__isSmartRef__":true,"id":15870},{"__isSmartRef__":true,"id":15871},{"__isSmartRef__":true,"id":15872},{"__isSmartRef__":true,"id":15873},{"__isSmartRef__":true,"id":15874},{"__isSmartRef__":true,"id":15875},{"__isSmartRef__":true,"id":15876},{"__isSmartRef__":true,"id":15877},{"__isSmartRef__":true,"id":15878},{"__isSmartRef__":true,"id":15879},{"__isSmartRef__":true,"id":15880},{"__isSmartRef__":true,"id":15881},{"__isSmartRef__":true,"id":15882},{"__isSmartRef__":true,"id":15883},{"__isSmartRef__":true,"id":15884},{"__isSmartRef__":true,"id":15885},{"__isSmartRef__":true,"id":15886},{"__isSmartRef__":true,"id":15887},{"__isSmartRef__":true,"id":15888},{"__isSmartRef__":true,"id":15889},{"__isSmartRef__":true,"id":15890},{"__isSmartRef__":true,"id":15891},{"__isSmartRef__":true,"id":15892},{"__isSmartRef__":true,"id":15893},{"__isSmartRef__":true,"id":15894},{"__isSmartRef__":true,"id":15895},{"__isSmartRef__":true,"id":15896},{"__isSmartRef__":true,"id":15897},{"__isSmartRef__":true,"id":15898},{"__isSmartRef__":true,"id":15899},{"__isSmartRef__":true,"id":15900},{"__isSmartRef__":true,"id":15901}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15870":{"name":"style","type":"propertyDef","startIndex":26473,"stopIndex":26569,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15871":{"name":"removeWhenEmpty","type":"propertyDef","startIndex":26572,"stopIndex":26594,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15872":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":26597,"stopIndex":26623,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15873":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":26626,"stopIndex":26661,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15874":{"name":"initialize","type":"propertyDef","startIndex":26666,"stopIndex":26960,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15875":{"name":"initializeTransientState","type":"propertyDef","startIndex":26963,"stopIndex":27083,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15876":{"name":"reshape","type":"propertyDef","startIndex":27086,"stopIndex":28464,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15877":{"name":"morphMenu","type":"propertyDef","startIndex":28467,"stopIndex":29012,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15878":{"name":"remove","type":"propertyDef","startIndex":29016,"stopIndex":29104,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15879":{"name":"removeOnlyIt","type":"propertyDef","startIndex":29108,"stopIndex":29338,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15880":{"name":"alignVertically","type":"propertyDef","startIndex":29342,"stopIndex":29765,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15881":{"name":"alignHorizontally","type":"propertyDef","startIndex":29768,"stopIndex":29998,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15882":{"name":"spaceVertically","type":"propertyDef","startIndex":30002,"stopIndex":30820,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15883":{"name":"spaceHorizontally","type":"propertyDef","startIndex":30823,"stopIndex":31648,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15884":{"name":"copyToHand","type":"propertyDef","startIndex":31652,"stopIndex":31801,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15885":{"name":"setBorderWidth","type":"propertyDef","startIndex":31805,"stopIndex":31994,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15886":{"name":"setFill","type":"propertyDef","startIndex":31998,"stopIndex":32173,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15887":{"name":"setBorderColor","type":"propertyDef","startIndex":32177,"stopIndex":32366,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15888":{"name":"shapeRoundEdgesBy","type":"propertyDef","startIndex":32369,"stopIndex":32557,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15889":{"name":"setFillOpacity","type":"propertyDef","startIndex":32561,"stopIndex":32741,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15890":{"name":"setStrokeOpacity","type":"propertyDef","startIndex":32745,"stopIndex":32928,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15891":{"name":"setTextColor","type":"propertyDef","startIndex":32931,"stopIndex":33087,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15892":{"name":"setFontSize","type":"propertyDef","startIndex":33090,"stopIndex":33243,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15893":{"name":"setFontFamily","type":"propertyDef","startIndex":33246,"stopIndex":33405,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15894":{"name":"setRotation","type":"propertyDef","startIndex":33408,"stopIndex":33685,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15895":{"name":"setScale","type":"propertyDef","startIndex":33689,"stopIndex":33961,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15896":{"name":"shadowCopy","type":"propertyDef","startIndex":33965,"stopIndex":34154,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15897":{"name":"reset","type":"propertyDef","startIndex":34156,"stopIndex":34307,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15898":{"name":"selectMorphs","type":"propertyDef","startIndex":34310,"stopIndex":35393,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15899":{"name":"removeSelecitonIndicators","type":"propertyDef","startIndex":35395,"stopIndex":35549,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15900":{"name":"canRespondTo","type":"propertyDef","startIndex":35554,"stopIndex":35870,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15901":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":35873,"stopIndex":36004,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15869},"className":"SelectionMorph","_owner":{"__isSmartRef__":true,"id":15867},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15902":{"name":null,"type":"comment","startIndex":36011,"stopIndex":36216,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15903":{"name":"PanelMorph","type":"klassDef","startIndex":36217,"stopIndex":38366,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15904},{"__isSmartRef__":true,"id":15906},{"__isSmartRef__":true,"id":15907},{"__isSmartRef__":true,"id":15908},{"__isSmartRef__":true,"id":15909},{"__isSmartRef__":true,"id":15910},{"__isSmartRef__":true,"id":15911},{"__isSmartRef__":true,"id":15912},{"__isSmartRef__":true,"id":15913},{"__isSmartRef__":true,"id":15914},{"__isSmartRef__":true,"id":15915},{"__isSmartRef__":true,"id":15916},{"__isSmartRef__":true,"id":15917},{"__isSmartRef__":true,"id":15918}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15905}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15904":{"name":"documentation","type":"propertyDef","startIndex":36252,"stopIndex":36280,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15905":{"name":"default category","type":"categoryDef","startIndex":36249,"stopIndex":38363,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15904},{"__isSmartRef__":true,"id":15906},{"__isSmartRef__":true,"id":15907},{"__isSmartRef__":true,"id":15908},{"__isSmartRef__":true,"id":15909},{"__isSmartRef__":true,"id":15910},{"__isSmartRef__":true,"id":15911},{"__isSmartRef__":true,"id":15912},{"__isSmartRef__":true,"id":15913},{"__isSmartRef__":true,"id":15914},{"__isSmartRef__":true,"id":15915},{"__isSmartRef__":true,"id":15916},{"__isSmartRef__":true,"id":15917},{"__isSmartRef__":true,"id":15918}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15906":{"name":"focusHaloBorderWidth","type":"propertyDef","startIndex":36283,"stopIndex":36307,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15907":{"name":"initialize","type":"propertyDef","startIndex":36310,"stopIndex":36447,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15908":{"name":"initializeTransientState","type":"propertyDef","startIndex":36450,"stopIndex":36578,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15909":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":36581,"stopIndex":36619,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15910":{"name":"onMouseDown","type":"propertyDef","startIndex":36623,"stopIndex":36727,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15911":{"name":"onKeyPress","type":"propertyDef","startIndex":36738,"stopIndex":36894,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15912":{"name":"handlesMouseDown","type":"propertyDef","startIndex":36901,"stopIndex":36938,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15913":{"name":"focusOnNext","type":"propertyDef","startIndex":36941,"stopIndex":37219,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15914":{"name":"addMorphFrontOrBack","type":"propertyDef","startIndex":37222,"stopIndex":37479,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15915":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":37482,"stopIndex":37935,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15916":{"name":"onVisibleUpdate","type":"propertyDef","startIndex":37942,"stopIndex":38023,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15917":{"name":"updateView","type":"propertyDef","startIndex":38026,"stopIndex":38246,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15918":{"name":"setTitle","type":"propertyDef","startIndex":38249,"stopIndex":38361,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15905},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15903},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15919":{"name":null,"type":"comment","startIndex":38367,"stopIndex":38367,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15920":{"name":"PanelMorph","type":"klassExtensionDef","startIndex":38368,"stopIndex":39342,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15921}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":15922}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15921":{"name":"makePanedPanel","type":"propertyDef","startIndex":38397,"stopIndex":39338,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":15922},"className":"PanelMorph","_owner":{"__isSmartRef__":true,"id":15920},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15922":{"name":"default category","type":"categoryDef","startIndex":38394,"stopIndex":39339,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15921}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15923":{"name":null,"type":"comment","startIndex":39343,"stopIndex":39343,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15924":{"name":"CheapListMorph","type":"klassDef","startIndex":39344,"stopIndex":46589,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15925},{"__isSmartRef__":true,"id":15927},{"__isSmartRef__":true,"id":15928},{"__isSmartRef__":true,"id":15929},{"__isSmartRef__":true,"id":15930},{"__isSmartRef__":true,"id":15931},{"__isSmartRef__":true,"id":15932},{"__isSmartRef__":true,"id":15933},{"__isSmartRef__":true,"id":15934},{"__isSmartRef__":true,"id":15935},{"__isSmartRef__":true,"id":15936},{"__isSmartRef__":true,"id":15937},{"__isSmartRef__":true,"id":15938},{"__isSmartRef__":true,"id":15939},{"__isSmartRef__":true,"id":15940},{"__isSmartRef__":true,"id":15941},{"__isSmartRef__":true,"id":15942},{"__isSmartRef__":true,"id":15943},{"__isSmartRef__":true,"id":15944},{"__isSmartRef__":true,"id":15945},{"__isSmartRef__":true,"id":15946},{"__isSmartRef__":true,"id":15947},{"__isSmartRef__":true,"id":15948},{"__isSmartRef__":true,"id":15949},{"__isSmartRef__":true,"id":15950},{"__isSmartRef__":true,"id":15951},{"__isSmartRef__":true,"id":15952},{"__isSmartRef__":true,"id":15953}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextMorph","categories":[{"__isSmartRef__":true,"id":15926}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15925":{"name":"doNotSerialize","type":"propertyDef","startIndex":39383,"stopIndex":39412,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15926":{"name":"default category","type":"categoryDef","startIndex":39381,"stopIndex":46586,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15925},{"__isSmartRef__":true,"id":15927},{"__isSmartRef__":true,"id":15928},{"__isSmartRef__":true,"id":15929},{"__isSmartRef__":true,"id":15930},{"__isSmartRef__":true,"id":15931},{"__isSmartRef__":true,"id":15932},{"__isSmartRef__":true,"id":15933},{"__isSmartRef__":true,"id":15934},{"__isSmartRef__":true,"id":15935},{"__isSmartRef__":true,"id":15936},{"__isSmartRef__":true,"id":15937},{"__isSmartRef__":true,"id":15938},{"__isSmartRef__":true,"id":15939},{"__isSmartRef__":true,"id":15940},{"__isSmartRef__":true,"id":15941},{"__isSmartRef__":true,"id":15942},{"__isSmartRef__":true,"id":15943},{"__isSmartRef__":true,"id":15944},{"__isSmartRef__":true,"id":15945},{"__isSmartRef__":true,"id":15946},{"__isSmartRef__":true,"id":15947},{"__isSmartRef__":true,"id":15948},{"__isSmartRef__":true,"id":15949},{"__isSmartRef__":true,"id":15950},{"__isSmartRef__":true,"id":15951},{"__isSmartRef__":true,"id":15952},{"__isSmartRef__":true,"id":15953}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15927":{"name":"style","type":"propertyDef","startIndex":39419,"stopIndex":39474,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15928":{"name":"maxSafeSize","type":"propertyDef","startIndex":39477,"stopIndex":39497,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15929":{"name":"formals","type":"propertyDef","startIndex":39498,"stopIndex":39618,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15930":{"name":"padding","type":"propertyDef","startIndex":39620,"stopIndex":39654,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15931":{"name":"initialize","type":"propertyDef","startIndex":39661,"stopIndex":40520,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15932":{"name":"sanitizedList","type":"propertyDef","startIndex":40523,"stopIndex":40682,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15933":{"name":"onDeserialize","type":"propertyDef","startIndex":40832,"stopIndex":40899,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15934":{"name":"restorePersistentState","type":"propertyDef","startIndex":40902,"stopIndex":41097,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15935":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":41104,"stopIndex":41142,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15936":{"name":"onKeyPress","type":"propertyDef","startIndex":41145,"stopIndex":41176,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15937":{"name":"onKeyDown","type":"propertyDef","startIndex":41179,"stopIndex":42629,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15938":{"name":"onMouseDown","type":"propertyDef","startIndex":42632,"stopIndex":42747,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15939":{"name":"onMouseMove","type":"propertyDef","startIndex":42750,"stopIndex":43011,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15940":{"name":"onMouseUp","type":"propertyDef","startIndex":43014,"stopIndex":43081,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15941":{"name":"emitSelection","type":"propertyDef","startIndex":43084,"stopIndex":43256,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15942":{"name":"charOfY","type":"propertyDef","startIndex":43259,"stopIndex":43419,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15943":{"name":"selectedLineNo","type":"propertyDef","startIndex":43426,"stopIndex":43587,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15944":{"name":"showsSelectionWithoutFocus","type":"propertyDef","startIndex":43594,"stopIndex":43640,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15945":{"name":"drawSelection","type":"propertyDef","startIndex":43643,"stopIndex":43827,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15946":{"name":"selectLineAt","type":"propertyDef","startIndex":43830,"stopIndex":44002,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15947":{"name":"lineRange","type":"propertyDef","startIndex":44009,"stopIndex":44345,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15948":{"name":"lineRect","type":"propertyDef","startIndex":44352,"stopIndex":44558,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15949":{"name":"updateList","type":"propertyDef","startIndex":44565,"stopIndex":44916,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15950":{"name":"setSelectionToMatch","type":"propertyDef","startIndex":44919,"stopIndex":45304,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15951":{"name":"updateView","type":"propertyDef","startIndex":45307,"stopIndex":46354,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15952":{"name":"getSelection","type":"propertyDef","startIndex":46357,"stopIndex":46470,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15953":{"name":"setSelection","type":"propertyDef","startIndex":46473,"stopIndex":46585,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15926},"className":"CheapListMorph","_owner":{"__isSmartRef__":true,"id":15924},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15954":{"name":null,"type":"comment","startIndex":46590,"stopIndex":46590,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15955":{"name":"TextListMorph","type":"klassDef","startIndex":46591,"stopIndex":58550,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15956},{"__isSmartRef__":true,"id":15958},{"__isSmartRef__":true,"id":15959},{"__isSmartRef__":true,"id":15960},{"__isSmartRef__":true,"id":15961},{"__isSmartRef__":true,"id":15962},{"__isSmartRef__":true,"id":15963},{"__isSmartRef__":true,"id":15965},{"__isSmartRef__":true,"id":15966},{"__isSmartRef__":true,"id":15968},{"__isSmartRef__":true,"id":15969},{"__isSmartRef__":true,"id":15970},{"__isSmartRef__":true,"id":15971},{"__isSmartRef__":true,"id":15972},{"__isSmartRef__":true,"id":15973},{"__isSmartRef__":true,"id":15975},{"__isSmartRef__":true,"id":15977},{"__isSmartRef__":true,"id":15978},{"__isSmartRef__":true,"id":15979},{"__isSmartRef__":true,"id":15980},{"__isSmartRef__":true,"id":15981},{"__isSmartRef__":true,"id":15982},{"__isSmartRef__":true,"id":15983},{"__isSmartRef__":true,"id":15985},{"__isSmartRef__":true,"id":15986},{"__isSmartRef__":true,"id":15987},{"__isSmartRef__":true,"id":15988},{"__isSmartRef__":true,"id":15989},{"__isSmartRef__":true,"id":15991},{"__isSmartRef__":true,"id":15992},{"__isSmartRef__":true,"id":15994},{"__isSmartRef__":true,"id":15996},{"__isSmartRef__":true,"id":15997},{"__isSmartRef__":true,"id":15998},{"__isSmartRef__":true,"id":15999},{"__isSmartRef__":true,"id":16000},{"__isSmartRef__":true,"id":16001}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":15957},{"__isSmartRef__":true,"id":15964},{"__isSmartRef__":true,"id":15967},{"__isSmartRef__":true,"id":15974},{"__isSmartRef__":true,"id":15976},{"__isSmartRef__":true,"id":15984},{"__isSmartRef__":true,"id":15990},{"__isSmartRef__":true,"id":15993},{"__isSmartRef__":true,"id":15995}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15956":{"name":"documentation","type":"propertyDef","startIndex":46644,"stopIndex":46717,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15957},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15957":{"name":"properties","type":"categoryDef","startIndex":46628,"stopIndex":47026,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15956},{"__isSmartRef__":true,"id":15958},{"__isSmartRef__":true,"id":15959},{"__isSmartRef__":true,"id":15960},{"__isSmartRef__":true,"id":15961},{"__isSmartRef__":true,"id":15962}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15958":{"name":"style","type":"propertyDef","startIndex":46719,"stopIndex":46808,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15957},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15959":{"name":"formals","type":"propertyDef","startIndex":46810,"stopIndex":46913,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15957},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15960":{"name":"defaultCapacity","type":"propertyDef","startIndex":46915,"stopIndex":46935,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15957},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15961":{"name":"highlightItemsOnMove","type":"propertyDef","startIndex":46937,"stopIndex":46965,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15957},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15962":{"name":"layoutManager","type":"propertyDef","startIndex":46968,"stopIndex":47004,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15957},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15963":{"name":"initialize","type":"propertyDef","startIndex":47046,"stopIndex":48133,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15964},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15964":{"name":"initializing","type":"categoryDef","startIndex":47028,"stopIndex":48617,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15963},{"__isSmartRef__":true,"id":15965}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15965":{"name":"onDeserialize","type":"propertyDef","startIndex":48137,"stopIndex":48614,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15964},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15966":{"name":"handlesMouseDown","type":"propertyDef","startIndex":48638,"stopIndex":48671,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15967},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15967":{"name":"mouse events","type":"categoryDef","startIndex":48619,"stopIndex":49438,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15966},{"__isSmartRef__":true,"id":15968},{"__isSmartRef__":true,"id":15969},{"__isSmartRef__":true,"id":15970},{"__isSmartRef__":true,"id":15971},{"__isSmartRef__":true,"id":15972}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15968":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":48674,"stopIndex":48709,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15967},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15969":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":48712,"stopIndex":48819,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15967},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15970":{"name":"onMouseDown","type":"propertyDef","startIndex":48823,"stopIndex":49035,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15967},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15971":{"name":"onMouseMove","type":"propertyDef","startIndex":49038,"stopIndex":49307,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15967},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15972":{"name":"onMouseWheel","type":"propertyDef","startIndex":49311,"stopIndex":49434,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15967},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15973":{"name":"highlightItem","type":"propertyDef","startIndex":49455,"stopIndex":49703,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15974},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15974":{"name":"selection","type":"categoryDef","startIndex":49440,"stopIndex":49707,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15973}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15975":{"name":"onKeyPress","type":"propertyDef","startIndex":49730,"stopIndex":49761,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15976},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15976":{"name":"keyboard events","type":"categoryDef","startIndex":49709,"stopIndex":54579,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15975},{"__isSmartRef__":true,"id":15977},{"__isSmartRef__":true,"id":15978},{"__isSmartRef__":true,"id":15979},{"__isSmartRef__":true,"id":15980},{"__isSmartRef__":true,"id":15981},{"__isSmartRef__":true,"id":15982}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15977":{"name":"onKeyDown","type":"propertyDef","startIndex":49764,"stopIndex":51053,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15976},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15978":{"name":"selectLineAt","type":"propertyDef","startIndex":51056,"stopIndex":51898,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15976},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15979":{"name":"appendList","type":"propertyDef","startIndex":51901,"stopIndex":52977,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15976},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15980":{"name":"prependItem","type":"propertyDef","startIndex":52980,"stopIndex":53886,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15976},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15981":{"name":"updateList","type":"propertyDef","startIndex":53894,"stopIndex":54290,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15976},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15982":{"name":"setSelectionToMatch","type":"propertyDef","startIndex":54293,"stopIndex":54575,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15976},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15983":{"name":"onListUpdate","type":"propertyDef","startIndex":54604,"stopIndex":54663,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15984},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15984":{"name":"update functions","type":"categoryDef","startIndex":54581,"stopIndex":55321,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15983},{"__isSmartRef__":true,"id":15985},{"__isSmartRef__":true,"id":15986},{"__isSmartRef__":true,"id":15987},{"__isSmartRef__":true,"id":15988}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15985":{"name":"onMenuUpdate","type":"propertyDef","startIndex":54666,"stopIndex":54804,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15984},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15986":{"name":"onListDeltaUpdate","type":"propertyDef","startIndex":54808,"stopIndex":54874,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15984},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15987":{"name":"onSelectionUpdate","type":"propertyDef","startIndex":54877,"stopIndex":55008,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15984},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15988":{"name":"onDeletionConfirmationUpdate","type":"propertyDef","startIndex":55011,"stopIndex":55317,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15984},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15989":{"name":"getListStrings","type":"propertyDef","startIndex":55338,"stopIndex":55546,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15990},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15990":{"name":"accessing","type":"categoryDef","startIndex":55323,"stopIndex":55761,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15989},{"__isSmartRef__":true,"id":15991}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15991":{"name":"setSelection","type":"propertyDef","startIndex":55548,"stopIndex":55758,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15990},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15992":{"name":"fitItems","type":"propertyDef","startIndex":55778,"stopIndex":56112,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15993},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15993":{"name":"layouting","type":"categoryDef","startIndex":55763,"stopIndex":56115,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15992}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15994":{"name":"getItemFontSize","type":"propertyDef","startIndex":56136,"stopIndex":56297,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15995},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15995":{"name":"private ","type":"categoryDef","startIndex":56117,"stopIndex":58547,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":15994},{"__isSmartRef__":true,"id":15996},{"__isSmartRef__":true,"id":15997},{"__isSmartRef__":true,"id":15998},{"__isSmartRef__":true,"id":15999},{"__isSmartRef__":true,"id":16000},{"__isSmartRef__":true,"id":16001}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15996":{"name":"generateSubmorphs","type":"propertyDef","startIndex":56300,"stopIndex":57049,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15995},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15997":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":57052,"stopIndex":57255,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15995},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15998":{"name":"updateView","type":"propertyDef","startIndex":57258,"stopIndex":57921,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15995},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"15999":{"name":"enclosingScrollPane","type":"propertyDef","startIndex":57924,"stopIndex":58144,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15995},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16000":{"name":"scrollItemIntoView","type":"propertyDef","startIndex":58151,"stopIndex":58315,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15995},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16001":{"name":"resetScrollPane","type":"propertyDef","startIndex":58322,"stopIndex":58544,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":15995},"className":"TextListMorph","_owner":{"__isSmartRef__":true,"id":15955},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16002":{"name":null,"type":"comment","startIndex":58551,"stopIndex":58590,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16003":{"name":"ListMorph","type":"klassDef","startIndex":58591,"stopIndex":64464,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16004},{"__isSmartRef__":true,"id":16006},{"__isSmartRef__":true,"id":16007},{"__isSmartRef__":true,"id":16009},{"__isSmartRef__":true,"id":16011},{"__isSmartRef__":true,"id":16013},{"__isSmartRef__":true,"id":16014},{"__isSmartRef__":true,"id":16015},{"__isSmartRef__":true,"id":16016},{"__isSmartRef__":true,"id":16018},{"__isSmartRef__":true,"id":16019},{"__isSmartRef__":true,"id":16020},{"__isSmartRef__":true,"id":16021},{"__isSmartRef__":true,"id":16023}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"TextListMorph","categories":[{"__isSmartRef__":true,"id":16005},{"__isSmartRef__":true,"id":16008},{"__isSmartRef__":true,"id":16010},{"__isSmartRef__":true,"id":16012},{"__isSmartRef__":true,"id":16017},{"__isSmartRef__":true,"id":16022},{"__isSmartRef__":true,"id":16024}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16004":{"name":"documentation","type":"propertyDef","startIndex":58646,"stopIndex":58800,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16005},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16005":{"name":"documentation","type":"categoryDef","startIndex":58627,"stopIndex":58865,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16004},{"__isSmartRef__":true,"id":16006}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16006":{"name":"connections","type":"propertyDef","startIndex":58802,"stopIndex":58862,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16005},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16007":{"name":"focusHaloBorderWidth","type":"propertyDef","startIndex":58881,"stopIndex":58905,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16008},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16008":{"name":"settings","type":"categoryDef","startIndex":58867,"stopIndex":58927,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16007}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16009":{"name":"initialize","type":"propertyDef","startIndex":58948,"stopIndex":59200,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16010},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16010":{"name":"initializing","type":"categoryDef","startIndex":58929,"stopIndex":59203,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16009}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16011":{"name":"removeNotNeededListItems","type":"propertyDef","startIndex":59236,"stopIndex":59431,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16012},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16012":{"name":"private list manipulation","type":"categoryDef","startIndex":59205,"stopIndex":60609,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16011},{"__isSmartRef__":true,"id":16013},{"__isSmartRef__":true,"id":16014},{"__isSmartRef__":true,"id":16015}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16013":{"name":"generateListItem","type":"propertyDef","startIndex":59434,"stopIndex":59813,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16012},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16014":{"name":"generateSubmorphs","type":"propertyDef","startIndex":59816,"stopIndex":60437,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16012},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16015":{"name":"findSubmorphAtPosition","type":"propertyDef","startIndex":60440,"stopIndex":60605,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16012},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16016":{"name":"selectLineAt","type":"propertyDef","startIndex":60628,"stopIndex":61396,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16017},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16017":{"name":"selection","type":"categoryDef","startIndex":60611,"stopIndex":62304,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16016},{"__isSmartRef__":true,"id":16018},{"__isSmartRef__":true,"id":16019},{"__isSmartRef__":true,"id":16020}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16018":{"name":"onSelectionUpdate","type":"propertyDef","startIndex":61403,"stopIndex":61733,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16017},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16019":{"name":"setSelectionToMatch","type":"propertyDef","startIndex":61740,"stopIndex":61889,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16017},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16020":{"name":"select","type":"propertyDef","startIndex":61891,"stopIndex":62295,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16017},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16021":{"name":"updateList","type":"propertyDef","startIndex":62327,"stopIndex":62763,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16022},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16022":{"name":"list interface","type":"categoryDef","startIndex":62306,"stopIndex":62767,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16021}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16023":{"name":"morphToGrabOrReceive","type":"propertyDef","startIndex":62789,"stopIndex":64458,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16024},"className":"ListMorph","_owner":{"__isSmartRef__":true,"id":16003},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16024":{"name":"mouse events","type":"categoryDef","startIndex":62769,"stopIndex":64461,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16023}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16025":{"name":null,"type":"comment","startIndex":64465,"stopIndex":64465,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16026":{"name":"Array.prototype","type":"klassExtensionDef","startIndex":64466,"stopIndex":64644,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16027}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16028}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16027":{"name":"asListItemArray","type":"propertyDef","startIndex":64499,"stopIndex":64639,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16028},"className":"Array.prototype","_owner":{"__isSmartRef__":true,"id":16026},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16028":{"name":"default category","type":"categoryDef","startIndex":64497,"stopIndex":64641,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16027}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16029":{"name":null,"type":"comment","startIndex":64645,"stopIndex":64645,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16030":{"name":"DragWrapper","type":"klassDef","startIndex":64646,"stopIndex":67073,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16031},{"__isSmartRef__":true,"id":16033},{"__isSmartRef__":true,"id":16034},{"__isSmartRef__":true,"id":16035},{"__isSmartRef__":true,"id":16036},{"__isSmartRef__":true,"id":16037},{"__isSmartRef__":true,"id":16038}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16032}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16031":{"name":"initialize","type":"propertyDef","startIndex":64679,"stopIndex":65001,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16032},"className":"DragWrapper","_owner":{"__isSmartRef__":true,"id":16030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16032":{"name":"default category","type":"categoryDef","startIndex":64676,"stopIndex":67070,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16031},{"__isSmartRef__":true,"id":16033},{"__isSmartRef__":true,"id":16034},{"__isSmartRef__":true,"id":16035},{"__isSmartRef__":true,"id":16036},{"__isSmartRef__":true,"id":16037},{"__isSmartRef__":true,"id":16038}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16033":{"name":"labelMe","type":"propertyDef","startIndex":65004,"stopIndex":65407,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16032},"className":"DragWrapper","_owner":{"__isSmartRef__":true,"id":16030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16034":{"name":"dropMeOnMorph","type":"propertyDef","startIndex":65410,"stopIndex":66027,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16032},"className":"DragWrapper","_owner":{"__isSmartRef__":true,"id":16030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16035":{"name":"returnDraggedToSource","type":"propertyDef","startIndex":66031,"stopIndex":66134,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16032},"className":"DragWrapper","_owner":{"__isSmartRef__":true,"id":16030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16036":{"name":"lookForBestReceiver","type":"propertyDef","startIndex":66138,"stopIndex":66231,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16032},"className":"DragWrapper","_owner":{"__isSmartRef__":true,"id":16030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16037":{"name":"startObservingMouseMoves","type":"propertyDef","startIndex":66235,"stopIndex":66889,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16032},"className":"DragWrapper","_owner":{"__isSmartRef__":true,"id":16030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16038":{"name":"stopObservingMouseMoves","type":"propertyDef","startIndex":66892,"stopIndex":67068,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16032},"className":"DragWrapper","_owner":{"__isSmartRef__":true,"id":16030},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16039":{"name":null,"type":"comment","startIndex":67074,"stopIndex":67074,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16040":{"name":"DragnDropListMorph","type":"klassDef","startIndex":67075,"stopIndex":68910,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16041},{"__isSmartRef__":true,"id":16043},{"__isSmartRef__":true,"id":16044},{"__isSmartRef__":true,"id":16045},{"__isSmartRef__":true,"id":16046},{"__isSmartRef__":true,"id":16047},{"__isSmartRef__":true,"id":16048},{"__isSmartRef__":true,"id":16049},{"__isSmartRef__":true,"id":16050}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ListMorph","categories":[{"__isSmartRef__":true,"id":16042}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16041":{"name":"dragEnabled","type":"propertyDef","startIndex":67123,"stopIndex":67144,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16042":{"name":"default category","type":"categoryDef","startIndex":67116,"stopIndex":68907,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16041},{"__isSmartRef__":true,"id":16043},{"__isSmartRef__":true,"id":16044},{"__isSmartRef__":true,"id":16045},{"__isSmartRef__":true,"id":16046},{"__isSmartRef__":true,"id":16047},{"__isSmartRef__":true,"id":16048},{"__isSmartRef__":true,"id":16049},{"__isSmartRef__":true,"id":16050}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16043":{"name":"onMouseDown","type":"propertyDef","startIndex":67147,"stopIndex":67374,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16044":{"name":"onMouseUp","type":"propertyDef","startIndex":67377,"stopIndex":67468,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16045":{"name":"onMouseMove","type":"propertyDef","startIndex":67471,"stopIndex":67690,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16046":{"name":"dragSelection","type":"propertyDef","startIndex":67697,"stopIndex":68192,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16047":{"name":"draggedComesHome","type":"propertyDef","startIndex":68195,"stopIndex":68290,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16048":{"name":"listWith","type":"propertyDef","startIndex":68293,"stopIndex":68494,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16049":{"name":"acceptsDropOf","type":"propertyDef","startIndex":68497,"stopIndex":68582,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16050":{"name":"acceptDrop","type":"propertyDef","startIndex":68585,"stopIndex":68901,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16042},"className":"DragnDropListMorph","_owner":{"__isSmartRef__":true,"id":16040},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16051":{"name":null,"type":"comment","startIndex":68911,"stopIndex":68911,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16052":{"name":"Morph","type":"klassExtensionDef","startIndex":68912,"stopIndex":69275,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16053},{"__isSmartRef__":true,"id":16055}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16054}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16053":{"name":"acceptsDropOf","type":"propertyDef","startIndex":68931,"stopIndex":69096,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16054},"className":"Morph","_owner":{"__isSmartRef__":true,"id":16052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16054":{"name":"default category","type":"categoryDef","startIndex":68929,"stopIndex":69272,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16053},{"__isSmartRef__":true,"id":16055}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16055":{"name":"acceptDrop","type":"propertyDef","startIndex":69103,"stopIndex":69265,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16054},"className":"Morph","_owner":{"__isSmartRef__":true,"id":16052},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16056":{"name":null,"type":"comment","startIndex":69276,"stopIndex":69276,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16057":{"name":"FilterableListMorph","type":"klassDef","startIndex":69277,"stopIndex":72898,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16058},{"__isSmartRef__":true,"id":16060},{"__isSmartRef__":true,"id":16061},{"__isSmartRef__":true,"id":16062},{"__isSmartRef__":true,"id":16063},{"__isSmartRef__":true,"id":16064},{"__isSmartRef__":true,"id":16065},{"__isSmartRef__":true,"id":16066},{"__isSmartRef__":true,"id":16067},{"__isSmartRef__":true,"id":16068},{"__isSmartRef__":true,"id":16069},{"__isSmartRef__":true,"id":16070},{"__isSmartRef__":true,"id":16071},{"__isSmartRef__":true,"id":16072},{"__isSmartRef__":true,"id":16073},{"__isSmartRef__":true,"id":16074}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"DragnDropListMorph","categories":[{"__isSmartRef__":true,"id":16059}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16058":{"name":"defaultFilter","type":"propertyDef","startIndex":69331,"stopIndex":69352,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16059":{"name":"default category","type":"categoryDef","startIndex":69328,"stopIndex":72895,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16058},{"__isSmartRef__":true,"id":16060},{"__isSmartRef__":true,"id":16061},{"__isSmartRef__":true,"id":16062},{"__isSmartRef__":true,"id":16063},{"__isSmartRef__":true,"id":16064},{"__isSmartRef__":true,"id":16065},{"__isSmartRef__":true,"id":16066},{"__isSmartRef__":true,"id":16067},{"__isSmartRef__":true,"id":16068},{"__isSmartRef__":true,"id":16069},{"__isSmartRef__":true,"id":16070},{"__isSmartRef__":true,"id":16071},{"__isSmartRef__":true,"id":16072},{"__isSmartRef__":true,"id":16073},{"__isSmartRef__":true,"id":16074}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16060":{"name":"filter","type":"propertyDef","startIndex":69355,"stopIndex":69369,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16061":{"name":"initialize","type":"propertyDef","startIndex":69372,"stopIndex":69603,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16062":{"name":"getFilter","type":"propertyDef","startIndex":69606,"stopIndex":69651,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16063":{"name":"setFilter","type":"propertyDef","startIndex":69654,"stopIndex":69745,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16064":{"name":"clearFilter","type":"propertyDef","startIndex":69748,"stopIndex":69814,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16065":{"name":"applyFilter","type":"propertyDef","startIndex":69817,"stopIndex":70049,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16066":{"name":"filteredItemList","type":"propertyDef","startIndex":70052,"stopIndex":70128,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16067":{"name":"removeNotNeededListItems","type":"propertyDef","startIndex":70131,"stopIndex":70225,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16068":{"name":"generateSubmorphs","type":"propertyDef","startIndex":70229,"stopIndex":70322,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16069":{"name":"onKeyDown","type":"propertyDef","startIndex":70325,"stopIndex":70529,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16070":{"name":"showFilterDialog","type":"propertyDef","startIndex":70532,"stopIndex":71029,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16071":{"name":"morphToGrabOrReceive","type":"propertyDef","startIndex":71032,"stopIndex":71235,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16072":{"name":"morphMenu","type":"propertyDef","startIndex":71238,"stopIndex":71378,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16073":{"name":"selectLineAt","type":"propertyDef","startIndex":71380,"stopIndex":72508,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16074":{"name":"onSelectionUpdate","type":"propertyDef","startIndex":72511,"stopIndex":72891,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16059},"className":"FilterableListMorph","_owner":{"__isSmartRef__":true,"id":16057},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16075":{"name":null,"type":"comment","startIndex":72899,"stopIndex":72899,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16076":{"name":"MenuItem","type":"klassDef","startIndex":72900,"stopIndex":74783,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16077},{"__isSmartRef__":true,"id":16079},{"__isSmartRef__":true,"id":16080}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PseudoMorph","categories":[{"__isSmartRef__":true,"id":16078}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16077":{"name":"initialize","type":"propertyDef","startIndex":72940,"stopIndex":73166,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16078},"className":"MenuItem","_owner":{"__isSmartRef__":true,"id":16076},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16078":{"name":"default category","type":"categoryDef","startIndex":72933,"stopIndex":74780,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16077},{"__isSmartRef__":true,"id":16079},{"__isSmartRef__":true,"id":16080}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16079":{"name":"asArrayItem","type":"propertyDef","startIndex":73169,"stopIndex":73299,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16078},"className":"MenuItem","_owner":{"__isSmartRef__":true,"id":16076},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16080":{"name":"invoke","type":"propertyDef","startIndex":73302,"stopIndex":74779,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16078},"className":"MenuItem","_owner":{"__isSmartRef__":true,"id":16076},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16081":{"name":null,"type":"comment","startIndex":74784,"stopIndex":74784,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16082":{"name":"SubMenuItem","type":"klassDef","startIndex":74785,"stopIndex":75888,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16083},{"__isSmartRef__":true,"id":16085},{"__isSmartRef__":true,"id":16086},{"__isSmartRef__":true,"id":16087},{"__isSmartRef__":true,"id":16088}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"MenuItem","categories":[{"__isSmartRef__":true,"id":16084}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16083":{"name":"isSubMenuItem","type":"propertyDef","startIndex":74829,"stopIndex":74852,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16084},"className":"SubMenuItem","_owner":{"__isSmartRef__":true,"id":16082},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16084":{"name":"default category","type":"categoryDef","startIndex":74818,"stopIndex":75885,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16083},{"__isSmartRef__":true,"id":16085},{"__isSmartRef__":true,"id":16086},{"__isSmartRef__":true,"id":16087},{"__isSmartRef__":true,"id":16088}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16085":{"name":"initialize","type":"propertyDef","startIndex":74859,"stopIndex":75098,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16084},"className":"SubMenuItem","_owner":{"__isSmartRef__":true,"id":16082},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16086":{"name":"getList","type":"propertyDef","startIndex":75105,"stopIndex":75264,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16084},"className":"SubMenuItem","_owner":{"__isSmartRef__":true,"id":16082},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16087":{"name":"showMenu","type":"propertyDef","startIndex":75271,"stopIndex":75741,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16084},"className":"SubMenuItem","_owner":{"__isSmartRef__":true,"id":16082},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16088":{"name":"closeMenu","type":"propertyDef","startIndex":75748,"stopIndex":75884,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16084},"className":"SubMenuItem","_owner":{"__isSmartRef__":true,"id":16082},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16089":{"name":null,"type":"comment","startIndex":75889,"stopIndex":75889,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16090":{"name":"MenuMorph","type":"klassDef","startIndex":75890,"stopIndex":88192,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16091},{"__isSmartRef__":true,"id":16093},{"__isSmartRef__":true,"id":16094},{"__isSmartRef__":true,"id":16095},{"__isSmartRef__":true,"id":16096},{"__isSmartRef__":true,"id":16097},{"__isSmartRef__":true,"id":16099},{"__isSmartRef__":true,"id":16100},{"__isSmartRef__":true,"id":16102},{"__isSmartRef__":true,"id":16103},{"__isSmartRef__":true,"id":16105},{"__isSmartRef__":true,"id":16106},{"__isSmartRef__":true,"id":16107},{"__isSmartRef__":true,"id":16108},{"__isSmartRef__":true,"id":16109},{"__isSmartRef__":true,"id":16110},{"__isSmartRef__":true,"id":16111},{"__isSmartRef__":true,"id":16112},{"__isSmartRef__":true,"id":16113},{"__isSmartRef__":true,"id":16114},{"__isSmartRef__":true,"id":16115},{"__isSmartRef__":true,"id":16116},{"__isSmartRef__":true,"id":16118},{"__isSmartRef__":true,"id":16119},{"__isSmartRef__":true,"id":16121},{"__isSmartRef__":true,"id":16122},{"__isSmartRef__":true,"id":16123},{"__isSmartRef__":true,"id":16124},{"__isSmartRef__":true,"id":16125},{"__isSmartRef__":true,"id":16126},{"__isSmartRef__":true,"id":16127},{"__isSmartRef__":true,"id":16128},{"__isSmartRef__":true,"id":16129},{"__isSmartRef__":true,"id":16131},{"__isSmartRef__":true,"id":16132},{"__isSmartRef__":true,"id":16133},{"__isSmartRef__":true,"id":16134},{"__isSmartRef__":true,"id":16136}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16092},{"__isSmartRef__":true,"id":16098},{"__isSmartRef__":true,"id":16101},{"__isSmartRef__":true,"id":16104},{"__isSmartRef__":true,"id":16117},{"__isSmartRef__":true,"id":16120},{"__isSmartRef__":true,"id":16130},{"__isSmartRef__":true,"id":16135}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16091":{"name":"listStyle","type":"propertyDef","startIndex":75941,"stopIndex":76109,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16092},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16092":{"name":"style properties","type":"categoryDef","startIndex":75919,"stopIndex":76391,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16091},{"__isSmartRef__":true,"id":16093},{"__isSmartRef__":true,"id":16094},{"__isSmartRef__":true,"id":16095},{"__isSmartRef__":true,"id":16096}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16093":{"name":"textStyle","type":"propertyDef","startIndex":76112,"stopIndex":76170,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16092},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16094":{"name":"labelStyle","type":"propertyDef","startIndex":76173,"stopIndex":76337,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16092},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16095":{"name":"suppressHandles","type":"propertyDef","startIndex":76340,"stopIndex":76362,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16092},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16096":{"name":"focusHaloBorderWidth","type":"propertyDef","startIndex":76364,"stopIndex":76388,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16092},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16097":{"name":"initialize","type":"propertyDef","startIndex":76407,"stopIndex":78308,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16098},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16098":{"name":"intialize","type":"categoryDef","startIndex":76393,"stopIndex":78410,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16097},{"__isSmartRef__":true,"id":16099}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16099":{"name":"onDeserialize","type":"propertyDef","startIndex":78311,"stopIndex":78406,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16098},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16100":{"name":"selectedItem","type":"propertyDef","startIndex":78427,"stopIndex":78559,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16101},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16101":{"name":"accessing","type":"categoryDef","startIndex":78412,"stopIndex":78667,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16100},{"__isSmartRef__":true,"id":16102}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16102":{"name":"selectedItemAt","type":"propertyDef","startIndex":78561,"stopIndex":78663,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16101},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16103":{"name":"addItem","type":"propertyDef","startIndex":78688,"stopIndex":79070,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16104":{"name":"menu creation","type":"categoryDef","startIndex":78669,"stopIndex":81514,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16103},{"__isSmartRef__":true,"id":16105},{"__isSmartRef__":true,"id":16106},{"__isSmartRef__":true,"id":16107},{"__isSmartRef__":true,"id":16108},{"__isSmartRef__":true,"id":16109},{"__isSmartRef__":true,"id":16110},{"__isSmartRef__":true,"id":16111},{"__isSmartRef__":true,"id":16112},{"__isSmartRef__":true,"id":16113},{"__isSmartRef__":true,"id":16114},{"__isSmartRef__":true,"id":16115}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16105":{"name":"checkItem","type":"propertyDef","startIndex":79073,"stopIndex":79372,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16106":{"name":"addItems","type":"propertyDef","startIndex":79375,"stopIndex":79475,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16107":{"name":"getRawItems","type":"propertyDef","startIndex":79478,"stopIndex":79568,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16108":{"name":"addRawItem","type":"propertyDef","startIndex":79571,"stopIndex":79690,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16109":{"name":"addLine","type":"propertyDef","startIndex":79693,"stopIndex":79870,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16110":{"name":"addSubmenuItem","type":"propertyDef","startIndex":79873,"stopIndex":80076,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16111":{"name":"removeItemNamed","type":"propertyDef","startIndex":80080,"stopIndex":80354,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16112":{"name":"replaceItemNamed","type":"propertyDef","startIndex":80357,"stopIndex":80596,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16113":{"name":"removeItemsNamed","type":"propertyDef","startIndex":80599,"stopIndex":80709,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16114":{"name":"keepOnlyItemsNamed","type":"propertyDef","startIndex":80712,"stopIndex":80912,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16115":{"name":"estimateListWidth","type":"propertyDef","startIndex":80915,"stopIndex":81510,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16104},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16116":{"name":"showSubMenuAt","type":"propertyDef","startIndex":81534,"stopIndex":81865,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16117},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16117":{"name":"menu control","type":"categoryDef","startIndex":81516,"stopIndex":82052,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16116},{"__isSmartRef__":true,"id":16118}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16118":{"name":"backToOwnerMenu","type":"propertyDef","startIndex":81867,"stopIndex":82048,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16117},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16119":{"name":"openIn","type":"propertyDef","startIndex":82067,"stopIndex":85187,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16120":{"name":"morphic","type":"categoryDef","startIndex":82054,"stopIndex":86576,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16119},{"__isSmartRef__":true,"id":16121},{"__isSmartRef__":true,"id":16122},{"__isSmartRef__":true,"id":16123},{"__isSmartRef__":true,"id":16124},{"__isSmartRef__":true,"id":16125},{"__isSmartRef__":true,"id":16126},{"__isSmartRef__":true,"id":16127},{"__isSmartRef__":true,"id":16128}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16121":{"name":"selectedItemIndex","type":"propertyDef","startIndex":85191,"stopIndex":85423,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16122":{"name":"submenuItems","type":"propertyDef","startIndex":85427,"stopIndex":85527,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16123":{"name":"handOverMenu","type":"propertyDef","startIndex":85531,"stopIndex":85648,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16124":{"name":"setMouseFocus","type":"propertyDef","startIndex":85652,"stopIndex":85764,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16125":{"name":"setMouseFocusOverSubmenu","type":"propertyDef","startIndex":85767,"stopIndex":86063,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16126":{"name":"setMouseFocusOverOwnerMenu","type":"propertyDef","startIndex":86067,"stopIndex":86215,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16127":{"name":"setMouseFocusOverOwnerMenuOrSubMenu","type":"propertyDef","startIndex":86219,"stopIndex":86353,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16128":{"name":"removeOnEvent","type":"propertyDef","startIndex":86358,"stopIndex":86573,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16120},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16129":{"name":"onMouseUp","type":"propertyDef","startIndex":86595,"stopIndex":86900,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16130},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16130":{"name":"mouse events","type":"categoryDef","startIndex":86577,"stopIndex":87836,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16129},{"__isSmartRef__":true,"id":16131},{"__isSmartRef__":true,"id":16132},{"__isSmartRef__":true,"id":16133}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16131":{"name":"onMouseDown","type":"propertyDef","startIndex":86903,"stopIndex":87150,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16130},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16132":{"name":"onMouseMove","type":"propertyDef","startIndex":87153,"stopIndex":87648,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16130},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16133":{"name":"onMouseOut","type":"propertyDef","startIndex":87652,"stopIndex":87833,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16130},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16134":{"name":"invokeItemAtIndex","type":"propertyDef","startIndex":87861,"stopIndex":88076,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16135},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16135":{"name":"private functions","type":"categoryDef","startIndex":87837,"stopIndex":88189,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16134},{"__isSmartRef__":true,"id":16136}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16136":{"name":"invokeItem","type":"propertyDef","startIndex":88080,"stopIndex":88188,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16135},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16090},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16137":{"name":"MenuMorph","type":"klassExtensionDef","startIndex":88193,"stopIndex":88424,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16138}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16139}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16138":{"name":"openAtHand","type":"propertyDef","startIndex":88220,"stopIndex":88419,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16139},"className":"MenuMorph","_owner":{"__isSmartRef__":true,"id":16137},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16139":{"name":"default category","type":"categoryDef","startIndex":88218,"stopIndex":88421,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16138}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16140":{"name":null,"type":"comment","startIndex":88425,"stopIndex":88425,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16141":{"name":"SliderMorph","type":"klassDef","startIndex":88426,"stopIndex":93195,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16142},{"__isSmartRef__":true,"id":16144},{"__isSmartRef__":true,"id":16145},{"__isSmartRef__":true,"id":16147},{"__isSmartRef__":true,"id":16148},{"__isSmartRef__":true,"id":16149},{"__isSmartRef__":true,"id":16150},{"__isSmartRef__":true,"id":16151},{"__isSmartRef__":true,"id":16153},{"__isSmartRef__":true,"id":16154},{"__isSmartRef__":true,"id":16155},{"__isSmartRef__":true,"id":16156},{"__isSmartRef__":true,"id":16158},{"__isSmartRef__":true,"id":16159},{"__isSmartRef__":true,"id":16161},{"__isSmartRef__":true,"id":16162},{"__isSmartRef__":true,"id":16163},{"__isSmartRef__":true,"id":16165},{"__isSmartRef__":true,"id":16166},{"__isSmartRef__":true,"id":16167},{"__isSmartRef__":true,"id":16168}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["SliderMorphTrait"],"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16143},{"__isSmartRef__":true,"id":16146},{"__isSmartRef__":true,"id":16152},{"__isSmartRef__":true,"id":16157},{"__isSmartRef__":true,"id":16160},{"__isSmartRef__":true,"id":16164},{"__isSmartRef__":true,"id":16169}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16142":{"name":"documentation","type":"propertyDef","startIndex":88505,"stopIndex":88544,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16143},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16143":{"name":"documentation","type":"categoryDef","startIndex":88486,"stopIndex":88572,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16142},{"__isSmartRef__":true,"id":16144}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16144":{"name":"connections","type":"propertyDef","startIndex":88546,"stopIndex":88569,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16143},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16145":{"name":"initialize","type":"propertyDef","startIndex":88592,"stopIndex":88959,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16146},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16146":{"name":"initializing","type":"categoryDef","startIndex":88574,"stopIndex":90114,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16145},{"__isSmartRef__":true,"id":16147},{"__isSmartRef__":true,"id":16148},{"__isSmartRef__":true,"id":16149},{"__isSmartRef__":true,"id":16150}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16147":{"name":"setupMouseEventRelays","type":"propertyDef","startIndex":88962,"stopIndex":89134,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16146},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16148":{"name":"onDeserialize","type":"propertyDef","startIndex":89137,"stopIndex":89473,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16146},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16149":{"name":"copyFrom","type":"propertyDef","startIndex":89477,"stopIndex":89739,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16146},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16150":{"name":"shadowCopy","type":"propertyDef","startIndex":89741,"stopIndex":90111,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16146},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16151":{"name":"getValue","type":"propertyDef","startIndex":90263,"stopIndex":90493,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16152},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16152":{"name":"accessing","type":"categoryDef","startIndex":90116,"stopIndex":91143,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16151},{"__isSmartRef__":true,"id":16153},{"__isSmartRef__":true,"id":16154},{"__isSmartRef__":true,"id":16155}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16153":{"name":"setValue","type":"propertyDef","startIndex":90497,"stopIndex":90697,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16152},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16154":{"name":"getSliderExtent","type":"propertyDef","startIndex":90701,"stopIndex":90886,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16152},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16155":{"name":"setSliderExtent","type":"propertyDef","startIndex":90889,"stopIndex":91122,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16152},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16156":{"name":"applyStyle","type":"propertyDef","startIndex":91160,"stopIndex":91350,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16157},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16157":{"name":"layouting","type":"categoryDef","startIndex":91145,"stopIndex":91439,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16156},{"__isSmartRef__":true,"id":16158}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16158":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":91354,"stopIndex":91436,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16157},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16159":{"name":"handlesMouseDown","type":"propertyDef","startIndex":91461,"stopIndex":91525,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16160},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16160":{"name":"mouse events","type":"categoryDef","startIndex":91441,"stopIndex":92123,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16159},{"__isSmartRef__":true,"id":16161},{"__isSmartRef__":true,"id":16162}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16161":{"name":"onMouseDown","type":"propertyDef","startIndex":91528,"stopIndex":91966,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16160},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16162":{"name":"onMouseMove","type":"propertyDef","startIndex":91970,"stopIndex":92119,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16160},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16163":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":92146,"stopIndex":92181,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16164},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16164":{"name":"keyboard events","type":"categoryDef","startIndex":92125,"stopIndex":92853,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16163},{"__isSmartRef__":true,"id":16165},{"__isSmartRef__":true,"id":16166},{"__isSmartRef__":true,"id":16167}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16165":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":92183,"stopIndex":92275,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16164},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16166":{"name":"onKeyPress","type":"propertyDef","startIndex":92278,"stopIndex":92306,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16164},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16167":{"name":"onKeyDown","type":"propertyDef","startIndex":92309,"stopIndex":92850,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16164},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16168":{"name":"updateView","type":"propertyDef","startIndex":92870,"stopIndex":93190,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16169},"className":"SliderMorph","_owner":{"__isSmartRef__":true,"id":16141},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16169":{"name":"old model","type":"categoryDef","startIndex":92855,"stopIndex":93192,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16168}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16170":{"name":null,"type":"comment","startIndex":93196,"stopIndex":93197,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16171":{"name":"ScrollPane","type":"klassDef","startIndex":93198,"stopIndex":105199,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16172},{"__isSmartRef__":true,"id":16174},{"__isSmartRef__":true,"id":16175},{"__isSmartRef__":true,"id":16176},{"__isSmartRef__":true,"id":16177},{"__isSmartRef__":true,"id":16179},{"__isSmartRef__":true,"id":16180},{"__isSmartRef__":true,"id":16181},{"__isSmartRef__":true,"id":16182},{"__isSmartRef__":true,"id":16183},{"__isSmartRef__":true,"id":16185},{"__isSmartRef__":true,"id":16186},{"__isSmartRef__":true,"id":16187},{"__isSmartRef__":true,"id":16188},{"__isSmartRef__":true,"id":16189},{"__isSmartRef__":true,"id":16190},{"__isSmartRef__":true,"id":16191},{"__isSmartRef__":true,"id":16192},{"__isSmartRef__":true,"id":16193},{"__isSmartRef__":true,"id":16194},{"__isSmartRef__":true,"id":16195},{"__isSmartRef__":true,"id":16196},{"__isSmartRef__":true,"id":16197},{"__isSmartRef__":true,"id":16198},{"__isSmartRef__":true,"id":16200},{"__isSmartRef__":true,"id":16201},{"__isSmartRef__":true,"id":16202},{"__isSmartRef__":true,"id":16203},{"__isSmartRef__":true,"id":16204},{"__isSmartRef__":true,"id":16205},{"__isSmartRef__":true,"id":16206},{"__isSmartRef__":true,"id":16207},{"__isSmartRef__":true,"id":16209},{"__isSmartRef__":true,"id":16210},{"__isSmartRef__":true,"id":16211},{"__isSmartRef__":true,"id":16212},{"__isSmartRef__":true,"id":16213},{"__isSmartRef__":true,"id":16215},{"__isSmartRef__":true,"id":16216},{"__isSmartRef__":true,"id":16218},{"__isSmartRef__":true,"id":16219},{"__isSmartRef__":true,"id":16220},{"__isSmartRef__":true,"id":16222},{"__isSmartRef__":true,"id":16224},{"__isSmartRef__":true,"id":16225},{"__isSmartRef__":true,"id":16226}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16173},{"__isSmartRef__":true,"id":16178},{"__isSmartRef__":true,"id":16184},{"__isSmartRef__":true,"id":16199},{"__isSmartRef__":true,"id":16208},{"__isSmartRef__":true,"id":16214},{"__isSmartRef__":true,"id":16217},{"__isSmartRef__":true,"id":16221},{"__isSmartRef__":true,"id":16223}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16172":{"name":"description","type":"propertyDef","startIndex":93244,"stopIndex":93281,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16173},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16173":{"name":"settings","type":"categoryDef","startIndex":93230,"stopIndex":93373,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16172},{"__isSmartRef__":true,"id":16174},{"__isSmartRef__":true,"id":16175},{"__isSmartRef__":true,"id":16176}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16174":{"name":"style","type":"propertyDef","startIndex":93283,"stopIndex":93321,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16173},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16175":{"name":"scrollBarWidth","type":"propertyDef","startIndex":93323,"stopIndex":93342,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16173},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16176":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":93344,"stopIndex":93370,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16173},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16177":{"name":"initialize","type":"propertyDef","startIndex":93393,"stopIndex":93954,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16178},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16178":{"name":"initializing","type":"categoryDef","startIndex":93375,"stopIndex":96247,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16177},{"__isSmartRef__":true,"id":16179},{"__isSmartRef__":true,"id":16180},{"__isSmartRef__":true,"id":16181},{"__isSmartRef__":true,"id":16182}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16179":{"name":"onDeserialize","type":"propertyDef","startIndex":93957,"stopIndex":94173,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16178},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16180":{"name":"addVerticalScrollBar","type":"propertyDef","startIndex":94176,"stopIndex":94642,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16178},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16181":{"name":"addHorizontalScrollBar","type":"propertyDef","startIndex":94646,"stopIndex":95131,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16178},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16182":{"name":"addMenuButton","type":"propertyDef","startIndex":95134,"stopIndex":96244,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16178},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16183":{"name":"addInnerMorph","type":"propertyDef","startIndex":96265,"stopIndex":96576,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16184":{"name":"accessing","type":"categoryDef","startIndex":96249,"stopIndex":98738,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16183},{"__isSmartRef__":true,"id":16185},{"__isSmartRef__":true,"id":16186},{"__isSmartRef__":true,"id":16187},{"__isSmartRef__":true,"id":16188},{"__isSmartRef__":true,"id":16189},{"__isSmartRef__":true,"id":16190},{"__isSmartRef__":true,"id":16191},{"__isSmartRef__":true,"id":16192},{"__isSmartRef__":true,"id":16193},{"__isSmartRef__":true,"id":16194},{"__isSmartRef__":true,"id":16195},{"__isSmartRef__":true,"id":16196},{"__isSmartRef__":true,"id":16197}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16185":{"name":"innerMorph","type":"propertyDef","startIndex":96579,"stopIndex":96675,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16186":{"name":"submorphBounds","type":"propertyDef","startIndex":96678,"stopIndex":96837,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16187":{"name":"calcVerticalScrollBarBounds","type":"propertyDef","startIndex":96839,"stopIndex":97038,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16188":{"name":"calcHorizontalScrollBarBounds","type":"propertyDef","startIndex":97040,"stopIndex":97254,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16189":{"name":"calcClipR","type":"propertyDef","startIndex":97257,"stopIndex":97553,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16190":{"name":"getVerticalScrollBar","type":"propertyDef","startIndex":97556,"stopIndex":97689,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16191":{"name":"getHorizontalScrollBar","type":"propertyDef","startIndex":97691,"stopIndex":97832,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16192":{"name":"disableVerticalScrollBar","type":"propertyDef","startIndex":97837,"stopIndex":98014,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16193":{"name":"disableHorizontalScrollBar","type":"propertyDef","startIndex":98016,"stopIndex":98201,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16194":{"name":"enableScrollBars","type":"propertyDef","startIndex":98204,"stopIndex":98301,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16195":{"name":"disableScrollBars","type":"propertyDef","startIndex":98303,"stopIndex":98410,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16196":{"name":"getVerticalVisibleExtent","type":"propertyDef","startIndex":98414,"stopIndex":98572,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16197":{"name":"getHorizontalVisibleExtent","type":"propertyDef","startIndex":98574,"stopIndex":98732,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16184},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16198":{"name":"slideRoomExtent","type":"propertyDef","startIndex":98756,"stopIndex":99041,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16199":{"name":"scrolling","type":"categoryDef","startIndex":98740,"stopIndex":101350,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16198},{"__isSmartRef__":true,"id":16200},{"__isSmartRef__":true,"id":16201},{"__isSmartRef__":true,"id":16202},{"__isSmartRef__":true,"id":16203},{"__isSmartRef__":true,"id":16204},{"__isSmartRef__":true,"id":16205},{"__isSmartRef__":true,"id":16206}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16200":{"name":"getVerticalScrollPosition","type":"propertyDef","startIndex":99044,"stopIndex":99296,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16201":{"name":"getHorizontalScrollPosition","type":"propertyDef","startIndex":99299,"stopIndex":99553,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16202":{"name":"setVerticalScrollPosition","type":"propertyDef","startIndex":99556,"stopIndex":99941,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16203":{"name":"setHorizontalScrollPosition","type":"propertyDef","startIndex":99944,"stopIndex":100331,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16204":{"name":"scrollToTop","type":"propertyDef","startIndex":100334,"stopIndex":100412,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16205":{"name":"scrollToBottom","type":"propertyDef","startIndex":100415,"stopIndex":100484,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16206":{"name":"scrollRectIntoView","type":"propertyDef","startIndex":100487,"stopIndex":101346,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16199},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16207":{"name":"connectModel","type":"propertyDef","startIndex":101382,"stopIndex":101584,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16208},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16208":{"name":"old model -- deprecated","type":"categoryDef","startIndex":101352,"stopIndex":102032,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16207},{"__isSmartRef__":true,"id":16209},{"__isSmartRef__":true,"id":16210},{"__isSmartRef__":true,"id":16211},{"__isSmartRef__":true,"id":16212}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16209":{"name":"disconnectModel","type":"propertyDef","startIndex":101591,"stopIndex":101675,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16208},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16210":{"name":"getModel","type":"propertyDef","startIndex":101682,"stopIndex":101828,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16208},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16211":{"name":"getModelPlug","type":"propertyDef","startIndex":101831,"stopIndex":101916,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16208},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16212":{"name":"updateView","type":"propertyDef","startIndex":101919,"stopIndex":102028,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16208},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16213":{"name":"menuButtonPressed","type":"propertyDef","startIndex":102059,"stopIndex":102687,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16214},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16214":{"name":"user interface","type":"categoryDef","startIndex":102038,"stopIndex":102785,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16213},{"__isSmartRef__":true,"id":16215}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16215":{"name":"getMenu","type":"propertyDef","startIndex":102689,"stopIndex":102781,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16214},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16216":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":102809,"stopIndex":103975,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16217},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16217":{"name":"layouting","type":"categoryDef","startIndex":102789,"stopIndex":104556,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16216},{"__isSmartRef__":true,"id":16218},{"__isSmartRef__":true,"id":16219}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16218":{"name":"layoutChanged","type":"propertyDef","startIndex":103977,"stopIndex":104130,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16217},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16219":{"name":"updateScrollBarSliders","type":"propertyDef","startIndex":104133,"stopIndex":104551,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16217},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16220":{"name":"addSomeMorph","type":"propertyDef","startIndex":104574,"stopIndex":104787,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16221},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16221":{"name":"debugging","type":"categoryDef","startIndex":104558,"stopIndex":104791,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16220}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16222":{"name":"getScrollBar","type":"propertyDef","startIndex":104809,"stopIndex":104966,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16223},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16223":{"name":"deprecated","type":"categoryDef","startIndex":104793,"stopIndex":105196,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16222},{"__isSmartRef__":true,"id":16224},{"__isSmartRef__":true,"id":16225},{"__isSmartRef__":true,"id":16226}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16224":{"name":"getScrollPosition","type":"propertyDef","startIndex":104968,"stopIndex":105042,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16223},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16225":{"name":"getVisibleExtent","type":"propertyDef","startIndex":105044,"stopIndex":105116,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16223},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16226":{"name":"setScrollPosition","type":"propertyDef","startIndex":105118,"stopIndex":105194,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16223},"className":"ScrollPane","_owner":{"__isSmartRef__":true,"id":16171},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16227":{"name":null,"type":"comment","startIndex":105200,"stopIndex":105200,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16228":{"name":"Global","type":"klassExtensionDef","startIndex":105201,"stopIndex":106487,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16229},{"__isSmartRef__":true,"id":16231},{"__isSmartRef__":true,"id":16232},{"__isSmartRef__":true,"id":16233},{"__isSmartRef__":true,"id":16234},{"__isSmartRef__":true,"id":16235},{"__isSmartRef__":true,"id":16236},{"__isSmartRef__":true,"id":16237}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16230}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16229":{"name":"newListPane","type":"propertyDef","startIndex":105246,"stopIndex":105377,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16230":{"name":"default category","type":"categoryDef","startIndex":105223,"stopIndex":106484,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16229},{"__isSmartRef__":true,"id":16231},{"__isSmartRef__":true,"id":16232},{"__isSmartRef__":true,"id":16233},{"__isSmartRef__":true,"id":16234},{"__isSmartRef__":true,"id":16235},{"__isSmartRef__":true,"id":16236},{"__isSmartRef__":true,"id":16237}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16231":{"name":"newTextListPane","type":"propertyDef","startIndex":105380,"stopIndex":105515,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16232":{"name":"newRealListPane","type":"propertyDef","startIndex":105518,"stopIndex":105715,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16233":{"name":"newDragnDropListPane","type":"propertyDef","startIndex":105718,"stopIndex":105930,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16234":{"name":"newTextPane","type":"propertyDef","startIndex":105933,"stopIndex":106118,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16235":{"name":"newPrintPane","type":"propertyDef","startIndex":106121,"stopIndex":106265,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16236":{"name":"newXenoPane","type":"propertyDef","startIndex":106268,"stopIndex":106400,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16237":{"name":"newButton","type":"propertyDef","startIndex":106402,"stopIndex":106479,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16230},"className":"Global","_owner":{"__isSmartRef__":true,"id":16228},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16238":{"name":null,"type":"comment","startIndex":106488,"stopIndex":106703,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16239":{"name":"ColorPickerMorph","type":"klassDef","startIndex":106704,"stopIndex":110275,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16240},{"__isSmartRef__":true,"id":16242},{"__isSmartRef__":true,"id":16243},{"__isSmartRef__":true,"id":16244},{"__isSmartRef__":true,"id":16245},{"__isSmartRef__":true,"id":16246},{"__isSmartRef__":true,"id":16247},{"__isSmartRef__":true,"id":16248},{"__isSmartRef__":true,"id":16249},{"__isSmartRef__":true,"id":16250},{"__isSmartRef__":true,"id":16251},{"__isSmartRef__":true,"id":16252}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16241}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16240":{"name":"style","type":"propertyDef","startIndex":106746,"stopIndex":106812,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16241":{"name":"default category","type":"categoryDef","startIndex":106742,"stopIndex":110272,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16240},{"__isSmartRef__":true,"id":16242},{"__isSmartRef__":true,"id":16243},{"__isSmartRef__":true,"id":16244},{"__isSmartRef__":true,"id":16245},{"__isSmartRef__":true,"id":16246},{"__isSmartRef__":true,"id":16247},{"__isSmartRef__":true,"id":16248},{"__isSmartRef__":true,"id":16249},{"__isSmartRef__":true,"id":16250},{"__isSmartRef__":true,"id":16251},{"__isSmartRef__":true,"id":16252}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16242":{"name":"formals","type":"propertyDef","startIndex":106814,"stopIndex":106837,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16243":{"name":"initialize","type":"propertyDef","startIndex":106840,"stopIndex":107289,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16244":{"name":"buildView","type":"propertyDef","startIndex":107292,"stopIndex":108550,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16245":{"name":"colorMap","type":"propertyDef","startIndex":108553,"stopIndex":108839,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16246":{"name":"colorWheel","type":"propertyDef","startIndex":108842,"stopIndex":109054,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16247":{"name":"handlesMouseDown","type":"propertyDef","startIndex":109057,"stopIndex":109154,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16248":{"name":"onMouseDown","type":"propertyDef","startIndex":109157,"stopIndex":109233,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16249":{"name":"onMouseUp","type":"propertyDef","startIndex":109236,"stopIndex":109330,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16250":{"name":"onMouseMove","type":"propertyDef","startIndex":109333,"stopIndex":109936,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16251":{"name":"openGrayons","type":"propertyDef","startIndex":109939,"stopIndex":110145,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16252":{"name":"morphMenu","type":"propertyDef","startIndex":110149,"stopIndex":110271,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16241},"className":"ColorPickerMorph","_owner":{"__isSmartRef__":true,"id":16239},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16253":{"name":null,"type":"comment","startIndex":110276,"stopIndex":110276,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16254":{"name":"XenoMorph","type":"klassDef","startIndex":110277,"stopIndex":112139,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16255},{"__isSmartRef__":true,"id":16257},{"__isSmartRef__":true,"id":16259},{"__isSmartRef__":true,"id":16261},{"__isSmartRef__":true,"id":16262},{"__isSmartRef__":true,"id":16263},{"__isSmartRef__":true,"id":16265},{"__isSmartRef__":true,"id":16267},{"__isSmartRef__":true,"id":16268},{"__isSmartRef__":true,"id":16269},{"__isSmartRef__":true,"id":16270}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16256},{"__isSmartRef__":true,"id":16258},{"__isSmartRef__":true,"id":16260},{"__isSmartRef__":true,"id":16264},{"__isSmartRef__":true,"id":16266},{"__isSmartRef__":true,"id":16271}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16255":{"name":"documentation","type":"propertyDef","startIndex":110327,"stopIndex":110392,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16256},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16256":{"name":"documentation","type":"categoryDef","startIndex":110308,"stopIndex":110395,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16255}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16257":{"name":"style","type":"propertyDef","startIndex":110411,"stopIndex":110478,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16258},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16258":{"name":"settings","type":"categoryDef","startIndex":110397,"stopIndex":110481,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16257}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16259":{"name":"initialize","type":"propertyDef","startIndex":110501,"stopIndex":110704,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16260},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16260":{"name":"initializing","type":"categoryDef","startIndex":110483,"stopIndex":111039,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16259},{"__isSmartRef__":true,"id":16261},{"__isSmartRef__":true,"id":16262}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16261":{"name":"createFoRawNode","type":"propertyDef","startIndex":110706,"stopIndex":110867,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16260},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16262":{"name":"defaultNode","type":"propertyDef","startIndex":110869,"stopIndex":111036,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16260},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16263":{"name":"onURLUpdate","type":"propertyDef","startIndex":111055,"stopIndex":111399,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16264},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16264":{"name":"updating","type":"categoryDef","startIndex":111041,"stopIndex":111402,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16263}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16265":{"name":"clearNode","type":"propertyDef","startIndex":111430,"stopIndex":111517,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16266},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16266":{"name":"content manipulation","type":"categoryDef","startIndex":111404,"stopIndex":111901,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16265},{"__isSmartRef__":true,"id":16267},{"__isSmartRef__":true,"id":16268},{"__isSmartRef__":true,"id":16269}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16267":{"name":"addText","type":"propertyDef","startIndex":111519,"stopIndex":111640,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16266},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16268":{"name":"addDocument","type":"propertyDef","startIndex":111642,"stopIndex":111768,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16266},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16269":{"name":"replaceNode","type":"propertyDef","startIndex":111770,"stopIndex":111897,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16266},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16270":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":111918,"stopIndex":112134,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16271},"className":"XenoMorph","_owner":{"__isSmartRef__":true,"id":16254},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16271":{"name":"layouting","type":"categoryDef","startIndex":111903,"stopIndex":112136,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16270}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16272":{"name":"BucketListMorph","type":"klassDef","startIndex":112140,"stopIndex":115180,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16273},{"__isSmartRef__":true,"id":16275},{"__isSmartRef__":true,"id":16277},{"__isSmartRef__":true,"id":16278},{"__isSmartRef__":true,"id":16279},{"__isSmartRef__":true,"id":16280},{"__isSmartRef__":true,"id":16281},{"__isSmartRef__":true,"id":16282},{"__isSmartRef__":true,"id":16283},{"__isSmartRef__":true,"id":16284},{"__isSmartRef__":true,"id":16285},{"__isSmartRef__":true,"id":16286},{"__isSmartRef__":true,"id":16287},{"__isSmartRef__":true,"id":16288},{"__isSmartRef__":true,"id":16289},{"__isSmartRef__":true,"id":16290},{"__isSmartRef__":true,"id":16291}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16274},{"__isSmartRef__":true,"id":16276}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16273":{"name":"initialize","type":"propertyDef","startIndex":112197,"stopIndex":112446,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16274},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16274":{"name":"initialization","type":"categoryDef","startIndex":112177,"stopIndex":112449,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16273}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16275":{"name":"setList","type":"propertyDef","startIndex":112473,"stopIndex":112600,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16276":{"name":"default category","type":"categoryDef","startIndex":112451,"stopIndex":115177,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16275},{"__isSmartRef__":true,"id":16277},{"__isSmartRef__":true,"id":16278},{"__isSmartRef__":true,"id":16279},{"__isSmartRef__":true,"id":16280},{"__isSmartRef__":true,"id":16281},{"__isSmartRef__":true,"id":16282},{"__isSmartRef__":true,"id":16283},{"__isSmartRef__":true,"id":16284},{"__isSmartRef__":true,"id":16285},{"__isSmartRef__":true,"id":16286},{"__isSmartRef__":true,"id":16287},{"__isSmartRef__":true,"id":16288},{"__isSmartRef__":true,"id":16289},{"__isSmartRef__":true,"id":16290},{"__isSmartRef__":true,"id":16291}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16277":{"name":"getList","type":"propertyDef","startIndex":112603,"stopIndex":112691,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16278":{"name":"addItem","type":"propertyDef","startIndex":112694,"stopIndex":112872,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16279":{"name":"removeItem","type":"propertyDef","startIndex":112875,"stopIndex":113176,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16280":{"name":"convertToListItem","type":"propertyDef","startIndex":113179,"stopIndex":113748,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16281":{"name":"convertToMorph","type":"propertyDef","startIndex":113751,"stopIndex":114030,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16282":{"name":"handlesMouseDown","type":"propertyDef","startIndex":114033,"stopIndex":114066,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16283":{"name":"onMouseDown","type":"propertyDef","startIndex":114069,"stopIndex":114126,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16284":{"name":"onMouseMove","type":"propertyDef","startIndex":114129,"stopIndex":114161,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16285":{"name":"takesKeyboardFocus","type":"propertyDef","startIndex":114164,"stopIndex":114199,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16286":{"name":"setHasKeyboardFocus","type":"propertyDef","startIndex":114202,"stopIndex":114309,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16287":{"name":"onKeyPress","type":"propertyDef","startIndex":114312,"stopIndex":114340,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16288":{"name":"onKeyDown","type":"propertyDef","startIndex":114343,"stopIndex":114398,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16289":{"name":"getListItems","type":"propertyDef","startIndex":114401,"stopIndex":114528,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16290":{"name":"setSelection","type":"propertyDef","startIndex":114531,"stopIndex":115098,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16291":{"name":"getSelectedItems","type":"propertyDef","startIndex":115101,"stopIndex":115175,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16276},"className":"BucketListMorph","_owner":{"__isSmartRef__":true,"id":16272},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16292":{"name":"BucketListItemMorph","type":"klassDef","startIndex":115181,"stopIndex":116201,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16293},{"__isSmartRef__":true,"id":16295},{"__isSmartRef__":true,"id":16297},{"__isSmartRef__":true,"id":16298},{"__isSmartRef__":true,"id":16299},{"__isSmartRef__":true,"id":16300},{"__isSmartRef__":true,"id":16301}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16294},{"__isSmartRef__":true,"id":16296}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16293":{"name":"initialize","type":"propertyDef","startIndex":115242,"stopIndex":115593,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16294},"className":"BucketListItemMorph","_owner":{"__isSmartRef__":true,"id":16292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16294":{"name":"initialization","type":"categoryDef","startIndex":115222,"stopIndex":115596,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16293}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16295":{"name":"handlesMouseDown","type":"propertyDef","startIndex":115620,"stopIndex":115653,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16296},"className":"BucketListItemMorph","_owner":{"__isSmartRef__":true,"id":16292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16296":{"name":"default category","type":"categoryDef","startIndex":115598,"stopIndex":116198,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16295},{"__isSmartRef__":true,"id":16297},{"__isSmartRef__":true,"id":16298},{"__isSmartRef__":true,"id":16299},{"__isSmartRef__":true,"id":16300},{"__isSmartRef__":true,"id":16301}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16297":{"name":"onMouseDown","type":"propertyDef","startIndex":115656,"stopIndex":115927,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16296},"className":"BucketListItemMorph","_owner":{"__isSmartRef__":true,"id":16292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16298":{"name":"onMouseMove","type":"propertyDef","startIndex":115930,"stopIndex":115962,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16296},"className":"BucketListItemMorph","_owner":{"__isSmartRef__":true,"id":16292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16299":{"name":"selectItem","type":"propertyDef","startIndex":115965,"stopIndex":116021,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16296},"className":"BucketListItemMorph","_owner":{"__isSmartRef__":true,"id":16292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16300":{"name":"deselectItem","type":"propertyDef","startIndex":116024,"stopIndex":116082,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16296},"className":"BucketListItemMorph","_owner":{"__isSmartRef__":true,"id":16292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16301":{"name":"innerMorph","type":"propertyDef","startIndex":116085,"stopIndex":116196,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16296},"className":"BucketListItemMorph","_owner":{"__isSmartRef__":true,"id":16292},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16302":{"name":null,"type":"comment","startIndex":116202,"stopIndex":116202,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16303":{"name":"VideoMorph","type":"klassDef","startIndex":116203,"stopIndex":121829,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16304},{"__isSmartRef__":true,"id":16306},{"__isSmartRef__":true,"id":16307},{"__isSmartRef__":true,"id":16308},{"__isSmartRef__":true,"id":16309},{"__isSmartRef__":true,"id":16310},{"__isSmartRef__":true,"id":16311},{"__isSmartRef__":true,"id":16312},{"__isSmartRef__":true,"id":16313},{"__isSmartRef__":true,"id":16314},{"__isSmartRef__":true,"id":16315},{"__isSmartRef__":true,"id":16316},{"__isSmartRef__":true,"id":16317},{"__isSmartRef__":true,"id":16318},{"__isSmartRef__":true,"id":16319},{"__isSmartRef__":true,"id":16320},{"__isSmartRef__":true,"id":16321},{"__isSmartRef__":true,"id":16322},{"__isSmartRef__":true,"id":16323},{"__isSmartRef__":true,"id":16324}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"XenoMorph","categories":[{"__isSmartRef__":true,"id":16305}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16304":{"name":"useExperimentalRotation","type":"propertyDef","startIndex":116240,"stopIndex":116271,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16305":{"name":"default category","type":"categoryDef","startIndex":116236,"stopIndex":121826,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16304},{"__isSmartRef__":true,"id":16306},{"__isSmartRef__":true,"id":16307},{"__isSmartRef__":true,"id":16308},{"__isSmartRef__":true,"id":16309},{"__isSmartRef__":true,"id":16310},{"__isSmartRef__":true,"id":16311},{"__isSmartRef__":true,"id":16312},{"__isSmartRef__":true,"id":16313},{"__isSmartRef__":true,"id":16314},{"__isSmartRef__":true,"id":16315},{"__isSmartRef__":true,"id":16316},{"__isSmartRef__":true,"id":16317},{"__isSmartRef__":true,"id":16318},{"__isSmartRef__":true,"id":16319},{"__isSmartRef__":true,"id":16320},{"__isSmartRef__":true,"id":16321},{"__isSmartRef__":true,"id":16322},{"__isSmartRef__":true,"id":16323},{"__isSmartRef__":true,"id":16324}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16306":{"name":"onDeserialize","type":"propertyDef","startIndex":116274,"stopIndex":116517,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16307":{"name":"initialize","type":"propertyDef","startIndex":116520,"stopIndex":116693,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16308":{"name":"openExample","type":"propertyDef","startIndex":116696,"stopIndex":117374,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16309":{"name":"interactivelyEmbedVideo","type":"propertyDef","startIndex":117378,"stopIndex":117527,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16310":{"name":"embedVideoOrStream","type":"propertyDef","startIndex":117531,"stopIndex":117666,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16311":{"name":"embedVideo","type":"propertyDef","startIndex":117670,"stopIndex":118114,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16312":{"name":"embedMov","type":"propertyDef","startIndex":118118,"stopIndex":118424,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16313":{"name":"embedStream","type":"propertyDef","startIndex":118427,"stopIndex":118742,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16314":{"name":"objectNodeForStreamFromTemplate","type":"propertyDef","startIndex":118745,"stopIndex":119261,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16315":{"name":"objectNodeForMovFromTemplate","type":"propertyDef","startIndex":119267,"stopIndex":119605,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16316":{"name":"objectNodeFromTemplate","type":"propertyDef","startIndex":119609,"stopIndex":120120,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16317":{"name":"objectNode","type":"propertyDef","startIndex":120122,"stopIndex":120195,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16318":{"name":"extractURL","type":"propertyDef","startIndex":120198,"stopIndex":120363,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16319":{"name":"extractExtent","type":"propertyDef","startIndex":120365,"stopIndex":120587,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16320":{"name":"handlesMouseDown","type":"propertyDef","startIndex":120594,"stopIndex":120627,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16321":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":120651,"stopIndex":120829,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16322":{"name":"onMouseMove","type":"propertyDef","startIndex":120831,"stopIndex":120985,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16323":{"name":"updateCSS","type":"propertyDef","startIndex":120988,"stopIndex":121667,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16324":{"name":"getVideoBounds","type":"propertyDef","startIndex":121670,"stopIndex":121823,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16305},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16303},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16325":{"name":null,"type":"comment","startIndex":121830,"stopIndex":121830,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16326":{"name":"VideoMorph","type":"klassExtensionDef","startIndex":121831,"stopIndex":122286,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16327},{"__isSmartRef__":true,"id":16329}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16328}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16327":{"name":"openAndInteractivelyEmbed","type":"propertyDef","startIndex":121859,"stopIndex":122080,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16328},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16326},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16328":{"name":"default category","type":"categoryDef","startIndex":121857,"stopIndex":122283,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16327},{"__isSmartRef__":true,"id":16329}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16329":{"name":"openStream","type":"propertyDef","startIndex":122082,"stopIndex":122282,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16328},"className":"VideoMorph","_owner":{"__isSmartRef__":true,"id":16326},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16330":{"name":null,"type":"comment","startIndex":122287,"stopIndex":122350,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16331":{"name":"WidgetModel","type":"klassDef","startIndex":122351,"stopIndex":123233,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16332},{"__isSmartRef__":true,"id":16334},{"__isSmartRef__":true,"id":16335},{"__isSmartRef__":true,"id":16336},{"__isSmartRef__":true,"id":16337},{"__isSmartRef__":true,"id":16338},{"__isSmartRef__":true,"id":16339},{"__isSmartRef__":true,"id":16340},{"__isSmartRef__":true,"id":16341}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Model","categories":[{"__isSmartRef__":true,"id":16333}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16332":{"name":"viewTitle","type":"propertyDef","startIndex":122384,"stopIndex":122407,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16333":{"name":"default category","type":"categoryDef","startIndex":122381,"stopIndex":123230,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16332},{"__isSmartRef__":true,"id":16334},{"__isSmartRef__":true,"id":16335},{"__isSmartRef__":true,"id":16336},{"__isSmartRef__":true,"id":16337},{"__isSmartRef__":true,"id":16338},{"__isSmartRef__":true,"id":16339},{"__isSmartRef__":true,"id":16340},{"__isSmartRef__":true,"id":16341}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16334":{"name":"initialViewExtent","type":"propertyDef","startIndex":122409,"stopIndex":122444,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16335":{"name":"openTriggerVariable","type":"propertyDef","startIndex":122447,"stopIndex":122477,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16336":{"name":"documentation","type":"propertyDef","startIndex":122479,"stopIndex":122540,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16337":{"name":"getViewTitle","type":"propertyDef","startIndex":122547,"stopIndex":122641,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16338":{"name":"buildView","type":"propertyDef","startIndex":122644,"stopIndex":122723,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16339":{"name":"getInitialViewExtent","type":"propertyDef","startIndex":122726,"stopIndex":122828,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16340":{"name":"openIn","type":"propertyDef","startIndex":122835,"stopIndex":123125,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16341":{"name":"open","type":"propertyDef","startIndex":123128,"stopIndex":123229,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16333},"className":"WidgetModel","_owner":{"__isSmartRef__":true,"id":16331},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16342":{"name":null,"type":"comment","startIndex":123234,"stopIndex":123234,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16343":{"name":"Widget","type":"klassDef","startIndex":123235,"stopIndex":127383,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16344},{"__isSmartRef__":true,"id":16346},{"__isSmartRef__":true,"id":16347},{"__isSmartRef__":true,"id":16348},{"__isSmartRef__":true,"id":16349},{"__isSmartRef__":true,"id":16350},{"__isSmartRef__":true,"id":16351},{"__isSmartRef__":true,"id":16352},{"__isSmartRef__":true,"id":16353},{"__isSmartRef__":true,"id":16354},{"__isSmartRef__":true,"id":16355},{"__isSmartRef__":true,"id":16356},{"__isSmartRef__":true,"id":16357},{"__isSmartRef__":true,"id":16358},{"__isSmartRef__":true,"id":16359},{"__isSmartRef__":true,"id":16360},{"__isSmartRef__":true,"id":16361}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["ViewTrait"],"superclassName":"lively.data.Wrapper","categories":[{"__isSmartRef__":true,"id":16345}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16344":{"name":"viewTitle","type":"propertyDef","startIndex":123321,"stopIndex":123344,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16345":{"name":"default category","type":"categoryDef","startIndex":123285,"stopIndex":127380,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16344},{"__isSmartRef__":true,"id":16346},{"__isSmartRef__":true,"id":16347},{"__isSmartRef__":true,"id":16348},{"__isSmartRef__":true,"id":16349},{"__isSmartRef__":true,"id":16350},{"__isSmartRef__":true,"id":16351},{"__isSmartRef__":true,"id":16352},{"__isSmartRef__":true,"id":16353},{"__isSmartRef__":true,"id":16354},{"__isSmartRef__":true,"id":16355},{"__isSmartRef__":true,"id":16356},{"__isSmartRef__":true,"id":16357},{"__isSmartRef__":true,"id":16358},{"__isSmartRef__":true,"id":16359},{"__isSmartRef__":true,"id":16360},{"__isSmartRef__":true,"id":16361}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16346":{"name":"initialViewExtent","type":"propertyDef","startIndex":123346,"stopIndex":123381,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16347":{"name":"initialViewPosition","type":"propertyDef","startIndex":123383,"stopIndex":123418,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16348":{"name":"documentation","type":"propertyDef","startIndex":123420,"stopIndex":123472,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16349":{"name":"useLightFrame","type":"propertyDef","startIndex":123474,"stopIndex":123498,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16350":{"name":"noShallowCopyProperties","type":"propertyDef","startIndex":123505,"stopIndex":123579,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16351":{"name":"getViewTitle","type":"propertyDef","startIndex":123583,"stopIndex":123677,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16352":{"name":"buildView","type":"propertyDef","startIndex":123680,"stopIndex":123766,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16353":{"name":"getInitialViewExtent","type":"propertyDef","startIndex":123769,"stopIndex":123871,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16354":{"name":"viewMenu","type":"propertyDef","startIndex":123878,"stopIndex":124029,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16355":{"name":"openIn","type":"propertyDef","startIndex":124036,"stopIndex":124323,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16356":{"name":"ownModel","type":"propertyDef","startIndex":124330,"stopIndex":124645,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16357":{"name":"open","type":"propertyDef","startIndex":124648,"stopIndex":124748,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16358":{"name":"initialize","type":"propertyDef","startIndex":124751,"stopIndex":124924,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16359":{"name":"parentWindow","type":"propertyDef","startIndex":124927,"stopIndex":125094,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16360":{"name":"restoreFromSubnodes","type":"propertyDef","startIndex":125103,"stopIndex":126942,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16361":{"name":"copyFrom","type":"propertyDef","startIndex":126945,"stopIndex":127379,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16345},"className":"Widget","_owner":{"__isSmartRef__":true,"id":16343},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16362":{"name":null,"type":"comment","startIndex":127384,"stopIndex":127384,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16363":{"name":"Dialog","type":"klassDef","startIndex":127385,"stopIndex":128071,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16364},{"__isSmartRef__":true,"id":16366},{"__isSmartRef__":true,"id":16367},{"__isSmartRef__":true,"id":16368},{"__isSmartRef__":true,"id":16369},{"__isSmartRef__":true,"id":16370}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":16365}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16364":{"name":"inset","type":"propertyDef","startIndex":127413,"stopIndex":127426,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16365},"className":"Dialog","_owner":{"__isSmartRef__":true,"id":16363},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16365":{"name":"default category","type":"categoryDef","startIndex":127411,"stopIndex":128068,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16364},{"__isSmartRef__":true,"id":16366},{"__isSmartRef__":true,"id":16367},{"__isSmartRef__":true,"id":16368},{"__isSmartRef__":true,"id":16369},{"__isSmartRef__":true,"id":16370}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16366":{"name":"style","type":"propertyDef","startIndex":127428,"stopIndex":127554,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16365},"className":"Dialog","_owner":{"__isSmartRef__":true,"id":16363},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16367":{"name":"useLightFrame","type":"propertyDef","startIndex":127556,"stopIndex":127579,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16365},"className":"Dialog","_owner":{"__isSmartRef__":true,"id":16363},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16368":{"name":"viewTitle","type":"propertyDef","startIndex":127581,"stopIndex":127598,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16365},"className":"Dialog","_owner":{"__isSmartRef__":true,"id":16363},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16369":{"name":"removeTopLevel","type":"propertyDef","startIndex":127600,"stopIndex":127702,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16365},"className":"Dialog","_owner":{"__isSmartRef__":true,"id":16363},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16370":{"name":"openIn","type":"propertyDef","startIndex":127705,"stopIndex":128061,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16365},"className":"Dialog","_owner":{"__isSmartRef__":true,"id":16363},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16371":{"name":null,"type":"comment","startIndex":128072,"stopIndex":128072,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16372":{"name":"ConfirmDialog","type":"klassDef","startIndex":128073,"stopIndex":129385,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16373},{"__isSmartRef__":true,"id":16375},{"__isSmartRef__":true,"id":16376},{"__isSmartRef__":true,"id":16377},{"__isSmartRef__":true,"id":16378},{"__isSmartRef__":true,"id":16379}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Dialog","categories":[{"__isSmartRef__":true,"id":16374}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16373":{"name":"formals","type":"propertyDef","startIndex":128109,"stopIndex":128181,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16374},"className":"ConfirmDialog","_owner":{"__isSmartRef__":true,"id":16372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16374":{"name":"default category","type":"categoryDef","startIndex":128106,"stopIndex":129382,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16373},{"__isSmartRef__":true,"id":16375},{"__isSmartRef__":true,"id":16376},{"__isSmartRef__":true,"id":16377},{"__isSmartRef__":true,"id":16378},{"__isSmartRef__":true,"id":16379}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16375":{"name":"initialViewExtent","type":"propertyDef","startIndex":128182,"stopIndex":128233,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16374},"className":"ConfirmDialog","_owner":{"__isSmartRef__":true,"id":16372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16376":{"name":"openIn","type":"propertyDef","startIndex":128240,"stopIndex":128410,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16374},"className":"ConfirmDialog","_owner":{"__isSmartRef__":true,"id":16372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16377":{"name":"cancelled","type":"propertyDef","startIndex":128413,"stopIndex":128523,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16374},"className":"ConfirmDialog","_owner":{"__isSmartRef__":true,"id":16372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16378":{"name":"confirmed","type":"propertyDef","startIndex":128526,"stopIndex":128634,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16374},"className":"ConfirmDialog","_owner":{"__isSmartRef__":true,"id":16372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16379":{"name":"buildView","type":"propertyDef","startIndex":128637,"stopIndex":129381,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16374},"className":"ConfirmDialog","_owner":{"__isSmartRef__":true,"id":16372},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16380":{"name":null,"type":"comment","startIndex":129386,"stopIndex":129386,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16381":{"name":"PromptDialog","type":"klassDef","startIndex":129387,"stopIndex":131287,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16382},{"__isSmartRef__":true,"id":16384},{"__isSmartRef__":true,"id":16385},{"__isSmartRef__":true,"id":16386},{"__isSmartRef__":true,"id":16387},{"__isSmartRef__":true,"id":16388},{"__isSmartRef__":true,"id":16389}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Dialog","categories":[{"__isSmartRef__":true,"id":16383}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16382":{"name":"formals","type":"propertyDef","startIndex":129422,"stopIndex":129467,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16383},"className":"PromptDialog","_owner":{"__isSmartRef__":true,"id":16381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16383":{"name":"default category","type":"categoryDef","startIndex":129419,"stopIndex":131284,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16382},{"__isSmartRef__":true,"id":16384},{"__isSmartRef__":true,"id":16385},{"__isSmartRef__":true,"id":16386},{"__isSmartRef__":true,"id":16387},{"__isSmartRef__":true,"id":16388},{"__isSmartRef__":true,"id":16389}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16384":{"name":"initialViewExtent","type":"propertyDef","startIndex":129469,"stopIndex":129504,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16383},"className":"PromptDialog","_owner":{"__isSmartRef__":true,"id":16381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16385":{"name":"openIn","type":"propertyDef","startIndex":129507,"stopIndex":129691,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16383},"className":"PromptDialog","_owner":{"__isSmartRef__":true,"id":16381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16386":{"name":"onInputUpdate","type":"propertyDef","startIndex":129694,"stopIndex":129753,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16383},"className":"PromptDialog","_owner":{"__isSmartRef__":true,"id":16381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16387":{"name":"cancelled","type":"propertyDef","startIndex":129756,"stopIndex":129886,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16383},"className":"PromptDialog","_owner":{"__isSmartRef__":true,"id":16381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16388":{"name":"confirmed","type":"propertyDef","startIndex":129893,"stopIndex":130114,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16383},"className":"PromptDialog","_owner":{"__isSmartRef__":true,"id":16381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16389":{"name":"buildView","type":"propertyDef","startIndex":130117,"stopIndex":131281,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16383},"className":"PromptDialog","_owner":{"__isSmartRef__":true,"id":16381},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16390":{"name":null,"type":"comment","startIndex":131288,"stopIndex":131288,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16391":{"name":"test","type":"propertyDef","startIndex":131289,"stopIndex":131421,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"PromptDialog","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16392":{"name":"ConsoleWidget","type":"klassDef","startIndex":131422,"stopIndex":134519,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16393},{"__isSmartRef__":true,"id":16395},{"__isSmartRef__":true,"id":16396},{"__isSmartRef__":true,"id":16397},{"__isSmartRef__":true,"id":16398},{"__isSmartRef__":true,"id":16399},{"__isSmartRef__":true,"id":16400},{"__isSmartRef__":true,"id":16401},{"__isSmartRef__":true,"id":16402},{"__isSmartRef__":true,"id":16403},{"__isSmartRef__":true,"id":16404},{"__isSmartRef__":true,"id":16405},{"__isSmartRef__":true,"id":16406}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":16394}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16393":{"name":"viewTitle","type":"propertyDef","startIndex":131458,"stopIndex":131479,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16394":{"name":"default category","type":"categoryDef","startIndex":131455,"stopIndex":134516,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16393},{"__isSmartRef__":true,"id":16395},{"__isSmartRef__":true,"id":16396},{"__isSmartRef__":true,"id":16397},{"__isSmartRef__":true,"id":16398},{"__isSmartRef__":true,"id":16399},{"__isSmartRef__":true,"id":16400},{"__isSmartRef__":true,"id":16401},{"__isSmartRef__":true,"id":16402},{"__isSmartRef__":true,"id":16403},{"__isSmartRef__":true,"id":16404},{"__isSmartRef__":true,"id":16405},{"__isSmartRef__":true,"id":16406}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16395":{"name":"formals","type":"propertyDef","startIndex":131481,"stopIndex":131591,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16396":{"name":"ctx","type":"propertyDef","startIndex":131593,"stopIndex":131601,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16397":{"name":"initialize","type":"propertyDef","startIndex":131605,"stopIndex":132415,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16398":{"name":"onDeserialize","type":"propertyDef","startIndex":132418,"stopIndex":132508,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16399":{"name":"clearList","type":"propertyDef","startIndex":132511,"stopIndex":132676,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16400":{"name":"addCommandHistoryInspector","type":"propertyDef","startIndex":132679,"stopIndex":132857,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16401":{"name":"getInitialViewExtent","type":"propertyDef","startIndex":132860,"stopIndex":132966,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16402":{"name":"buildView","type":"propertyDef","startIndex":132970,"stopIndex":133937,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16403":{"name":"evaluate","type":"propertyDef","startIndex":133940,"stopIndex":134046,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16404":{"name":"onLogMessagesUpdate","type":"propertyDef","startIndex":134050,"stopIndex":134136,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16405":{"name":"onLastCommandUpdate","type":"propertyDef","startIndex":134139,"stopIndex":134441,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16406":{"name":"log","type":"propertyDef","startIndex":134445,"stopIndex":134515,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16394},"className":"ConsoleWidget","_owner":{"__isSmartRef__":true,"id":16392},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16407":{"name":null,"type":"comment","startIndex":134520,"stopIndex":134521,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16408":{"name":"XenoBrowserWidget","type":"klassDef","startIndex":134522,"stopIndex":135184,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16409},{"__isSmartRef__":true,"id":16411},{"__isSmartRef__":true,"id":16413}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":16410},{"__isSmartRef__":true,"id":16412}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16409":{"name":"initialViewExtent","type":"propertyDef","startIndex":134573,"stopIndex":134608,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16410},"className":"XenoBrowserWidget","_owner":{"__isSmartRef__":true,"id":16408},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16410":{"name":"settings","type":"categoryDef","startIndex":134559,"stopIndex":134611,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16409}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16411":{"name":"initialize","type":"propertyDef","startIndex":134631,"stopIndex":134752,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16412},"className":"XenoBrowserWidget","_owner":{"__isSmartRef__":true,"id":16408},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16412":{"name":"initializing","type":"categoryDef","startIndex":134613,"stopIndex":135181,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16411},{"__isSmartRef__":true,"id":16413}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16413":{"name":"buildView","type":"propertyDef","startIndex":134759,"stopIndex":135180,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16412},"className":"XenoBrowserWidget","_owner":{"__isSmartRef__":true,"id":16408},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16414":{"name":null,"type":"comment","startIndex":135185,"stopIndex":135368,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16415":{"name":"TitleBarMorph","type":"klassDef","startIndex":135369,"stopIndex":140556,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16416},{"__isSmartRef__":true,"id":16418},{"__isSmartRef__":true,"id":16419},{"__isSmartRef__":true,"id":16420},{"__isSmartRef__":true,"id":16421},{"__isSmartRef__":true,"id":16422},{"__isSmartRef__":true,"id":16423},{"__isSmartRef__":true,"id":16425},{"__isSmartRef__":true,"id":16426},{"__isSmartRef__":true,"id":16427},{"__isSmartRef__":true,"id":16429},{"__isSmartRef__":true,"id":16430},{"__isSmartRef__":true,"id":16432},{"__isSmartRef__":true,"id":16434}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["TitleBarMorph"],"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16417},{"__isSmartRef__":true,"id":16424},{"__isSmartRef__":true,"id":16428},{"__isSmartRef__":true,"id":16431},{"__isSmartRef__":true,"id":16433}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16416":{"name":"documentation","type":"propertyDef","startIndex":135444,"stopIndex":135488,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16417},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16417":{"name":"properties","type":"categoryDef","startIndex":135428,"stopIndex":135679,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16416},{"__isSmartRef__":true,"id":16418},{"__isSmartRef__":true,"id":16419},{"__isSmartRef__":true,"id":16420},{"__isSmartRef__":true,"id":16421},{"__isSmartRef__":true,"id":16422}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16418":{"name":"controlSpacing","type":"propertyDef","startIndex":135490,"stopIndex":135508,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16417},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16419":{"name":"barHeight","type":"propertyDef","startIndex":135510,"stopIndex":135524,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16417},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16420":{"name":"shortBarHeight","type":"propertyDef","startIndex":135526,"stopIndex":135545,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16417},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16421":{"name":"style","type":"propertyDef","startIndex":135547,"stopIndex":135601,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16417},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16422":{"name":"labelStyle","type":"propertyDef","startIndex":135603,"stopIndex":135676,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16417},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16423":{"name":"initialize","type":"propertyDef","startIndex":135701,"stopIndex":137814,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16424},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16424":{"name":"intitializing","type":"categoryDef","startIndex":135681,"stopIndex":137927,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16423},{"__isSmartRef__":true,"id":16425},{"__isSmartRef__":true,"id":16426}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16425":{"name":"onDeserialize","type":"propertyDef","startIndex":137818,"stopIndex":137890,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16424},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16426":{"name":"okToDuplicate","type":"propertyDef","startIndex":137893,"stopIndex":137925,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16424},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16427":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":137948,"stopIndex":138125,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16428},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16428":{"name":"event handling","type":"categoryDef","startIndex":137929,"stopIndex":138353,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16427},{"__isSmartRef__":true,"id":16429}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16429":{"name":"acceptsDropping","type":"propertyDef","startIndex":138128,"stopIndex":138349,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16428},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16430":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":138366,"stopIndex":139586,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16431},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16431":{"name":"layout","type":"categoryDef","startIndex":138355,"stopIndex":139589,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16430}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16432":{"name":"highlight","type":"propertyDef","startIndex":139603,"stopIndex":140313,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16433},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16433":{"name":"window","type":"categoryDef","startIndex":139590,"stopIndex":140553,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16432},{"__isSmartRef__":true,"id":16434}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16434":{"name":"hightlightAllButtons","type":"propertyDef","startIndex":140317,"stopIndex":140551,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16433},"className":"TitleBarMorph","_owner":{"__isSmartRef__":true,"id":16415},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16435":{"name":null,"type":"comment","startIndex":140557,"stopIndex":140557,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16436":{"name":"TitleTabMorph","type":"klassDef","startIndex":140558,"stopIndex":141900,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16437},{"__isSmartRef__":true,"id":16439},{"__isSmartRef__":true,"id":16440},{"__isSmartRef__":true,"id":16441},{"__isSmartRef__":true,"id":16442},{"__isSmartRef__":true,"id":16443},{"__isSmartRef__":true,"id":16444},{"__isSmartRef__":true,"id":16445},{"__isSmartRef__":true,"id":16446},{"__isSmartRef__":true,"id":16447},{"__isSmartRef__":true,"id":16448}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16438}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16437":{"name":"documentation","type":"propertyDef","startIndex":140596,"stopIndex":140651,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16438":{"name":"default category","type":"categoryDef","startIndex":140593,"stopIndex":141897,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16437},{"__isSmartRef__":true,"id":16439},{"__isSmartRef__":true,"id":16440},{"__isSmartRef__":true,"id":16441},{"__isSmartRef__":true,"id":16442},{"__isSmartRef__":true,"id":16443},{"__isSmartRef__":true,"id":16444},{"__isSmartRef__":true,"id":16445},{"__isSmartRef__":true,"id":16446},{"__isSmartRef__":true,"id":16447},{"__isSmartRef__":true,"id":16448}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16439":{"name":"barHeight","type":"propertyDef","startIndex":140654,"stopIndex":140670,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16440":{"name":"controlSpacing","type":"propertyDef","startIndex":140672,"stopIndex":140693,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16441":{"name":"suppressHandles","type":"propertyDef","startIndex":140695,"stopIndex":140720,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16442":{"name":"styleClass","type":"propertyDef","startIndex":140727,"stopIndex":140755,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16443":{"name":"initialize","type":"propertyDef","startIndex":140762,"stopIndex":141622,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16444":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":141625,"stopIndex":141688,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16445":{"name":"handlesMouseDown","type":"propertyDef","startIndex":141691,"stopIndex":141727,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16446":{"name":"onMouseDown","type":"propertyDef","startIndex":141730,"stopIndex":141762,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16447":{"name":"onMouseUp","type":"propertyDef","startIndex":141765,"stopIndex":141844,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16448":{"name":"highlight","type":"propertyDef","startIndex":141847,"stopIndex":141896,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16438},"className":"TitleTabMorph","_owner":{"__isSmartRef__":true,"id":16436},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16449":{"name":null,"type":"comment","startIndex":141901,"stopIndex":141901,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16450":{"name":"WindowControlMorph","type":"klassDef","startIndex":141902,"stopIndex":143594,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16451},{"__isSmartRef__":true,"id":16453},{"__isSmartRef__":true,"id":16455},{"__isSmartRef__":true,"id":16456},{"__isSmartRef__":true,"id":16457},{"__isSmartRef__":true,"id":16458},{"__isSmartRef__":true,"id":16460},{"__isSmartRef__":true,"id":16462},{"__isSmartRef__":true,"id":16463},{"__isSmartRef__":true,"id":16464},{"__isSmartRef__":true,"id":16465},{"__isSmartRef__":true,"id":16466}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16452},{"__isSmartRef__":true,"id":16454},{"__isSmartRef__":true,"id":16459},{"__isSmartRef__":true,"id":16461}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16451":{"name":"documentation","type":"propertyDef","startIndex":141958,"stopIndex":142011,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16452},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16452":{"name":"documentation","type":"categoryDef","startIndex":141939,"stopIndex":142014,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16451}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16453":{"name":"style","type":"propertyDef","startIndex":142040,"stopIndex":142085,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16454},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16454":{"name":"settings and state","type":"categoryDef","startIndex":142016,"stopIndex":142208,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16453},{"__isSmartRef__":true,"id":16455},{"__isSmartRef__":true,"id":16456},{"__isSmartRef__":true,"id":16457}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16455":{"name":"focus","type":"propertyDef","startIndex":142092,"stopIndex":142115,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16454},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16456":{"name":"formals","type":"propertyDef","startIndex":142117,"stopIndex":142155,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16454},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16457":{"name":"connections","type":"propertyDef","startIndex":142156,"stopIndex":142205,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16454},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16458":{"name":"initialize","type":"propertyDef","startIndex":142228,"stopIndex":142909,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16459},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16459":{"name":"initializing","type":"categoryDef","startIndex":142210,"stopIndex":142912,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16458}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16460":{"name":"handlesMouseDown","type":"propertyDef","startIndex":142934,"stopIndex":142970,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16461},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16461":{"name":"event handling","type":"categoryDef","startIndex":142914,"stopIndex":143591,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16460},{"__isSmartRef__":true,"id":16462},{"__isSmartRef__":true,"id":16463},{"__isSmartRef__":true,"id":16464},{"__isSmartRef__":true,"id":16465},{"__isSmartRef__":true,"id":16466}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16462":{"name":"onMouseDown","type":"propertyDef","startIndex":142972,"stopIndex":143182,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16461},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16463":{"name":"onMouseOver","type":"propertyDef","startIndex":143184,"stopIndex":143335,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16461},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16464":{"name":"onMouseOut","type":"propertyDef","startIndex":143342,"stopIndex":143493,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16461},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16465":{"name":"checkForControlPointNear","type":"propertyDef","startIndex":143500,"stopIndex":143545,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16461},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16466":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":143552,"stopIndex":143590,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16461},"className":"WindowControlMorph","_owner":{"__isSmartRef__":true,"id":16450},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16467":{"name":null,"type":"comment","startIndex":143595,"stopIndex":143595,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16468":{"name":"StatusBarMorph","type":"klassDef","startIndex":143596,"stopIndex":144677,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16469},{"__isSmartRef__":true,"id":16471},{"__isSmartRef__":true,"id":16472}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16470}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16469":{"name":"style","type":"propertyDef","startIndex":143635,"stopIndex":143693,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16470},"className":"StatusBarMorph","_owner":{"__isSmartRef__":true,"id":16468},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16470":{"name":"default category","type":"categoryDef","startIndex":143632,"stopIndex":144674,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16469},{"__isSmartRef__":true,"id":16471},{"__isSmartRef__":true,"id":16472}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16471":{"name":"initialize","type":"propertyDef","startIndex":143696,"stopIndex":144505,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16470},"className":"StatusBarMorph","_owner":{"__isSmartRef__":true,"id":16468},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16472":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":144508,"stopIndex":144673,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16470},"className":"StatusBarMorph","_owner":{"__isSmartRef__":true,"id":16468},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16473":{"name":null,"type":"comment","startIndex":144678,"stopIndex":144679,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16474":{"name":"WindowMorph","type":"klassDef","startIndex":144680,"stopIndex":151955,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16475},{"__isSmartRef__":true,"id":16477},{"__isSmartRef__":true,"id":16479},{"__isSmartRef__":true,"id":16480},{"__isSmartRef__":true,"id":16481},{"__isSmartRef__":true,"id":16482},{"__isSmartRef__":true,"id":16483},{"__isSmartRef__":true,"id":16485},{"__isSmartRef__":true,"id":16486},{"__isSmartRef__":true,"id":16488},{"__isSmartRef__":true,"id":16490},{"__isSmartRef__":true,"id":16491},{"__isSmartRef__":true,"id":16492},{"__isSmartRef__":true,"id":16493},{"__isSmartRef__":true,"id":16494},{"__isSmartRef__":true,"id":16495},{"__isSmartRef__":true,"id":16496},{"__isSmartRef__":true,"id":16498},{"__isSmartRef__":true,"id":16499},{"__isSmartRef__":true,"id":16500},{"__isSmartRef__":true,"id":16501},{"__isSmartRef__":true,"id":16502},{"__isSmartRef__":true,"id":16503},{"__isSmartRef__":true,"id":16504},{"__isSmartRef__":true,"id":16505},{"__isSmartRef__":true,"id":16507},{"__isSmartRef__":true,"id":16508},{"__isSmartRef__":true,"id":16510},{"__isSmartRef__":true,"id":16511},{"__isSmartRef__":true,"id":16513}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["WindowMorph"],"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16476},{"__isSmartRef__":true,"id":16478},{"__isSmartRef__":true,"id":16484},{"__isSmartRef__":true,"id":16487},{"__isSmartRef__":true,"id":16489},{"__isSmartRef__":true,"id":16497},{"__isSmartRef__":true,"id":16506},{"__isSmartRef__":true,"id":16509},{"__isSmartRef__":true,"id":16512},{"__isSmartRef__":true,"id":16514}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16475":{"name":"documentation","type":"propertyDef","startIndex":144751,"stopIndex":144820,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16476},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16476":{"name":"documentation","type":"categoryDef","startIndex":144732,"stopIndex":144823,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16475}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16477":{"name":"state","type":"propertyDef","startIndex":144849,"stopIndex":144870,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16478},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16478":{"name":"settings and state","type":"categoryDef","startIndex":144825,"stopIndex":145013,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16477},{"__isSmartRef__":true,"id":16479},{"__isSmartRef__":true,"id":16480},{"__isSmartRef__":true,"id":16481},{"__isSmartRef__":true,"id":16482}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16479":{"name":"titleBar","type":"propertyDef","startIndex":144872,"stopIndex":144890,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16478},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16480":{"name":"statusBar","type":"propertyDef","startIndex":144892,"stopIndex":144911,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16478},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16481":{"name":"targetMorph","type":"propertyDef","startIndex":144913,"stopIndex":144934,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16478},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16482":{"name":"style","type":"propertyDef","startIndex":144936,"stopIndex":145010,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16478},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16483":{"name":"initialize","type":"propertyDef","startIndex":145033,"stopIndex":145912,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16484},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16484":{"name":"initializing","type":"categoryDef","startIndex":145015,"stopIndex":146250,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16483},{"__isSmartRef__":true,"id":16485}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16485":{"name":"shadowCopy","type":"propertyDef","startIndex":145915,"stopIndex":146246,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16484},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16486":{"name":"restorePersistentState","type":"propertyDef","startIndex":146275,"stopIndex":146459,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16487},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16487":{"name":"XML serialization","type":"categoryDef","startIndex":146252,"stopIndex":146462,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16486}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16488":{"name":"makeTitleBar","type":"propertyDef","startIndex":146490,"stopIndex":146682,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16489},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16489":{"name":"window behavior","type":"categoryDef","startIndex":146464,"stopIndex":147052,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16488},{"__isSmartRef__":true,"id":16490},{"__isSmartRef__":true,"id":16491},{"__isSmartRef__":true,"id":16492},{"__isSmartRef__":true,"id":16493},{"__isSmartRef__":true,"id":16494},{"__isSmartRef__":true,"id":16495}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16490":{"name":"windowContent","type":"propertyDef","startIndex":146685,"stopIndex":146743,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16489},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16491":{"name":"immediateContainer","type":"propertyDef","startIndex":146745,"stopIndex":146797,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16489},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16492":{"name":"getCloseHelp","type":"propertyDef","startIndex":146799,"stopIndex":146847,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16489},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16493":{"name":"getMenuHelp","type":"propertyDef","startIndex":146849,"stopIndex":146895,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16489},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16494":{"name":"getCollapseHelp","type":"propertyDef","startIndex":146897,"stopIndex":146983,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16489},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16495":{"name":"contentIsVisible","type":"propertyDef","startIndex":146985,"stopIndex":147049,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16489},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16496":{"name":"morphToGrabOrReceive","type":"propertyDef","startIndex":147075,"stopIndex":147545,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16497":{"name":"event handling","type":"categoryDef","startIndex":147054,"stopIndex":149154,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16496},{"__isSmartRef__":true,"id":16498},{"__isSmartRef__":true,"id":16499},{"__isSmartRef__":true,"id":16500},{"__isSmartRef__":true,"id":16501},{"__isSmartRef__":true,"id":16502},{"__isSmartRef__":true,"id":16503},{"__isSmartRef__":true,"id":16504}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16498":{"name":"needsToComeForward","type":"propertyDef","startIndex":147548,"stopIndex":148086,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16499":{"name":"handlesMouseDown","type":"propertyDef","startIndex":148089,"stopIndex":148249,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16500":{"name":"onMouseDown","type":"propertyDef","startIndex":148252,"stopIndex":148284,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16501":{"name":"onMouseMove","type":"propertyDef","startIndex":148287,"stopIndex":148383,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16502":{"name":"onMouseUp","type":"propertyDef","startIndex":148390,"stopIndex":148802,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16503":{"name":"captureMouseEvent","type":"propertyDef","startIndex":148805,"stopIndex":149053,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16504":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":149056,"stopIndex":149150,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16497},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16505":{"name":"takeHighlight","type":"propertyDef","startIndex":149168,"stopIndex":149518,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16506},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16506":{"name":"window","type":"categoryDef","startIndex":149156,"stopIndex":150280,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16505},{"__isSmartRef__":true,"id":16507}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16507":{"name":"showTargetMorphMenu","type":"propertyDef","startIndex":149576,"stopIndex":150277,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16506},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16508":{"name":"reshape","type":"propertyDef","startIndex":150294,"stopIndex":150617,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16509},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16509":{"name":"layout","type":"categoryDef","startIndex":150282,"stopIndex":151462,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16508},{"__isSmartRef__":true,"id":16510}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16510":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":150620,"stopIndex":151459,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16509},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16511":{"name":"morphMenu","type":"propertyDef","startIndex":151474,"stopIndex":151767,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16512},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16512":{"name":"menu","type":"categoryDef","startIndex":151464,"stopIndex":151770,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16511}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16513":{"name":"toString","type":"propertyDef","startIndex":151787,"stopIndex":151950,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16514},"className":"WindowMorph","_owner":{"__isSmartRef__":true,"id":16474},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16514":{"name":"debugging","type":"categoryDef","startIndex":151772,"stopIndex":151952,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16513}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16515":{"name":null,"type":"comment","startIndex":151956,"stopIndex":152072,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16516":{"name":"Morph","type":"klassExtensionDef","startIndex":152073,"stopIndex":152272,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16517}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16518}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16517":{"name":"window","type":"propertyDef","startIndex":152092,"stopIndex":152267,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16518},"className":"Morph","_owner":{"__isSmartRef__":true,"id":16516},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16518":{"name":"default category","type":"categoryDef","startIndex":152090,"stopIndex":152269,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16517}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16519":{"name":null,"type":"comment","startIndex":152273,"stopIndex":152280,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16520":{"name":"TabbedPanelMorph","type":"klassDef","startIndex":152281,"stopIndex":153778,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16521},{"__isSmartRef__":true,"id":16523},{"__isSmartRef__":true,"id":16524},{"__isSmartRef__":true,"id":16525}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"WindowMorph","categories":[{"__isSmartRef__":true,"id":16522}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16521":{"name":"documentation","type":"propertyDef","startIndex":152325,"stopIndex":152391,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16522},"className":"TabbedPanelMorph","_owner":{"__isSmartRef__":true,"id":16520},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16522":{"name":"default category","type":"categoryDef","startIndex":152322,"stopIndex":153775,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16521},{"__isSmartRef__":true,"id":16523},{"__isSmartRef__":true,"id":16524},{"__isSmartRef__":true,"id":16525}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16523":{"name":"initialize","type":"propertyDef","startIndex":152394,"stopIndex":153155,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16522},"className":"TabbedPanelMorph","_owner":{"__isSmartRef__":true,"id":16520},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16524":{"name":"setPositions","type":"propertyDef","startIndex":153158,"stopIndex":153662,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16522},"className":"TabbedPanelMorph","_owner":{"__isSmartRef__":true,"id":16520},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16525":{"name":"makeTitleBar","type":"propertyDef","startIndex":153665,"stopIndex":153774,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16522},"className":"TabbedPanelMorph","_owner":{"__isSmartRef__":true,"id":16520},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16526":{"name":null,"type":"comment","startIndex":153779,"stopIndex":153780,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16527":{"name":"PieMenuMorph","type":"klassDef","startIndex":153781,"stopIndex":158478,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16528},{"__isSmartRef__":true,"id":16530},{"__isSmartRef__":true,"id":16531},{"__isSmartRef__":true,"id":16532},{"__isSmartRef__":true,"id":16533},{"__isSmartRef__":true,"id":16534},{"__isSmartRef__":true,"id":16535},{"__isSmartRef__":true,"id":16536}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16529}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16528":{"name":"documentation","type":"propertyDef","startIndex":153815,"stopIndex":153882,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16529":{"name":"default category","type":"categoryDef","startIndex":153812,"stopIndex":158475,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16528},{"__isSmartRef__":true,"id":16530},{"__isSmartRef__":true,"id":16531},{"__isSmartRef__":true,"id":16532},{"__isSmartRef__":true,"id":16533},{"__isSmartRef__":true,"id":16534},{"__isSmartRef__":true,"id":16535},{"__isSmartRef__":true,"id":16536}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16530":{"name":"initialize","type":"propertyDef","startIndex":153885,"stopIndex":154836,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16531":{"name":"helpString","type":"propertyDef","startIndex":154838,"stopIndex":155305,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16532":{"name":"open","type":"propertyDef","startIndex":155307,"stopIndex":155788,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16533":{"name":"onMouseMove","type":"propertyDef","startIndex":155790,"stopIndex":156354,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16534":{"name":"onMouseUp","type":"propertyDef","startIndex":156356,"stopIndex":157321,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16535":{"name":"makeVisible","type":"propertyDef","startIndex":157323,"stopIndex":158225,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16536":{"name":"addHandleTo","type":"propertyDef","startIndex":158227,"stopIndex":158473,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16529},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16527},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16537":{"name":"PieMenuMorph","type":"klassExtensionDef","startIndex":158479,"stopIndex":158710,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16538},{"__isSmartRef__":true,"id":16540}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16539}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16538":{"name":"setUndo","type":"propertyDef","startIndex":158509,"stopIndex":158593,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16539},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16539":{"name":"default category","type":"categoryDef","startIndex":158507,"stopIndex":158707,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16538},{"__isSmartRef__":true,"id":16540}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16540":{"name":"doUndo","type":"propertyDef","startIndex":158595,"stopIndex":158706,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16539},"className":"PieMenuMorph","_owner":{"__isSmartRef__":true,"id":16537},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16541":{"name":null,"type":"comment","startIndex":158711,"stopIndex":158711,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16542":{"name":"setUpNodeStyle","type":"functionDef","startIndex":158712,"stopIndex":159106,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16543":{"name":"ArrowHeadMorph","type":"klassDef","startIndex":159107,"stopIndex":160193,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16544},{"__isSmartRef__":true,"id":16546},{"__isSmartRef__":true,"id":16547}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16545}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16544":{"name":"style","type":"propertyDef","startIndex":159142,"stopIndex":159184,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16545},"className":"ArrowHeadMorph","_owner":{"__isSmartRef__":true,"id":16543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16545":{"name":"default category","type":"categoryDef","startIndex":159140,"stopIndex":160190,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16544},{"__isSmartRef__":true,"id":16546},{"__isSmartRef__":true,"id":16547}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16546":{"name":"initialize","type":"propertyDef","startIndex":159186,"stopIndex":160034,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16545},"className":"ArrowHeadMorph","_owner":{"__isSmartRef__":true,"id":16543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16547":{"name":"pointFromTo","type":"propertyDef","startIndex":160041,"stopIndex":160187,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16545},"className":"ArrowHeadMorph","_owner":{"__isSmartRef__":true,"id":16543},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16548":{"name":null,"type":"comment","startIndex":160194,"stopIndex":160194,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16549":{"name":"ConnectorMorph","type":"klassDef","startIndex":160195,"stopIndex":163590,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16550},{"__isSmartRef__":true,"id":16552},{"__isSmartRef__":true,"id":16553},{"__isSmartRef__":true,"id":16554},{"__isSmartRef__":true,"id":16555},{"__isSmartRef__":true,"id":16556},{"__isSmartRef__":true,"id":16557},{"__isSmartRef__":true,"id":16558},{"__isSmartRef__":true,"id":16559},{"__isSmartRef__":true,"id":16560},{"__isSmartRef__":true,"id":16561},{"__isSmartRef__":true,"id":16562},{"__isSmartRef__":true,"id":16563},{"__isSmartRef__":true,"id":16564},{"__isSmartRef__":true,"id":16565},{"__isSmartRef__":true,"id":16566},{"__isSmartRef__":true,"id":16567},{"__isSmartRef__":true,"id":16568},{"__isSmartRef__":true,"id":16569},{"__isSmartRef__":true,"id":16570}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16551}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16550":{"name":"suppressHandles","type":"propertyDef","startIndex":160231,"stopIndex":160253,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16551":{"name":"default category","type":"categoryDef","startIndex":160228,"stopIndex":163587,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16550},{"__isSmartRef__":true,"id":16552},{"__isSmartRef__":true,"id":16553},{"__isSmartRef__":true,"id":16554},{"__isSmartRef__":true,"id":16555},{"__isSmartRef__":true,"id":16556},{"__isSmartRef__":true,"id":16557},{"__isSmartRef__":true,"id":16558},{"__isSmartRef__":true,"id":16559},{"__isSmartRef__":true,"id":16560},{"__isSmartRef__":true,"id":16561},{"__isSmartRef__":true,"id":16562},{"__isSmartRef__":true,"id":16563},{"__isSmartRef__":true,"id":16564},{"__isSmartRef__":true,"id":16565},{"__isSmartRef__":true,"id":16566},{"__isSmartRef__":true,"id":16567},{"__isSmartRef__":true,"id":16568},{"__isSmartRef__":true,"id":16569},{"__isSmartRef__":true,"id":16570}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16552":{"name":"style","type":"propertyDef","startIndex":160256,"stopIndex":160283,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16553":{"name":"initialize","type":"propertyDef","startIndex":160343,"stopIndex":160929,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16554":{"name":"onDeserialize","type":"propertyDef","startIndex":160938,"stopIndex":161043,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16555":{"name":"translateBy","type":"propertyDef","startIndex":161047,"stopIndex":161264,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16556":{"name":"handlesMouseDown","type":"propertyDef","startIndex":161268,"stopIndex":161301,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16557":{"name":"getStartMorph","type":"propertyDef","startIndex":161305,"stopIndex":161358,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16558":{"name":"getEndMorph","type":"propertyDef","startIndex":161362,"stopIndex":161411,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16559":{"name":"setStartMorph","type":"propertyDef","startIndex":161415,"stopIndex":161522,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16560":{"name":"setEndMorph","type":"propertyDef","startIndex":161527,"stopIndex":161629,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16561":{"name":"getStartPos","type":"propertyDef","startIndex":161633,"stopIndex":161703,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16562":{"name":"getEndPos","type":"propertyDef","startIndex":161707,"stopIndex":161774,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16563":{"name":"setStartPos","type":"propertyDef","startIndex":161778,"stopIndex":161872,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16564":{"name":"setEndPos","type":"propertyDef","startIndex":161876,"stopIndex":161977,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16565":{"name":"setCustomColor","type":"propertyDef","startIndex":161980,"stopIndex":162103,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16566":{"name":"register","type":"propertyDef","startIndex":162106,"stopIndex":162317,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16567":{"name":"unregister","type":"propertyDef","startIndex":162321,"stopIndex":162652,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16568":{"name":"updatePos","type":"propertyDef","startIndex":162655,"stopIndex":163359,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16569":{"name":"toString","type":"propertyDef","startIndex":163363,"stopIndex":163484,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16570":{"name":"remove","type":"propertyDef","startIndex":163488,"stopIndex":163584,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16551},"className":"ConnectorMorph","_owner":{"__isSmartRef__":true,"id":16549},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16571":{"name":null,"type":"comment","startIndex":163591,"stopIndex":163591,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16572":{"name":"NodeMorph","type":"klassDef","startIndex":163592,"stopIndex":169942,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16573},{"__isSmartRef__":true,"id":16575},{"__isSmartRef__":true,"id":16576},{"__isSmartRef__":true,"id":16577},{"__isSmartRef__":true,"id":16578},{"__isSmartRef__":true,"id":16579},{"__isSmartRef__":true,"id":16580},{"__isSmartRef__":true,"id":16581},{"__isSmartRef__":true,"id":16582},{"__isSmartRef__":true,"id":16583},{"__isSmartRef__":true,"id":16584},{"__isSmartRef__":true,"id":16585},{"__isSmartRef__":true,"id":16586},{"__isSmartRef__":true,"id":16587},{"__isSmartRef__":true,"id":16588},{"__isSmartRef__":true,"id":16589},{"__isSmartRef__":true,"id":16590},{"__isSmartRef__":true,"id":16591},{"__isSmartRef__":true,"id":16592},{"__isSmartRef__":true,"id":16593},{"__isSmartRef__":true,"id":16594},{"__isSmartRef__":true,"id":16595},{"__isSmartRef__":true,"id":16596},{"__isSmartRef__":true,"id":16597},{"__isSmartRef__":true,"id":16598},{"__isSmartRef__":true,"id":16599},{"__isSmartRef__":true,"id":16600},{"__isSmartRef__":true,"id":16601},{"__isSmartRef__":true,"id":16602}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16574}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16573":{"name":"maxDist","type":"propertyDef","startIndex":163623,"stopIndex":163637,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16574":{"name":"default category","type":"categoryDef","startIndex":163620,"stopIndex":169939,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16573},{"__isSmartRef__":true,"id":16575},{"__isSmartRef__":true,"id":16576},{"__isSmartRef__":true,"id":16577},{"__isSmartRef__":true,"id":16578},{"__isSmartRef__":true,"id":16579},{"__isSmartRef__":true,"id":16580},{"__isSmartRef__":true,"id":16581},{"__isSmartRef__":true,"id":16582},{"__isSmartRef__":true,"id":16583},{"__isSmartRef__":true,"id":16584},{"__isSmartRef__":true,"id":16585},{"__isSmartRef__":true,"id":16586},{"__isSmartRef__":true,"id":16587},{"__isSmartRef__":true,"id":16588},{"__isSmartRef__":true,"id":16589},{"__isSmartRef__":true,"id":16590},{"__isSmartRef__":true,"id":16591},{"__isSmartRef__":true,"id":16592},{"__isSmartRef__":true,"id":16593},{"__isSmartRef__":true,"id":16594},{"__isSmartRef__":true,"id":16595},{"__isSmartRef__":true,"id":16596},{"__isSmartRef__":true,"id":16597},{"__isSmartRef__":true,"id":16598},{"__isSmartRef__":true,"id":16599},{"__isSmartRef__":true,"id":16600},{"__isSmartRef__":true,"id":16601},{"__isSmartRef__":true,"id":16602}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16575":{"name":"minDist","type":"propertyDef","startIndex":163639,"stopIndex":163653,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16576":{"name":"step","type":"propertyDef","startIndex":163655,"stopIndex":163664,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16577":{"name":"minStepLength","type":"propertyDef","startIndex":163666,"stopIndex":163683,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16578":{"name":"findOtherMorphsDelay","type":"propertyDef","startIndex":163685,"stopIndex":163710,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16579":{"name":"suppressHandles","type":"propertyDef","startIndex":163714,"stopIndex":163736,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16580":{"name":"initialize","type":"propertyDef","startIndex":163739,"stopIndex":164262,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16581":{"name":"onDeserialize","type":"propertyDef","startIndex":164264,"stopIndex":164336,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16582":{"name":"configure","type":"propertyDef","startIndex":164338,"stopIndex":164415,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16583":{"name":"forceOfMorphs","type":"propertyDef","startIndex":164417,"stopIndex":164978,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16584":{"name":"forceOfMorph","type":"propertyDef","startIndex":164980,"stopIndex":165484,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16585":{"name":"makeStep","type":"propertyDef","startIndex":165486,"stopIndex":166146,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16586":{"name":"findNodeMorphs","type":"propertyDef","startIndex":166148,"stopIndex":166220,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16587":{"name":"ensureToStayInWorldBounds","type":"propertyDef","startIndex":166222,"stopIndex":166732,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16588":{"name":"startSteppingScripts","type":"propertyDef","startIndex":166734,"stopIndex":167012,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16589":{"name":"connectTo","type":"propertyDef","startIndex":167014,"stopIndex":167264,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16590":{"name":"ensureConnectionToNodeIsVisible","type":"propertyDef","startIndex":167266,"stopIndex":167385,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16591":{"name":"ensureConnectionIsVisible","type":"propertyDef","startIndex":167387,"stopIndex":167539,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16592":{"name":"disconnect","type":"propertyDef","startIndex":167541,"stopIndex":167819,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16593":{"name":"getConnectionToNode","type":"propertyDef","startIndex":167821,"stopIndex":167946,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16594":{"name":"connectedNodes","type":"propertyDef","startIndex":167948,"stopIndex":168145,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16595":{"name":"allConnectedNodes","type":"propertyDef","startIndex":168147,"stopIndex":168255,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16596":{"name":"connectedNodesPointingToMe","type":"propertyDef","startIndex":168257,"stopIndex":168391,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16597":{"name":"isConnectedTo","type":"propertyDef","startIndex":168393,"stopIndex":168490,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16598":{"name":"remove","type":"propertyDef","startIndex":168492,"stopIndex":168671,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16599":{"name":"rebuildChangeMethod","type":"propertyDef","startIndex":168673,"stopIndex":168927,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16600":{"name":"addLabel","type":"propertyDef","startIndex":168929,"stopIndex":169417,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16601":{"name":"placeNearConnectedNode","type":"propertyDef","startIndex":169419,"stopIndex":169647,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16602":{"name":"continouslyTryToPlaceNearConnectedNodes","type":"propertyDef","startIndex":169649,"stopIndex":169935,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16574},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16572},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16603":{"name":null,"type":"comment","startIndex":169943,"stopIndex":169943,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16604":{"name":"NodeMorph","type":"klassExtensionDef","startIndex":169944,"stopIndex":170265,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16605},{"__isSmartRef__":true,"id":16607}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16606}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16605":{"name":"all","type":"propertyDef","startIndex":169971,"stopIndex":170089,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16606},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16604},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16606":{"name":"default category","type":"categoryDef","startIndex":169969,"stopIndex":170262,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16605},{"__isSmartRef__":true,"id":16607}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16607":{"name":"buildEnergySlider","type":"propertyDef","startIndex":170091,"stopIndex":170261,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16606},"className":"NodeMorph","_owner":{"__isSmartRef__":true,"id":16604},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16608":{"name":null,"type":"comment","startIndex":170266,"stopIndex":170266,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16609":{"name":"NodeEnergySlider","type":"klassDef","startIndex":170267,"stopIndex":170783,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16610},{"__isSmartRef__":true,"id":16612},{"__isSmartRef__":true,"id":16613}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"SliderMorph","categories":[{"__isSmartRef__":true,"id":16611}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16610":{"name":"initialize","type":"propertyDef","startIndex":170310,"stopIndex":170395,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16611},"className":"NodeEnergySlider","_owner":{"__isSmartRef__":true,"id":16609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16611":{"name":"default category","type":"categoryDef","startIndex":170308,"stopIndex":170780,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16610},{"__isSmartRef__":true,"id":16612},{"__isSmartRef__":true,"id":16613}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16612":{"name":"onValueUpdate","type":"propertyDef","startIndex":170397,"stopIndex":170587,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16611},"className":"NodeEnergySlider","_owner":{"__isSmartRef__":true,"id":16609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16613":{"name":"onDeserialize","type":"propertyDef","startIndex":170589,"stopIndex":170778,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16611},"className":"NodeEnergySlider","_owner":{"__isSmartRef__":true,"id":16609},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16614":{"name":null,"type":"comment","startIndex":170784,"stopIndex":170936,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16615":{"name":"MarkerMorphMouseHandler","type":"klassDef","startIndex":170937,"stopIndex":171248,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16616}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"MouseHandlerForDragging","categories":[{"__isSmartRef__":true,"id":16617}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16616":{"name":"handleMouseEvent","type":"propertyDef","startIndex":170999,"stopIndex":171243,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16617},"className":"MarkerMorphMouseHandler","_owner":{"__isSmartRef__":true,"id":16615},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16617":{"name":"default category","type":"categoryDef","startIndex":170997,"stopIndex":171245,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16616}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16618":{"name":null,"type":"comment","startIndex":171249,"stopIndex":171249,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16619":{"name":"MarkerMorph","type":"klassDef","startIndex":171250,"stopIndex":171817,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16620},{"__isSmartRef__":true,"id":16622},{"__isSmartRef__":true,"id":16623},{"__isSmartRef__":true,"id":16624}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16621}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16620":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":171283,"stopIndex":171309,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16621},"className":"MarkerMorph","_owner":{"__isSmartRef__":true,"id":16619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16621":{"name":"default category","type":"categoryDef","startIndex":171280,"stopIndex":171814,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16620},{"__isSmartRef__":true,"id":16622},{"__isSmartRef__":true,"id":16623},{"__isSmartRef__":true,"id":16624}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16622":{"name":"mouseHandler","type":"propertyDef","startIndex":171312,"stopIndex":171360,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16621},"className":"MarkerMorph","_owner":{"__isSmartRef__":true,"id":16619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16623":{"name":"initialize","type":"propertyDef","startIndex":171363,"stopIndex":171577,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16621},"className":"MarkerMorph","_owner":{"__isSmartRef__":true,"id":16619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16624":{"name":"containsPoint","type":"propertyDef","startIndex":171581,"stopIndex":171813,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16621},"className":"MarkerMorph","_owner":{"__isSmartRef__":true,"id":16619},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16625":{"name":null,"type":"comment","startIndex":171818,"stopIndex":171818,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16626":{"name":"ProgressBarMorph","type":"klassDef","startIndex":171819,"stopIndex":173210,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16627},{"__isSmartRef__":true,"id":16629},{"__isSmartRef__":true,"id":16630},{"__isSmartRef__":true,"id":16631},{"__isSmartRef__":true,"id":16632},{"__isSmartRef__":true,"id":16633}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Morph","categories":[{"__isSmartRef__":true,"id":16628}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16627":{"name":"initialize","type":"propertyDef","startIndex":171857,"stopIndex":172423,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16628},"className":"ProgressBarMorph","_owner":{"__isSmartRef__":true,"id":16626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16628":{"name":"default category","type":"categoryDef","startIndex":171854,"stopIndex":173112,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16627},{"__isSmartRef__":true,"id":16629},{"__isSmartRef__":true,"id":16630},{"__isSmartRef__":true,"id":16631},{"__isSmartRef__":true,"id":16632},{"__isSmartRef__":true,"id":16633}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16629":{"name":"setValue","type":"propertyDef","startIndex":172426,"stopIndex":172506,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16628},"className":"ProgressBarMorph","_owner":{"__isSmartRef__":true,"id":16626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16630":{"name":"getValue","type":"propertyDef","startIndex":172509,"stopIndex":172555,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16628},"className":"ProgressBarMorph","_owner":{"__isSmartRef__":true,"id":16626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16631":{"name":"setLabel","type":"propertyDef","startIndex":172559,"stopIndex":172828,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16628},"className":"ProgressBarMorph","_owner":{"__isSmartRef__":true,"id":16626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16632":{"name":"updateBar","type":"propertyDef","startIndex":172832,"stopIndex":173009,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16628},"className":"ProgressBarMorph","_owner":{"__isSmartRef__":true,"id":16626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16633":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":173012,"stopIndex":173109,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16628},"className":"ProgressBarMorph","_owner":{"__isSmartRef__":true,"id":16626},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16634":{"name":"makeSlider","type":"propertyDef","startIndex":173211,"stopIndex":173508,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"className":"Widget","_isStatic":true,"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16635":{"name":"PromptDialogMorph","type":"klassDef","startIndex":173509,"stopIndex":176652,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16636},{"__isSmartRef__":true,"id":16638},{"__isSmartRef__":true,"id":16639},{"__isSmartRef__":true,"id":16640},{"__isSmartRef__":true,"id":16642},{"__isSmartRef__":true,"id":16643},{"__isSmartRef__":true,"id":16644},{"__isSmartRef__":true,"id":16645},{"__isSmartRef__":true,"id":16647},{"__isSmartRef__":true,"id":16648},{"__isSmartRef__":true,"id":16649},{"__isSmartRef__":true,"id":16651},{"__isSmartRef__":true,"id":16653}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16637},{"__isSmartRef__":true,"id":16641},{"__isSmartRef__":true,"id":16646},{"__isSmartRef__":true,"id":16650},{"__isSmartRef__":true,"id":16652}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16636":{"name":"suppressHandles","type":"propertyDef","startIndex":173562,"stopIndex":173587,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16637},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16637":{"name":"settings","type":"categoryDef","startIndex":173548,"stopIndex":173703,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16636},{"__isSmartRef__":true,"id":16638},{"__isSmartRef__":true,"id":16639}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16638":{"name":"padding","type":"propertyDef","startIndex":173589,"stopIndex":173625,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16637},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16639":{"name":"connections","type":"propertyDef","startIndex":173627,"stopIndex":173674,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16637},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16640":{"name":"initialize","type":"propertyDef","startIndex":173724,"stopIndex":174041,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16641},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16641":{"name":"initializing","type":"categoryDef","startIndex":173705,"stopIndex":175410,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16640},{"__isSmartRef__":true,"id":16642},{"__isSmartRef__":true,"id":16643},{"__isSmartRef__":true,"id":16644}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16642":{"name":"addTitle","type":"propertyDef","startIndex":174044,"stopIndex":174294,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16641},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16643":{"name":"addTextPane","type":"propertyDef","startIndex":174298,"stopIndex":174618,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16641},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16644":{"name":"addButtons","type":"propertyDef","startIndex":174622,"stopIndex":175407,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16641},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16645":{"name":"setText","type":"propertyDef","startIndex":175428,"stopIndex":175509,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16646},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16646":{"name":"accessing","type":"categoryDef","startIndex":175412,"stopIndex":175735,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16645},{"__isSmartRef__":true,"id":16647},{"__isSmartRef__":true,"id":16648}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16647":{"name":"getText","type":"propertyDef","startIndex":175512,"stopIndex":175581,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16646},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16648":{"name":"onAcceptButtonFire","type":"propertyDef","startIndex":175584,"stopIndex":175732,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16646},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16649":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":175752,"stopIndex":176225,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16650},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16650":{"name":"layouting","type":"categoryDef","startIndex":175737,"stopIndex":176228,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16649}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16651":{"name":"openIn","type":"propertyDef","startIndex":176251,"stopIndex":176485,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16652},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16652":{"name":"open and remove","type":"categoryDef","startIndex":176230,"stopIndex":176616,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16651},{"__isSmartRef__":true,"id":16653}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16653":{"name":"removeWithWindow","type":"propertyDef","startIndex":176488,"stopIndex":176613,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16652},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16635},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16654":{"name":"PromptDialogMorph","type":"klassExtensionDef","startIndex":176653,"stopIndex":177334,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16655}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16656}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16655":{"name":"openExample","type":"propertyDef","startIndex":176688,"stopIndex":177329,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16656},"className":"PromptDialogMorph","_owner":{"__isSmartRef__":true,"id":16654},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16656":{"name":"default category","type":"categoryDef","startIndex":176686,"stopIndex":177331,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16655}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16657":{"name":null,"type":"comment","startIndex":177335,"stopIndex":177336,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16658":{"name":"HorizontalDivider","type":"klassDef","startIndex":177337,"stopIndex":178471,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16659},{"__isSmartRef__":true,"id":16661},{"__isSmartRef__":true,"id":16663},{"__isSmartRef__":true,"id":16664},{"__isSmartRef__":true,"id":16665},{"__isSmartRef__":true,"id":16667},{"__isSmartRef__":true,"id":16668},{"__isSmartRef__":true,"id":16669},{"__isSmartRef__":true,"id":16670}],"sourceControl":{"__isSmartRef__":true,"id":4931},"traits":["HorizontalDividerTrait"],"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16660},{"__isSmartRef__":true,"id":16662},{"__isSmartRef__":true,"id":16666}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16659":{"name":"initialize","type":"propertyDef","startIndex":177427,"stopIndex":177614,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16660},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16660":{"name":"initializing","type":"categoryDef","startIndex":177409,"stopIndex":177617,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16659}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16661":{"name":"suppressGrabbing","type":"propertyDef","startIndex":177633,"stopIndex":177656,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16662},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16662":{"name":"settings","type":"categoryDef","startIndex":177619,"stopIndex":177711,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16661},{"__isSmartRef__":true,"id":16663},{"__isSmartRef__":true,"id":16664}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16663":{"name":"suppressHandles","type":"propertyDef","startIndex":177658,"stopIndex":177680,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16662},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16664":{"name":"style","type":"propertyDef","startIndex":177682,"stopIndex":177708,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16662},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16665":{"name":"handlesMouseDown","type":"propertyDef","startIndex":177731,"stopIndex":177779,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16666},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16666":{"name":"mouse events","type":"categoryDef","startIndex":177713,"stopIndex":178468,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16665},{"__isSmartRef__":true,"id":16667},{"__isSmartRef__":true,"id":16668},{"__isSmartRef__":true,"id":16669},{"__isSmartRef__":true,"id":16670}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16667":{"name":"onMouseDown","type":"propertyDef","startIndex":177781,"stopIndex":178119,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16666},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16668":{"name":"onMouseUp","type":"propertyDef","startIndex":178121,"stopIndex":178293,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16666},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16669":{"name":"onMouseMove","type":"propertyDef","startIndex":178296,"stopIndex":178411,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16666},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16670":{"name":"onMouseOut","type":"propertyDef","startIndex":178414,"stopIndex":178466,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16666},"className":"HorizontalDivider","_owner":{"__isSmartRef__":true,"id":16658},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16671":{"name":null,"type":"comment","startIndex":178472,"stopIndex":178473,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16672":{"name":"StatusMessageContainer","type":"klassDef","startIndex":178474,"stopIndex":183424,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16673},{"__isSmartRef__":true,"id":16675},{"__isSmartRef__":true,"id":16676},{"__isSmartRef__":true,"id":16677},{"__isSmartRef__":true,"id":16678},{"__isSmartRef__":true,"id":16679},{"__isSmartRef__":true,"id":16680},{"__isSmartRef__":true,"id":16682},{"__isSmartRef__":true,"id":16683},{"__isSmartRef__":true,"id":16685},{"__isSmartRef__":true,"id":16687},{"__isSmartRef__":true,"id":16688},{"__isSmartRef__":true,"id":16689},{"__isSmartRef__":true,"id":16690},{"__isSmartRef__":true,"id":16691},{"__isSmartRef__":true,"id":16692},{"__isSmartRef__":true,"id":16693}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16674},{"__isSmartRef__":true,"id":16681},{"__isSmartRef__":true,"id":16684},{"__isSmartRef__":true,"id":16686}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16673":{"name":"defaultExtent","type":"propertyDef","startIndex":178532,"stopIndex":178559,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16674},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16674":{"name":"settings","type":"categoryDef","startIndex":178518,"stopIndex":178697,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16673},{"__isSmartRef__":true,"id":16675},{"__isSmartRef__":true,"id":16676},{"__isSmartRef__":true,"id":16677},{"__isSmartRef__":true,"id":16678},{"__isSmartRef__":true,"id":16679}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16675":{"name":"suppressGrabbing","type":"propertyDef","startIndex":178561,"stopIndex":178584,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16674},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16676":{"name":"suppressHandles","type":"propertyDef","startIndex":178586,"stopIndex":178608,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16674},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16677":{"name":"openForDragAndDrop","type":"propertyDef","startIndex":178610,"stopIndex":178636,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16674},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16678":{"name":"layoutManager","type":"propertyDef","startIndex":178638,"stopIndex":178674,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16674},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16679":{"name":"alignBounds","type":"propertyDef","startIndex":178676,"stopIndex":178694,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16674},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16680":{"name":"initialize","type":"propertyDef","startIndex":178718,"stopIndex":179016,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16681},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16681":{"name":"initializing","type":"categoryDef","startIndex":178699,"stopIndex":179310,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16680},{"__isSmartRef__":true,"id":16682}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16682":{"name":"setupDismissAllButton","type":"propertyDef","startIndex":179019,"stopIndex":179307,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16681},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16683":{"name":"getContainerBounds","type":"propertyDef","startIndex":179327,"stopIndex":179470,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16684},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16684":{"name":"accessing","type":"categoryDef","startIndex":179312,"stopIndex":179473,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16683}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16685":{"name":"dismissAll","type":"propertyDef","startIndex":179488,"stopIndex":179558,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16686":{"name":"actions","type":"categoryDef","startIndex":179475,"stopIndex":183327,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16685},{"__isSmartRef__":true,"id":16687},{"__isSmartRef__":true,"id":16688},{"__isSmartRef__":true,"id":16689},{"__isSmartRef__":true,"id":16690},{"__isSmartRef__":true,"id":16691},{"__isSmartRef__":true,"id":16692},{"__isSmartRef__":true,"id":16693}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16687":{"name":"startUpdate","type":"propertyDef","startIndex":179561,"stopIndex":180090,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16688":{"name":"showDismissAllButton","type":"propertyDef","startIndex":180093,"stopIndex":180301,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16689":{"name":"onDeserialize","type":"propertyDef","startIndex":180304,"stopIndex":180587,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16690":{"name":"updateMessages","type":"propertyDef","startIndex":180590,"stopIndex":180979,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16691":{"name":"addProgressBar","type":"propertyDef","startIndex":180982,"stopIndex":181379,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16692":{"name":"addStatusMessage","type":"propertyDef","startIndex":181382,"stopIndex":183186,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16693":{"name":"alignToWorldBounds","type":"propertyDef","startIndex":183188,"stopIndex":183325,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16686},"className":"StatusMessageContainer","_owner":{"__isSmartRef__":true,"id":16672},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16694":{"name":"ScaleMorph","type":"klassDef","startIndex":183425,"stopIndex":185476,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16695},{"__isSmartRef__":true,"id":16697},{"__isSmartRef__":true,"id":16698},{"__isSmartRef__":true,"id":16699},{"__isSmartRef__":true,"id":16700},{"__isSmartRef__":true,"id":16701},{"__isSmartRef__":true,"id":16702}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16696}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16695":{"name":"defaultExtent","type":"propertyDef","startIndex":183461,"stopIndex":183487,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16696},"className":"ScaleMorph","_owner":{"__isSmartRef__":true,"id":16694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16696":{"name":"default category","type":"categoryDef","startIndex":183457,"stopIndex":185472,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16695},{"__isSmartRef__":true,"id":16697},{"__isSmartRef__":true,"id":16698},{"__isSmartRef__":true,"id":16699},{"__isSmartRef__":true,"id":16700},{"__isSmartRef__":true,"id":16701},{"__isSmartRef__":true,"id":16702}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16697":{"name":"layoutManager","type":"propertyDef","startIndex":183489,"stopIndex":183525,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16696},"className":"ScaleMorph","_owner":{"__isSmartRef__":true,"id":16694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16698":{"name":"padding","type":"propertyDef","startIndex":183527,"stopIndex":183559,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16696},"className":"ScaleMorph","_owner":{"__isSmartRef__":true,"id":16694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16699":{"name":"style","type":"propertyDef","startIndex":183561,"stopIndex":183587,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16696},"className":"ScaleMorph","_owner":{"__isSmartRef__":true,"id":16694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16700":{"name":"initialize","type":"propertyDef","startIndex":183590,"stopIndex":184340,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16696},"className":"ScaleMorph","_owner":{"__isSmartRef__":true,"id":16694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16701":{"name":"setupConnections","type":"propertyDef","startIndex":184343,"stopIndex":185212,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16696},"className":"ScaleMorph","_owner":{"__isSmartRef__":true,"id":16694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16702":{"name":"setTarget","type":"propertyDef","startIndex":185215,"stopIndex":185470,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16696},"className":"ScaleMorph","_owner":{"__isSmartRef__":true,"id":16694},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16703":{"name":"ColorChooserWidget","type":"klassDef","startIndex":185477,"stopIndex":186331,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16704},{"__isSmartRef__":true,"id":16706}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":16705}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16704":{"name":"initialize","type":"propertyDef","startIndex":185518,"stopIndex":185595,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16705},"className":"ColorChooserWidget","_owner":{"__isSmartRef__":true,"id":16703},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16705":{"name":"default category","type":"categoryDef","startIndex":185515,"stopIndex":186328,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16704},{"__isSmartRef__":true,"id":16706}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16706":{"name":"buildView","type":"propertyDef","startIndex":185598,"stopIndex":186327,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16705},"className":"ColorChooserWidget","_owner":{"__isSmartRef__":true,"id":16703},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16707":{"name":"CheckBoxMorph","type":"klassDef","startIndex":186332,"stopIndex":187423,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16708},{"__isSmartRef__":true,"id":16710},{"__isSmartRef__":true,"id":16711},{"__isSmartRef__":true,"id":16712},{"__isSmartRef__":true,"id":16713},{"__isSmartRef__":true,"id":16714},{"__isSmartRef__":true,"id":16715},{"__isSmartRef__":true,"id":16716},{"__isSmartRef__":true,"id":16717},{"__isSmartRef__":true,"id":16718},{"__isSmartRef__":true,"id":16719}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16709}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16708":{"name":"defaultExtent","type":"propertyDef","startIndex":186370,"stopIndex":186395,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16709":{"name":"default category","type":"categoryDef","startIndex":186367,"stopIndex":187420,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16708},{"__isSmartRef__":true,"id":16710},{"__isSmartRef__":true,"id":16711},{"__isSmartRef__":true,"id":16712},{"__isSmartRef__":true,"id":16713},{"__isSmartRef__":true,"id":16714},{"__isSmartRef__":true,"id":16715},{"__isSmartRef__":true,"id":16716},{"__isSmartRef__":true,"id":16717},{"__isSmartRef__":true,"id":16718},{"__isSmartRef__":true,"id":16719}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16710":{"name":"style","type":"propertyDef","startIndex":186397,"stopIndex":186499,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16711":{"name":"connections","type":"propertyDef","startIndex":186502,"stopIndex":186525,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16712":{"name":"initialize","type":"propertyDef","startIndex":186528,"stopIndex":186731,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16713":{"name":"buildLabel","type":"propertyDef","startIndex":186734,"stopIndex":186993,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16714":{"name":"handlesMouseDown","type":"propertyDef","startIndex":186996,"stopIndex":187029,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16715":{"name":"onMouseDown","type":"propertyDef","startIndex":187031,"stopIndex":187081,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16716":{"name":"onMouseMove","type":"propertyDef","startIndex":187083,"stopIndex":187114,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16717":{"name":"toggleState","type":"propertyDef","startIndex":187117,"stopIndex":187196,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16718":{"name":"updateLabel","type":"propertyDef","startIndex":187199,"stopIndex":187368,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16719":{"name":"okToBeGrabbedBy","type":"propertyDef","startIndex":187371,"stopIndex":187418,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16709},"className":"CheckBoxMorph","_owner":{"__isSmartRef__":true,"id":16707},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16720":{"name":null,"type":"comment","startIndex":187424,"stopIndex":187424,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16721":{"name":"MiniMapEntryMorph","type":"klassDef","startIndex":187425,"stopIndex":187577,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16722},{"__isSmartRef__":true,"id":16724}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16723}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16722":{"name":"style","type":"propertyDef","startIndex":187466,"stopIndex":187552,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16723},"className":"MiniMapEntryMorph","_owner":{"__isSmartRef__":true,"id":16721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16723":{"name":"default category","type":"categoryDef","startIndex":187464,"stopIndex":187574,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16722},{"__isSmartRef__":true,"id":16724}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16724":{"name":"mouseHandler","type":"propertyDef","startIndex":187554,"stopIndex":187572,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16723},"className":"MiniMapEntryMorph","_owner":{"__isSmartRef__":true,"id":16721},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16725":{"name":null,"type":"comment","startIndex":187578,"stopIndex":187578,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16726":{"name":"MiniMapWindowMorph","type":"klassDef","startIndex":187579,"stopIndex":187718,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16727}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"MiniMapEntryMorph","categories":[{"__isSmartRef__":true,"id":16728}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16727":{"name":"style","type":"propertyDef","startIndex":187630,"stopIndex":187713,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16728},"className":"MiniMapWindowMorph","_owner":{"__isSmartRef__":true,"id":16726},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16728":{"name":"default category","type":"categoryDef","startIndex":187628,"stopIndex":187715,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16729":{"name":null,"type":"comment","startIndex":187719,"stopIndex":187719,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16730":{"name":"MiniMapMorph","type":"klassDef","startIndex":187720,"stopIndex":190812,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16731},{"__isSmartRef__":true,"id":16733},{"__isSmartRef__":true,"id":16734},{"__isSmartRef__":true,"id":16735},{"__isSmartRef__":true,"id":16736},{"__isSmartRef__":true,"id":16737},{"__isSmartRef__":true,"id":16738},{"__isSmartRef__":true,"id":16739},{"__isSmartRef__":true,"id":16740},{"__isSmartRef__":true,"id":16741},{"__isSmartRef__":true,"id":16742},{"__isSmartRef__":true,"id":16743}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"BoxMorph","categories":[{"__isSmartRef__":true,"id":16732}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16731":{"name":"initialize","type":"propertyDef","startIndex":187757,"stopIndex":187935,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16732":{"name":"default category","type":"categoryDef","startIndex":187754,"stopIndex":190809,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16731},{"__isSmartRef__":true,"id":16733},{"__isSmartRef__":true,"id":16734},{"__isSmartRef__":true,"id":16735},{"__isSmartRef__":true,"id":16736},{"__isSmartRef__":true,"id":16737},{"__isSmartRef__":true,"id":16738},{"__isSmartRef__":true,"id":16739},{"__isSmartRef__":true,"id":16740},{"__isSmartRef__":true,"id":16741},{"__isSmartRef__":true,"id":16742},{"__isSmartRef__":true,"id":16743}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16733":{"name":"style","type":"propertyDef","startIndex":187938,"stopIndex":187987,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16734":{"name":"setTargetWorld","type":"propertyDef","startIndex":187990,"stopIndex":188124,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16735":{"name":"remove","type":"propertyDef","startIndex":188127,"stopIndex":188328,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16736":{"name":"startSteppingScripts","type":"propertyDef","startIndex":188331,"stopIndex":188438,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16737":{"name":"isMetaMorph","type":"propertyDef","startIndex":188441,"stopIndex":188558,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16738":{"name":"handlesMouseDown","type":"propertyDef","startIndex":188561,"stopIndex":188594,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16739":{"name":"onMouseDown","type":"propertyDef","startIndex":188597,"stopIndex":188754,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16740":{"name":"updateScroll","type":"propertyDef","startIndex":188757,"stopIndex":189026,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16741":{"name":"updatePosition","type":"propertyDef","startIndex":189029,"stopIndex":189344,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16742":{"name":"onMouseMove","type":"propertyDef","startIndex":189348,"stopIndex":189507,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16743":{"name":"updateMap","type":"propertyDef","startIndex":189510,"stopIndex":190808,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16732},"className":"MiniMapMorph","_owner":{"__isSmartRef__":true,"id":16730},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16744":{"name":"ChainedListMorph","type":"klassDef","startIndex":190813,"stopIndex":194239,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16745},{"__isSmartRef__":true,"id":16747},{"__isSmartRef__":true,"id":16749},{"__isSmartRef__":true,"id":16751},{"__isSmartRef__":true,"id":16752},{"__isSmartRef__":true,"id":16753},{"__isSmartRef__":true,"id":16754},{"__isSmartRef__":true,"id":16755},{"__isSmartRef__":true,"id":16756},{"__isSmartRef__":true,"id":16757},{"__isSmartRef__":true,"id":16758},{"__isSmartRef__":true,"id":16759},{"__isSmartRef__":true,"id":16760},{"__isSmartRef__":true,"id":16761},{"__isSmartRef__":true,"id":16763},{"__isSmartRef__":true,"id":16764}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"ContainerMorph","categories":[{"__isSmartRef__":true,"id":16746},{"__isSmartRef__":true,"id":16748},{"__isSmartRef__":true,"id":16750},{"__isSmartRef__":true,"id":16762}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16745":{"name":"connections","type":"propertyDef","startIndex":190876,"stopIndex":190903,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16746},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16746":{"name":"documentation","type":"categoryDef","startIndex":190857,"stopIndex":190906,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16745}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16747":{"name":"initialize","type":"propertyDef","startIndex":190927,"stopIndex":191509,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16748},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16748":{"name":"initializing","type":"categoryDef","startIndex":190908,"stopIndex":191513,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16747}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16749":{"name":"getList","type":"propertyDef","startIndex":191535,"stopIndex":191585,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16750":{"name":"list handling","type":"categoryDef","startIndex":191515,"stopIndex":193737,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16749},{"__isSmartRef__":true,"id":16751},{"__isSmartRef__":true,"id":16752},{"__isSmartRef__":true,"id":16753},{"__isSmartRef__":true,"id":16754},{"__isSmartRef__":true,"id":16755},{"__isSmartRef__":true,"id":16756},{"__isSmartRef__":true,"id":16757},{"__isSmartRef__":true,"id":16758},{"__isSmartRef__":true,"id":16759},{"__isSmartRef__":true,"id":16760}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16751":{"name":"getFirstList","type":"propertyDef","startIndex":191587,"stopIndex":191641,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16752":{"name":"getLastList","type":"propertyDef","startIndex":191644,"stopIndex":191715,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16753":{"name":"getNextList","type":"propertyDef","startIndex":191717,"stopIndex":191811,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16754":{"name":"ensureNextList","type":"propertyDef","startIndex":191814,"stopIndex":191954,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16755":{"name":"addList","type":"propertyDef","startIndex":191957,"stopIndex":192474,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16756":{"name":"removeList","type":"propertyDef","startIndex":192477,"stopIndex":192684,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16757":{"name":"removeAllAfter","type":"propertyDef","startIndex":192687,"stopIndex":192812,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16758":{"name":"setRoot","type":"propertyDef","startIndex":192816,"stopIndex":192884,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16759":{"name":"listSelected","type":"propertyDef","startIndex":192887,"stopIndex":193467,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16760":{"name":"scrollListIntoView","type":"propertyDef","startIndex":193470,"stopIndex":193733,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16750},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16761":{"name":"adjustForNewBounds","type":"propertyDef","startIndex":193754,"stopIndex":194029,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16762},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16762":{"name":"layouting","type":"categoryDef","startIndex":193739,"stopIndex":194236,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16761},{"__isSmartRef__":true,"id":16763},{"__isSmartRef__":true,"id":16764}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16763":{"name":"scrollBounds","type":"propertyDef","startIndex":194032,"stopIndex":194099,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16762},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16764":{"name":"listBounds","type":"propertyDef","startIndex":194102,"stopIndex":194233,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16762},"className":"ChainedListMorph","_owner":{"__isSmartRef__":true,"id":16744},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16765":{"name":null,"type":"comment","startIndex":194240,"stopIndex":194240,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16766":{"name":"ChainedListMorphNode","type":"klassDef","startIndex":194241,"stopIndex":194462,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16767},{"__isSmartRef__":true,"id":16769},{"__isSmartRef__":true,"id":16771}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":16768},{"__isSmartRef__":true,"id":16770}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16767":{"name":"documentation","type":"propertyDef","startIndex":194300,"stopIndex":194352,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16768},"className":"ChainedListMorphNode","_owner":{"__isSmartRef__":true,"id":16766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16768":{"name":"documentation","type":"categoryDef","startIndex":194281,"stopIndex":194354,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16767}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16769":{"name":"childNodes","type":"propertyDef","startIndex":194371,"stopIndex":194408,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16770},"className":"ChainedListMorphNode","_owner":{"__isSmartRef__":true,"id":16766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16770":{"name":"interface","type":"categoryDef","startIndex":194356,"stopIndex":194459,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16769},{"__isSmartRef__":true,"id":16771}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16771":{"name":"asString","type":"propertyDef","startIndex":194410,"stopIndex":194457,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16770},"className":"ChainedListMorphNode","_owner":{"__isSmartRef__":true,"id":16766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16772":{"name":null,"type":"comment","startIndex":194463,"stopIndex":194463,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16773":{"name":"SliderMorph.prototype","type":"klassExtensionDef","startIndex":194464,"stopIndex":194594,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16774},{"__isSmartRef__":true,"id":16776}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":16775}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16774":{"name":"slider","type":"propertyDef","startIndex":194503,"stopIndex":194546,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16775},"className":"SliderMorph.prototype","_owner":{"__isSmartRef__":true,"id":16773},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16775":{"name":"default category","type":"categoryDef","startIndex":194501,"stopIndex":194591,"fileName":"lively/Widgets.js","_subElements":[{"__isSmartRef__":true,"id":16774},{"__isSmartRef__":true,"id":16776}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16776":{"name":"slider","type":"propertyDef","startIndex":194548,"stopIndex":194590,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":16775},"className":"SliderMorph.prototype","_owner":{"__isSmartRef__":true,"id":16773},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16777":{"name":null,"type":"comment","startIndex":194595,"stopIndex":194595,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16778":{"name":null,"type":"unknown","startIndex":194596,"stopIndex":194629,"fileName":"lively/Widgets.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16779":{"target":{"__isSmartRef__":true,"id":16780},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/WidgetsTraits.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16780":{"name":"lively.WidgetsTraits","type":"moduleDef","startIndex":0,"stopIndex":8345,"fileName":"lively/WidgetsTraits.js","_subElements":[{"__isSmartRef__":true,"id":16781},{"__isSmartRef__":true,"id":16782},{"__isSmartRef__":true,"id":16788},{"__isSmartRef__":true,"id":16789},{"__isSmartRef__":true,"id":16800},{"__isSmartRef__":true,"id":16801},{"__isSmartRef__":true,"id":16808},{"__isSmartRef__":true,"id":16809},{"__isSmartRef__":true,"id":16830}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16781":{"name":null,"type":"comment","startIndex":76,"stopIndex":121,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16782":{"name":"TitleBarMorph","type":"traitDef","startIndex":122,"stopIndex":942,"fileName":"lively/WidgetsTraits.js","_subElements":[{"__isSmartRef__":true,"id":16783},{"__isSmartRef__":true,"id":16785},{"__isSmartRef__":true,"id":16787}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16783":{"name":"connectButtons","type":"propertyDef","startIndex":163,"stopIndex":511,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16784},"_owner":{"__isSmartRef__":true,"id":16782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16784":{"name":"initializing","type":"categoryDef","startIndex":23,"stopIndex":392,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16783}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16785":{"name":"setTitle","type":"propertyDef","startIndex":528,"stopIndex":874,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16786},"_owner":{"__isSmartRef__":true,"id":16782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16786":{"name":"window","type":"categoryDef","startIndex":394,"stopIndex":817,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16785},{"__isSmartRef__":true,"id":16787}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16787":{"name":"getTitle","type":"propertyDef","startIndex":877,"stopIndex":937,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16786},"_owner":{"__isSmartRef__":true,"id":16782},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16788":{"name":null,"type":"comment","startIndex":943,"stopIndex":943,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16789":{"name":"WindowMorph","type":"traitDef","startIndex":944,"stopIndex":4112,"fileName":"lively/WidgetsTraits.js","_subElements":[{"__isSmartRef__":true,"id":16790},{"__isSmartRef__":true,"id":16792},{"__isSmartRef__":true,"id":16793},{"__isSmartRef__":true,"id":16794},{"__isSmartRef__":true,"id":16795},{"__isSmartRef__":true,"id":16797},{"__isSmartRef__":true,"id":16798},{"__isSmartRef__":true,"id":16799}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16790":{"name":"setTitle","type":"propertyDef","startIndex":986,"stopIndex":1051,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16791},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16791":{"name":"window behavior","type":"categoryDef","startIndex":21,"stopIndex":491,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16790},{"__isSmartRef__":true,"id":16792},{"__isSmartRef__":true,"id":16793},{"__isSmartRef__":true,"id":16794}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16792":{"name":"getTitle","type":"propertyDef","startIndex":1053,"stopIndex":1110,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16791},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16793":{"name":"isShutdown","type":"propertyDef","startIndex":1113,"stopIndex":1176,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16791},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16794":{"name":"initiateShutdown","type":"propertyDef","startIndex":1178,"stopIndex":1432,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16791},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16795":{"name":"toggleCollapse","type":"propertyDef","startIndex":1453,"stopIndex":1560,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16796},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16796":{"name":"collapsing","type":"categoryDef","startIndex":493,"stopIndex":3165,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16795},{"__isSmartRef__":true,"id":16797},{"__isSmartRef__":true,"id":16798},{"__isSmartRef__":true,"id":16799}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16797":{"name":"collapse","type":"propertyDef","startIndex":1567,"stopIndex":2508,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16796},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16798":{"name":"expand","type":"propertyDef","startIndex":2515,"stopIndex":4039,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16796},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16799":{"name":"isCollapsed","type":"propertyDef","startIndex":4042,"stopIndex":4107,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16796},"_owner":{"__isSmartRef__":true,"id":16789},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16800":{"name":null,"type":"comment","startIndex":4113,"stopIndex":4113,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16801":{"name":"HorizontalDividerTrait","type":"traitDef","startIndex":4114,"stopIndex":5193,"fileName":"lively/WidgetsTraits.js","_subElements":[{"__isSmartRef__":true,"id":16802},{"__isSmartRef__":true,"id":16804},{"__isSmartRef__":true,"id":16805},{"__isSmartRef__":true,"id":16806},{"__isSmartRef__":true,"id":16807}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16802":{"name":"movedVerticallyBy","type":"propertyDef","startIndex":4173,"stopIndex":4742,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16803},"_owner":{"__isSmartRef__":true,"id":16801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16803":{"name":"internal slider logic","type":"categoryDef","startIndex":32,"stopIndex":1076,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16802},{"__isSmartRef__":true,"id":16804},{"__isSmartRef__":true,"id":16805},{"__isSmartRef__":true,"id":16806},{"__isSmartRef__":true,"id":16807}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16804":{"name":"resizeIsSave","type":"propertyDef","startIndex":4745,"stopIndex":4987,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16803},"_owner":{"__isSmartRef__":true,"id":16801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16805":{"name":"addFixed","type":"propertyDef","startIndex":4990,"stopIndex":5063,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16803},"_owner":{"__isSmartRef__":true,"id":16801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16806":{"name":"addScalingAbove","type":"propertyDef","startIndex":5066,"stopIndex":5125,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16803},"_owner":{"__isSmartRef__":true,"id":16801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16807":{"name":"addScalingBelow","type":"propertyDef","startIndex":5128,"stopIndex":5188,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16803},"_owner":{"__isSmartRef__":true,"id":16801},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16808":{"name":null,"type":"comment","startIndex":5194,"stopIndex":5194,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16809":{"name":"SliderMorphTrait","type":"traitDef","startIndex":5195,"stopIndex":8324,"fileName":"lively/WidgetsTraits.js","_subElements":[{"__isSmartRef__":true,"id":16810},{"__isSmartRef__":true,"id":16812},{"__isSmartRef__":true,"id":16813},{"__isSmartRef__":true,"id":16815},{"__isSmartRef__":true,"id":16816},{"__isSmartRef__":true,"id":16818},{"__isSmartRef__":true,"id":16819},{"__isSmartRef__":true,"id":16821},{"__isSmartRef__":true,"id":16822},{"__isSmartRef__":true,"id":16824},{"__isSmartRef__":true,"id":16825},{"__isSmartRef__":true,"id":16826},{"__isSmartRef__":true,"id":16828},{"__isSmartRef__":true,"id":16829}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16810":{"name":"mss","type":"propertyDef","startIndex":5235,"stopIndex":5243,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16811},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16811":{"name":"settings","type":"categoryDef","startIndex":26,"stopIndex":127,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16810},{"__isSmartRef__":true,"id":16812}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16812":{"name":"style","type":"propertyDef","startIndex":5244,"stopIndex":5319,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16811},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16813":{"name":"getScaledValue","type":"propertyDef","startIndex":5339,"stopIndex":5440,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16814},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16814":{"name":"accessing","type":"categoryDef","startIndex":129,"stopIndex":338,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16813},{"__isSmartRef__":true,"id":16815}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16815":{"name":"setScaledValue","type":"propertyDef","startIndex":5443,"stopIndex":5529,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16814},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16816":{"name":"onSliderExtentUpdate","type":"propertyDef","startIndex":5549,"stopIndex":5622,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16817},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16817":{"name":"updating","type":"categoryDef","startIndex":340,"stopIndex":498,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16816},{"__isSmartRef__":true,"id":16818}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16818":{"name":"onValueUpdate","type":"propertyDef","startIndex":5625,"stopIndex":5690,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16817},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16819":{"name":"vertical","type":"propertyDef","startIndex":5713,"stopIndex":5809,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16820},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16820":{"name":"slider logic","type":"categoryDef","startIndex":500,"stopIndex":709,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16819},{"__isSmartRef__":true,"id":16821}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16821":{"name":"clipValue","type":"propertyDef","startIndex":5811,"stopIndex":5901,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16820},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16822":{"name":"adjustSliderParts","type":"propertyDef","startIndex":5921,"stopIndex":6710,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16823},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16823":{"name":"layouting","type":"categoryDef","startIndex":711,"stopIndex":1822,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16822},{"__isSmartRef__":true,"id":16824},{"__isSmartRef__":true,"id":16825}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16824":{"name":"adjustFill","type":"propertyDef","startIndex":6712,"stopIndex":6738,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16823},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16825":{"name":"setupFill","type":"propertyDef","startIndex":6741,"stopIndex":7014,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16823},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16826":{"name":"sliderPressed","type":"propertyDef","startIndex":7037,"stopIndex":7350,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16827},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16827":{"name":"mouse events","type":"categoryDef","startIndex":1824,"stopIndex":3126,"fileName":null,"_subElements":[{"__isSmartRef__":true,"id":16826},{"__isSmartRef__":true,"id":16828},{"__isSmartRef__":true,"id":16829}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16828":{"name":"sliderMoved","type":"propertyDef","startIndex":7354,"stopIndex":8284,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16827},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16829":{"name":"sliderReleased","type":"propertyDef","startIndex":8287,"stopIndex":8319,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16827},"_owner":{"__isSmartRef__":true,"id":16809},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16830":{"name":null,"type":"comment","startIndex":8325,"stopIndex":8325,"fileName":"lively/WidgetsTraits.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16831":{"target":{"__isSmartRef__":true,"id":16832},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/WikiParser.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16832":{"name":"lively.WikiParser","type":"moduleDef","startIndex":0,"stopIndex":7608,"fileName":"lively/WikiParser.js","_subElements":[{"__isSmartRef__":true,"id":16833}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16833":{"name":null,"type":"unknown","startIndex":72,"stopIndex":7605,"fileName":"lively/WikiParser.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16834":{"target":{"__isSmartRef__":true,"id":16835},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/WikiParser.ometa","showAll":false,"__LivelyClassName__":"lively.ide.CompleteOmetaFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16835":{"name":"lively/WikiParser.ometa","type":"ometaGrammar","startIndex":0,"stopIndex":2627,"fileName":"lively/WikiParser.ometa","_subElements":[{"__isSmartRef__":true,"id":16836}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16836":{"name":"WikiParser","type":"ometaDef","startIndex":0,"stopIndex":2627,"fileName":"lively/WikiParser.ometa","_subElements":[{"__isSmartRef__":true,"id":16837},{"__isSmartRef__":true,"id":16838},{"__isSmartRef__":true,"id":16839},{"__isSmartRef__":true,"id":16840},{"__isSmartRef__":true,"id":16841},{"__isSmartRef__":true,"id":16842},{"__isSmartRef__":true,"id":16843},{"__isSmartRef__":true,"id":16844},{"__isSmartRef__":true,"id":16845},{"__isSmartRef__":true,"id":16846},{"__isSmartRef__":true,"id":16847},{"__isSmartRef__":true,"id":16848},{"__isSmartRef__":true,"id":16849},{"__isSmartRef__":true,"id":16850},{"__isSmartRef__":true,"id":16851},{"__isSmartRef__":true,"id":16852},{"__isSmartRef__":true,"id":16853},{"__isSmartRef__":true,"id":16854},{"__isSmartRef__":true,"id":16855}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Parser","__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16837":{"name":"nl","type":"ometaRuleDef","startIndex":31,"stopIndex":40,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16838":{"name":"createTextSpec","type":"ometaRuleDef","startIndex":44,"stopIndex":779,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16839":{"name":"heading","type":"ometaRuleDef","startIndex":783,"stopIndex":1069,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16840":{"name":"paragraph","type":"ometaRuleDef","startIndex":1073,"stopIndex":1145,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16841":{"name":"nestableText","type":"ometaRuleDef","startIndex":1149,"stopIndex":1201,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16842":{"name":"list","type":"ometaRuleDef","startIndex":1205,"stopIndex":1441,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16843":{"name":"atomicText","type":"ometaRuleDef","startIndex":1445,"stopIndex":1559,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16844":{"name":"trash","type":"ometaRuleDef","startIndex":1561,"stopIndex":1669,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16845":{"name":"character","type":"ometaRuleDef","startIndex":1674,"stopIndex":1713,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16846":{"name":"wordsNoParagraphEnd","type":"ometaRuleDef","startIndex":1717,"stopIndex":1839,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16847":{"name":"wordsNoNewline","type":"ometaRuleDef","startIndex":1843,"stopIndex":1957,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16848":{"name":"bold","type":"ometaRuleDef","startIndex":1961,"stopIndex":2076,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16849":{"name":"italic","type":"ometaRuleDef","startIndex":2079,"stopIndex":2195,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16850":{"name":"link","type":"ometaRuleDef","startIndex":2200,"stopIndex":2407,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["spec"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16851":{"name":"paragraphEnd","type":"ometaRuleDef","startIndex":2411,"stopIndex":2447,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16852":{"name":"partEnd","type":"ometaRuleDef","startIndex":2451,"stopIndex":2475,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16853":{"name":"textParts","type":"ometaRuleDef","startIndex":2479,"stopIndex":2533,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16854":{"name":"log","type":"ometaRuleDef","startIndex":2537,"stopIndex":2566,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":["msg"],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16855":{"name":"wikiTextDescription","type":"ometaRuleDef","startIndex":2571,"stopIndex":2626,"fileName":"lively/WikiParser.ometa","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"parameters":[],"_owner":{"__isSmartRef__":true,"id":16836},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16856":{"target":{"__isSmartRef__":true,"id":16857},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/WikiWidget.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16857":{"name":"lively.WikiWidget","type":"moduleDef","startIndex":1136,"stopIndex":6585,"fileName":"lively/WikiWidget.js","_subElements":[{"__isSmartRef__":true,"id":16858},{"__isSmartRef__":true,"id":16859},{"__isSmartRef__":true,"id":16862},{"__isSmartRef__":true,"id":16863},{"__isSmartRef__":true,"id":16880}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16858":{"name":null,"type":"comment","startIndex":1228,"stopIndex":1228,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16859":{"name":"WikiWidgetPanel","type":"klassDef","startIndex":1229,"stopIndex":2251,"fileName":"lively/WikiWidget.js","_subElements":[{"__isSmartRef__":true,"id":16860}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"PanelMorph","categories":[{"__isSmartRef__":true,"id":16861}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16860":{"name":"onDeserialize","type":"propertyDef","startIndex":1271,"stopIndex":2247,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16861},"className":"WikiWidgetPanel","_owner":{"__isSmartRef__":true,"id":16859},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16861":{"name":"default category","type":"categoryDef","startIndex":1268,"stopIndex":2248,"fileName":"lively/WikiWidget.js","_subElements":[{"__isSmartRef__":true,"id":16860}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16862":{"name":null,"type":"comment","startIndex":2252,"stopIndex":2252,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16863":{"name":"WikiWidget","type":"klassDef","startIndex":2253,"stopIndex":6582,"fileName":"lively/WikiWidget.js","_subElements":[{"__isSmartRef__":true,"id":16864},{"__isSmartRef__":true,"id":16866},{"__isSmartRef__":true,"id":16867},{"__isSmartRef__":true,"id":16868},{"__isSmartRef__":true,"id":16869},{"__isSmartRef__":true,"id":16870},{"__isSmartRef__":true,"id":16871},{"__isSmartRef__":true,"id":16872},{"__isSmartRef__":true,"id":16873},{"__isSmartRef__":true,"id":16874},{"__isSmartRef__":true,"id":16875},{"__isSmartRef__":true,"id":16876},{"__isSmartRef__":true,"id":16877},{"__isSmartRef__":true,"id":16878},{"__isSmartRef__":true,"id":16879}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Widget","categories":[{"__isSmartRef__":true,"id":16865}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16864":{"name":"viewTitle","type":"propertyDef","startIndex":2285,"stopIndex":2300,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16865":{"name":"default category","type":"categoryDef","startIndex":2283,"stopIndex":6579,"fileName":"lively/WikiWidget.js","_subElements":[{"__isSmartRef__":true,"id":16864},{"__isSmartRef__":true,"id":16866},{"__isSmartRef__":true,"id":16867},{"__isSmartRef__":true,"id":16868},{"__isSmartRef__":true,"id":16869},{"__isSmartRef__":true,"id":16870},{"__isSmartRef__":true,"id":16871},{"__isSmartRef__":true,"id":16872},{"__isSmartRef__":true,"id":16873},{"__isSmartRef__":true,"id":16874},{"__isSmartRef__":true,"id":16875},{"__isSmartRef__":true,"id":16876},{"__isSmartRef__":true,"id":16877},{"__isSmartRef__":true,"id":16878},{"__isSmartRef__":true,"id":16879}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16866":{"name":"initialViewExtent","type":"propertyDef","startIndex":2302,"stopIndex":2335,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16867":{"name":"useLightFrame","type":"propertyDef","startIndex":2337,"stopIndex":2358,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16868":{"name":"formals","type":"propertyDef","startIndex":2360,"stopIndex":2386,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16869":{"name":"initialize","type":"propertyDef","startIndex":2388,"stopIndex":2538,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16870":{"name":"start","type":"propertyDef","startIndex":2540,"stopIndex":2592,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16871":{"name":"buildView","type":"propertyDef","startIndex":2594,"stopIndex":3748,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16872":{"name":"enableEditMode","type":"propertyDef","startIndex":3750,"stopIndex":4218,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16873":{"name":"enableReadMode","type":"propertyDef","startIndex":4220,"stopIndex":4994,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16874":{"name":"getBody","type":"propertyDef","startIndex":4996,"stopIndex":5046,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16875":{"name":"onEditContentUpdate","type":"propertyDef","startIndex":5048,"stopIndex":5150,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16876":{"name":"deleteBodyMorphs","type":"propertyDef","startIndex":5152,"stopIndex":5241,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16877":{"name":"editContentsToMorphs","type":"propertyDef","startIndex":5243,"stopIndex":5641,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16878":{"name":"openIn","type":"propertyDef","startIndex":5643,"stopIndex":6216,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16879":{"name":"createScrollMorphFor","type":"propertyDef","startIndex":6218,"stopIndex":6573,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":16865},"className":"WikiWidget","_owner":{"__isSmartRef__":true,"id":16863},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16880":{"name":null,"type":"comment","startIndex":6583,"stopIndex":6583,"fileName":"lively/WikiWidget.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"16881":{"target":{"__isSmartRef__":true,"id":8061},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"16882":{"isListItem":true,"string":"bindings/","value":{"__isSmartRef__":true,"id":8765}},"16883":{"isListItem":true,"string":"deprecated/","value":{"__isSmartRef__":true,"id":8766}},"16884":{"isListItem":true,"string":"dom/","value":{"__isSmartRef__":true,"id":8767}},"16885":{"isListItem":true,"string":"ide/","value":{"__isSmartRef__":true,"id":8768}},"16886":{"isListItem":true,"string":"morphic/","value":{"__isSmartRef__":true,"id":8769}},"16887":{"isListItem":true,"string":"oldCore/","value":{"__isSmartRef__":true,"id":8770}},"16888":{"isListItem":true,"string":"persistence/","value":{"__isSmartRef__":true,"id":8771}},"16889":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":8772}},"16890":{"isListItem":true,"string":"Base.js","value":{"__isSmartRef__":true,"id":8773}},"16891":{"isListItem":true,"string":"bindings.js","value":{"__isSmartRef__":true,"id":9254}},"16892":{"isListItem":true,"string":"bootstrap.js","value":{"__isSmartRef__":true,"id":9321}},"16893":{"isListItem":true,"string":"CanvasExpt.js","value":{"__isSmartRef__":true,"id":9417}},"16894":{"isListItem":true,"string":"CanvasExptCoreFixes.js","value":{"__isSmartRef__":true,"id":9505}},"16895":{"isListItem":true,"string":"ChangeSet.js","value":{"__isSmartRef__":true,"id":9521}},"16896":{"isListItem":true,"string":"Connector.js","value":{"__isSmartRef__":true,"id":9719}},"16897":{"isListItem":true,"string":"Core.js","value":{"__isSmartRef__":true,"id":9784}},"16898":{"isListItem":true,"string":"CrayonColors.js","value":{"__isSmartRef__":true,"id":9796}},"16899":{"isListItem":true,"string":"Data.js","value":{"__isSmartRef__":true,"id":9853}},"16900":{"isListItem":true,"string":"defaultconfig.js","value":{"__isSmartRef__":true,"id":9887}},"16901":{"isListItem":true,"string":"demofx.js","value":{"__isSmartRef__":true,"id":10032}},"16902":{"isListItem":true,"string":"DOMAbstraction.js","value":{"__isSmartRef__":true,"id":10132}},"16903":{"isListItem":true,"string":"EmuDom.js","value":{"__isSmartRef__":true,"id":10240}},"16904":{"isListItem":true,"string":"Examples.js","value":{"__isSmartRef__":true,"id":10246}},"16905":{"isListItem":true,"string":"Fabrik.js","value":{"__isSmartRef__":true,"id":10696}},"16906":{"isListItem":true,"string":"FileUploadWidget.js","value":{"__isSmartRef__":true,"id":11136}},"16907":{"isListItem":true,"string":"GeometryEvents.js","value":{"__isSmartRef__":true,"id":11170}},"16908":{"isListItem":true,"string":"Graffle.js","value":{"__isSmartRef__":true,"id":11177}},"16909":{"isListItem":true,"string":"GridLayout.js","value":{"__isSmartRef__":true,"id":11191}},"16910":{"isListItem":true,"string":"Helper.js","value":{"__isSmartRef__":true,"id":11252}},"16911":{"isListItem":true,"string":"ide.js","value":{"__isSmartRef__":true,"id":11284}},"16912":{"isListItem":true,"string":"JSON.js","value":{"__isSmartRef__":true,"id":11326}},"16913":{"isListItem":true,"string":"LayerableMorphs.js","value":{"__isSmartRef__":true,"id":11335}},"16914":{"isListItem":true,"string":"lk-js-parser.ometa","value":{"__isSmartRef__":true,"id":11342}},"16915":{"isListItem":true,"string":"LKFileParser.js","value":{"__isSmartRef__":true,"id":11368}},"16916":{"isListItem":true,"string":"LKFileParser.ometa","value":{"__isSmartRef__":true,"id":11371}},"16917":{"isListItem":true,"string":"LKWiki.js","value":{"__isSmartRef__":true,"id":11453}},"16918":{"isListItem":true,"string":"localconfig.js","value":{"__isSmartRef__":true,"id":11635}},"16919":{"isListItem":true,"string":"LogHelper.js","value":{"__isSmartRef__":true,"id":11660}},"16920":{"isListItem":true,"string":"Main.js","value":{"__isSmartRef__":true,"id":11680}},"16921":{"isListItem":true,"string":"Migration.js","value":{"__isSmartRef__":true,"id":11782}},"16922":{"isListItem":true,"string":"miniprototype.js","value":{"__isSmartRef__":true,"id":11787}},"16923":{"isListItem":true,"string":"morphic.js","value":{"__isSmartRef__":true,"id":11922}},"16924":{"isListItem":true,"string":"Network.js","value":{"__isSmartRef__":true,"id":11929}},"16925":{"isListItem":true,"string":"NewMorphicCompat.js","value":{"__isSmartRef__":true,"id":12159}},"16926":{"isListItem":true,"string":"NoMoreModels.js","value":{"__isSmartRef__":true,"id":12194}},"16927":{"isListItem":true,"string":"OldBase.js","value":{"__isSmartRef__":true,"id":12204}},"16928":{"isListItem":true,"string":"OldModel.js","value":{"__isSmartRef__":true,"id":12330}},"16929":{"isListItem":true,"string":"Ometa.js","value":{"__isSmartRef__":true,"id":12376}},"16930":{"isListItem":true,"string":"PartsBin.js","value":{"__isSmartRef__":true,"id":12395}},"16931":{"isListItem":true,"string":"PartsBinMorphs.js","value":{"__isSmartRef__":true,"id":12502}},"16932":{"isListItem":true,"string":"Persistence.js","value":{"__isSmartRef__":true,"id":12527}},"16933":{"isListItem":true,"string":"Presentation.js","value":{"__isSmartRef__":true,"id":12641}},"16934":{"isListItem":true,"string":"Rendering.js","value":{"__isSmartRef__":true,"id":12720}},"16935":{"isListItem":true,"string":"rhino-compat.js","value":{"__isSmartRef__":true,"id":12723}},"16936":{"isListItem":true,"string":"scene.js","value":{"__isSmartRef__":true,"id":12735}},"16937":{"isListItem":true,"string":"Scripting.js","value":{"__isSmartRef__":true,"id":13379}},"16938":{"isListItem":true,"string":"SerializationRefactoring.js","value":{"__isSmartRef__":true,"id":13473}},"16939":{"isListItem":true,"string":"simpleMain.js","value":{"__isSmartRef__":true,"id":13476}},"16940":{"isListItem":true,"string":"SmalltalkParser.js","value":{"__isSmartRef__":true,"id":13484}},"16941":{"isListItem":true,"string":"SmalltalkParser.ometa","value":{"__isSmartRef__":true,"id":13487}},"16942":{"isListItem":true,"string":"SmalltalkParserSupport.js","value":{"__isSmartRef__":true,"id":13556}},"16943":{"isListItem":true,"string":"SmartRefSerialization.js","value":{"__isSmartRef__":true,"id":13862}},"16944":{"isListItem":true,"string":"SpellChecker.js","value":{"__isSmartRef__":true,"id":13865}},"16945":{"isListItem":true,"string":"Storage.js","value":{"__isSmartRef__":true,"id":13900}},"16946":{"isListItem":true,"string":"StyleAdditions.js","value":{"__isSmartRef__":true,"id":14022}},"16947":{"isListItem":true,"string":"Styles.js","value":{"__isSmartRef__":true,"id":14062}},"16948":{"isListItem":true,"string":"SyntaxHighlighting.js","value":{"__isSmartRef__":true,"id":14312}},"16949":{"isListItem":true,"string":"TestFramework.js","value":{"__isSmartRef__":true,"id":14315}},"16950":{"isListItem":true,"string":"TestModule.js","value":{"__isSmartRef__":true,"id":14484}},"16951":{"isListItem":true,"string":"TestRunnerExtensions.js","value":{"__isSmartRef__":true,"id":14491}},"16952":{"isListItem":true,"string":"Text.js","value":{"__isSmartRef__":true,"id":14524}},"16953":{"isListItem":true,"string":"TextSupport.js","value":{"__isSmartRef__":true,"id":14928}},"16954":{"isListItem":true,"string":"TileScripting.js","value":{"__isSmartRef__":true,"id":14992}},"16955":{"isListItem":true,"string":"Tools.js","value":{"__isSmartRef__":true,"id":15156}},"16956":{"isListItem":true,"string":"TouchSupport.js","value":{"__isSmartRef__":true,"id":15437}},"16957":{"isListItem":true,"string":"Traits.js","value":{"__isSmartRef__":true,"id":15473}},"16958":{"isListItem":true,"string":"Undo.js","value":{"__isSmartRef__":true,"id":15516}},"16959":{"isListItem":true,"string":"WebPIM.js","value":{"__isSmartRef__":true,"id":15558}},"16960":{"isListItem":true,"string":"Widgets.js","value":{"__isSmartRef__":true,"id":15715}},"16961":{"isListItem":true,"string":"WidgetsTraits.js","value":{"__isSmartRef__":true,"id":16779}},"16962":{"isListItem":true,"string":"WikiParser.js","value":{"__isSmartRef__":true,"id":16831}},"16963":{"isListItem":true,"string":"WikiParser.ometa","value":{"__isSmartRef__":true,"id":16834}},"16964":{"isListItem":true,"string":"WikiWidget.js","value":{"__isSmartRef__":true,"id":16856}},"16965":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":16881}},"16966":{"morph":{"__isSmartRef__":true,"id":8746},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"16967":{"x":0,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"16968":{"sourceObj":{"__isSmartRef__":true,"id":8746},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setPane1Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":16969},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":16970},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"16969":{"source":{"__isSmartRef__":true,"id":8746},"target":{"__isSmartRef__":true,"id":8497}},"16970":{"updater":{"__isSmartRef__":true,"id":16971}},"16971":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":16969},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":16972},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"16972":{},"16973":{"sourceObj":{"__isSmartRef__":true,"id":8746},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane1Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":16974},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"16974":{"source":{"__isSmartRef__":true,"id":8746},"target":{"__isSmartRef__":true,"id":8497}},"16975":{"sourceObj":{"__isSmartRef__":true,"id":8746},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane1Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":16976},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"16976":{"source":{"__isSmartRef__":true,"id":8746},"target":{"__isSmartRef__":true,"id":8497}},"16977":{"sourceObj":{"__isSmartRef__":true,"id":8746},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane1Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":16978},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"16978":{"source":{"__isSmartRef__":true,"id":8746},"target":{"__isSmartRef__":true,"id":8497}},"16979":{"target":{"__isSmartRef__":true,"id":11930},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":8756},"moduleName":"lively/Network.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16980":{"source":{"__isSmartRef__":true,"id":8497},"target":{"__isSmartRef__":true,"id":8746}},"16981":{"sourceObj":{"__isSmartRef__":true,"id":8497},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":16982},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17033},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"16982":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":16983},"id":8,"renderContextTable":{"__isSmartRef__":true,"id":16988},"itemList":[{"__isSmartRef__":true,"id":16989},{"__isSmartRef__":true,"id":16991},{"__isSmartRef__":true,"id":16993},{"__isSmartRef__":true,"id":16995},{"__isSmartRef__":true,"id":16997},{"__isSmartRef__":true,"id":16999},{"__isSmartRef__":true,"id":17001},{"__isSmartRef__":true,"id":17003},{"__isSmartRef__":true,"id":17005},{"__isSmartRef__":true,"id":17007},{"__isSmartRef__":true,"id":17009},{"__isSmartRef__":true,"id":17011},{"__isSmartRef__":true,"id":17013},{"__isSmartRef__":true,"id":17015},{"__isSmartRef__":true,"id":17017}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":17019},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17020},"selectedLineNo":13,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":8483},"attributeConnections":[{"__isSmartRef__":true,"id":17021},{"__isSmartRef__":true,"id":17026},{"__isSmartRef__":true,"id":17028},{"__isSmartRef__":true,"id":17030}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":17032},"prevScroll":[0,64],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"16983":{"_Position":{"__isSmartRef__":true,"id":16984},"renderContextTable":{"__isSmartRef__":true,"id":16985},"_Extent":{"__isSmartRef__":true,"id":16986},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":16987},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"16984":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"16985":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"16986":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"16987":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"16988":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"16989":{"isListItem":true,"string":"URL","value":{"__isSmartRef__":true,"id":16990}},"16990":{"target":{"__isSmartRef__":true,"id":11932},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16991":{"isListItem":true,"string":"URL (extension)","value":{"__isSmartRef__":true,"id":16992}},"16992":{"target":{"__isSmartRef__":true,"id":11964},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16993":{"isListItem":true,"string":"URL (extension)","value":{"__isSmartRef__":true,"id":16994}},"16994":{"target":{"__isSmartRef__":true,"id":11968},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16995":{"isListItem":true,"string":"URL (extension)","value":{"__isSmartRef__":true,"id":16996}},"16996":{"target":{"__isSmartRef__":true,"id":11972},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16997":{"isListItem":true,"string":"URL (extension)","value":{"__isSmartRef__":true,"id":16998}},"16998":{"target":{"__isSmartRef__":true,"id":11976},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"16999":{"isListItem":true,"string":"NetRequestStatus","value":{"__isSmartRef__":true,"id":17000}},"17000":{"target":{"__isSmartRef__":true,"id":11984},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17001":{"isListItem":true,"string":"NetRequest","value":{"__isSmartRef__":true,"id":17002}},"17002":{"target":{"__isSmartRef__":true,"id":11999},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17003":{"isListItem":true,"string":"NetRequestReporterTrait (object)","value":{"__isSmartRef__":true,"id":17004}},"17004":{"target":{"__isSmartRef__":true,"id":12037},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.ObjectFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17005":{"isListItem":true,"string":"NetRequestReporter","value":{"__isSmartRef__":true,"id":17006}},"17006":{"target":{"__isSmartRef__":true,"id":12041},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17007":{"isListItem":true,"string":"Resource","value":{"__isSmartRef__":true,"id":17008}},"17008":{"target":{"__isSmartRef__":true,"id":12043},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17009":{"isListItem":true,"string":"SVNResource","value":{"__isSmartRef__":true,"id":17010}},"17010":{"target":{"__isSmartRef__":true,"id":12058},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17011":{"isListItem":true,"string":"SVNVersionInfo","value":{"__isSmartRef__":true,"id":17012}},"17012":{"target":{"__isSmartRef__":true,"id":12078},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17013":{"isListItem":true,"string":"SVNVersionInfo (extension)","value":{"__isSmartRef__":true,"id":17014}},"17014":{"target":{"__isSmartRef__":true,"id":12085},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17015":{"isListItem":true,"string":"WebResource","value":{"__isSmartRef__":true,"id":17016}},"17016":{"target":{"__isSmartRef__":true,"id":12089},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17017":{"isListItem":true,"string":"WebResource (extension)","value":{"__isSmartRef__":true,"id":17018}},"17018":{"target":{"__isSmartRef__":true,"id":12153},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17019":{"morph":{"__isSmartRef__":true,"id":16982},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17020":{"x":205,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17021":{"sourceObj":{"__isSmartRef__":true,"id":16982},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setPane2Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":17022},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17023},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17022":{"source":{"__isSmartRef__":true,"id":16982},"target":{"__isSmartRef__":true,"id":8497}},"17023":{"updater":{"__isSmartRef__":true,"id":17024}},"17024":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17022},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":17025},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17025":{},"17026":{"sourceObj":{"__isSmartRef__":true,"id":16982},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane2Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17027},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17027":{"source":{"__isSmartRef__":true,"id":16982},"target":{"__isSmartRef__":true,"id":8497}},"17028":{"sourceObj":{"__isSmartRef__":true,"id":16982},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane2Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17029},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17029":{"source":{"__isSmartRef__":true,"id":16982},"target":{"__isSmartRef__":true,"id":8497}},"17030":{"sourceObj":{"__isSmartRef__":true,"id":16982},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane2Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17031},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17031":{"source":{"__isSmartRef__":true,"id":16982},"target":{"__isSmartRef__":true,"id":8497}},"17032":{"target":{"__isSmartRef__":true,"id":12089},"browser":{"__isSmartRef__":true,"id":8497},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17033":{"source":{"__isSmartRef__":true,"id":8497},"target":{"__isSmartRef__":true,"id":16982}},"17034":{"sourceObj":{"__isSmartRef__":true,"id":8497},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":17035},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17083},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17035":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17036},"id":9,"renderContextTable":{"__isSmartRef__":true,"id":17041},"itemList":[{"__isSmartRef__":true,"id":17042},{"__isSmartRef__":true,"id":17044},{"__isSmartRef__":true,"id":17046},{"__isSmartRef__":true,"id":17048},{"__isSmartRef__":true,"id":17050},{"__isSmartRef__":true,"id":17052},{"__isSmartRef__":true,"id":17054},{"__isSmartRef__":true,"id":17056},{"__isSmartRef__":true,"id":17058},{"__isSmartRef__":true,"id":17060},{"__isSmartRef__":true,"id":17062},{"__isSmartRef__":true,"id":17064},{"__isSmartRef__":true,"id":17066},{"__isSmartRef__":true,"id":17068}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":17070},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17071},"selectedLineNo":0,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":8483},"attributeConnections":[{"__isSmartRef__":true,"id":17072},{"__isSmartRef__":true,"id":17077},{"__isSmartRef__":true,"id":17079},{"__isSmartRef__":true,"id":17081}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"17036":{"_Position":{"__isSmartRef__":true,"id":17037},"renderContextTable":{"__isSmartRef__":true,"id":17038},"_Extent":{"__isSmartRef__":true,"id":17039},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17040},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17037":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17038":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17039":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17040":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17041":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"17042":{"isListItem":true,"string":"-- all --","value":{"__isSmartRef__":true,"id":17043}},"17043":{"target":{"__isSmartRef__":true,"id":12089},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17044":{"isListItem":true,"string":"documentation","value":{"__isSmartRef__":true,"id":17045}},"17045":{"target":{"__isSmartRef__":true,"id":12091},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12091}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17046":{"isListItem":true,"string":"initializing","value":{"__isSmartRef__":true,"id":17047}},"17047":{"target":{"__isSmartRef__":true,"id":12093},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12093}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17048":{"isListItem":true,"string":"private","value":{"__isSmartRef__":true,"id":17049}},"17049":{"target":{"__isSmartRef__":true,"id":12099},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12099}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17050":{"isListItem":true,"string":"accessing","value":{"__isSmartRef__":true,"id":17051}},"17051":{"target":{"__isSmartRef__":true,"id":12101},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12101}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17052":{"isListItem":true,"string":"configuration","value":{"__isSmartRef__":true,"id":17053}},"17053":{"target":{"__isSmartRef__":true,"id":12106},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12106}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17054":{"isListItem":true,"string":"progress","value":{"__isSmartRef__":true,"id":17055}},"17055":{"target":{"__isSmartRef__":true,"id":12115},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12115}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17056":{"isListItem":true,"string":"DEPRECATED","value":{"__isSmartRef__":true,"id":17057}},"17057":{"target":{"__isSmartRef__":true,"id":12118},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12118}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17058":{"isListItem":true,"string":"debugging","value":{"__isSmartRef__":true,"id":17059}},"17059":{"target":{"__isSmartRef__":true,"id":12120},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12120}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17060":{"isListItem":true,"string":"request headers","value":{"__isSmartRef__":true,"id":17061}},"17061":{"target":{"__isSmartRef__":true,"id":12123},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12123}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17062":{"isListItem":true,"string":"HTTP methods","value":{"__isSmartRef__":true,"id":17063}},"17063":{"target":{"__isSmartRef__":true,"id":12127},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12127}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17064":{"isListItem":true,"string":"version specific","value":{"__isSmartRef__":true,"id":17065}},"17065":{"target":{"__isSmartRef__":true,"id":12146},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12146}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17066":{"isListItem":true,"string":"XML querying","value":{"__isSmartRef__":true,"id":17067}},"17067":{"target":{"__isSmartRef__":true,"id":12148},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12148}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17068":{"isListItem":true,"string":"conversion","value":{"__isSmartRef__":true,"id":17069}},"17069":{"target":{"__isSmartRef__":true,"id":12151},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17016},"targets":[{"__isSmartRef__":true,"id":12151}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17070":{"morph":{"__isSmartRef__":true,"id":17035},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17071":{"x":410,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17072":{"sourceObj":{"__isSmartRef__":true,"id":17035},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setPane3Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":17073},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17074},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17073":{"source":{"__isSmartRef__":true,"id":17035},"target":{"__isSmartRef__":true,"id":8497}},"17074":{"updater":{"__isSmartRef__":true,"id":17075}},"17075":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17073},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":17076},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17076":{},"17077":{"sourceObj":{"__isSmartRef__":true,"id":17035},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane3Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17078},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17078":{"source":{"__isSmartRef__":true,"id":17035},"target":{"__isSmartRef__":true,"id":8497}},"17079":{"sourceObj":{"__isSmartRef__":true,"id":17035},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane3Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17080},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17080":{"source":{"__isSmartRef__":true,"id":17035},"target":{"__isSmartRef__":true,"id":8497}},"17081":{"sourceObj":{"__isSmartRef__":true,"id":17035},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane3Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17082},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17082":{"source":{"__isSmartRef__":true,"id":17035},"target":{"__isSmartRef__":true,"id":8497}},"17083":{"source":{"__isSmartRef__":true,"id":8497},"target":{"__isSmartRef__":true,"id":17035}},"17084":{"sourceObj":{"__isSmartRef__":true,"id":8497},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":17085},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17205},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17085":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17086},"id":10,"renderContextTable":{"__isSmartRef__":true,"id":17091},"itemList":[{"__isSmartRef__":true,"id":17092},{"__isSmartRef__":true,"id":17094},{"__isSmartRef__":true,"id":17096},{"__isSmartRef__":true,"id":17098},{"__isSmartRef__":true,"id":17100},{"__isSmartRef__":true,"id":17102},{"__isSmartRef__":true,"id":17104},{"__isSmartRef__":true,"id":17106},{"__isSmartRef__":true,"id":17108},{"__isSmartRef__":true,"id":17110},{"__isSmartRef__":true,"id":17112},{"__isSmartRef__":true,"id":17114},{"__isSmartRef__":true,"id":17116},{"__isSmartRef__":true,"id":17118},{"__isSmartRef__":true,"id":17120},{"__isSmartRef__":true,"id":17122},{"__isSmartRef__":true,"id":17124},{"__isSmartRef__":true,"id":17126},{"__isSmartRef__":true,"id":17128},{"__isSmartRef__":true,"id":17130},{"__isSmartRef__":true,"id":17132},{"__isSmartRef__":true,"id":17134},{"__isSmartRef__":true,"id":17136},{"__isSmartRef__":true,"id":17138},{"__isSmartRef__":true,"id":17140},{"__isSmartRef__":true,"id":17142},{"__isSmartRef__":true,"id":17144},{"__isSmartRef__":true,"id":17146},{"__isSmartRef__":true,"id":17148},{"__isSmartRef__":true,"id":17150},{"__isSmartRef__":true,"id":17152},{"__isSmartRef__":true,"id":17154},{"__isSmartRef__":true,"id":17156},{"__isSmartRef__":true,"id":17158},{"__isSmartRef__":true,"id":17160},{"__isSmartRef__":true,"id":17162},{"__isSmartRef__":true,"id":17164},{"__isSmartRef__":true,"id":17166},{"__isSmartRef__":true,"id":17168},{"__isSmartRef__":true,"id":17170},{"__isSmartRef__":true,"id":17172},{"__isSmartRef__":true,"id":17174},{"__isSmartRef__":true,"id":17176},{"__isSmartRef__":true,"id":17178},{"__isSmartRef__":true,"id":17180},{"__isSmartRef__":true,"id":17182},{"__isSmartRef__":true,"id":17184},{"__isSmartRef__":true,"id":17186},{"__isSmartRef__":true,"id":17188}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":17190},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17191},"selectedLineNo":20,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":8483},"attributeConnections":[{"__isSmartRef__":true,"id":17192},{"__isSmartRef__":true,"id":17197},{"__isSmartRef__":true,"id":17199},{"__isSmartRef__":true,"id":17201}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":17203},"prevScroll":[0,160],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"17086":{"_Position":{"__isSmartRef__":true,"id":17087},"renderContextTable":{"__isSmartRef__":true,"id":17088},"_Extent":{"__isSmartRef__":true,"id":17089},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17090},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17087":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17088":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17089":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17090":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17091":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"17092":{"isListItem":true,"string":"connections (proto)","value":{"__isSmartRef__":true,"id":17093}},"17093":{"target":{"__isSmartRef__":true,"id":12090},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17094":{"isListItem":true,"string":"initialize (proto)","value":{"__isSmartRef__":true,"id":17095}},"17095":{"target":{"__isSmartRef__":true,"id":12092},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17096":{"isListItem":true,"string":"reset (proto)","value":{"__isSmartRef__":true,"id":17097}},"17097":{"target":{"__isSmartRef__":true,"id":12094},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17098":{"isListItem":true,"string":"createResource (proto)","value":{"__isSmartRef__":true,"id":17099}},"17099":{"target":{"__isSmartRef__":true,"id":12095},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17100":{"isListItem":true,"string":"createNetRequest (proto)","value":{"__isSmartRef__":true,"id":17101}},"17101":{"target":{"__isSmartRef__":true,"id":12096},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17102":{"isListItem":true,"string":"createXMLHTTPRequest (proto)","value":{"__isSmartRef__":true,"id":17103}},"17103":{"target":{"__isSmartRef__":true,"id":12097},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17104":{"isListItem":true,"string":"temporaryChangeURLAndDo (proto)","value":{"__isSmartRef__":true,"id":17105}},"17105":{"target":{"__isSmartRef__":true,"id":12098},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17106":{"isListItem":true,"string":"getURL (proto)","value":{"__isSmartRef__":true,"id":17107}},"17107":{"target":{"__isSmartRef__":true,"id":12100},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17108":{"isListItem":true,"string":"getRepoURL (proto)","value":{"__isSmartRef__":true,"id":17109}},"17109":{"target":{"__isSmartRef__":true,"id":12102},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17110":{"isListItem":true,"string":"getName (proto)","value":{"__isSmartRef__":true,"id":17111}},"17111":{"target":{"__isSmartRef__":true,"id":12103},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17112":{"isListItem":true,"string":"isCollection (proto)","value":{"__isSmartRef__":true,"id":17113}},"17113":{"target":{"__isSmartRef__":true,"id":12104},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17114":{"isListItem":true,"string":"isSync (proto)","value":{"__isSmartRef__":true,"id":17115}},"17115":{"target":{"__isSmartRef__":true,"id":12105},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17116":{"isListItem":true,"string":"beSync (proto)","value":{"__isSmartRef__":true,"id":17117}},"17117":{"target":{"__isSmartRef__":true,"id":12107},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17118":{"isListItem":true,"string":"beAsync (proto)","value":{"__isSmartRef__":true,"id":17119}},"17119":{"target":{"__isSmartRef__":true,"id":12108},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17120":{"isListItem":true,"string":"setSync (proto)","value":{"__isSmartRef__":true,"id":17121}},"17121":{"target":{"__isSmartRef__":true,"id":12109},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17122":{"isListItem":true,"string":"isBinary (proto)","value":{"__isSmartRef__":true,"id":17123}},"17123":{"target":{"__isSmartRef__":true,"id":12110},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17124":{"isListItem":true,"string":"beBinary (proto)","value":{"__isSmartRef__":true,"id":17125}},"17125":{"target":{"__isSmartRef__":true,"id":12111},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17126":{"isListItem":true,"string":"beText (proto)","value":{"__isSmartRef__":true,"id":17127}},"17127":{"target":{"__isSmartRef__":true,"id":12112},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17128":{"isListItem":true,"string":"forceUncached (proto)","value":{"__isSmartRef__":true,"id":17129}},"17129":{"target":{"__isSmartRef__":true,"id":12113},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17130":{"isListItem":true,"string":"enableShowingProgress (proto)","value":{"__isSmartRef__":true,"id":17131}},"17131":{"target":{"__isSmartRef__":true,"id":12114},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17132":{"isListItem":true,"string":"createProgressBar (proto)","value":{"__isSmartRef__":true,"id":17133}},"17133":{"target":{"__isSmartRef__":true,"id":12116},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17134":{"isListItem":true,"string":"copyTo (proto)","value":{"__isSmartRef__":true,"id":17135}},"17135":{"target":{"__isSmartRef__":true,"id":12117},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17136":{"isListItem":true,"string":"statusMessage (proto)","value":{"__isSmartRef__":true,"id":17137}},"17137":{"target":{"__isSmartRef__":true,"id":12119},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17138":{"isListItem":true,"string":"toString (proto)","value":{"__isSmartRef__":true,"id":17139}},"17139":{"target":{"__isSmartRef__":true,"id":12121},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17140":{"isListItem":true,"string":"setRequestHeaders (proto)","value":{"__isSmartRef__":true,"id":17141}},"17141":{"target":{"__isSmartRef__":true,"id":12122},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17142":{"isListItem":true,"string":"addHeaderForRequiredRevision (proto)","value":{"__isSmartRef__":true,"id":17143}},"17143":{"target":{"__isSmartRef__":true,"id":12124},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17144":{"isListItem":true,"string":"addContentType (proto)","value":{"__isSmartRef__":true,"id":17145}},"17145":{"target":{"__isSmartRef__":true,"id":12125},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17146":{"isListItem":true,"string":"get (proto)","value":{"__isSmartRef__":true,"id":17147}},"17147":{"target":{"__isSmartRef__":true,"id":12126},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17148":{"isListItem":true,"string":"get2 (proto)","value":{"__isSmartRef__":true,"id":17149}},"17149":{"target":{"__isSmartRef__":true,"id":12128},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17150":{"isListItem":true,"string":"put_DEPRECATED (proto)","value":{"__isSmartRef__":true,"id":17151}},"17151":{"target":{"__isSmartRef__":true,"id":12129},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17152":{"isListItem":true,"string":"put (proto)","value":{"__isSmartRef__":true,"id":17153}},"17153":{"target":{"__isSmartRef__":true,"id":12130},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17154":{"isListItem":true,"string":"create (proto)","value":{"__isSmartRef__":true,"id":17155}},"17155":{"target":{"__isSmartRef__":true,"id":12131},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17156":{"isListItem":true,"string":"del (proto)","value":{"__isSmartRef__":true,"id":17157}},"17157":{"target":{"__isSmartRef__":true,"id":12132},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17158":{"isListItem":true,"string":"post (proto)","value":{"__isSmartRef__":true,"id":17159}},"17159":{"target":{"__isSmartRef__":true,"id":12133},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17160":{"isListItem":true,"string":"exists (proto)","value":{"__isSmartRef__":true,"id":17161}},"17161":{"target":{"__isSmartRef__":true,"id":12134},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17162":{"isListItem":true,"string":"head (proto)","value":{"__isSmartRef__":true,"id":17163}},"17163":{"target":{"__isSmartRef__":true,"id":12135},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17164":{"isListItem":true,"string":"propfind (proto)","value":{"__isSmartRef__":true,"id":17165}},"17165":{"target":{"__isSmartRef__":true,"id":12136},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17166":{"isListItem":true,"string":"report (proto)","value":{"__isSmartRef__":true,"id":17167}},"17167":{"target":{"__isSmartRef__":true,"id":12137},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17168":{"isListItem":true,"string":"getSubElements (proto)","value":{"__isSmartRef__":true,"id":17169}},"17169":{"target":{"__isSmartRef__":true,"id":12138},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17170":{"isListItem":true,"string":"copyTo (proto)","value":{"__isSmartRef__":true,"id":17171}},"17171":{"target":{"__isSmartRef__":true,"id":12139},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17172":{"isListItem":true,"string":"moveTo (proto)","value":{"__isSmartRef__":true,"id":17173}},"17173":{"target":{"__isSmartRef__":true,"id":12140},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17174":{"isListItem":true,"string":"getVersions (proto)","value":{"__isSmartRef__":true,"id":17175}},"17175":{"target":{"__isSmartRef__":true,"id":12141},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17176":{"isListItem":true,"string":"getHeadRevision (proto)","value":{"__isSmartRef__":true,"id":17177}},"17177":{"target":{"__isSmartRef__":true,"id":12142},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17178":{"isListItem":true,"string":"getProperties (proto)","value":{"__isSmartRef__":true,"id":17179}},"17179":{"target":{"__isSmartRef__":true,"id":12143},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17180":{"isListItem":true,"string":"ensureExistance (proto)","value":{"__isSmartRef__":true,"id":17181}},"17181":{"target":{"__isSmartRef__":true,"id":12144},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17182":{"isListItem":true,"string":"getLocationInRev (proto)","value":{"__isSmartRef__":true,"id":17183}},"17183":{"target":{"__isSmartRef__":true,"id":12145},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17184":{"isListItem":true,"string":"pvtProcessForLocationRequest (proto)","value":{"__isSmartRef__":true,"id":17185}},"17185":{"target":{"__isSmartRef__":true,"id":12147},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17186":{"isListItem":true,"string":"pvtProcessPropfindForSubElements (proto)","value":{"__isSmartRef__":true,"id":17187}},"17187":{"target":{"__isSmartRef__":true,"id":12149},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17188":{"isListItem":true,"string":"convertContent (proto)","value":{"__isSmartRef__":true,"id":17189}},"17189":{"target":{"__isSmartRef__":true,"id":12150},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17043},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17190":{"morph":{"__isSmartRef__":true,"id":17085},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17191":{"x":615,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17192":{"sourceObj":{"__isSmartRef__":true,"id":17085},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setPane4Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":17193},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17194},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17193":{"source":{"__isSmartRef__":true,"id":17085},"target":{"__isSmartRef__":true,"id":8497}},"17194":{"updater":{"__isSmartRef__":true,"id":17195}},"17195":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17193},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":17196},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17196":{},"17197":{"sourceObj":{"__isSmartRef__":true,"id":17085},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane4Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17198},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17198":{"source":{"__isSmartRef__":true,"id":17085},"target":{"__isSmartRef__":true,"id":8497}},"17199":{"sourceObj":{"__isSmartRef__":true,"id":17085},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane4Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17200},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17200":{"source":{"__isSmartRef__":true,"id":17085},"target":{"__isSmartRef__":true,"id":8497}},"17201":{"sourceObj":{"__isSmartRef__":true,"id":17085},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"getPane4Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17202},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17202":{"source":{"__isSmartRef__":true,"id":17085},"target":{"__isSmartRef__":true,"id":8497}},"17203":{"target":{"__isSmartRef__":true,"id":12116},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17204},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17204":{"target":{"__isSmartRef__":true,"id":12089},"browser":{"__isSmartRef__":true,"id":8497},"parent":{"__isSmartRef__":true,"id":17032},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17205":{"source":{"__isSmartRef__":true,"id":8497},"target":{"__isSmartRef__":true,"id":17085}},"17206":{"sourceObj":{"__isSmartRef__":true,"id":8497},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":17207},"targetMethodName":"setTextString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17329},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17207":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17208},"id":12,"renderContextTable":{"__isSmartRef__":true,"id":17212},"textChunks":[{"__isSmartRef__":true,"id":17213},{"__isSmartRef__":true,"id":17215},{"__isSmartRef__":true,"id":17217},{"__isSmartRef__":true,"id":17219},{"__isSmartRef__":true,"id":17221},{"__isSmartRef__":true,"id":17223},{"__isSmartRef__":true,"id":17225},{"__isSmartRef__":true,"id":17227},{"__isSmartRef__":true,"id":17229},{"__isSmartRef__":true,"id":17231},{"__isSmartRef__":true,"id":17233},{"__isSmartRef__":true,"id":17235},{"__isSmartRef__":true,"id":17237},{"__isSmartRef__":true,"id":17239},{"__isSmartRef__":true,"id":17241},{"__isSmartRef__":true,"id":17243},{"__isSmartRef__":true,"id":17245},{"__isSmartRef__":true,"id":17247},{"__isSmartRef__":true,"id":17249},{"__isSmartRef__":true,"id":17251},{"__isSmartRef__":true,"id":17253},{"__isSmartRef__":true,"id":17255},{"__isSmartRef__":true,"id":17257},{"__isSmartRef__":true,"id":17259},{"__isSmartRef__":true,"id":17261},{"__isSmartRef__":true,"id":17263},{"__isSmartRef__":true,"id":17265},{"__isSmartRef__":true,"id":17267},{"__isSmartRef__":true,"id":17269},{"__isSmartRef__":true,"id":17271},{"__isSmartRef__":true,"id":17273},{"__isSmartRef__":true,"id":17275},{"__isSmartRef__":true,"id":17277},{"__isSmartRef__":true,"id":17279},{"__isSmartRef__":true,"id":17281},{"__isSmartRef__":true,"id":17283},{"__isSmartRef__":true,"id":17285},{"__isSmartRef__":true,"id":17287},{"__isSmartRef__":true,"id":17289},{"__isSmartRef__":true,"id":17291},{"__isSmartRef__":true,"id":17293},{"__isSmartRef__":true,"id":17295},{"__isSmartRef__":true,"id":17297},{"__isSmartRef__":true,"id":17299},{"__isSmartRef__":true,"id":17301},{"__isSmartRef__":true,"id":17303},{"__isSmartRef__":true,"id":17305},{"__isSmartRef__":true,"id":17307},{"__isSmartRef__":true,"id":17309},{"__isSmartRef__":true,"id":17311},{"__isSmartRef__":true,"id":17313},{"__isSmartRef__":true,"id":17315},{"__isSmartRef__":true,"id":17317},{"__isSmartRef__":true,"id":17319}],"eventHandler":{"__isSmartRef__":true,"id":17321},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17322},"_ClipMode":"scroll","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17323},"priorExtent":{"__isSmartRef__":true,"id":17324},"_MaxTextWidth":820,"_MaxTextHeight":302.5,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":8483},"accessibleInInactiveWindow":true,"layout":{"__isSmartRef__":true,"id":17325},"noEval":true,"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":17326},{"__isSmartRef__":true,"id":17327}],"doNotSerialize":["$$textString","$$savedTextString"],"doNotCopyProperties":["$$textString","$$savedTextString"],"textString":" createProgressBar: function(label) {\n // this.enableShowingProgress();\n // var labelFunc = Object.isString(labelOrFunc) ?\n // function() { return labelOrFunc } : labelOrFunc;\n var progressBar = lively.morphic.World.current().addStatusProgress(label);\n connect(this, 'progressEvent', progressBar, 'setValue',\n {converter: function(rpe) { return (rpe.loaded / rpe.total) }});\n connect(this, 'status', progressBar, 'remove', {\n updater: function($upd, status) { if (status.isDone()) $upd() }});\n return progressBar;\n },","lastSyntaxHighlightTime":1308936984017,"savedTextString":" createProgressBar: function(label) {\n // this.enableShowingProgress();\n // var labelFunc = Object.isString(labelOrFunc) ?\n // function() { return labelOrFunc } : labelOrFunc;\n var progressBar = lively.morphic.World.current().addStatusProgress(label);\n connect(this, 'progressEvent', progressBar, 'setValue',\n {converter: function(rpe) { return (rpe.loaded / rpe.total) }});\n connect(this, 'status', progressBar, 'remove', {\n updater: function($upd, status) { if (status.isDone()) $upd() }});\n return progressBar;\n },","styleClass":["Browser_codePaneText"],"focusHaloBorderWidth":0.5,"priorSelectionRange":[81,81],"charsReplaced":" var labelFunc = Object.isString(labelOrFunc) ?\n function() { return labelOrFunc } : labelOrFunc;","lastFindLoc":203,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17208":{"_Position":{"__isSmartRef__":true,"id":17209},"renderContextTable":{"__isSmartRef__":true,"id":17210},"_Extent":{"__isSmartRef__":true,"id":17211},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17209":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17210":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17211":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17212":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17213":{"style":{"__isSmartRef__":true,"id":17214},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17214":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17215":{"style":{"__isSmartRef__":true,"id":17216},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"createProgressBar:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17216":{"color":{"__isSmartRef__":true,"id":2789},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17217":{"style":{"__isSmartRef__":true,"id":17218},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17218":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17219":{"style":{"__isSmartRef__":true,"id":17220},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17220":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17221":{"style":{"__isSmartRef__":true,"id":17222},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"(label) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17222":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17223":{"style":{"__isSmartRef__":true,"id":17224},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17224":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17225":{"style":{"__isSmartRef__":true,"id":17226},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17226":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17227":{"style":{"__isSmartRef__":true,"id":17228},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"// this.enableShowingProgress();","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17228":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17229":{"style":{"__isSmartRef__":true,"id":17230},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17230":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17231":{"style":{"__isSmartRef__":true,"id":17232},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"// var labelFunc = Object.isString(labelOrFunc) ?","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17232":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17233":{"style":{"__isSmartRef__":true,"id":17234},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17234":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17235":{"style":{"__isSmartRef__":true,"id":17236},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"// function() { return labelOrFunc } : labelOrFunc;","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17236":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17237":{"style":{"__isSmartRef__":true,"id":17238},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17238":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17239":{"style":{"__isSmartRef__":true,"id":17240},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17240":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17241":{"style":{"__isSmartRef__":true,"id":17242},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" progressBar = lively.morphic.World.current().addStatusProgress(label);\n connect(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17242":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17243":{"style":{"__isSmartRef__":true,"id":17244},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17244":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17245":{"style":{"__isSmartRef__":true,"id":17246},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17246":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17247":{"style":{"__isSmartRef__":true,"id":17248},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"'progressEvent'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17248":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17249":{"style":{"__isSmartRef__":true,"id":17250},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":", progressBar, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17250":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17251":{"style":{"__isSmartRef__":true,"id":17252},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"'setValue'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17252":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17253":{"style":{"__isSmartRef__":true,"id":17254},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":",\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17254":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17255":{"style":{"__isSmartRef__":true,"id":17256},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17256":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17257":{"style":{"__isSmartRef__":true,"id":17258},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"converter:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17258":{"color":{"__isSmartRef__":true,"id":2789},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17259":{"style":{"__isSmartRef__":true,"id":17260},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17260":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17261":{"style":{"__isSmartRef__":true,"id":17262},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17262":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17263":{"style":{"__isSmartRef__":true,"id":17264},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"(rpe) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17264":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17265":{"style":{"__isSmartRef__":true,"id":17266},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17266":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17267":{"style":{"__isSmartRef__":true,"id":17268},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17268":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17269":{"style":{"__isSmartRef__":true,"id":17270},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17270":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17271":{"style":{"__isSmartRef__":true,"id":17272},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" (rpe.loaded / rpe.total) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17272":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17273":{"style":{"__isSmartRef__":true,"id":17274},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"}}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17274":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17275":{"style":{"__isSmartRef__":true,"id":17276},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":");\n connect(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17276":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17277":{"style":{"__isSmartRef__":true,"id":17278},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17278":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17279":{"style":{"__isSmartRef__":true,"id":17280},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17280":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17281":{"style":{"__isSmartRef__":true,"id":17282},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"'status'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17282":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17283":{"style":{"__isSmartRef__":true,"id":17284},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":", progressBar, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17284":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17285":{"style":{"__isSmartRef__":true,"id":17286},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"'remove'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17286":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17287":{"style":{"__isSmartRef__":true,"id":17288},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17288":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17289":{"style":{"__isSmartRef__":true,"id":17290},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17290":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17291":{"style":{"__isSmartRef__":true,"id":17292},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17292":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17293":{"style":{"__isSmartRef__":true,"id":17294},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"updater:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17294":{"color":{"__isSmartRef__":true,"id":2789},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17295":{"style":{"__isSmartRef__":true,"id":17296},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17296":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17297":{"style":{"__isSmartRef__":true,"id":17298},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17298":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17299":{"style":{"__isSmartRef__":true,"id":17300},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"($upd, status) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17300":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17301":{"style":{"__isSmartRef__":true,"id":17302},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17302":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17303":{"style":{"__isSmartRef__":true,"id":17304},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17304":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17305":{"style":{"__isSmartRef__":true,"id":17306},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17306":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17307":{"style":{"__isSmartRef__":true,"id":17308},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" (status.isDone()) $upd() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17308":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17309":{"style":{"__isSmartRef__":true,"id":17310},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"}}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17310":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17311":{"style":{"__isSmartRef__":true,"id":17312},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":");\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17312":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17313":{"style":{"__isSmartRef__":true,"id":17314},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17314":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17315":{"style":{"__isSmartRef__":true,"id":17316},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":" progressBar;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17316":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17317":{"style":{"__isSmartRef__":true,"id":17318},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17318":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17319":{"style":{"__isSmartRef__":true,"id":17320},"chunkOwner":{"__isSmartRef__":true,"id":17207},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17320":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17321":{"morph":{"__isSmartRef__":true,"id":17207},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17322":{"x":5,"y":5,"width":-10,"height":-10,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17323":{"x":0,"y":247.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17324":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17325":{"resizeWidth":true,"resizeHeight":true},"17326":{"sourceObj":{"__isSmartRef__":true,"id":17207},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":17207},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17327":{"sourceObj":{"__isSmartRef__":true,"id":17207},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setSourceString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17328},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17328":{"source":{"__isSmartRef__":true,"id":17207},"target":{"__isSmartRef__":true,"id":8497}},"17329":{"source":{"__isSmartRef__":true,"id":8497},"target":{"__isSmartRef__":true,"id":17207}},"17330":{"sourceObj":{"__isSmartRef__":true,"id":8497},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":8484},"targetMethodName":"setTextString","converter":null,"converterString":null,"updaterString":"function ($upd, value) { value && $upd(String(value)) }","varMapping":{"__isSmartRef__":true,"id":17331},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17332},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17331":{"source":{"__isSmartRef__":true,"id":8497},"target":{"__isSmartRef__":true,"id":8484}},"17332":{"updater":{"__isSmartRef__":true,"id":17333}},"17333":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17331},"source":"function ($upd, value) { value && $upd(String(value)) }","funcProperties":{"__isSmartRef__":true,"id":17334},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17334":{},"17335":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"17336":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17337},"id":3548,"renderContextTable":{"__isSmartRef__":true,"id":17342},"textChunks":[{"__isSmartRef__":true,"id":17343}],"eventHandler":{"__isSmartRef__":true,"id":17345},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"visible","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17346},"priorExtent":{"__isSmartRef__":true,"id":17347},"_MaxTextWidth":300,"_MaxTextHeight":30,"evalEnabled":false,"owner":null,"_TextColor":{"__isSmartRef__":true,"id":8264},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17337":{"_Position":{"__isSmartRef__":true,"id":17338},"renderContextTable":{"__isSmartRef__":true,"id":17339},"_Extent":{"__isSmartRef__":true,"id":17340},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17341},"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17338":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17339":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17340":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17341":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17342":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17343":{"style":{"__isSmartRef__":true,"id":17344},"chunkOwner":{"__isSmartRef__":true,"id":17336},"storedString":"Saving createProgressBar...\nSuccessfully saved\nSuccessfully evaluated createProgressBar","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17344":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17345":{"morph":{"__isSmartRef__":true,"id":17336},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17346":{"x":260,"y":136.25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17347":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17348":{"source":{"__isSmartRef__":true,"id":8484},"target":{"__isSmartRef__":true,"id":8497}},"17349":{"submorphs":[{"__isSmartRef__":true,"id":17350}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17362},"id":3,"renderContextTable":{"__isSmartRef__":true,"id":17366},"eventHandler":{"__isSmartRef__":true,"id":17367},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17368},"priorExtent":{"__isSmartRef__":true,"id":17369},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17370},"label":{"__isSmartRef__":true,"id":17350},"owner":{"__isSmartRef__":true,"id":8483},"attributeConnections":[{"__isSmartRef__":true,"id":17379}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":17384},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17350":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17351},"id":4,"renderContextTable":{"__isSmartRef__":true,"id":17355},"textChunks":[{"__isSmartRef__":true,"id":17356}],"eventHandler":{"__isSmartRef__":true,"id":17358},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17359},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17360},"priorExtent":{"__isSmartRef__":true,"id":17361},"_MaxTextWidth":98.39999999999999,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17349},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17351":{"_Position":{"__isSmartRef__":true,"id":17352},"renderContextTable":{"__isSmartRef__":true,"id":17353},"_Extent":{"__isSmartRef__":true,"id":17354},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17352":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17353":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17354":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17355":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17356":{"style":{"__isSmartRef__":true,"id":17357},"chunkOwner":{"__isSmartRef__":true,"id":17350},"storedString":"codebase","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17357":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17358":{"morph":{"__isSmartRef__":true,"id":17350},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17359":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17360":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17361":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17362":{"_Position":{"__isSmartRef__":true,"id":17363},"renderContextTable":{"__isSmartRef__":true,"id":17364},"_Extent":{"__isSmartRef__":true,"id":17365},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17363":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17364":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17365":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17366":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17367":{"morph":{"__isSmartRef__":true,"id":17349},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17368":{"x":656,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17369":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17370":{"stops":[{"__isSmartRef__":true,"id":17371},{"__isSmartRef__":true,"id":17373},{"__isSmartRef__":true,"id":17375},{"__isSmartRef__":true,"id":17377}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17371":{"offset":0,"color":{"__isSmartRef__":true,"id":17372}},"17372":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17373":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17374}},"17374":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17375":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17376}},"17376":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17377":{"offset":1,"color":{"__isSmartRef__":true,"id":17378}},"17378":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17379":{"sourceObj":{"__isSmartRef__":true,"id":17349},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setTargetURL","converterString":"function () { return URL.codeBase.withFilename('lively/')}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17380},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17381},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17380":{"source":{"__isSmartRef__":true,"id":17349},"target":{"__isSmartRef__":true,"id":8497}},"17381":{"converter":{"__isSmartRef__":true,"id":17382}},"17382":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17380},"source":"function () { return URL.codeBase.withFilename('lively/')}","funcProperties":{"__isSmartRef__":true,"id":17383},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17383":{},"17384":{"moveHorizontal":true},"17385":{"submorphs":[{"__isSmartRef__":true,"id":17386}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17398},"id":5,"renderContextTable":{"__isSmartRef__":true,"id":17402},"eventHandler":{"__isSmartRef__":true,"id":17403},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17404},"priorExtent":{"__isSmartRef__":true,"id":17405},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17406},"label":{"__isSmartRef__":true,"id":17386},"owner":{"__isSmartRef__":true,"id":8483},"attributeConnections":[{"__isSmartRef__":true,"id":17415}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":17417},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17386":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17387},"id":6,"renderContextTable":{"__isSmartRef__":true,"id":17391},"textChunks":[{"__isSmartRef__":true,"id":17392}],"eventHandler":{"__isSmartRef__":true,"id":17394},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17395},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17396},"priorExtent":{"__isSmartRef__":true,"id":17397},"_MaxTextWidth":65.6,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17385},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17387":{"_Position":{"__isSmartRef__":true,"id":17388},"renderContextTable":{"__isSmartRef__":true,"id":17389},"_Extent":{"__isSmartRef__":true,"id":17390},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17388":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17389":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17390":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17391":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17392":{"style":{"__isSmartRef__":true,"id":17393},"chunkOwner":{"__isSmartRef__":true,"id":17386},"storedString":"local","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17393":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17394":{"morph":{"__isSmartRef__":true,"id":17386},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17395":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17396":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17397":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17398":{"_Position":{"__isSmartRef__":true,"id":17399},"renderContextTable":{"__isSmartRef__":true,"id":17400},"_Extent":{"__isSmartRef__":true,"id":17401},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17399":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17400":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17401":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17402":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17403":{"morph":{"__isSmartRef__":true,"id":17385},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17404":{"x":754.4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17405":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17406":{"stops":[{"__isSmartRef__":true,"id":17407},{"__isSmartRef__":true,"id":17409},{"__isSmartRef__":true,"id":17411},{"__isSmartRef__":true,"id":17413}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17407":{"offset":0,"color":{"__isSmartRef__":true,"id":17408}},"17408":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17409":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17410}},"17410":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17411":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17412}},"17412":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17413":{"offset":1,"color":{"__isSmartRef__":true,"id":17414}},"17414":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17415":{"sourceObj":{"__isSmartRef__":true,"id":17385},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":8497},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.source.getDirectory() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17416},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17416":{"source":{"__isSmartRef__":true,"id":17385},"target":{"__isSmartRef__":true,"id":8497}},"17417":{"moveHorizontal":true},"17418":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17419},"id":11,"renderContextTable":{"__isSmartRef__":true,"id":17423},"eventHandler":{"__isSmartRef__":true,"id":17424},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"_Position":{"__isSmartRef__":true,"id":17425},"fixed":[{"__isSmartRef__":true,"id":8499},{"__isSmartRef__":true,"id":8533},{"__isSmartRef__":true,"id":8570},{"__isSmartRef__":true,"id":8604},{"__isSmartRef__":true,"id":8638},{"__isSmartRef__":true,"id":8672},{"__isSmartRef__":true,"id":8706}],"scalingBelow":[{"__isSmartRef__":true,"id":17207}],"scalingAbove":[{"__isSmartRef__":true,"id":8746},{"__isSmartRef__":true,"id":16982},{"__isSmartRef__":true,"id":17035},{"__isSmartRef__":true,"id":17085}],"minHeight":20,"pointerConnection":null,"owner":{"__isSmartRef__":true,"id":8483},"styleClass":["Browser_resizer"],"__LivelyClassName__":"lively.morphic.HorizontalDivider","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17419":{"_Position":{"__isSmartRef__":true,"id":17420},"renderContextTable":{"__isSmartRef__":true,"id":17421},"_Extent":{"__isSmartRef__":true,"id":17422},"_Fill":{"__isSmartRef__":true,"id":8337},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17420":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17421":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17422":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17423":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17424":{"morph":{"__isSmartRef__":true,"id":17418},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17425":{"x":0,"y":242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17426":{"_Position":{"__isSmartRef__":true,"id":17427},"renderContextTable":{"__isSmartRef__":true,"id":17428},"_Extent":{"__isSmartRef__":true,"id":17429},"_Fill":{"__isSmartRef__":true,"id":17430},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17427":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17428":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17429":{"x":820,"y":550,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17430":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17431":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17432":{"morph":{"__isSmartRef__":true,"id":8483},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17433":{"adjustForNewBounds":true,"resizeWidth":true,"resizeHeight":true},"17434":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"17435":{"renderContextTable":{"__isSmartRef__":true,"id":17436},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":17437},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"17436":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17437":{"x":820,"y":572,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"17438":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17439":{"morph":{"__isSmartRef__":true,"id":8359},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"17440":{"adjustForNewBounds":true},"17441":{"x":306.5,"y":731.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17442":{"x":820,"y":572,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"17443":{"x":652,"y":751,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17444":{"submorphs":[{"__isSmartRef__":true,"id":17445},{"__isSmartRef__":true,"id":18029}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18152},"id":3609,"renderContextTable":{"__isSmartRef__":true,"id":18155},"eventHandler":{"__isSmartRef__":true,"id":18156},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":18157},"LK2":true,"_Position":{"__isSmartRef__":true,"id":18158},"priorExtent":{"__isSmartRef__":true,"id":18159},"targetMorph":{"__isSmartRef__":true,"id":17445},"titleBar":{"__isSmartRef__":true,"id":18029},"contentOffset":{"__isSmartRef__":true,"id":18028},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17445":{"submorphs":[{"__isSmartRef__":true,"id":17446},{"__isSmartRef__":true,"id":17943},{"__isSmartRef__":true,"id":17979},{"__isSmartRef__":true,"id":17705},{"__isSmartRef__":true,"id":17808},{"__isSmartRef__":true,"id":17843},{"__isSmartRef__":true,"id":17869},{"__isSmartRef__":true,"id":18012},{"__isSmartRef__":true,"id":17907},{"__isSmartRef__":true,"id":17461},{"__isSmartRef__":true,"id":17495},{"__isSmartRef__":true,"id":17529},{"__isSmartRef__":true,"id":17563},{"__isSmartRef__":true,"id":17597},{"__isSmartRef__":true,"id":17631},{"__isSmartRef__":true,"id":17665}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18020},"id":3583,"renderContextTable":{"__isSmartRef__":true,"id":18025},"eventHandler":{"__isSmartRef__":true,"id":18026},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":18027},"_Position":{"__isSmartRef__":true,"id":18028},"locationPane":{"__isSmartRef__":true,"id":17446},"codeBaseDirBtn":{"__isSmartRef__":true,"id":17943},"localDirBtn":{"__isSmartRef__":true,"id":17979},"Pane1":{"__isSmartRef__":true,"id":17705},"Pane2":{"__isSmartRef__":true,"id":17808},"Pane3":{"__isSmartRef__":true,"id":17843},"Pane4":{"__isSmartRef__":true,"id":17869},"midResizer":{"__isSmartRef__":true,"id":18012},"sourcePane":{"__isSmartRef__":true,"id":17907},"ownerWidget":{"__isSmartRef__":true,"id":17459},"owner":{"__isSmartRef__":true,"id":17444},"ownerApp":{"__isSmartRef__":true,"id":17459},"targetURL":{"__isSmartRef__":true,"id":17929},"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"17446":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17447},"id":3584,"renderContextTable":{"__isSmartRef__":true,"id":17451},"textChunks":[{"__isSmartRef__":true,"id":17452}],"eventHandler":{"__isSmartRef__":true,"id":17454},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17455},"priorExtent":{"__isSmartRef__":true,"id":17456},"_MaxTextWidth":656,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17445},"isInputLine":true,"layout":{"__isSmartRef__":true,"id":17457},"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":17458}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17447":{"_Position":{"__isSmartRef__":true,"id":17448},"renderContextTable":{"__isSmartRef__":true,"id":17449},"_Extent":{"__isSmartRef__":true,"id":17450},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17448":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17449":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17450":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17451":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17452":{"style":{"__isSmartRef__":true,"id":17453},"chunkOwner":{"__isSmartRef__":true,"id":17446},"storedString":"http://lively-kernel.org/repository/webwerkstatt/lively/bindings/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17453":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17454":{"morph":{"__isSmartRef__":true,"id":17446},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17455":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17456":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17457":{"resizeWidth":true},"17458":{"sourceObj":{"__isSmartRef__":true,"id":17446},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setTargetURL","converter":null,"converterString":"function (value) { return new URL(value) }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17942},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17459":{"buttonCommands":[{"__isSmartRef__":true,"id":17460},{"__isSmartRef__":true,"id":17494},{"__isSmartRef__":true,"id":17528},{"__isSmartRef__":true,"id":17562},{"__isSmartRef__":true,"id":17596},{"__isSmartRef__":true,"id":17630},{"__isSmartRef__":true,"id":17664}],"RootFilters":[{"__isSmartRef__":true,"id":17698}],"Pane1Filters":[{"__isSmartRef__":true,"id":17699},{"__isSmartRef__":true,"id":17700}],"Pane2Filters":[{"__isSmartRef__":true,"id":17701}],"Pane3Filters":[{"__isSmartRef__":true,"id":17702}],"Pane4Filters":[{"__isSmartRef__":true,"id":17703}],"evaluate":true,"panel":{"__isSmartRef__":true,"id":17445},"attributeConnections":[{"__isSmartRef__":true,"id":17704},{"__isSmartRef__":true,"id":17807},{"__isSmartRef__":true,"id":17842},{"__isSmartRef__":true,"id":17868},{"__isSmartRef__":true,"id":17906},{"__isSmartRef__":true,"id":17924}],"SourceString":"\tdocumentation: 'connect parameters: source, sourceProp, target, targetProp, spec\\n\\\nspec can be: {removeAfterUpdate: Boolean, converter: Function, updater: Function, varMapping: Object}',","sourceString":"\tdocumentation: 'connect parameters: source, sourceProp, target, targetProp, spec\\n\\\nspec can be: {removeAfterUpdate: Boolean, converter: Function, updater: Function, varMapping: Object}',","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"targetURL":{"__isSmartRef__":true,"id":17929},"_rootNode":{"__isSmartRef__":true,"id":17715},"Pane1Selection":{"__isSmartRef__":true,"id":17716},"pane1Selection":{"__isSmartRef__":true,"id":17716},"Pane2Selection":{"__isSmartRef__":true,"id":17824},"pane2Selection":{"__isSmartRef__":true,"id":17824},"Pane3Selection":{"__isSmartRef__":true,"id":17851},"pane3Selection":{"__isSmartRef__":true,"id":17851},"Pane4Selection":{"__isSmartRef__":true,"id":17877},"pane4Selection":{"__isSmartRef__":true,"id":17877},"Pane4Content":[{"__isSmartRef__":true,"id":17876},{"__isSmartRef__":true,"id":17878},{"__isSmartRef__":true,"id":17880},{"__isSmartRef__":true,"id":17882},{"__isSmartRef__":true,"id":17884},{"__isSmartRef__":true,"id":17886},{"__isSmartRef__":true,"id":17888}],"Pane3Content":[{"__isSmartRef__":true,"id":17850},{"__isSmartRef__":true,"id":17852}],"Pane2Content":[{"__isSmartRef__":true,"id":17815},{"__isSmartRef__":true,"id":17817},{"__isSmartRef__":true,"id":17819},{"__isSmartRef__":true,"id":17821},{"__isSmartRef__":true,"id":17823},{"__isSmartRef__":true,"id":17825}],"Pane1Content":[{"__isSmartRef__":true,"id":17712},{"__isSmartRef__":true,"id":17787},{"__isSmartRef__":true,"id":17788},{"__isSmartRef__":true,"id":17789},{"__isSmartRef__":true,"id":17790},{"__isSmartRef__":true,"id":17791}],"view":{"__isSmartRef__":true,"id":17444},"Pane1Menu":[["Add to world requirements"],["remove"],["reparse"],["-------"],["open in text editor"],["show versions"],["diff versions"]],"Pane2Menu":[["references"],["add sibling below"],["remove"],["-------"],["view hierarchy"],["add class"],["add object extension"],["add layer"]],"Pane3Menu":[["add sibling below"],["remove"]],"currentModuleName":"lively.bindings.Core","Pane4Menu":[["senders"],["implementors"],["add sibling below"],["remove"],["-------"],["add method"]],"_statusMorph":{"__isSmartRef__":true,"id":17930},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser"},"17460":{"browser":{"__isSmartRef__":true,"id":17459},"button":{"__isSmartRef__":true,"id":17461},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"17461":{"submorphs":[{"__isSmartRef__":true,"id":17462}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17474},"id":3595,"renderContextTable":{"__isSmartRef__":true,"id":17478},"eventHandler":{"__isSmartRef__":true,"id":17479},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17480},"priorExtent":{"__isSmartRef__":true,"id":17481},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17482},"label":{"__isSmartRef__":true,"id":17462},"command":{"__isSmartRef__":true,"id":17460},"attributeConnections":[{"__isSmartRef__":true,"id":17491},{"__isSmartRef__":true,"id":17492}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17462":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17463},"id":3596,"renderContextTable":{"__isSmartRef__":true,"id":17467},"textChunks":[{"__isSmartRef__":true,"id":17468}],"eventHandler":{"__isSmartRef__":true,"id":17470},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17471},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17472},"priorExtent":{"__isSmartRef__":true,"id":17473},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17461},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17463":{"_Position":{"__isSmartRef__":true,"id":17464},"renderContextTable":{"__isSmartRef__":true,"id":17465},"_Extent":{"__isSmartRef__":true,"id":17466},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17464":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17465":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17466":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17467":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17468":{"style":{"__isSmartRef__":true,"id":17469},"chunkOwner":{"__isSmartRef__":true,"id":17462},"storedString":"Add module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17469":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17470":{"morph":{"__isSmartRef__":true,"id":17462},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17471":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17472":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17473":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17474":{"_Position":{"__isSmartRef__":true,"id":17475},"renderContextTable":{"__isSmartRef__":true,"id":17476},"_Extent":{"__isSmartRef__":true,"id":17477},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17475":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17476":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17477":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17478":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17479":{"morph":{"__isSmartRef__":true,"id":17461},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17480":{"x":0,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17481":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17482":{"stops":[{"__isSmartRef__":true,"id":17483},{"__isSmartRef__":true,"id":17485},{"__isSmartRef__":true,"id":17487},{"__isSmartRef__":true,"id":17489}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17483":{"offset":0,"color":{"__isSmartRef__":true,"id":17484}},"17484":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17485":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17486}},"17486":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17487":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17488}},"17488":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17489":{"offset":1,"color":{"__isSmartRef__":true,"id":17490}},"17490":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17491":{"sourceObj":{"__isSmartRef__":true,"id":17461},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17460},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17492":{"sourceObj":{"__isSmartRef__":true,"id":17461},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17461},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17493},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17493":{"source":{"__isSmartRef__":true,"id":17461},"target":{"__isSmartRef__":true,"id":17461}},"17494":{"browser":{"__isSmartRef__":true,"id":17459},"button":{"__isSmartRef__":true,"id":17495},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"17495":{"submorphs":[{"__isSmartRef__":true,"id":17496}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17508},"id":3597,"renderContextTable":{"__isSmartRef__":true,"id":17512},"eventHandler":{"__isSmartRef__":true,"id":17513},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17514},"priorExtent":{"__isSmartRef__":true,"id":17515},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17516},"label":{"__isSmartRef__":true,"id":17496},"command":{"__isSmartRef__":true,"id":17494},"attributeConnections":[{"__isSmartRef__":true,"id":17525},{"__isSmartRef__":true,"id":17526}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17496":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17497},"id":3598,"renderContextTable":{"__isSmartRef__":true,"id":17501},"textChunks":[{"__isSmartRef__":true,"id":17502}],"eventHandler":{"__isSmartRef__":true,"id":17504},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17505},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17506},"priorExtent":{"__isSmartRef__":true,"id":17507},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17495},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17497":{"_Position":{"__isSmartRef__":true,"id":17498},"renderContextTable":{"__isSmartRef__":true,"id":17499},"_Extent":{"__isSmartRef__":true,"id":17500},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17498":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17499":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17500":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17501":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17502":{"style":{"__isSmartRef__":true,"id":17503},"chunkOwner":{"__isSmartRef__":true,"id":17496},"storedString":"Load all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17503":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17504":{"morph":{"__isSmartRef__":true,"id":17496},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17505":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17506":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17507":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17508":{"_Position":{"__isSmartRef__":true,"id":17509},"renderContextTable":{"__isSmartRef__":true,"id":17510},"_Extent":{"__isSmartRef__":true,"id":17511},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17509":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17510":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17511":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17512":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17513":{"morph":{"__isSmartRef__":true,"id":17495},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17514":{"x":117.14285714285714,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17515":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17516":{"stops":[{"__isSmartRef__":true,"id":17517},{"__isSmartRef__":true,"id":17519},{"__isSmartRef__":true,"id":17521},{"__isSmartRef__":true,"id":17523}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17517":{"offset":0,"color":{"__isSmartRef__":true,"id":17518}},"17518":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17519":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17520}},"17520":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17521":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17522}},"17522":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17523":{"offset":1,"color":{"__isSmartRef__":true,"id":17524}},"17524":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17525":{"sourceObj":{"__isSmartRef__":true,"id":17495},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17494},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17526":{"sourceObj":{"__isSmartRef__":true,"id":17495},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17495},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17527},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17527":{"source":{"__isSmartRef__":true,"id":17495},"target":{"__isSmartRef__":true,"id":17495}},"17528":{"browser":{"__isSmartRef__":true,"id":17459},"button":{"__isSmartRef__":true,"id":17529},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"17529":{"submorphs":[{"__isSmartRef__":true,"id":17530}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17542},"id":3599,"renderContextTable":{"__isSmartRef__":true,"id":17546},"eventHandler":{"__isSmartRef__":true,"id":17547},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17548},"priorExtent":{"__isSmartRef__":true,"id":17549},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17550},"label":{"__isSmartRef__":true,"id":17530},"command":{"__isSmartRef__":true,"id":17528},"attributeConnections":[{"__isSmartRef__":true,"id":17559},{"__isSmartRef__":true,"id":17560}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17530":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17531},"id":3600,"renderContextTable":{"__isSmartRef__":true,"id":17535},"textChunks":[{"__isSmartRef__":true,"id":17536}],"eventHandler":{"__isSmartRef__":true,"id":17538},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17539},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17540},"priorExtent":{"__isSmartRef__":true,"id":17541},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17529},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17531":{"_Position":{"__isSmartRef__":true,"id":17532},"renderContextTable":{"__isSmartRef__":true,"id":17533},"_Extent":{"__isSmartRef__":true,"id":17534},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17532":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17533":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17534":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17535":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17536":{"style":{"__isSmartRef__":true,"id":17537},"chunkOwner":{"__isSmartRef__":true,"id":17530},"storedString":"LineNo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17537":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17538":{"morph":{"__isSmartRef__":true,"id":17530},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17539":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17540":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17541":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17542":{"_Position":{"__isSmartRef__":true,"id":17543},"renderContextTable":{"__isSmartRef__":true,"id":17544},"_Extent":{"__isSmartRef__":true,"id":17545},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17543":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17544":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17545":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17546":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17547":{"morph":{"__isSmartRef__":true,"id":17529},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17548":{"x":234.28571428571428,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17549":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17550":{"stops":[{"__isSmartRef__":true,"id":17551},{"__isSmartRef__":true,"id":17553},{"__isSmartRef__":true,"id":17555},{"__isSmartRef__":true,"id":17557}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17551":{"offset":0,"color":{"__isSmartRef__":true,"id":17552}},"17552":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17553":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17554}},"17554":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17555":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17556}},"17556":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17557":{"offset":1,"color":{"__isSmartRef__":true,"id":17558}},"17558":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17559":{"sourceObj":{"__isSmartRef__":true,"id":17529},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17528},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17560":{"sourceObj":{"__isSmartRef__":true,"id":17529},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17529},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17561},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17561":{"source":{"__isSmartRef__":true,"id":17529},"target":{"__isSmartRef__":true,"id":17529}},"17562":{"browser":{"__isSmartRef__":true,"id":17459},"button":{"__isSmartRef__":true,"id":17563},"__LivelyClassName__":"lively.ide.ParserDebugCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"17563":{"submorphs":[{"__isSmartRef__":true,"id":17564}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17576},"id":3601,"renderContextTable":{"__isSmartRef__":true,"id":17580},"eventHandler":{"__isSmartRef__":true,"id":17581},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17582},"priorExtent":{"__isSmartRef__":true,"id":17583},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17584},"label":{"__isSmartRef__":true,"id":17564},"command":{"__isSmartRef__":true,"id":17562},"attributeConnections":[{"__isSmartRef__":true,"id":17593},{"__isSmartRef__":true,"id":17594}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17564":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17565},"id":3602,"renderContextTable":{"__isSmartRef__":true,"id":17569},"textChunks":[{"__isSmartRef__":true,"id":17570}],"eventHandler":{"__isSmartRef__":true,"id":17572},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17573},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17574},"priorExtent":{"__isSmartRef__":true,"id":17575},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17563},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17565":{"_Position":{"__isSmartRef__":true,"id":17566},"renderContextTable":{"__isSmartRef__":true,"id":17567},"_Extent":{"__isSmartRef__":true,"id":17568},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17566":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17567":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17568":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17569":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17570":{"style":{"__isSmartRef__":true,"id":17571},"chunkOwner":{"__isSmartRef__":true,"id":17564},"storedString":"Dbg errors is off","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17571":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17572":{"morph":{"__isSmartRef__":true,"id":17564},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17573":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17574":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17575":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17576":{"_Position":{"__isSmartRef__":true,"id":17577},"renderContextTable":{"__isSmartRef__":true,"id":17578},"_Extent":{"__isSmartRef__":true,"id":17579},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17577":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17578":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17579":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17580":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17581":{"morph":{"__isSmartRef__":true,"id":17563},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17582":{"x":351.42857142857144,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17583":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17584":{"stops":[{"__isSmartRef__":true,"id":17585},{"__isSmartRef__":true,"id":17587},{"__isSmartRef__":true,"id":17589},{"__isSmartRef__":true,"id":17591}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17585":{"offset":0,"color":{"__isSmartRef__":true,"id":17586}},"17586":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17587":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17588}},"17588":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17589":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17590}},"17590":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17591":{"offset":1,"color":{"__isSmartRef__":true,"id":17592}},"17592":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17593":{"sourceObj":{"__isSmartRef__":true,"id":17563},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17562},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17594":{"sourceObj":{"__isSmartRef__":true,"id":17563},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17563},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17595},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17595":{"source":{"__isSmartRef__":true,"id":17563},"target":{"__isSmartRef__":true,"id":17563}},"17596":{"browser":{"__isSmartRef__":true,"id":17459},"button":{"__isSmartRef__":true,"id":17597},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"17597":{"submorphs":[{"__isSmartRef__":true,"id":17598}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17610},"id":3603,"renderContextTable":{"__isSmartRef__":true,"id":17614},"eventHandler":{"__isSmartRef__":true,"id":17615},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17616},"priorExtent":{"__isSmartRef__":true,"id":17617},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17618},"label":{"__isSmartRef__":true,"id":17598},"command":{"__isSmartRef__":true,"id":17596},"attributeConnections":[{"__isSmartRef__":true,"id":17627},{"__isSmartRef__":true,"id":17628}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17598":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17599},"id":3604,"renderContextTable":{"__isSmartRef__":true,"id":17603},"textChunks":[{"__isSmartRef__":true,"id":17604}],"eventHandler":{"__isSmartRef__":true,"id":17606},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17607},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17608},"priorExtent":{"__isSmartRef__":true,"id":17609},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17597},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17599":{"_Position":{"__isSmartRef__":true,"id":17600},"renderContextTable":{"__isSmartRef__":true,"id":17601},"_Extent":{"__isSmartRef__":true,"id":17602},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17600":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17601":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17602":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17603":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17604":{"style":{"__isSmartRef__":true,"id":17605},"chunkOwner":{"__isSmartRef__":true,"id":17598},"storedString":"Eval on","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17605":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17606":{"morph":{"__isSmartRef__":true,"id":17598},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17607":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17608":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17609":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17610":{"_Position":{"__isSmartRef__":true,"id":17611},"renderContextTable":{"__isSmartRef__":true,"id":17612},"_Extent":{"__isSmartRef__":true,"id":17613},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17611":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17612":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17613":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17614":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17615":{"morph":{"__isSmartRef__":true,"id":17597},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17616":{"x":468.57142857142856,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17617":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17618":{"stops":[{"__isSmartRef__":true,"id":17619},{"__isSmartRef__":true,"id":17621},{"__isSmartRef__":true,"id":17623},{"__isSmartRef__":true,"id":17625}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17619":{"offset":0,"color":{"__isSmartRef__":true,"id":17620}},"17620":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17621":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17622}},"17622":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17623":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17624}},"17624":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17625":{"offset":1,"color":{"__isSmartRef__":true,"id":17626}},"17626":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17627":{"sourceObj":{"__isSmartRef__":true,"id":17597},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17596},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17628":{"sourceObj":{"__isSmartRef__":true,"id":17597},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17597},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17629},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17629":{"source":{"__isSmartRef__":true,"id":17597},"target":{"__isSmartRef__":true,"id":17597}},"17630":{"browser":{"__isSmartRef__":true,"id":17459},"button":{"__isSmartRef__":true,"id":17631},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"17631":{"submorphs":[{"__isSmartRef__":true,"id":17632}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17644},"id":3605,"renderContextTable":{"__isSmartRef__":true,"id":17648},"eventHandler":{"__isSmartRef__":true,"id":17649},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17650},"priorExtent":{"__isSmartRef__":true,"id":17651},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17652},"label":{"__isSmartRef__":true,"id":17632},"command":{"__isSmartRef__":true,"id":17630},"attributeConnections":[{"__isSmartRef__":true,"id":17661},{"__isSmartRef__":true,"id":17662}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17632":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17633},"id":3606,"renderContextTable":{"__isSmartRef__":true,"id":17637},"textChunks":[{"__isSmartRef__":true,"id":17638}],"eventHandler":{"__isSmartRef__":true,"id":17640},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17641},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17642},"priorExtent":{"__isSmartRef__":true,"id":17643},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17631},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17633":{"_Position":{"__isSmartRef__":true,"id":17634},"renderContextTable":{"__isSmartRef__":true,"id":17635},"_Extent":{"__isSmartRef__":true,"id":17636},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17634":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17635":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17636":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17637":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17638":{"style":{"__isSmartRef__":true,"id":17639},"chunkOwner":{"__isSmartRef__":true,"id":17632},"storedString":"Sort","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17639":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17640":{"morph":{"__isSmartRef__":true,"id":17632},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17641":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17642":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17643":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17644":{"_Position":{"__isSmartRef__":true,"id":17645},"renderContextTable":{"__isSmartRef__":true,"id":17646},"_Extent":{"__isSmartRef__":true,"id":17647},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17645":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17646":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17647":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17648":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17649":{"morph":{"__isSmartRef__":true,"id":17631},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17650":{"x":585.7142857142857,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17651":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17652":{"stops":[{"__isSmartRef__":true,"id":17653},{"__isSmartRef__":true,"id":17655},{"__isSmartRef__":true,"id":17657},{"__isSmartRef__":true,"id":17659}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17653":{"offset":0,"color":{"__isSmartRef__":true,"id":17654}},"17654":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17655":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17656}},"17656":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17657":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17658}},"17658":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17659":{"offset":1,"color":{"__isSmartRef__":true,"id":17660}},"17660":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17661":{"sourceObj":{"__isSmartRef__":true,"id":17631},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17630},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17662":{"sourceObj":{"__isSmartRef__":true,"id":17631},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17631},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17663},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17663":{"source":{"__isSmartRef__":true,"id":17631},"target":{"__isSmartRef__":true,"id":17631}},"17664":{"browser":{"__isSmartRef__":true,"id":17459},"button":{"__isSmartRef__":true,"id":17665},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"17665":{"submorphs":[{"__isSmartRef__":true,"id":17666}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17678},"id":3607,"renderContextTable":{"__isSmartRef__":true,"id":17682},"eventHandler":{"__isSmartRef__":true,"id":17683},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17684},"priorExtent":{"__isSmartRef__":true,"id":17685},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17686},"label":{"__isSmartRef__":true,"id":17666},"command":{"__isSmartRef__":true,"id":17664},"attributeConnections":[{"__isSmartRef__":true,"id":17695},{"__isSmartRef__":true,"id":17696}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17666":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17667},"id":3608,"renderContextTable":{"__isSmartRef__":true,"id":17671},"textChunks":[{"__isSmartRef__":true,"id":17672}],"eventHandler":{"__isSmartRef__":true,"id":17674},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17675},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17676},"priorExtent":{"__isSmartRef__":true,"id":17677},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17665},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17667":{"_Position":{"__isSmartRef__":true,"id":17668},"renderContextTable":{"__isSmartRef__":true,"id":17669},"_Extent":{"__isSmartRef__":true,"id":17670},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17668":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17669":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17670":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17671":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17672":{"style":{"__isSmartRef__":true,"id":17673},"chunkOwner":{"__isSmartRef__":true,"id":17666},"storedString":"View as...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17673":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17674":{"morph":{"__isSmartRef__":true,"id":17666},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17675":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17676":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17677":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17678":{"_Position":{"__isSmartRef__":true,"id":17679},"renderContextTable":{"__isSmartRef__":true,"id":17680},"_Extent":{"__isSmartRef__":true,"id":17681},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17679":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17680":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17681":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17682":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17683":{"morph":{"__isSmartRef__":true,"id":17665},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17684":{"x":702.8571428571429,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17685":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17686":{"stops":[{"__isSmartRef__":true,"id":17687},{"__isSmartRef__":true,"id":17689},{"__isSmartRef__":true,"id":17691},{"__isSmartRef__":true,"id":17693}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17687":{"offset":0,"color":{"__isSmartRef__":true,"id":17688}},"17688":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17689":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17690}},"17690":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17691":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17692}},"17692":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17693":{"offset":1,"color":{"__isSmartRef__":true,"id":17694}},"17694":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17695":{"sourceObj":{"__isSmartRef__":true,"id":17665},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17664},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17696":{"sourceObj":{"__isSmartRef__":true,"id":17665},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17665},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17697},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17697":{"source":{"__isSmartRef__":true,"id":17665},"target":{"__isSmartRef__":true,"id":17665}},"17698":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"17699":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"17700":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"17701":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"17702":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"17703":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"17704":{"sourceObj":{"__isSmartRef__":true,"id":17459},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":17705},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17806},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17705":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17706},"id":3589,"renderContextTable":{"__isSmartRef__":true,"id":17711},"itemList":[{"__isSmartRef__":true,"id":17712},{"__isSmartRef__":true,"id":17787},{"__isSmartRef__":true,"id":17788},{"__isSmartRef__":true,"id":17789},{"__isSmartRef__":true,"id":17790},{"__isSmartRef__":true,"id":17791}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":17792},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17793},"selectedLineNo":1,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":17445},"attributeConnections":[{"__isSmartRef__":true,"id":17794},{"__isSmartRef__":true,"id":17799},{"__isSmartRef__":true,"id":17801},{"__isSmartRef__":true,"id":17803}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":17805},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"17706":{"_Position":{"__isSmartRef__":true,"id":17707},"renderContextTable":{"__isSmartRef__":true,"id":17708},"_Extent":{"__isSmartRef__":true,"id":17709},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17710},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17707":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17708":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17709":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17710":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17711":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"17712":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":17713}},"17713":{"target":{"__isSmartRef__":true,"id":17714},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17715},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17714":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/bindings/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"17715":{"target":{"__isSmartRef__":true,"id":4931},"browser":{"__isSmartRef__":true,"id":17459},"parent":null,"allFiles":["lively/bindings/Core.js","lively/bindings/GeometryBindings.js","lively/bindings/GeometryBindingsTest.js","lively/bindings/Tests.js"],"subNamespacePaths":[],"parentNamespacePath":{"__isSmartRef__":true,"id":17714},"_childNodes":[{"__isSmartRef__":true,"id":17713},{"__isSmartRef__":true,"id":17716},{"__isSmartRef__":true,"id":17783},{"__isSmartRef__":true,"id":17784},{"__isSmartRef__":true,"id":17785},{"__isSmartRef__":true,"id":17786}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17716":{"target":{"__isSmartRef__":true,"id":17717},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17715},"moduleName":"lively/bindings/Core.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17717":{"name":"lively.bindings.Core","type":"moduleDef","startIndex":1136,"stopIndex":18889,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17718},{"__isSmartRef__":true,"id":17719},{"__isSmartRef__":true,"id":17755},{"__isSmartRef__":true,"id":17756},{"__isSmartRef__":true,"id":17759},{"__isSmartRef__":true,"id":17762},{"__isSmartRef__":true,"id":17765},{"__isSmartRef__":true,"id":17766},{"__isSmartRef__":true,"id":17775},{"__isSmartRef__":true,"id":17782}],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17718":{"name":null,"type":"comment","startIndex":1197,"stopIndex":1197,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17719":{"name":"AttributeConnection","type":"klassDef","startIndex":1198,"stopIndex":12719,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17720},{"__isSmartRef__":true,"id":17722},{"__isSmartRef__":true,"id":17724},{"__isSmartRef__":true,"id":17725},{"__isSmartRef__":true,"id":17726},{"__isSmartRef__":true,"id":17727},{"__isSmartRef__":true,"id":17728},{"__isSmartRef__":true,"id":17730},{"__isSmartRef__":true,"id":17731},{"__isSmartRef__":true,"id":17732},{"__isSmartRef__":true,"id":17733},{"__isSmartRef__":true,"id":17734},{"__isSmartRef__":true,"id":17735},{"__isSmartRef__":true,"id":17736},{"__isSmartRef__":true,"id":17737},{"__isSmartRef__":true,"id":17738},{"__isSmartRef__":true,"id":17739},{"__isSmartRef__":true,"id":17740},{"__isSmartRef__":true,"id":17742},{"__isSmartRef__":true,"id":17743},{"__isSmartRef__":true,"id":17744},{"__isSmartRef__":true,"id":17746},{"__isSmartRef__":true,"id":17747},{"__isSmartRef__":true,"id":17748},{"__isSmartRef__":true,"id":17749},{"__isSmartRef__":true,"id":17750},{"__isSmartRef__":true,"id":17752},{"__isSmartRef__":true,"id":17753}],"sourceControl":{"__isSmartRef__":true,"id":4931},"superclassName":"Object","categories":[{"__isSmartRef__":true,"id":17721},{"__isSmartRef__":true,"id":17723},{"__isSmartRef__":true,"id":17729},{"__isSmartRef__":true,"id":17741},{"__isSmartRef__":true,"id":17745},{"__isSmartRef__":true,"id":17751},{"__isSmartRef__":true,"id":17754}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17720":{"name":"doNotSerialize","type":"propertyDef","startIndex":1251,"stopIndex":1280,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17721},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17721":{"name":"settings","type":"categoryDef","startIndex":1237,"stopIndex":1283,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17720}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17722":{"name":"initialize","type":"propertyDef","startIndex":1304,"stopIndex":1435,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17723},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17723":{"name":"initializing","type":"categoryDef","startIndex":1285,"stopIndex":2573,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17722},{"__isSmartRef__":true,"id":17724},{"__isSmartRef__":true,"id":17725},{"__isSmartRef__":true,"id":17726},{"__isSmartRef__":true,"id":17727}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17724":{"name":"init","type":"propertyDef","startIndex":1437,"stopIndex":2236,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17723},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17725":{"name":"onSourceAndTargetRestored","type":"propertyDef","startIndex":2240,"stopIndex":2339,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17723},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17726":{"name":"copy","type":"propertyDef","startIndex":2342,"stopIndex":2438,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17723},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17727":{"name":"fixInstanceAfterCopyingFromSite","type":"propertyDef","startIndex":2440,"stopIndex":2568,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17723},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17728":{"name":"getTargetObj","type":"propertyDef","startIndex":2591,"stopIndex":2642,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17729":{"name":"accessing","type":"categoryDef","startIndex":2575,"stopIndex":3626,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17728},{"__isSmartRef__":true,"id":17730},{"__isSmartRef__":true,"id":17731},{"__isSmartRef__":true,"id":17732},{"__isSmartRef__":true,"id":17733},{"__isSmartRef__":true,"id":17734},{"__isSmartRef__":true,"id":17735},{"__isSmartRef__":true,"id":17736},{"__isSmartRef__":true,"id":17737},{"__isSmartRef__":true,"id":17738},{"__isSmartRef__":true,"id":17739}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17730":{"name":"getSourceObj","type":"propertyDef","startIndex":2645,"stopIndex":2696,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17731":{"name":"getSourceAttrName","type":"propertyDef","startIndex":2699,"stopIndex":2760,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17732":{"name":"getTargetMethodName","type":"propertyDef","startIndex":2763,"stopIndex":2828,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17733":{"name":"getSourceValue","type":"propertyDef","startIndex":2830,"stopIndex":2914,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17734":{"name":"getPrivateSourceValue","type":"propertyDef","startIndex":2916,"stopIndex":3019,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17735":{"name":"getConverter","type":"propertyDef","startIndex":3023,"stopIndex":3244,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17736":{"name":"getUpdater","type":"propertyDef","startIndex":3246,"stopIndex":3455,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17737":{"name":"privateAttrName","type":"propertyDef","startIndex":3458,"stopIndex":3521,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17738":{"name":"activate","type":"propertyDef","startIndex":3524,"stopIndex":3570,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17739":{"name":"deactivate","type":"propertyDef","startIndex":3573,"stopIndex":3622,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17729},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17740":{"name":"connect","type":"propertyDef","startIndex":3645,"stopIndex":5027,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17741},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17741":{"name":"connecting","type":"categoryDef","startIndex":3628,"stopIndex":7517,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17740},{"__isSmartRef__":true,"id":17742},{"__isSmartRef__":true,"id":17743}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17742":{"name":"disconnect","type":"propertyDef","startIndex":5030,"stopIndex":5509,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17741},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17743":{"name":"update","type":"propertyDef","startIndex":5512,"stopIndex":7513,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17741},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17744":{"name":"addSourceObjGetterAndSetter","type":"propertyDef","startIndex":7540,"stopIndex":9543,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17745},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17745":{"name":"private helper","type":"categoryDef","startIndex":7519,"stopIndex":11912,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17744},{"__isSmartRef__":true,"id":17746},{"__isSmartRef__":true,"id":17747},{"__isSmartRef__":true,"id":17748},{"__isSmartRef__":true,"id":17749}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17746":{"name":"addConnectionWrapper","type":"propertyDef","startIndex":9546,"stopIndex":10593,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17745},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17747":{"name":"removeSourceObjGetterAndSetter","type":"propertyDef","startIndex":10596,"stopIndex":11502,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17745},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17748":{"name":"addAttributeConnection","type":"propertyDef","startIndex":11505,"stopIndex":11684,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17745},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17749":{"name":"getExistingConnection","type":"propertyDef","startIndex":11687,"stopIndex":11909,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17745},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17750":{"name":"isRecursivelyActivated","type":"propertyDef","startIndex":11928,"stopIndex":12029,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17751},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17751":{"name":"testing","type":"categoryDef","startIndex":11914,"stopIndex":12346,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17750},{"__isSmartRef__":true,"id":17752}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17752":{"name":"isSimilarConnection","type":"propertyDef","startIndex":12032,"stopIndex":12343,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17751},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17753":{"name":"toString","type":"propertyDef","startIndex":12363,"stopIndex":12714,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17754},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17719},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17754":{"name":"debugging","type":"categoryDef","startIndex":12348,"stopIndex":12716,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17753}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17755":{"name":null,"type":"comment","startIndex":12720,"stopIndex":12720,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17756":{"name":"AttributeConnection","type":"klassExtensionDef","startIndex":12721,"stopIndex":13728,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17757}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":17758}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17757":{"name":"toLiteral","type":"propertyDef","startIndex":12754,"stopIndex":13723,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17758},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17756},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17758":{"name":"default category","type":"categoryDef","startIndex":12752,"stopIndex":13725,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17757}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17759":{"name":"AttributeConnection","type":"klassExtensionDef","startIndex":13729,"stopIndex":14979,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17760}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":17761}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17760":{"name":"fromLiteral","type":"propertyDef","startIndex":13766,"stopIndex":14975,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17761},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17759},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17761":{"name":"default category","type":"categoryDef","startIndex":13764,"stopIndex":14976,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17760}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17762":{"name":"AttributeConnection","type":"klassExtensionDef","startIndex":14980,"stopIndex":15505,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17763}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":17764}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17763":{"name":"onrestore","type":"propertyDef","startIndex":15030,"stopIndex":15500,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":false,"category":{"__isSmartRef__":true,"id":17764},"className":"AttributeConnection","_owner":{"__isSmartRef__":true,"id":17762},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17764":{"name":"serialization","type":"categoryDef","startIndex":15011,"stopIndex":15502,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17763}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17765":{"name":null,"type":"comment","startIndex":15506,"stopIndex":15506,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17766":{"name":"lively.bindings","type":"klassExtensionDef","startIndex":15507,"stopIndex":18631,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17767},{"__isSmartRef__":true,"id":17769},{"__isSmartRef__":true,"id":17770},{"__isSmartRef__":true,"id":17771},{"__isSmartRef__":true,"id":17772},{"__isSmartRef__":true,"id":17773},{"__isSmartRef__":true,"id":17774}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":17768}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17767":{"name":"documentation","type":"propertyDef","startIndex":15541,"stopIndex":15728,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17768},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":17766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17768":{"name":"default category","type":"categoryDef","startIndex":15538,"stopIndex":18608,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17767},{"__isSmartRef__":true,"id":17769},{"__isSmartRef__":true,"id":17770},{"__isSmartRef__":true,"id":17771},{"__isSmartRef__":true,"id":17772},{"__isSmartRef__":true,"id":17773},{"__isSmartRef__":true,"id":17774}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17769":{"name":"connect","type":"propertyDef","startIndex":15731,"stopIndex":16567,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17768},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":17766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17770":{"name":"disconnect","type":"propertyDef","startIndex":16571,"stopIndex":17118,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17768},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":17766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17771":{"name":"disconnectAll","type":"propertyDef","startIndex":17122,"stopIndex":17312,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17768},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":17766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17772":{"name":"signal","type":"propertyDef","startIndex":17316,"stopIndex":17636,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17768},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":17766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17773":{"name":"callWhenNotNull","type":"propertyDef","startIndex":17639,"stopIndex":18005,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17768},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":17766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17774":{"name":"callWhenPathNotNull","type":"propertyDef","startIndex":18007,"stopIndex":18625,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17768},"className":"lively.bindings","_owner":{"__isSmartRef__":true,"id":17766},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17775":{"name":"Global","type":"klassExtensionDef","startIndex":18632,"stopIndex":18866,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17776},{"__isSmartRef__":true,"id":17778},{"__isSmartRef__":true,"id":17779},{"__isSmartRef__":true,"id":17780},{"__isSmartRef__":true,"id":17781}],"sourceControl":{"__isSmartRef__":true,"id":4931},"categories":[{"__isSmartRef__":true,"id":17777}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17776":{"name":"connect","type":"propertyDef","startIndex":18656,"stopIndex":18689,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17777},"className":"Global","_owner":{"__isSmartRef__":true,"id":17775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17777":{"name":"default category","type":"categoryDef","startIndex":18634,"stopIndex":18843,"fileName":"lively/bindings/Core.js","_subElements":[{"__isSmartRef__":true,"id":17776},{"__isSmartRef__":true,"id":17778},{"__isSmartRef__":true,"id":17779},{"__isSmartRef__":true,"id":17780},{"__isSmartRef__":true,"id":17781}],"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17778":{"name":"disconnect","type":"propertyDef","startIndex":18691,"stopIndex":18730,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17777},"className":"Global","_owner":{"__isSmartRef__":true,"id":17775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17779":{"name":"disconnectAll","type":"propertyDef","startIndex":18732,"stopIndex":18777,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17777},"className":"Global","_owner":{"__isSmartRef__":true,"id":17775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17780":{"name":"signal","type":"propertyDef","startIndex":18779,"stopIndex":18810,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17777},"className":"Global","_owner":{"__isSmartRef__":true,"id":17775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17781":{"name":"updateAttributeConnection","type":"propertyDef","startIndex":18812,"stopIndex":18862,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"_isStatic":true,"category":{"__isSmartRef__":true,"id":17777},"className":"Global","_owner":{"__isSmartRef__":true,"id":17775},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17782":{"name":null,"type":"comment","startIndex":18867,"stopIndex":18868,"fileName":"lively/bindings/Core.js","_subElements":[],"sourceControl":{"__isSmartRef__":true,"id":4931},"__LivelyClassName__":"lively.ide.FileFragment","__SourceModuleName__":"Global.lively.ide.FileParsing"},"17783":{"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17715},"moduleName":"lively/bindings/GeometryBindings.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17784":{"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17715},"moduleName":"lively/bindings/GeometryBindingsTest.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17785":{"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17715},"moduleName":"lively/bindings/Tests.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17786":{"target":{"__isSmartRef__":true,"id":8061},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"17787":{"isListItem":true,"string":"Core.js","value":{"__isSmartRef__":true,"id":17716}},"17788":{"isListItem":true,"string":"GeometryBindings.js (not parsed)","value":{"__isSmartRef__":true,"id":17783}},"17789":{"isListItem":true,"string":"GeometryBindingsTest.js (not parsed)","value":{"__isSmartRef__":true,"id":17784}},"17790":{"isListItem":true,"string":"Tests.js (not parsed)","value":{"__isSmartRef__":true,"id":17785}},"17791":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":17786}},"17792":{"morph":{"__isSmartRef__":true,"id":17705},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17793":{"x":0,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17794":{"sourceObj":{"__isSmartRef__":true,"id":17705},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setPane1Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":17795},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17796},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17795":{"source":{"__isSmartRef__":true,"id":17705},"target":{"__isSmartRef__":true,"id":17459}},"17796":{"updater":{"__isSmartRef__":true,"id":17797}},"17797":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17795},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":17798},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17798":{},"17799":{"sourceObj":{"__isSmartRef__":true,"id":17705},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane1Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17800},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17800":{"source":{"__isSmartRef__":true,"id":17705},"target":{"__isSmartRef__":true,"id":17459}},"17801":{"sourceObj":{"__isSmartRef__":true,"id":17705},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane1Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17802},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17802":{"source":{"__isSmartRef__":true,"id":17705},"target":{"__isSmartRef__":true,"id":17459}},"17803":{"sourceObj":{"__isSmartRef__":true,"id":17705},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane1Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17804},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17804":{"source":{"__isSmartRef__":true,"id":17705},"target":{"__isSmartRef__":true,"id":17459}},"17805":{"target":{"__isSmartRef__":true,"id":17717},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17715},"moduleName":"lively/bindings/Core.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17806":{"source":{"__isSmartRef__":true,"id":17459},"target":{"__isSmartRef__":true,"id":17705}},"17807":{"sourceObj":{"__isSmartRef__":true,"id":17459},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":17808},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17841},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17808":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17809},"id":3590,"renderContextTable":{"__isSmartRef__":true,"id":17814},"itemList":[{"__isSmartRef__":true,"id":17815},{"__isSmartRef__":true,"id":17817},{"__isSmartRef__":true,"id":17819},{"__isSmartRef__":true,"id":17821},{"__isSmartRef__":true,"id":17823},{"__isSmartRef__":true,"id":17825}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":17827},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17828},"selectedLineNo":4,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":17445},"attributeConnections":[{"__isSmartRef__":true,"id":17829},{"__isSmartRef__":true,"id":17834},{"__isSmartRef__":true,"id":17836},{"__isSmartRef__":true,"id":17838}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":17840},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"17809":{"_Position":{"__isSmartRef__":true,"id":17810},"renderContextTable":{"__isSmartRef__":true,"id":17811},"_Extent":{"__isSmartRef__":true,"id":17812},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17813},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17810":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17811":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17812":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17813":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17814":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"17815":{"isListItem":true,"string":"AttributeConnection","value":{"__isSmartRef__":true,"id":17816}},"17816":{"target":{"__isSmartRef__":true,"id":17719},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17817":{"isListItem":true,"string":"AttributeConnection (extension)","value":{"__isSmartRef__":true,"id":17818}},"17818":{"target":{"__isSmartRef__":true,"id":17756},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17819":{"isListItem":true,"string":"AttributeConnection (extension)","value":{"__isSmartRef__":true,"id":17820}},"17820":{"target":{"__isSmartRef__":true,"id":17759},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17821":{"isListItem":true,"string":"AttributeConnection (extension)","value":{"__isSmartRef__":true,"id":17822}},"17822":{"target":{"__isSmartRef__":true,"id":17762},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17823":{"isListItem":true,"string":"lively.bindings (extension)","value":{"__isSmartRef__":true,"id":17824}},"17824":{"target":{"__isSmartRef__":true,"id":17766},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17825":{"isListItem":true,"string":"Global (extension)","value":{"__isSmartRef__":true,"id":17826}},"17826":{"target":{"__isSmartRef__":true,"id":17775},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17827":{"morph":{"__isSmartRef__":true,"id":17808},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17828":{"x":205,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17829":{"sourceObj":{"__isSmartRef__":true,"id":17808},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setPane2Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":17830},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17831},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17830":{"source":{"__isSmartRef__":true,"id":17808},"target":{"__isSmartRef__":true,"id":17459}},"17831":{"updater":{"__isSmartRef__":true,"id":17832}},"17832":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17830},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":17833},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17833":{},"17834":{"sourceObj":{"__isSmartRef__":true,"id":17808},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane2Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17835},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17835":{"source":{"__isSmartRef__":true,"id":17808},"target":{"__isSmartRef__":true,"id":17459}},"17836":{"sourceObj":{"__isSmartRef__":true,"id":17808},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane2Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17837},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17837":{"source":{"__isSmartRef__":true,"id":17808},"target":{"__isSmartRef__":true,"id":17459}},"17838":{"sourceObj":{"__isSmartRef__":true,"id":17808},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane2Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17839},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17839":{"source":{"__isSmartRef__":true,"id":17808},"target":{"__isSmartRef__":true,"id":17459}},"17840":{"target":{"__isSmartRef__":true,"id":17766},"browser":{"__isSmartRef__":true,"id":17459},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17841":{"source":{"__isSmartRef__":true,"id":17459},"target":{"__isSmartRef__":true,"id":17808}},"17842":{"sourceObj":{"__isSmartRef__":true,"id":17459},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":17843},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17867},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17843":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17844},"id":3591,"renderContextTable":{"__isSmartRef__":true,"id":17849},"itemList":[{"__isSmartRef__":true,"id":17850},{"__isSmartRef__":true,"id":17852}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":17854},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17855},"selectedLineNo":0,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":17445},"attributeConnections":[{"__isSmartRef__":true,"id":17856},{"__isSmartRef__":true,"id":17861},{"__isSmartRef__":true,"id":17863},{"__isSmartRef__":true,"id":17865}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"17844":{"_Position":{"__isSmartRef__":true,"id":17845},"renderContextTable":{"__isSmartRef__":true,"id":17846},"_Extent":{"__isSmartRef__":true,"id":17847},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17848},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17845":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17846":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17847":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17848":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17849":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"17850":{"isListItem":true,"string":"-- all --","value":{"__isSmartRef__":true,"id":17851}},"17851":{"target":{"__isSmartRef__":true,"id":17766},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17824},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17852":{"isListItem":true,"string":"default category","value":{"__isSmartRef__":true,"id":17853}},"17853":{"target":{"__isSmartRef__":true,"id":17768},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17824},"targets":[{"__isSmartRef__":true,"id":17768}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17854":{"morph":{"__isSmartRef__":true,"id":17843},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17855":{"x":410,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17856":{"sourceObj":{"__isSmartRef__":true,"id":17843},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setPane3Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":17857},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17858},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17857":{"source":{"__isSmartRef__":true,"id":17843},"target":{"__isSmartRef__":true,"id":17459}},"17858":{"updater":{"__isSmartRef__":true,"id":17859}},"17859":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17857},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":17860},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17860":{},"17861":{"sourceObj":{"__isSmartRef__":true,"id":17843},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane3Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17862},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17862":{"source":{"__isSmartRef__":true,"id":17843},"target":{"__isSmartRef__":true,"id":17459}},"17863":{"sourceObj":{"__isSmartRef__":true,"id":17843},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane3Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17864},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17864":{"source":{"__isSmartRef__":true,"id":17843},"target":{"__isSmartRef__":true,"id":17459}},"17865":{"sourceObj":{"__isSmartRef__":true,"id":17843},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane3Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17866},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17866":{"source":{"__isSmartRef__":true,"id":17843},"target":{"__isSmartRef__":true,"id":17459}},"17867":{"source":{"__isSmartRef__":true,"id":17459},"target":{"__isSmartRef__":true,"id":17843}},"17868":{"sourceObj":{"__isSmartRef__":true,"id":17459},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":17869},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17905},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17869":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17870},"id":3592,"renderContextTable":{"__isSmartRef__":true,"id":17875},"itemList":[{"__isSmartRef__":true,"id":17876},{"__isSmartRef__":true,"id":17878},{"__isSmartRef__":true,"id":17880},{"__isSmartRef__":true,"id":17882},{"__isSmartRef__":true,"id":17884},{"__isSmartRef__":true,"id":17886},{"__isSmartRef__":true,"id":17888}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":17890},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17891},"selectedLineNo":0,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":17445},"attributeConnections":[{"__isSmartRef__":true,"id":17892},{"__isSmartRef__":true,"id":17897},{"__isSmartRef__":true,"id":17899},{"__isSmartRef__":true,"id":17901}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":17903},"prevScroll":[0,160],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"17870":{"_Position":{"__isSmartRef__":true,"id":17871},"renderContextTable":{"__isSmartRef__":true,"id":17872},"_Extent":{"__isSmartRef__":true,"id":17873},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17874},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17871":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17872":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17873":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17874":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17875":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"17876":{"isListItem":true,"string":"documentation (static)","value":{"__isSmartRef__":true,"id":17877}},"17877":{"target":{"__isSmartRef__":true,"id":17767},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17878":{"isListItem":true,"string":"connect (static)","value":{"__isSmartRef__":true,"id":17879}},"17879":{"target":{"__isSmartRef__":true,"id":17769},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17880":{"isListItem":true,"string":"disconnect (static)","value":{"__isSmartRef__":true,"id":17881}},"17881":{"target":{"__isSmartRef__":true,"id":17770},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17882":{"isListItem":true,"string":"disconnectAll (static)","value":{"__isSmartRef__":true,"id":17883}},"17883":{"target":{"__isSmartRef__":true,"id":17771},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17884":{"isListItem":true,"string":"signal (static)","value":{"__isSmartRef__":true,"id":17885}},"17885":{"target":{"__isSmartRef__":true,"id":17772},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17886":{"isListItem":true,"string":"callWhenNotNull (static)","value":{"__isSmartRef__":true,"id":17887}},"17887":{"target":{"__isSmartRef__":true,"id":17773},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17888":{"isListItem":true,"string":"callWhenPathNotNull (static)","value":{"__isSmartRef__":true,"id":17889}},"17889":{"target":{"__isSmartRef__":true,"id":17774},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17851},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17890":{"morph":{"__isSmartRef__":true,"id":17869},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17891":{"x":615,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17892":{"sourceObj":{"__isSmartRef__":true,"id":17869},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setPane4Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":17893},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17894},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17893":{"source":{"__isSmartRef__":true,"id":17869},"target":{"__isSmartRef__":true,"id":17459}},"17894":{"updater":{"__isSmartRef__":true,"id":17895}},"17895":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17893},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":17896},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17896":{},"17897":{"sourceObj":{"__isSmartRef__":true,"id":17869},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane4Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17898},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17898":{"source":{"__isSmartRef__":true,"id":17869},"target":{"__isSmartRef__":true,"id":17459}},"17899":{"sourceObj":{"__isSmartRef__":true,"id":17869},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane4Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17900},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17900":{"source":{"__isSmartRef__":true,"id":17869},"target":{"__isSmartRef__":true,"id":17459}},"17901":{"sourceObj":{"__isSmartRef__":true,"id":17869},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"getPane4Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17902},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17902":{"source":{"__isSmartRef__":true,"id":17869},"target":{"__isSmartRef__":true,"id":17459}},"17903":{"target":{"__isSmartRef__":true,"id":17767},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17904},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17904":{"target":{"__isSmartRef__":true,"id":17766},"browser":{"__isSmartRef__":true,"id":17459},"parent":{"__isSmartRef__":true,"id":17840},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"17905":{"source":{"__isSmartRef__":true,"id":17459},"target":{"__isSmartRef__":true,"id":17869}},"17906":{"sourceObj":{"__isSmartRef__":true,"id":17459},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":17907},"targetMethodName":"setTextString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17923},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17907":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17908},"id":3594,"renderContextTable":{"__isSmartRef__":true,"id":17912},"textChunks":[{"__isSmartRef__":true,"id":17913}],"eventHandler":{"__isSmartRef__":true,"id":17915},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17916},"_ClipMode":"scroll","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17917},"priorExtent":{"__isSmartRef__":true,"id":17918},"_MaxTextWidth":820,"_MaxTextHeight":302.5,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17445},"accessibleInInactiveWindow":true,"layout":{"__isSmartRef__":true,"id":17919},"noEval":true,"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":17920},{"__isSmartRef__":true,"id":17921}],"doNotSerialize":["$$textString","$$savedTextString"],"doNotCopyProperties":["$$textString","$$savedTextString"],"textString":"\tdocumentation: 'connect parameters: source, sourceProp, target, targetProp, spec\\n\\\nspec can be: {removeAfterUpdate: Boolean, converter: Function, updater: Function, varMapping: Object}',","lastSyntaxHighlightTime":1308936984197,"savedTextString":"\tdocumentation: 'connect parameters: source, sourceProp, target, targetProp, spec\\n\\\nspec can be: {removeAfterUpdate: Boolean, converter: Function, updater: Function, varMapping: Object}',","styleClass":["Browser_codePaneText"],"focusHaloBorderWidth":0.5,"priorSelectionRange":[188,188],"prevScroll":[0,15],"charsReplaced":"","lastFindLoc":167,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17908":{"_Position":{"__isSmartRef__":true,"id":17909},"renderContextTable":{"__isSmartRef__":true,"id":17910},"_Extent":{"__isSmartRef__":true,"id":17911},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17909":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17910":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17911":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17912":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17913":{"style":{"__isSmartRef__":true,"id":17914},"chunkOwner":{"__isSmartRef__":true,"id":17907},"storedString":"\tdocumentation: 'connect parameters: source, sourceProp, target, targetProp, spec\\n\\\nspec can be: {removeAfterUpdate: Boolean, converter: Function, updater: Function, varMapping: Object}',","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17914":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17915":{"morph":{"__isSmartRef__":true,"id":17907},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17916":{"x":5,"y":5,"width":-10,"height":-10,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17917":{"x":0,"y":247.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17918":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17919":{"resizeWidth":true,"resizeHeight":true},"17920":{"sourceObj":{"__isSmartRef__":true,"id":17907},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":17907},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17921":{"sourceObj":{"__isSmartRef__":true,"id":17907},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setSourceString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17922},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17922":{"source":{"__isSmartRef__":true,"id":17907},"target":{"__isSmartRef__":true,"id":17459}},"17923":{"source":{"__isSmartRef__":true,"id":17459},"target":{"__isSmartRef__":true,"id":17907}},"17924":{"sourceObj":{"__isSmartRef__":true,"id":17459},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":17446},"targetMethodName":"setTextString","converter":null,"converterString":null,"updaterString":"function ($upd, value) { value && $upd(String(value)) }","varMapping":{"__isSmartRef__":true,"id":17925},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17926},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17925":{"source":{"__isSmartRef__":true,"id":17459},"target":{"__isSmartRef__":true,"id":17446}},"17926":{"updater":{"__isSmartRef__":true,"id":17927}},"17927":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17925},"source":"function ($upd, value) { value && $upd(String(value)) }","funcProperties":{"__isSmartRef__":true,"id":17928},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17928":{},"17929":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/bindings/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"17930":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17931},"id":3618,"renderContextTable":{"__isSmartRef__":true,"id":17936},"textChunks":[{"__isSmartRef__":true,"id":17937}],"eventHandler":{"__isSmartRef__":true,"id":17939},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"visible","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17940},"priorExtent":{"__isSmartRef__":true,"id":17941},"_MaxTextWidth":300,"_MaxTextHeight":30,"evalEnabled":false,"owner":null,"_TextColor":{"__isSmartRef__":true,"id":8264},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17931":{"_Position":{"__isSmartRef__":true,"id":17932},"renderContextTable":{"__isSmartRef__":true,"id":17933},"_Extent":{"__isSmartRef__":true,"id":17934},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":17935},"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17932":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17933":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17934":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17935":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17936":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17937":{"style":{"__isSmartRef__":true,"id":17938},"chunkOwner":{"__isSmartRef__":true,"id":17930},"storedString":"Saving documentation...\nSuccessfully saved\nSuccessfully evaluated documentation","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17938":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17939":{"morph":{"__isSmartRef__":true,"id":17930},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17940":{"x":260,"y":136.25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17941":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17942":{"source":{"__isSmartRef__":true,"id":17446},"target":{"__isSmartRef__":true,"id":17459}},"17943":{"submorphs":[{"__isSmartRef__":true,"id":17944}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17956},"id":3585,"renderContextTable":{"__isSmartRef__":true,"id":17960},"eventHandler":{"__isSmartRef__":true,"id":17961},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17962},"priorExtent":{"__isSmartRef__":true,"id":17963},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":17964},"label":{"__isSmartRef__":true,"id":17944},"owner":{"__isSmartRef__":true,"id":17445},"attributeConnections":[{"__isSmartRef__":true,"id":17973}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":17978},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17944":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17945},"id":3586,"renderContextTable":{"__isSmartRef__":true,"id":17949},"textChunks":[{"__isSmartRef__":true,"id":17950}],"eventHandler":{"__isSmartRef__":true,"id":17952},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17953},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17954},"priorExtent":{"__isSmartRef__":true,"id":17955},"_MaxTextWidth":98.39999999999999,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17943},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17945":{"_Position":{"__isSmartRef__":true,"id":17946},"renderContextTable":{"__isSmartRef__":true,"id":17947},"_Extent":{"__isSmartRef__":true,"id":17948},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17946":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17947":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17948":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17949":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17950":{"style":{"__isSmartRef__":true,"id":17951},"chunkOwner":{"__isSmartRef__":true,"id":17944},"storedString":"codebase","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17951":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17952":{"morph":{"__isSmartRef__":true,"id":17944},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17953":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17954":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17955":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17956":{"_Position":{"__isSmartRef__":true,"id":17957},"renderContextTable":{"__isSmartRef__":true,"id":17958},"_Extent":{"__isSmartRef__":true,"id":17959},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17957":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17958":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17959":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17960":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17961":{"morph":{"__isSmartRef__":true,"id":17943},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17962":{"x":656,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17963":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17964":{"stops":[{"__isSmartRef__":true,"id":17965},{"__isSmartRef__":true,"id":17967},{"__isSmartRef__":true,"id":17969},{"__isSmartRef__":true,"id":17971}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17965":{"offset":0,"color":{"__isSmartRef__":true,"id":17966}},"17966":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17967":{"offset":0.4,"color":{"__isSmartRef__":true,"id":17968}},"17968":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17969":{"offset":0.6,"color":{"__isSmartRef__":true,"id":17970}},"17970":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17971":{"offset":1,"color":{"__isSmartRef__":true,"id":17972}},"17972":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"17973":{"sourceObj":{"__isSmartRef__":true,"id":17943},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setTargetURL","converterString":"function () { return URL.codeBase.withFilename('lively/')}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":17974},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":17975},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"17974":{"source":{"__isSmartRef__":true,"id":17943},"target":{"__isSmartRef__":true,"id":17459}},"17975":{"converter":{"__isSmartRef__":true,"id":17976}},"17976":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":17974},"source":"function () { return URL.codeBase.withFilename('lively/')}","funcProperties":{"__isSmartRef__":true,"id":17977},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"17977":{},"17978":{"moveHorizontal":true},"17979":{"submorphs":[{"__isSmartRef__":true,"id":17980}],"scripts":[],"shape":{"__isSmartRef__":true,"id":17992},"id":3587,"renderContextTable":{"__isSmartRef__":true,"id":17996},"eventHandler":{"__isSmartRef__":true,"id":17997},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":17998},"priorExtent":{"__isSmartRef__":true,"id":17999},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18000},"label":{"__isSmartRef__":true,"id":17980},"owner":{"__isSmartRef__":true,"id":17445},"attributeConnections":[{"__isSmartRef__":true,"id":18009}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":18011},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"17980":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":17981},"id":3588,"renderContextTable":{"__isSmartRef__":true,"id":17985},"textChunks":[{"__isSmartRef__":true,"id":17986}],"eventHandler":{"__isSmartRef__":true,"id":17988},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":17989},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":17990},"priorExtent":{"__isSmartRef__":true,"id":17991},"_MaxTextWidth":65.6,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":17979},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17981":{"_Position":{"__isSmartRef__":true,"id":17982},"renderContextTable":{"__isSmartRef__":true,"id":17983},"_Extent":{"__isSmartRef__":true,"id":17984},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17982":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17983":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17984":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17985":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"17986":{"style":{"__isSmartRef__":true,"id":17987},"chunkOwner":{"__isSmartRef__":true,"id":17980},"storedString":"local","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17987":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17988":{"morph":{"__isSmartRef__":true,"id":17980},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17989":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"17990":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17991":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17992":{"_Position":{"__isSmartRef__":true,"id":17993},"renderContextTable":{"__isSmartRef__":true,"id":17994},"_Extent":{"__isSmartRef__":true,"id":17995},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"17993":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17994":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"17995":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17996":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"17997":{"morph":{"__isSmartRef__":true,"id":17979},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"17998":{"x":754.4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"17999":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18000":{"stops":[{"__isSmartRef__":true,"id":18001},{"__isSmartRef__":true,"id":18003},{"__isSmartRef__":true,"id":18005},{"__isSmartRef__":true,"id":18007}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18001":{"offset":0,"color":{"__isSmartRef__":true,"id":18002}},"18002":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18003":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18004}},"18004":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18005":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18006}},"18006":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18007":{"offset":1,"color":{"__isSmartRef__":true,"id":18008}},"18008":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18009":{"sourceObj":{"__isSmartRef__":true,"id":17979},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17459},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.source.getDirectory() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18010},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18010":{"source":{"__isSmartRef__":true,"id":17979},"target":{"__isSmartRef__":true,"id":17459}},"18011":{"moveHorizontal":true},"18012":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18013},"id":3593,"renderContextTable":{"__isSmartRef__":true,"id":18017},"eventHandler":{"__isSmartRef__":true,"id":18018},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"_Position":{"__isSmartRef__":true,"id":18019},"fixed":[{"__isSmartRef__":true,"id":17461},{"__isSmartRef__":true,"id":17495},{"__isSmartRef__":true,"id":17529},{"__isSmartRef__":true,"id":17563},{"__isSmartRef__":true,"id":17597},{"__isSmartRef__":true,"id":17631},{"__isSmartRef__":true,"id":17665}],"scalingBelow":[{"__isSmartRef__":true,"id":17907}],"scalingAbove":[{"__isSmartRef__":true,"id":17705},{"__isSmartRef__":true,"id":17808},{"__isSmartRef__":true,"id":17843},{"__isSmartRef__":true,"id":17869}],"minHeight":20,"pointerConnection":null,"owner":{"__isSmartRef__":true,"id":17445},"styleClass":["Browser_resizer"],"__LivelyClassName__":"lively.morphic.HorizontalDivider","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18013":{"_Position":{"__isSmartRef__":true,"id":18014},"renderContextTable":{"__isSmartRef__":true,"id":18015},"_Extent":{"__isSmartRef__":true,"id":18016},"_Fill":{"__isSmartRef__":true,"id":8337},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18014":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18015":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18016":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18017":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18018":{"morph":{"__isSmartRef__":true,"id":18012},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18019":{"x":0,"y":242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18020":{"_Position":{"__isSmartRef__":true,"id":18021},"renderContextTable":{"__isSmartRef__":true,"id":18022},"_Extent":{"__isSmartRef__":true,"id":18023},"_Fill":{"__isSmartRef__":true,"id":18024},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18021":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18022":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18023":{"x":820,"y":550,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18024":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18025":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18026":{"morph":{"__isSmartRef__":true,"id":17445},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18027":{"adjustForNewBounds":true,"resizeWidth":true,"resizeHeight":true},"18028":{"x":0,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18029":{"submorphs":[{"__isSmartRef__":true,"id":18030},{"__isSmartRef__":true,"id":18042},{"__isSmartRef__":true,"id":18076},{"__isSmartRef__":true,"id":18109}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18143},"id":3610,"renderContextTable":{"__isSmartRef__":true,"id":18147},"eventHandler":{"__isSmartRef__":true,"id":18148},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":18149},"_Position":{"__isSmartRef__":true,"id":18150},"windowMorph":{"__isSmartRef__":true,"id":17444},"label":{"__isSmartRef__":true,"id":18030},"closeButton":{"__isSmartRef__":true,"id":18042},"menuButton":{"__isSmartRef__":true,"id":18076},"collapseButton":{"__isSmartRef__":true,"id":18109},"priorExtent":{"__isSmartRef__":true,"id":18151},"owner":{"__isSmartRef__":true,"id":17444},"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18030":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18031},"id":3611,"renderContextTable":{"__isSmartRef__":true,"id":18035},"textChunks":[{"__isSmartRef__":true,"id":18036}],"eventHandler":{"__isSmartRef__":true,"id":18038},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":1227},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":18039},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":18029},"priorExtent":{"__isSmartRef__":true,"id":18040},"_MaxTextWidth":761,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":18041},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18031":{"_Position":{"__isSmartRef__":true,"id":18032},"renderContextTable":{"__isSmartRef__":true,"id":18033},"_Extent":{"__isSmartRef__":true,"id":18034},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"_BorderRadius":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18032":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18033":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18034":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18035":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18036":{"style":{"__isSmartRef__":true,"id":18037},"chunkOwner":{"__isSmartRef__":true,"id":18030},"storedString":"Core.js:lively.bindings (extension):-- all --:documentation (static)","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18037":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18038":{"morph":{"__isSmartRef__":true,"id":18030},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18039":{"resizeWidth":true},"18040":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18041":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18042":{"submorphs":[{"__isSmartRef__":true,"id":18043}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18054},"id":3612,"renderContextTable":{"__isSmartRef__":true,"id":18058},"eventHandler":{"__isSmartRef__":true,"id":18059},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18060},"priorExtent":{"__isSmartRef__":true,"id":18061},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18062},"label":{"__isSmartRef__":true,"id":18043},"owner":{"__isSmartRef__":true,"id":18029},"layout":{"__isSmartRef__":true,"id":18071},"attributeConnections":[{"__isSmartRef__":true,"id":18072},{"__isSmartRef__":true,"id":18074}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18043":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18044},"id":3613,"renderContextTable":{"__isSmartRef__":true,"id":18048},"textChunks":[{"__isSmartRef__":true,"id":18049}],"eventHandler":{"__isSmartRef__":true,"id":18051},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4417},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":18052},"priorExtent":{"__isSmartRef__":true,"id":18053},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18042},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18044":{"_Position":{"__isSmartRef__":true,"id":18045},"renderContextTable":{"__isSmartRef__":true,"id":18046},"_Extent":{"__isSmartRef__":true,"id":18047},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18045":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18046":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18047":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18048":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18049":{"style":{"__isSmartRef__":true,"id":18050},"chunkOwner":{"__isSmartRef__":true,"id":18043},"storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18050":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18051":{"morph":{"__isSmartRef__":true,"id":18043},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18052":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18053":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18054":{"_Position":{"__isSmartRef__":true,"id":18055},"renderContextTable":{"__isSmartRef__":true,"id":18056},"_Extent":{"__isSmartRef__":true,"id":18057},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_StrokeOpacity":0,"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18055":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18056":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18057":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18058":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18059":{"morph":{"__isSmartRef__":true,"id":18042},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18060":{"x":800,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18061":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18062":{"stops":[{"__isSmartRef__":true,"id":18063},{"__isSmartRef__":true,"id":18065},{"__isSmartRef__":true,"id":18067},{"__isSmartRef__":true,"id":18069}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18063":{"offset":0,"color":{"__isSmartRef__":true,"id":18064}},"18064":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18065":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18066}},"18066":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18067":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18068}},"18068":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18069":{"offset":1,"color":{"__isSmartRef__":true,"id":18070}},"18070":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18071":{"moveHorizontal":true},"18072":{"sourceObj":{"__isSmartRef__":true,"id":18042},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":17444},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18073},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18073":{"source":{"__isSmartRef__":true,"id":18042},"target":{"__isSmartRef__":true,"id":17444}},"18074":{"sourceObj":{"__isSmartRef__":true,"id":18042},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17444},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18075},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18075":{"source":{"__isSmartRef__":true,"id":18042},"target":{"__isSmartRef__":true,"id":17444}},"18076":{"submorphs":[{"__isSmartRef__":true,"id":18077}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18088},"id":3614,"renderContextTable":{"__isSmartRef__":true,"id":18092},"eventHandler":{"__isSmartRef__":true,"id":18093},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18094},"priorExtent":{"__isSmartRef__":true,"id":18095},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18096},"label":{"__isSmartRef__":true,"id":18077},"owner":{"__isSmartRef__":true,"id":18029},"attributeConnections":[{"__isSmartRef__":true,"id":18105},{"__isSmartRef__":true,"id":18107}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18077":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18078},"id":3615,"renderContextTable":{"__isSmartRef__":true,"id":18082},"textChunks":[{"__isSmartRef__":true,"id":18083}],"eventHandler":{"__isSmartRef__":true,"id":18085},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4417},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":18086},"priorExtent":{"__isSmartRef__":true,"id":18087},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18076},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18078":{"_Position":{"__isSmartRef__":true,"id":18079},"renderContextTable":{"__isSmartRef__":true,"id":18080},"_Extent":{"__isSmartRef__":true,"id":18081},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18079":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18080":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18081":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18082":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18083":{"style":{"__isSmartRef__":true,"id":18084},"chunkOwner":{"__isSmartRef__":true,"id":18077},"storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18084":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18085":{"morph":{"__isSmartRef__":true,"id":18077},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18086":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18087":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18088":{"_Position":{"__isSmartRef__":true,"id":18089},"renderContextTable":{"__isSmartRef__":true,"id":18090},"_Extent":{"__isSmartRef__":true,"id":18091},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_StrokeOpacity":0,"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18089":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18090":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18091":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18092":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18093":{"morph":{"__isSmartRef__":true,"id":18076},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18094":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18095":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18096":{"stops":[{"__isSmartRef__":true,"id":18097},{"__isSmartRef__":true,"id":18099},{"__isSmartRef__":true,"id":18101},{"__isSmartRef__":true,"id":18103}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18097":{"offset":0,"color":{"__isSmartRef__":true,"id":18098}},"18098":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18099":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18100}},"18100":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18101":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18102}},"18102":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18103":{"offset":1,"color":{"__isSmartRef__":true,"id":18104}},"18104":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18105":{"sourceObj":{"__isSmartRef__":true,"id":18076},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":17444},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18106},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18106":{"source":{"__isSmartRef__":true,"id":18076},"target":{"__isSmartRef__":true,"id":17444}},"18107":{"sourceObj":{"__isSmartRef__":true,"id":18076},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17444},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18108},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18108":{"source":{"__isSmartRef__":true,"id":18076},"target":{"__isSmartRef__":true,"id":17444}},"18109":{"submorphs":[{"__isSmartRef__":true,"id":18110}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18121},"id":3616,"renderContextTable":{"__isSmartRef__":true,"id":18125},"eventHandler":{"__isSmartRef__":true,"id":18126},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18127},"priorExtent":{"__isSmartRef__":true,"id":18128},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18129},"label":{"__isSmartRef__":true,"id":18110},"owner":{"__isSmartRef__":true,"id":18029},"layout":{"__isSmartRef__":true,"id":18138},"attributeConnections":[{"__isSmartRef__":true,"id":18139},{"__isSmartRef__":true,"id":18141}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18110":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18111},"id":3617,"renderContextTable":{"__isSmartRef__":true,"id":18115},"textChunks":[{"__isSmartRef__":true,"id":18116}],"eventHandler":{"__isSmartRef__":true,"id":18118},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":4417},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":18119},"priorExtent":{"__isSmartRef__":true,"id":18120},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18109},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18111":{"_Position":{"__isSmartRef__":true,"id":18112},"renderContextTable":{"__isSmartRef__":true,"id":18113},"_Extent":{"__isSmartRef__":true,"id":18114},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18112":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18113":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18114":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18115":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18116":{"style":{"__isSmartRef__":true,"id":18117},"chunkOwner":{"__isSmartRef__":true,"id":18110},"storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18117":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18118":{"morph":{"__isSmartRef__":true,"id":18110},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18119":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18120":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18121":{"_Position":{"__isSmartRef__":true,"id":18122},"renderContextTable":{"__isSmartRef__":true,"id":18123},"_Extent":{"__isSmartRef__":true,"id":18124},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_StrokeOpacity":0,"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18122":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18123":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18124":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18125":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18126":{"morph":{"__isSmartRef__":true,"id":18109},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18127":{"x":781,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18128":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18129":{"stops":[{"__isSmartRef__":true,"id":18130},{"__isSmartRef__":true,"id":18132},{"__isSmartRef__":true,"id":18134},{"__isSmartRef__":true,"id":18136}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18130":{"offset":0,"color":{"__isSmartRef__":true,"id":18131}},"18131":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18132":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18133}},"18133":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18134":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18135}},"18135":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18136":{"offset":1,"color":{"__isSmartRef__":true,"id":18137}},"18137":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18138":{"moveHorizontal":true},"18139":{"sourceObj":{"__isSmartRef__":true,"id":18109},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":17444},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18140},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18140":{"source":{"__isSmartRef__":true,"id":18109},"target":{"__isSmartRef__":true,"id":17444}},"18141":{"sourceObj":{"__isSmartRef__":true,"id":18109},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":17444},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18142},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18142":{"source":{"__isSmartRef__":true,"id":18109},"target":{"__isSmartRef__":true,"id":17444}},"18143":{"_Position":{"__isSmartRef__":true,"id":18144},"renderContextTable":{"__isSmartRef__":true,"id":18145},"_Extent":{"__isSmartRef__":true,"id":18146},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1205},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18144":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18145":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18146":{"x":820,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18147":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18148":{"morph":{"__isSmartRef__":true,"id":18029},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18149":{"resizeWidth":true,"adjustForNewBounds":true},"18150":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18151":{"x":820,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18152":{"renderContextTable":{"__isSmartRef__":true,"id":18153},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":18154},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18153":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18154":{"x":820,"y":572,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18155":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18156":{"morph":{"__isSmartRef__":true,"id":17444},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18157":{"adjustForNewBounds":true},"18158":{"x":542.5,"y":824.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18159":{"x":820,"y":572,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18160":{"submorphs":[{"__isSmartRef__":true,"id":18161},{"__isSmartRef__":true,"id":18284}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19025},"id":63,"renderContextTable":{"__isSmartRef__":true,"id":19028},"eventHandler":{"__isSmartRef__":true,"id":19029},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":19030},"LK2":true,"_Position":{"__isSmartRef__":true,"id":19031},"priorExtent":{"__isSmartRef__":true,"id":19032},"targetMorph":{"__isSmartRef__":true,"id":18284},"titleBar":{"__isSmartRef__":true,"id":18161},"contentOffset":{"__isSmartRef__":true,"id":19024},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"highlighted":true,"_Rotation":0,"_Scale":1,"__SourceModuleName__":"Global.lively.morphic.Widgets","prevDragPos":{"__isSmartRef__":true,"id":19033},"cameForward":false,"__LivelyClassName__":"lively.morphic.Window"},"18161":{"submorphs":[{"__isSmartRef__":true,"id":18162},{"__isSmartRef__":true,"id":18174},{"__isSmartRef__":true,"id":18208},{"__isSmartRef__":true,"id":18241}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18275},"id":64,"renderContextTable":{"__isSmartRef__":true,"id":18279},"eventHandler":{"__isSmartRef__":true,"id":18280},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":18281},"_Position":{"__isSmartRef__":true,"id":18282},"windowMorph":{"__isSmartRef__":true,"id":18160},"label":{"__isSmartRef__":true,"id":18162},"closeButton":{"__isSmartRef__":true,"id":18174},"menuButton":{"__isSmartRef__":true,"id":18208},"collapseButton":{"__isSmartRef__":true,"id":18241},"priorExtent":{"__isSmartRef__":true,"id":18283},"owner":{"__isSmartRef__":true,"id":18160},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"18162":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18163},"id":65,"renderContextTable":{"__isSmartRef__":true,"id":18167},"textChunks":[{"__isSmartRef__":true,"id":18168}],"eventHandler":{"__isSmartRef__":true,"id":18170},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":105},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":18171},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":18161},"priorExtent":{"__isSmartRef__":true,"id":18172},"_MaxTextWidth":761,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":18173},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"18163":{"_Position":{"__isSmartRef__":true,"id":18164},"renderContextTable":{"__isSmartRef__":true,"id":18165},"_Extent":{"__isSmartRef__":true,"id":18166},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18164":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18165":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18166":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18167":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18168":{"style":{"__isSmartRef__":true,"id":18169},"chunkOwner":{"__isSmartRef__":true,"id":18162},"storedString":"Serialization.js:lively.morphic.World (extension):-- all --:saveWorldAs (proto)","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18169":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18170":{"morph":{"__isSmartRef__":true,"id":18162},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18171":{"resizeWidth":true},"18172":{"x":761,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18173":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18174":{"submorphs":[{"__isSmartRef__":true,"id":18175}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18186},"id":66,"renderContextTable":{"__isSmartRef__":true,"id":18190},"eventHandler":{"__isSmartRef__":true,"id":18191},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18192},"priorExtent":{"__isSmartRef__":true,"id":18193},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":18194},"label":{"__isSmartRef__":true,"id":18175},"owner":{"__isSmartRef__":true,"id":18161},"layout":{"__isSmartRef__":true,"id":18203},"attributeConnections":[{"__isSmartRef__":true,"id":18204},{"__isSmartRef__":true,"id":18206}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"18175":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18176},"id":67,"renderContextTable":{"__isSmartRef__":true,"id":18180},"textChunks":[{"__isSmartRef__":true,"id":18181}],"eventHandler":{"__isSmartRef__":true,"id":18183},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":18184},"priorExtent":{"__isSmartRef__":true,"id":18185},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18174},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"18176":{"_Position":{"__isSmartRef__":true,"id":18177},"renderContextTable":{"__isSmartRef__":true,"id":18178},"_Extent":{"__isSmartRef__":true,"id":18179},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18177":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18178":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18179":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18180":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18181":{"style":{"__isSmartRef__":true,"id":18182},"chunkOwner":{"__isSmartRef__":true,"id":18175},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"18182":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"18183":{"morph":{"__isSmartRef__":true,"id":18175},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18184":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18185":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18186":{"_Position":{"__isSmartRef__":true,"id":18187},"renderContextTable":{"__isSmartRef__":true,"id":18188},"_Extent":{"__isSmartRef__":true,"id":18189},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18187":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18188":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18189":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18190":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18191":{"morph":{"__isSmartRef__":true,"id":18174},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18192":{"x":800,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18193":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18194":{"stops":[{"__isSmartRef__":true,"id":18195},{"__isSmartRef__":true,"id":18197},{"__isSmartRef__":true,"id":18199},{"__isSmartRef__":true,"id":18201}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"18195":{"offset":0,"color":{"__isSmartRef__":true,"id":18196}},"18196":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18197":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18198}},"18198":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18199":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18200}},"18200":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18201":{"offset":1,"color":{"__isSmartRef__":true,"id":18202}},"18202":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18203":{"moveHorizontal":true},"18204":{"sourceObj":{"__isSmartRef__":true,"id":18174},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":18160},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18205},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"18205":{"source":{"__isSmartRef__":true,"id":18174},"target":{"__isSmartRef__":true,"id":18160}},"18206":{"sourceObj":{"__isSmartRef__":true,"id":18174},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18160},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18207},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"18207":{"source":{"__isSmartRef__":true,"id":18174},"target":{"__isSmartRef__":true,"id":18160}},"18208":{"submorphs":[{"__isSmartRef__":true,"id":18209}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18220},"id":68,"renderContextTable":{"__isSmartRef__":true,"id":18224},"eventHandler":{"__isSmartRef__":true,"id":18225},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18226},"priorExtent":{"__isSmartRef__":true,"id":18227},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":18228},"label":{"__isSmartRef__":true,"id":18209},"owner":{"__isSmartRef__":true,"id":18161},"attributeConnections":[{"__isSmartRef__":true,"id":18237},{"__isSmartRef__":true,"id":18239}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"18209":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18210},"id":69,"renderContextTable":{"__isSmartRef__":true,"id":18214},"textChunks":[{"__isSmartRef__":true,"id":18215}],"eventHandler":{"__isSmartRef__":true,"id":18217},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":18218},"priorExtent":{"__isSmartRef__":true,"id":18219},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18208},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"18210":{"_Position":{"__isSmartRef__":true,"id":18211},"renderContextTable":{"__isSmartRef__":true,"id":18212},"_Extent":{"__isSmartRef__":true,"id":18213},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18211":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18212":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18213":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18214":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18215":{"style":{"__isSmartRef__":true,"id":18216},"chunkOwner":{"__isSmartRef__":true,"id":18209},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"18216":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"18217":{"morph":{"__isSmartRef__":true,"id":18209},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18218":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18219":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18220":{"_Position":{"__isSmartRef__":true,"id":18221},"renderContextTable":{"__isSmartRef__":true,"id":18222},"_Extent":{"__isSmartRef__":true,"id":18223},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18221":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18222":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18223":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18224":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18225":{"morph":{"__isSmartRef__":true,"id":18208},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18226":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18227":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18228":{"stops":[{"__isSmartRef__":true,"id":18229},{"__isSmartRef__":true,"id":18231},{"__isSmartRef__":true,"id":18233},{"__isSmartRef__":true,"id":18235}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"18229":{"offset":0,"color":{"__isSmartRef__":true,"id":18230}},"18230":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18231":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18232}},"18232":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18233":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18234}},"18234":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18235":{"offset":1,"color":{"__isSmartRef__":true,"id":18236}},"18236":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18237":{"sourceObj":{"__isSmartRef__":true,"id":18208},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":18160},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18238},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"18238":{"source":{"__isSmartRef__":true,"id":18208},"target":{"__isSmartRef__":true,"id":18160}},"18239":{"sourceObj":{"__isSmartRef__":true,"id":18208},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18160},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18240},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"18240":{"source":{"__isSmartRef__":true,"id":18208},"target":{"__isSmartRef__":true,"id":18160}},"18241":{"submorphs":[{"__isSmartRef__":true,"id":18242}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18253},"id":70,"renderContextTable":{"__isSmartRef__":true,"id":18257},"eventHandler":{"__isSmartRef__":true,"id":18258},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18259},"priorExtent":{"__isSmartRef__":true,"id":18260},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":127},"lighterFill":{"__isSmartRef__":true,"id":18261},"label":{"__isSmartRef__":true,"id":18242},"owner":{"__isSmartRef__":true,"id":18161},"layout":{"__isSmartRef__":true,"id":18270},"attributeConnections":[{"__isSmartRef__":true,"id":18271},{"__isSmartRef__":true,"id":18273}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"18242":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18243},"id":71,"renderContextTable":{"__isSmartRef__":true,"id":18247},"textChunks":[{"__isSmartRef__":true,"id":18248}],"eventHandler":{"__isSmartRef__":true,"id":18250},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":119},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":18251},"priorExtent":{"__isSmartRef__":true,"id":18252},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18241},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"18243":{"_Position":{"__isSmartRef__":true,"id":18244},"renderContextTable":{"__isSmartRef__":true,"id":18245},"_Extent":{"__isSmartRef__":true,"id":18246},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":71},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18244":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18245":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18246":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18247":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18248":{"style":{"__isSmartRef__":true,"id":18249},"chunkOwner":{"__isSmartRef__":true,"id":18242},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"18249":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"18250":{"morph":{"__isSmartRef__":true,"id":18242},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18251":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18252":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18253":{"_Position":{"__isSmartRef__":true,"id":18254},"renderContextTable":{"__isSmartRef__":true,"id":18255},"_Extent":{"__isSmartRef__":true,"id":18256},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":126},"_Fill":{"__isSmartRef__":true,"id":127},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18254":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18255":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18256":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18257":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18258":{"morph":{"__isSmartRef__":true,"id":18241},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18259":{"x":781,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18260":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18261":{"stops":[{"__isSmartRef__":true,"id":18262},{"__isSmartRef__":true,"id":18264},{"__isSmartRef__":true,"id":18266},{"__isSmartRef__":true,"id":18268}],"vector":{"__isSmartRef__":true,"id":136},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"18262":{"offset":0,"color":{"__isSmartRef__":true,"id":18263}},"18263":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18264":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18265}},"18265":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18266":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18267}},"18267":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18268":{"offset":1,"color":{"__isSmartRef__":true,"id":18269}},"18269":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"18270":{"moveHorizontal":true},"18271":{"sourceObj":{"__isSmartRef__":true,"id":18241},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":18160},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18272},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"18272":{"source":{"__isSmartRef__":true,"id":18241},"target":{"__isSmartRef__":true,"id":18160}},"18273":{"sourceObj":{"__isSmartRef__":true,"id":18241},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18160},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18274},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"18274":{"source":{"__isSmartRef__":true,"id":18241},"target":{"__isSmartRef__":true,"id":18160}},"18275":{"_Position":{"__isSmartRef__":true,"id":18276},"renderContextTable":{"__isSmartRef__":true,"id":18277},"_Extent":{"__isSmartRef__":true,"id":18278},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":226},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"18276":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18277":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18278":{"x":820,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18279":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18280":{"morph":{"__isSmartRef__":true,"id":18161},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"18281":{"resizeWidth":true,"adjustForNewBounds":true},"18282":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"18283":{"x":820,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18284":{"submorphs":[{"__isSmartRef__":true,"id":18285},{"__isSmartRef__":true,"id":18942},{"__isSmartRef__":true,"id":18975},{"__isSmartRef__":true,"id":18547},{"__isSmartRef__":true,"id":18646},{"__isSmartRef__":true,"id":18691},{"__isSmartRef__":true,"id":18717},{"__isSmartRef__":true,"id":19008},{"__isSmartRef__":true,"id":18765},{"__isSmartRef__":true,"id":18300},{"__isSmartRef__":true,"id":18334},{"__isSmartRef__":true,"id":18371},{"__isSmartRef__":true,"id":18405},{"__isSmartRef__":true,"id":18439},{"__isSmartRef__":true,"id":18473},{"__isSmartRef__":true,"id":18507}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19016},"id":53,"renderContextTable":{"__isSmartRef__":true,"id":19021},"eventHandler":{"__isSmartRef__":true,"id":19022},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":19023},"_Position":{"__isSmartRef__":true,"id":19024},"locationPane":{"__isSmartRef__":true,"id":18285},"codeBaseDirBtn":{"__isSmartRef__":true,"id":18942},"localDirBtn":{"__isSmartRef__":true,"id":18975},"Pane1":{"__isSmartRef__":true,"id":18547},"Pane2":{"__isSmartRef__":true,"id":18646},"Pane3":{"__isSmartRef__":true,"id":18691},"Pane4":{"__isSmartRef__":true,"id":18717},"midResizer":{"__isSmartRef__":true,"id":19008},"sourcePane":{"__isSmartRef__":true,"id":18765},"ownerWidget":{"__isSmartRef__":true,"id":18298},"owner":{"__isSmartRef__":true,"id":18160},"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"18285":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18286},"id":54,"renderContextTable":{"__isSmartRef__":true,"id":18290},"textChunks":[{"__isSmartRef__":true,"id":18291}],"eventHandler":{"__isSmartRef__":true,"id":18293},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18294},"priorExtent":{"__isSmartRef__":true,"id":18295},"_MaxTextWidth":656,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18284},"isInputLine":true,"layout":{"__isSmartRef__":true,"id":18296},"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":18297}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18286":{"_Position":{"__isSmartRef__":true,"id":18287},"renderContextTable":{"__isSmartRef__":true,"id":18288},"_Extent":{"__isSmartRef__":true,"id":18289},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18287":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18288":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18289":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18290":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18291":{"style":{"__isSmartRef__":true,"id":18292},"chunkOwner":{"__isSmartRef__":true,"id":18285},"storedString":"http://lively-kernel.org/repository/webwerkstatt/lively/morphic/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18292":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18293":{"morph":{"__isSmartRef__":true,"id":18285},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18294":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18295":{"x":656,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18296":{"resizeWidth":true},"18297":{"sourceObj":{"__isSmartRef__":true,"id":18285},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setTargetURL","converter":null,"converterString":"function (value) { return new URL(value) }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18941},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18298":{"buttonCommands":[{"__isSmartRef__":true,"id":18299},{"__isSmartRef__":true,"id":18333},{"__isSmartRef__":true,"id":18370},{"__isSmartRef__":true,"id":18404},{"__isSmartRef__":true,"id":18438},{"__isSmartRef__":true,"id":18472},{"__isSmartRef__":true,"id":18506}],"RootFilters":[{"__isSmartRef__":true,"id":18540}],"Pane1Filters":[{"__isSmartRef__":true,"id":18541},{"__isSmartRef__":true,"id":18542}],"Pane2Filters":[{"__isSmartRef__":true,"id":18543}],"Pane3Filters":[{"__isSmartRef__":true,"id":18544}],"Pane4Filters":[{"__isSmartRef__":true,"id":18545}],"evaluate":true,"panel":{"__isSmartRef__":true,"id":18284},"attributeConnections":[{"__isSmartRef__":true,"id":18546},{"__isSmartRef__":true,"id":18645},{"__isSmartRef__":true,"id":18690},{"__isSmartRef__":true,"id":18716},{"__isSmartRef__":true,"id":18764},{"__isSmartRef__":true,"id":18923}],"SourceString":" saveWorldAs: function(url, checkForOverwrites) {\n var serializer = ObjectGraphLinearizer.forNewLively(),\n doc = new Importer().getBaseDocument();\n lively.persistence.Serializer.serializeWorldToDocumentWithSerializer(this, doc, serializer);\n \n // make sure that links to bootstrap.js points to the right directory\n new DocLinkConverter(URL.codeBase, url.getDirectory()).convert(doc);\n\n // Change page title\n var titleTag = doc.getElementsByTagName('title')[0]; \n if (titleTag) titleTag.textContent = url.filename().replace('.xhtml', '');\n\n this.savedWorldAsURL = undefined;\n connect(this, 'savedWorldAsURL', this, 'visitNewPageAfterSaveAs', {\n updater: function($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }\n })\n\n if (URL.source.eq(url))\n this.storeDoc(doc, url, checkForOverwrites);\n else\n this.checkIfPathExistsAndStoreDoc(doc, url, checkForOverwrites)\n },","sourceString":" saveWorldAs: function(url, checkForOverwrites) {\n var serializer = ObjectGraphLinearizer.forNewLively(),\n doc = new Importer().getBaseDocument();\n lively.persistence.Serializer.serializeWorldToDocumentWithSerializer(this, doc, serializer);\n \n // make sure that links to bootstrap.js points to the right directory\n new DocLinkConverter(URL.codeBase, url.getDirectory()).convert(doc);\n\n // Change page title\n var titleTag = doc.getElementsByTagName('title')[0]; \n if (titleTag) titleTag.textContent = url.filename().replace('.xhtml', '');\n\n this.savedWorldAsURL = undefined;\n connect(this, 'savedWorldAsURL', this, 'visitNewPageAfterSaveAs', {\n updater: function($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }\n })\n\n if (URL.source.eq(url))\n this.storeDoc(doc, url, checkForOverwrites);\n else\n this.checkIfPathExistsAndStoreDoc(doc, url, checkForOverwrites)\n },","doNotSerialize":["$$targetURL"],"doNotCopyProperties":["$$targetURL"],"targetURL":{"__isSmartRef__":true,"id":18928},"_rootNode":{"__isSmartRef__":true,"id":18557},"Pane1Selection":{"__isSmartRef__":true,"id":18586},"pane1Selection":{"__isSmartRef__":true,"id":18586},"Pane2Selection":{"__isSmartRef__":true,"id":18668},"pane2Selection":{"__isSmartRef__":true,"id":18668},"Pane3Selection":{"__isSmartRef__":true,"id":18699},"pane3Selection":{"__isSmartRef__":true,"id":18699},"Pane4Selection":{"__isSmartRef__":true,"id":18731},"pane4Selection":{"__isSmartRef__":true,"id":18731},"Pane4Content":[{"__isSmartRef__":true,"id":18724},{"__isSmartRef__":true,"id":18726},{"__isSmartRef__":true,"id":18728},{"__isSmartRef__":true,"id":18730},{"__isSmartRef__":true,"id":18732},{"__isSmartRef__":true,"id":18734},{"__isSmartRef__":true,"id":18736},{"__isSmartRef__":true,"id":18738},{"__isSmartRef__":true,"id":18740},{"__isSmartRef__":true,"id":18742},{"__isSmartRef__":true,"id":18744},{"__isSmartRef__":true,"id":18746},{"__isSmartRef__":true,"id":18748}],"Pane3Content":[{"__isSmartRef__":true,"id":18698},{"__isSmartRef__":true,"id":18700}],"Pane2Content":[{"__isSmartRef__":true,"id":18653},{"__isSmartRef__":true,"id":18655},{"__isSmartRef__":true,"id":18657},{"__isSmartRef__":true,"id":18659},{"__isSmartRef__":true,"id":18661},{"__isSmartRef__":true,"id":18663},{"__isSmartRef__":true,"id":18665},{"__isSmartRef__":true,"id":18667},{"__isSmartRef__":true,"id":18669},{"__isSmartRef__":true,"id":18671},{"__isSmartRef__":true,"id":18673}],"Pane1Content":[{"__isSmartRef__":true,"id":18554},{"__isSmartRef__":true,"id":18595},{"__isSmartRef__":true,"id":18596},{"__isSmartRef__":true,"id":18597},{"__isSmartRef__":true,"id":18598},{"__isSmartRef__":true,"id":18599},{"__isSmartRef__":true,"id":18600},{"__isSmartRef__":true,"id":18601},{"__isSmartRef__":true,"id":18602},{"__isSmartRef__":true,"id":18603},{"__isSmartRef__":true,"id":18604},{"__isSmartRef__":true,"id":18605},{"__isSmartRef__":true,"id":18606},{"__isSmartRef__":true,"id":18607},{"__isSmartRef__":true,"id":18608},{"__isSmartRef__":true,"id":18609},{"__isSmartRef__":true,"id":18610},{"__isSmartRef__":true,"id":18611},{"__isSmartRef__":true,"id":18612},{"__isSmartRef__":true,"id":18613},{"__isSmartRef__":true,"id":18614},{"__isSmartRef__":true,"id":18615},{"__isSmartRef__":true,"id":18616},{"__isSmartRef__":true,"id":18617},{"__isSmartRef__":true,"id":18618},{"__isSmartRef__":true,"id":18619},{"__isSmartRef__":true,"id":18620},{"__isSmartRef__":true,"id":18621},{"__isSmartRef__":true,"id":18622},{"__isSmartRef__":true,"id":18623},{"__isSmartRef__":true,"id":18624},{"__isSmartRef__":true,"id":18625},{"__isSmartRef__":true,"id":18626},{"__isSmartRef__":true,"id":18627},{"__isSmartRef__":true,"id":18628},{"__isSmartRef__":true,"id":18629}],"Pane1Menu":[["Add to world requirements"],["remove"],["reparse"],["-------"],["open in text editor"],["show versions"],["diff versions"]],"Pane2Menu":[["references"],["add sibling below"],["remove"],["-------"],["view hierarchy"],["add class"],["add object extension"],["add layer"]],"Pane3Menu":[["add sibling below"],["remove"]],"currentModuleName":"lively.morphic.Serialization","Pane4Menu":[["senders"],["implementors"],["add sibling below"],["remove"],["-------"],["add method"]],"_statusMorph":{"__isSmartRef__":true,"id":18929},"__LivelyClassName__":"lively.ide.SystemBrowser","__SourceModuleName__":"Global.lively.ide.SystemCodeBrowser"},"18299":{"browser":{"__isSmartRef__":true,"id":18298},"button":{"__isSmartRef__":true,"id":18300},"__LivelyClassName__":"lively.ide.AddNewFileCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"18300":{"submorphs":[{"__isSmartRef__":true,"id":18301}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18313},"id":65,"renderContextTable":{"__isSmartRef__":true,"id":18317},"eventHandler":{"__isSmartRef__":true,"id":18318},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18319},"priorExtent":{"__isSmartRef__":true,"id":18320},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18321},"label":{"__isSmartRef__":true,"id":18301},"command":{"__isSmartRef__":true,"id":18299},"attributeConnections":[{"__isSmartRef__":true,"id":18330},{"__isSmartRef__":true,"id":18331}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18301":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18302},"id":66,"renderContextTable":{"__isSmartRef__":true,"id":18306},"textChunks":[{"__isSmartRef__":true,"id":18307}],"eventHandler":{"__isSmartRef__":true,"id":18309},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18310},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18311},"priorExtent":{"__isSmartRef__":true,"id":18312},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18300},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18302":{"_Position":{"__isSmartRef__":true,"id":18303},"renderContextTable":{"__isSmartRef__":true,"id":18304},"_Extent":{"__isSmartRef__":true,"id":18305},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18303":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18304":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18305":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18306":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18307":{"style":{"__isSmartRef__":true,"id":18308},"chunkOwner":{"__isSmartRef__":true,"id":18301},"storedString":"Add module","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18308":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18309":{"morph":{"__isSmartRef__":true,"id":18301},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18310":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18311":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18312":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18313":{"_Position":{"__isSmartRef__":true,"id":18314},"renderContextTable":{"__isSmartRef__":true,"id":18315},"_Extent":{"__isSmartRef__":true,"id":18316},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18314":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18315":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18316":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18317":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18318":{"morph":{"__isSmartRef__":true,"id":18300},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18319":{"x":0,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18320":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18321":{"stops":[{"__isSmartRef__":true,"id":18322},{"__isSmartRef__":true,"id":18324},{"__isSmartRef__":true,"id":18326},{"__isSmartRef__":true,"id":18328}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18322":{"offset":0,"color":{"__isSmartRef__":true,"id":18323}},"18323":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18324":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18325}},"18325":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18326":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18327}},"18327":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18328":{"offset":1,"color":{"__isSmartRef__":true,"id":18329}},"18329":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18330":{"sourceObj":{"__isSmartRef__":true,"id":18300},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18299},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18331":{"sourceObj":{"__isSmartRef__":true,"id":18300},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18300},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18332},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18332":{"source":{"__isSmartRef__":true,"id":18300},"target":{"__isSmartRef__":true,"id":18300}},"18333":{"browser":{"__isSmartRef__":true,"id":18298},"button":{"__isSmartRef__":true,"id":18334},"__LivelyClassName__":"lively.ide.AllModulesLoadCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"18334":{"submorphs":[{"__isSmartRef__":true,"id":18335}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18347},"id":67,"renderContextTable":{"__isSmartRef__":true,"id":18351},"eventHandler":{"__isSmartRef__":true,"id":18352},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18353},"priorExtent":{"__isSmartRef__":true,"id":18354},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18355},"label":{"__isSmartRef__":true,"id":18335},"command":{"__isSmartRef__":true,"id":18333},"attributeConnections":[{"__isSmartRef__":true,"id":18364},{"__isSmartRef__":true,"id":18365}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18335":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18336},"id":68,"renderContextTable":{"__isSmartRef__":true,"id":18340},"textChunks":[{"__isSmartRef__":true,"id":18341}],"eventHandler":{"__isSmartRef__":true,"id":18343},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18344},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18345},"priorExtent":{"__isSmartRef__":true,"id":18346},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18334},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18336":{"_Position":{"__isSmartRef__":true,"id":18337},"renderContextTable":{"__isSmartRef__":true,"id":18338},"_Extent":{"__isSmartRef__":true,"id":18339},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18337":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18338":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18339":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18340":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18341":{"style":{"__isSmartRef__":true,"id":18342},"chunkOwner":{"__isSmartRef__":true,"id":18335},"storedString":"Load all","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18342":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18343":{"morph":{"__isSmartRef__":true,"id":18335},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18344":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18345":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18346":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18347":{"_Position":{"__isSmartRef__":true,"id":18348},"renderContextTable":{"__isSmartRef__":true,"id":18349},"_Extent":{"__isSmartRef__":true,"id":18350},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18348":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18349":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18350":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18351":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18352":{"morph":{"__isSmartRef__":true,"id":18334},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18353":{"x":117.14285714285714,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18354":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18355":{"stops":[{"__isSmartRef__":true,"id":18356},{"__isSmartRef__":true,"id":18358},{"__isSmartRef__":true,"id":18360},{"__isSmartRef__":true,"id":18362}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18356":{"offset":0,"color":{"__isSmartRef__":true,"id":18357}},"18357":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18358":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18359}},"18359":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18360":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18361}},"18361":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18362":{"offset":1,"color":{"__isSmartRef__":true,"id":18363}},"18363":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18364":{"sourceObj":{"__isSmartRef__":true,"id":18334},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18333},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18365":{"sourceObj":{"__isSmartRef__":true,"id":18334},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18334},"targetMethodName":"setLabel","converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18366},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":18367},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18366":{"source":{"__isSmartRef__":true,"id":18334},"target":{"__isSmartRef__":true,"id":18334}},"18367":{"converter":{"__isSmartRef__":true,"id":18368}},"18368":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":18366},"source":"function () { return this.getSourceObj().command.asString() }","funcProperties":{"__isSmartRef__":true,"id":18369},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"18369":{},"18370":{"browser":{"__isSmartRef__":true,"id":18298},"button":{"__isSmartRef__":true,"id":18371},"__LivelyClassName__":"lively.ide.ShowLineNumbersCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"18371":{"submorphs":[{"__isSmartRef__":true,"id":18372}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18384},"id":69,"renderContextTable":{"__isSmartRef__":true,"id":18388},"eventHandler":{"__isSmartRef__":true,"id":18389},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18390},"priorExtent":{"__isSmartRef__":true,"id":18391},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18392},"label":{"__isSmartRef__":true,"id":18372},"command":{"__isSmartRef__":true,"id":18370},"attributeConnections":[{"__isSmartRef__":true,"id":18401},{"__isSmartRef__":true,"id":18402}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18372":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18373},"id":70,"renderContextTable":{"__isSmartRef__":true,"id":18377},"textChunks":[{"__isSmartRef__":true,"id":18378}],"eventHandler":{"__isSmartRef__":true,"id":18380},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18381},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18382},"priorExtent":{"__isSmartRef__":true,"id":18383},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18371},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18373":{"_Position":{"__isSmartRef__":true,"id":18374},"renderContextTable":{"__isSmartRef__":true,"id":18375},"_Extent":{"__isSmartRef__":true,"id":18376},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18374":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18375":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18376":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18377":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18378":{"style":{"__isSmartRef__":true,"id":18379},"chunkOwner":{"__isSmartRef__":true,"id":18372},"storedString":"LineNo","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18379":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18380":{"morph":{"__isSmartRef__":true,"id":18372},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18381":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18382":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18383":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18384":{"_Position":{"__isSmartRef__":true,"id":18385},"renderContextTable":{"__isSmartRef__":true,"id":18386},"_Extent":{"__isSmartRef__":true,"id":18387},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18385":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18386":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18387":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18388":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18389":{"morph":{"__isSmartRef__":true,"id":18371},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18390":{"x":234.28571428571428,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18391":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18392":{"stops":[{"__isSmartRef__":true,"id":18393},{"__isSmartRef__":true,"id":18395},{"__isSmartRef__":true,"id":18397},{"__isSmartRef__":true,"id":18399}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18393":{"offset":0,"color":{"__isSmartRef__":true,"id":18394}},"18394":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18395":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18396}},"18396":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18397":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18398}},"18398":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18399":{"offset":1,"color":{"__isSmartRef__":true,"id":18400}},"18400":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18401":{"sourceObj":{"__isSmartRef__":true,"id":18371},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18370},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18402":{"sourceObj":{"__isSmartRef__":true,"id":18371},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18371},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18403},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18403":{"source":{"__isSmartRef__":true,"id":18371},"target":{"__isSmartRef__":true,"id":18371}},"18404":{"browser":{"__isSmartRef__":true,"id":18298},"button":{"__isSmartRef__":true,"id":18405},"__LivelyClassName__":"lively.ide.ParserDebugCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"18405":{"submorphs":[{"__isSmartRef__":true,"id":18406}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18418},"id":71,"renderContextTable":{"__isSmartRef__":true,"id":18422},"eventHandler":{"__isSmartRef__":true,"id":18423},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18424},"priorExtent":{"__isSmartRef__":true,"id":18425},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18426},"label":{"__isSmartRef__":true,"id":18406},"command":{"__isSmartRef__":true,"id":18404},"attributeConnections":[{"__isSmartRef__":true,"id":18435},{"__isSmartRef__":true,"id":18436}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18406":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18407},"id":72,"renderContextTable":{"__isSmartRef__":true,"id":18411},"textChunks":[{"__isSmartRef__":true,"id":18412}],"eventHandler":{"__isSmartRef__":true,"id":18414},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18415},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18416},"priorExtent":{"__isSmartRef__":true,"id":18417},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18405},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18407":{"_Position":{"__isSmartRef__":true,"id":18408},"renderContextTable":{"__isSmartRef__":true,"id":18409},"_Extent":{"__isSmartRef__":true,"id":18410},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18408":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18409":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18410":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18411":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18412":{"style":{"__isSmartRef__":true,"id":18413},"chunkOwner":{"__isSmartRef__":true,"id":18406},"storedString":"Dbg errors is off","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18413":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18414":{"morph":{"__isSmartRef__":true,"id":18406},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18415":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18416":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18417":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18418":{"_Position":{"__isSmartRef__":true,"id":18419},"renderContextTable":{"__isSmartRef__":true,"id":18420},"_Extent":{"__isSmartRef__":true,"id":18421},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18419":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18420":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18421":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18422":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18423":{"morph":{"__isSmartRef__":true,"id":18405},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18424":{"x":351.42857142857144,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18425":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18426":{"stops":[{"__isSmartRef__":true,"id":18427},{"__isSmartRef__":true,"id":18429},{"__isSmartRef__":true,"id":18431},{"__isSmartRef__":true,"id":18433}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18427":{"offset":0,"color":{"__isSmartRef__":true,"id":18428}},"18428":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18429":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18430}},"18430":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18431":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18432}},"18432":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18433":{"offset":1,"color":{"__isSmartRef__":true,"id":18434}},"18434":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18435":{"sourceObj":{"__isSmartRef__":true,"id":18405},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18404},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18436":{"sourceObj":{"__isSmartRef__":true,"id":18405},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18405},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18437},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18437":{"source":{"__isSmartRef__":true,"id":18405},"target":{"__isSmartRef__":true,"id":18405}},"18438":{"browser":{"__isSmartRef__":true,"id":18298},"button":{"__isSmartRef__":true,"id":18439},"__LivelyClassName__":"lively.ide.EvaluateCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"18439":{"submorphs":[{"__isSmartRef__":true,"id":18440}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18452},"id":73,"renderContextTable":{"__isSmartRef__":true,"id":18456},"eventHandler":{"__isSmartRef__":true,"id":18457},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18458},"priorExtent":{"__isSmartRef__":true,"id":18459},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18460},"label":{"__isSmartRef__":true,"id":18440},"command":{"__isSmartRef__":true,"id":18438},"attributeConnections":[{"__isSmartRef__":true,"id":18469},{"__isSmartRef__":true,"id":18470}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18440":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18441},"id":74,"renderContextTable":{"__isSmartRef__":true,"id":18445},"textChunks":[{"__isSmartRef__":true,"id":18446}],"eventHandler":{"__isSmartRef__":true,"id":18448},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18449},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18450},"priorExtent":{"__isSmartRef__":true,"id":18451},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18439},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18441":{"_Position":{"__isSmartRef__":true,"id":18442},"renderContextTable":{"__isSmartRef__":true,"id":18443},"_Extent":{"__isSmartRef__":true,"id":18444},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18442":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18443":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18444":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18445":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18446":{"style":{"__isSmartRef__":true,"id":18447},"chunkOwner":{"__isSmartRef__":true,"id":18440},"storedString":"Eval on","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18447":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18448":{"morph":{"__isSmartRef__":true,"id":18440},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18449":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18450":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18451":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18452":{"_Position":{"__isSmartRef__":true,"id":18453},"renderContextTable":{"__isSmartRef__":true,"id":18454},"_Extent":{"__isSmartRef__":true,"id":18455},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18453":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18454":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18455":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18456":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18457":{"morph":{"__isSmartRef__":true,"id":18439},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18458":{"x":468.57142857142856,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18459":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18460":{"stops":[{"__isSmartRef__":true,"id":18461},{"__isSmartRef__":true,"id":18463},{"__isSmartRef__":true,"id":18465},{"__isSmartRef__":true,"id":18467}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18461":{"offset":0,"color":{"__isSmartRef__":true,"id":18462}},"18462":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18463":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18464}},"18464":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18465":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18466}},"18466":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18467":{"offset":1,"color":{"__isSmartRef__":true,"id":18468}},"18468":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18469":{"sourceObj":{"__isSmartRef__":true,"id":18439},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18438},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18470":{"sourceObj":{"__isSmartRef__":true,"id":18439},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18439},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18471},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18471":{"source":{"__isSmartRef__":true,"id":18439},"target":{"__isSmartRef__":true,"id":18439}},"18472":{"browser":{"__isSmartRef__":true,"id":18298},"button":{"__isSmartRef__":true,"id":18473},"__LivelyClassName__":"lively.ide.SortCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"18473":{"submorphs":[{"__isSmartRef__":true,"id":18474}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18486},"id":75,"renderContextTable":{"__isSmartRef__":true,"id":18490},"eventHandler":{"__isSmartRef__":true,"id":18491},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18492},"priorExtent":{"__isSmartRef__":true,"id":18493},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18494},"label":{"__isSmartRef__":true,"id":18474},"command":{"__isSmartRef__":true,"id":18472},"attributeConnections":[{"__isSmartRef__":true,"id":18503},{"__isSmartRef__":true,"id":18504}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18474":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18475},"id":76,"renderContextTable":{"__isSmartRef__":true,"id":18479},"textChunks":[{"__isSmartRef__":true,"id":18480}],"eventHandler":{"__isSmartRef__":true,"id":18482},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18483},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18484},"priorExtent":{"__isSmartRef__":true,"id":18485},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18473},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18475":{"_Position":{"__isSmartRef__":true,"id":18476},"renderContextTable":{"__isSmartRef__":true,"id":18477},"_Extent":{"__isSmartRef__":true,"id":18478},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18476":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18477":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18478":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18479":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18480":{"style":{"__isSmartRef__":true,"id":18481},"chunkOwner":{"__isSmartRef__":true,"id":18474},"storedString":"Sort","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18481":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18482":{"morph":{"__isSmartRef__":true,"id":18474},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18483":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18484":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18485":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18486":{"_Position":{"__isSmartRef__":true,"id":18487},"renderContextTable":{"__isSmartRef__":true,"id":18488},"_Extent":{"__isSmartRef__":true,"id":18489},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18487":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18488":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18489":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18490":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18491":{"morph":{"__isSmartRef__":true,"id":18473},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18492":{"x":585.7142857142857,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18493":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18494":{"stops":[{"__isSmartRef__":true,"id":18495},{"__isSmartRef__":true,"id":18497},{"__isSmartRef__":true,"id":18499},{"__isSmartRef__":true,"id":18501}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18495":{"offset":0,"color":{"__isSmartRef__":true,"id":18496}},"18496":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18497":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18498}},"18498":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18499":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18500}},"18500":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18501":{"offset":1,"color":{"__isSmartRef__":true,"id":18502}},"18502":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18503":{"sourceObj":{"__isSmartRef__":true,"id":18473},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18472},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18504":{"sourceObj":{"__isSmartRef__":true,"id":18473},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18473},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18505},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18505":{"source":{"__isSmartRef__":true,"id":18473},"target":{"__isSmartRef__":true,"id":18473}},"18506":{"browser":{"__isSmartRef__":true,"id":18298},"button":{"__isSmartRef__":true,"id":18507},"__LivelyClassName__":"lively.ide.ViewSourceCommand","__SourceModuleName__":"Global.lively.ide.BrowserCommands"},"18507":{"submorphs":[{"__isSmartRef__":true,"id":18508}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18520},"id":77,"renderContextTable":{"__isSmartRef__":true,"id":18524},"eventHandler":{"__isSmartRef__":true,"id":18525},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18526},"priorExtent":{"__isSmartRef__":true,"id":18527},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18528},"label":{"__isSmartRef__":true,"id":18508},"command":{"__isSmartRef__":true,"id":18506},"attributeConnections":[{"__isSmartRef__":true,"id":18537},{"__isSmartRef__":true,"id":18538}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"owner":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18508":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18509},"id":78,"renderContextTable":{"__isSmartRef__":true,"id":18513},"textChunks":[{"__isSmartRef__":true,"id":18514}],"eventHandler":{"__isSmartRef__":true,"id":18516},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18517},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18518},"priorExtent":{"__isSmartRef__":true,"id":18519},"_MaxTextWidth":117.14285714285714,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18507},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18509":{"_Position":{"__isSmartRef__":true,"id":18510},"renderContextTable":{"__isSmartRef__":true,"id":18511},"_Extent":{"__isSmartRef__":true,"id":18512},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18510":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18511":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18512":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18513":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18514":{"style":{"__isSmartRef__":true,"id":18515},"chunkOwner":{"__isSmartRef__":true,"id":18508},"storedString":"View as...","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18515":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18516":{"morph":{"__isSmartRef__":true,"id":18508},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18517":{"x":0,"y":4,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18518":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18519":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18520":{"_Position":{"__isSmartRef__":true,"id":18521},"renderContextTable":{"__isSmartRef__":true,"id":18522},"_Extent":{"__isSmartRef__":true,"id":18523},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18521":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18522":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18523":{"x":117.14285714285714,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18524":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18525":{"morph":{"__isSmartRef__":true,"id":18507},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18526":{"x":702.8571428571429,"y":220,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18527":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18528":{"stops":[{"__isSmartRef__":true,"id":18529},{"__isSmartRef__":true,"id":18531},{"__isSmartRef__":true,"id":18533},{"__isSmartRef__":true,"id":18535}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18529":{"offset":0,"color":{"__isSmartRef__":true,"id":18530}},"18530":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18531":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18532}},"18532":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18533":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18534}},"18534":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18535":{"offset":1,"color":{"__isSmartRef__":true,"id":18536}},"18536":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18537":{"sourceObj":{"__isSmartRef__":true,"id":18507},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18506},"targetMethodName":"trigger","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18538":{"sourceObj":{"__isSmartRef__":true,"id":18507},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18507},"targetMethodName":"setLabel","converter":null,"converterString":"function () { return this.getSourceObj().command.asString() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18539},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18539":{"source":{"__isSmartRef__":true,"id":18507},"target":{"__isSmartRef__":true,"id":18507}},"18540":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"18541":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"18542":{"attributes":["isClassNode","isGrammarNode","isChangeNode","isFunctionNode","isObjectNode"],"__LivelyClassName__":"lively.ide.NodeTypeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"18543":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"18544":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"18545":{"__LivelyClassName__":"lively.ide.NodeFilter","__SourceModuleName__":"Global.lively.ide.BrowserFramework"},"18546":{"sourceObj":{"__isSmartRef__":true,"id":18298},"sourceAttrName":"setPane1Content","targetObj":{"__isSmartRef__":true,"id":18547},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18644},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18547":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18548},"id":59,"renderContextTable":{"__isSmartRef__":true,"id":18553},"itemList":[{"__isSmartRef__":true,"id":18554},{"__isSmartRef__":true,"id":18595},{"__isSmartRef__":true,"id":18596},{"__isSmartRef__":true,"id":18597},{"__isSmartRef__":true,"id":18598},{"__isSmartRef__":true,"id":18599},{"__isSmartRef__":true,"id":18600},{"__isSmartRef__":true,"id":18601},{"__isSmartRef__":true,"id":18602},{"__isSmartRef__":true,"id":18603},{"__isSmartRef__":true,"id":18604},{"__isSmartRef__":true,"id":18605},{"__isSmartRef__":true,"id":18606},{"__isSmartRef__":true,"id":18607},{"__isSmartRef__":true,"id":18608},{"__isSmartRef__":true,"id":18609},{"__isSmartRef__":true,"id":18610},{"__isSmartRef__":true,"id":18611},{"__isSmartRef__":true,"id":18612},{"__isSmartRef__":true,"id":18613},{"__isSmartRef__":true,"id":18614},{"__isSmartRef__":true,"id":18615},{"__isSmartRef__":true,"id":18616},{"__isSmartRef__":true,"id":18617},{"__isSmartRef__":true,"id":18618},{"__isSmartRef__":true,"id":18619},{"__isSmartRef__":true,"id":18620},{"__isSmartRef__":true,"id":18621},{"__isSmartRef__":true,"id":18622},{"__isSmartRef__":true,"id":18623},{"__isSmartRef__":true,"id":18624},{"__isSmartRef__":true,"id":18625},{"__isSmartRef__":true,"id":18626},{"__isSmartRef__":true,"id":18627},{"__isSmartRef__":true,"id":18628},{"__isSmartRef__":true,"id":18629}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":18630},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18631},"selectedLineNo":27,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":18284},"attributeConnections":[{"__isSmartRef__":true,"id":18632},{"__isSmartRef__":true,"id":18637},{"__isSmartRef__":true,"id":18639},{"__isSmartRef__":true,"id":18641}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":18643},"prevScroll":[0,352],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"18548":{"_Position":{"__isSmartRef__":true,"id":18549},"renderContextTable":{"__isSmartRef__":true,"id":18550},"_Extent":{"__isSmartRef__":true,"id":18551},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":18552},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18549":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18550":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18551":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18552":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18553":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"18554":{"isListItem":true,"string":"tests/","value":{"__isSmartRef__":true,"id":18555}},"18555":{"target":{"__isSmartRef__":true,"id":18556},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"localName":"tests/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18556":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/tests/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"18557":{"target":{"__isSmartRef__":true,"id":4931},"browser":{"__isSmartRef__":true,"id":18298},"parent":null,"allFiles":["lively/morphic/HTML.js","lively/morphic/EventExperiments.js","lively/morphic/Widgets.js","lively/morphic/CompatSCB.js","lively/morphic/Serialization.js","lively/morphic/Rendering.js","lively/morphic/Layout.js","lively/morphic/MorphAddons.js","lively/morphic/Examples.js","lively/morphic/ObjectMigration.js","lively/morphic/ClickOnLineHack.js","lively/morphic/ColorChooserDraft.js","lively/morphic/Shapes.js","lively/morphic/Compat.js","lively/morphic/Core.js","lively/morphic/TextCore.js","lively/morphic/Tests.js","lively/morphic/Events.js","lively/morphic/Graffle.js","lively/morphic/Halos.js","lively/morphic/Complete.js","lively/morphic/Canvas.js","lively/morphic/Connectors.js","lively/morphic/CompatLayer.js","lively/morphic/Styles.js","lively/morphic/Paragraphs.js","lively/morphic/SVG.js","lively/morphic/ScriptingSupport.js","lively/morphic/WidgetsAddOns.js","lively/morphic/PathShapes.js","lively/morphic/AdditionalMorphs.js","lively/morphic/Experiments.js"],"subNamespacePaths":[{"__isSmartRef__":true,"id":18556},{"__isSmartRef__":true,"id":18558}],"parentNamespacePath":{"__isSmartRef__":true,"id":18559},"_childNodes":[{"__isSmartRef__":true,"id":18555},{"__isSmartRef__":true,"id":18560},{"__isSmartRef__":true,"id":18561},{"__isSmartRef__":true,"id":18562},{"__isSmartRef__":true,"id":18563},{"__isSmartRef__":true,"id":18564},{"__isSmartRef__":true,"id":18565},{"__isSmartRef__":true,"id":18566},{"__isSmartRef__":true,"id":18567},{"__isSmartRef__":true,"id":18568},{"__isSmartRef__":true,"id":18569},{"__isSmartRef__":true,"id":18570},{"__isSmartRef__":true,"id":18571},{"__isSmartRef__":true,"id":18572},{"__isSmartRef__":true,"id":18573},{"__isSmartRef__":true,"id":18574},{"__isSmartRef__":true,"id":18575},{"__isSmartRef__":true,"id":18576},{"__isSmartRef__":true,"id":18577},{"__isSmartRef__":true,"id":18578},{"__isSmartRef__":true,"id":18579},{"__isSmartRef__":true,"id":18580},{"__isSmartRef__":true,"id":18581},{"__isSmartRef__":true,"id":18582},{"__isSmartRef__":true,"id":18583},{"__isSmartRef__":true,"id":18584},{"__isSmartRef__":true,"id":18585},{"__isSmartRef__":true,"id":18586},{"__isSmartRef__":true,"id":18587},{"__isSmartRef__":true,"id":18588},{"__isSmartRef__":true,"id":18589},{"__isSmartRef__":true,"id":18590},{"__isSmartRef__":true,"id":18591},{"__isSmartRef__":true,"id":18592},{"__isSmartRef__":true,"id":18593},{"__isSmartRef__":true,"id":18594}],"__LivelyClassName__":"lively.ide.SourceControlNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18558":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/video/","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"18559":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/../","__LivelyClassName__":"URL","__SourceModuleName__":"Global.lively.Network"},"18560":{"target":{"__isSmartRef__":true,"id":18558},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"localName":"video/","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18561":{"target":{"__isSmartRef__":true,"id":18559},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"localName":"../","__LivelyClassName__":"lively.ide.NamespaceNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18562":{"target":{"__isSmartRef__":true,"id":4937},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/AdditionalMorphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18563":{"target":{"__isSmartRef__":true,"id":5055},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Canvas.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18564":{"target":{"__isSmartRef__":true,"id":5115},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/ClickOnLineHack.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18565":{"target":{"__isSmartRef__":true,"id":5128},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/ColorChooserDraft.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18566":{"target":{"__isSmartRef__":true,"id":5184},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Compat.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18567":{"target":{"__isSmartRef__":true,"id":5194},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/CompatLayer.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18568":{"target":{"__isSmartRef__":true,"id":5222},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/CompatSCB.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18569":{"target":{"__isSmartRef__":true,"id":5225},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Complete.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18570":{"target":{"__isSmartRef__":true,"id":5229},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Connectors.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18571":{"target":{"__isSmartRef__":true,"id":5307},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Core.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18572":{"target":{"__isSmartRef__":true,"id":5524},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/EventExperiments.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18573":{"target":{"__isSmartRef__":true,"id":5577},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Events.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18574":{"target":{"__isSmartRef__":true,"id":5830},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Examples.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18575":{"target":{"__isSmartRef__":true,"id":5844},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Experiments.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18576":{"target":{"__isSmartRef__":true,"id":5850},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Graffle.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18577":{"target":{"__isSmartRef__":true,"id":5854},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Halos.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18578":{"target":{"__isSmartRef__":true,"id":6041},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/HTML.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18579":{"target":{"__isSmartRef__":true,"id":6199},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Layout.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18580":{"target":{"__isSmartRef__":true,"id":6263},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/MorphAddons.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18581":{"target":{"__isSmartRef__":true,"id":6406},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/ObjectMigration.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18582":{"target":{"__isSmartRef__":true,"id":6416},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Paragraphs.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18583":{"target":{"__isSmartRef__":true,"id":6424},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/PathShapes.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18584":{"target":{"__isSmartRef__":true,"id":6616},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Rendering.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18585":{"target":{"__isSmartRef__":true,"id":6719},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/ScriptingSupport.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18586":{"target":{"__isSmartRef__":true,"id":6775},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Serialization.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18587":{"target":{"__isSmartRef__":true,"id":6858},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Shapes.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18588":{"target":{"__isSmartRef__":true,"id":6947},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Styles.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18589":{"target":{"__isSmartRef__":true,"id":7197},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/SVG.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18590":{"target":{"__isSmartRef__":true,"id":7287},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Tests.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18591":{"target":{"__isSmartRef__":true,"id":7290},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/TextCore.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18592":{"target":{"__isSmartRef__":true,"id":7616},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Widgets.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18593":{"target":{"__isSmartRef__":true,"id":8052},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/WidgetsAddOns.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18594":{"target":{"__isSmartRef__":true,"id":8061},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.ChangeSetNode","__SourceModuleName__":"Global.lively.ide.LocalBrowser"},"18595":{"isListItem":true,"string":"video/","value":{"__isSmartRef__":true,"id":18560}},"18596":{"isListItem":true,"string":"../","value":{"__isSmartRef__":true,"id":18561}},"18597":{"isListItem":true,"string":"AdditionalMorphs.js","value":{"__isSmartRef__":true,"id":18562}},"18598":{"isListItem":true,"string":"Canvas.js","value":{"__isSmartRef__":true,"id":18563}},"18599":{"isListItem":true,"string":"ClickOnLineHack.js","value":{"__isSmartRef__":true,"id":18564}},"18600":{"isListItem":true,"string":"ColorChooserDraft.js","value":{"__isSmartRef__":true,"id":18565}},"18601":{"isListItem":true,"string":"Compat.js","value":{"__isSmartRef__":true,"id":18566}},"18602":{"isListItem":true,"string":"CompatLayer.js","value":{"__isSmartRef__":true,"id":18567}},"18603":{"isListItem":true,"string":"CompatSCB.js","value":{"__isSmartRef__":true,"id":18568}},"18604":{"isListItem":true,"string":"Complete.js","value":{"__isSmartRef__":true,"id":18569}},"18605":{"isListItem":true,"string":"Connectors.js","value":{"__isSmartRef__":true,"id":18570}},"18606":{"isListItem":true,"string":"Core.js","value":{"__isSmartRef__":true,"id":18571}},"18607":{"isListItem":true,"string":"EventExperiments.js","value":{"__isSmartRef__":true,"id":18572}},"18608":{"isListItem":true,"string":"Events.js","value":{"__isSmartRef__":true,"id":18573}},"18609":{"isListItem":true,"string":"Examples.js","value":{"__isSmartRef__":true,"id":18574}},"18610":{"isListItem":true,"string":"Experiments.js","value":{"__isSmartRef__":true,"id":18575}},"18611":{"isListItem":true,"string":"Graffle.js","value":{"__isSmartRef__":true,"id":18576}},"18612":{"isListItem":true,"string":"Halos.js","value":{"__isSmartRef__":true,"id":18577}},"18613":{"isListItem":true,"string":"HTML.js","value":{"__isSmartRef__":true,"id":18578}},"18614":{"isListItem":true,"string":"Layout.js","value":{"__isSmartRef__":true,"id":18579}},"18615":{"isListItem":true,"string":"MorphAddons.js","value":{"__isSmartRef__":true,"id":18580}},"18616":{"isListItem":true,"string":"ObjectMigration.js","value":{"__isSmartRef__":true,"id":18581}},"18617":{"isListItem":true,"string":"Paragraphs.js","value":{"__isSmartRef__":true,"id":18582}},"18618":{"isListItem":true,"string":"PathShapes.js","value":{"__isSmartRef__":true,"id":18583}},"18619":{"isListItem":true,"string":"Rendering.js","value":{"__isSmartRef__":true,"id":18584}},"18620":{"isListItem":true,"string":"ScriptingSupport.js","value":{"__isSmartRef__":true,"id":18585}},"18621":{"isListItem":true,"string":"Serialization.js","value":{"__isSmartRef__":true,"id":18586}},"18622":{"isListItem":true,"string":"Shapes.js","value":{"__isSmartRef__":true,"id":18587}},"18623":{"isListItem":true,"string":"Styles.js","value":{"__isSmartRef__":true,"id":18588}},"18624":{"isListItem":true,"string":"SVG.js","value":{"__isSmartRef__":true,"id":18589}},"18625":{"isListItem":true,"string":"Tests.js","value":{"__isSmartRef__":true,"id":18590}},"18626":{"isListItem":true,"string":"TextCore.js","value":{"__isSmartRef__":true,"id":18591}},"18627":{"isListItem":true,"string":"Widgets.js","value":{"__isSmartRef__":true,"id":18592}},"18628":{"isListItem":true,"string":"WidgetsAddOns.js","value":{"__isSmartRef__":true,"id":18593}},"18629":{"isListItem":true,"string":"Local code","value":{"__isSmartRef__":true,"id":18594}},"18630":{"morph":{"__isSmartRef__":true,"id":18547},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18631":{"x":0,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18632":{"sourceObj":{"__isSmartRef__":true,"id":18547},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setPane1Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":18633},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":18634},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18633":{"source":{"__isSmartRef__":true,"id":18547},"target":{"__isSmartRef__":true,"id":18298}},"18634":{"updater":{"__isSmartRef__":true,"id":18635}},"18635":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":18633},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":18636},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"18636":{},"18637":{"sourceObj":{"__isSmartRef__":true,"id":18547},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane1Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18638},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18638":{"source":{"__isSmartRef__":true,"id":18547},"target":{"__isSmartRef__":true,"id":18298}},"18639":{"sourceObj":{"__isSmartRef__":true,"id":18547},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane1Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18640},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18640":{"source":{"__isSmartRef__":true,"id":18547},"target":{"__isSmartRef__":true,"id":18298}},"18641":{"sourceObj":{"__isSmartRef__":true,"id":18547},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane1Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18642},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18642":{"source":{"__isSmartRef__":true,"id":18547},"target":{"__isSmartRef__":true,"id":18298}},"18643":{"target":{"__isSmartRef__":true,"id":6775},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18557},"moduleName":"lively/morphic/Serialization.js","showAll":false,"__LivelyClassName__":"lively.ide.CompleteFileFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18644":{"source":{"__isSmartRef__":true,"id":18298},"target":{"__isSmartRef__":true,"id":18547}},"18645":{"sourceObj":{"__isSmartRef__":true,"id":18298},"sourceAttrName":"setPane2Content","targetObj":{"__isSmartRef__":true,"id":18646},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18689},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18646":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18647},"id":60,"renderContextTable":{"__isSmartRef__":true,"id":18652},"itemList":[{"__isSmartRef__":true,"id":18653},{"__isSmartRef__":true,"id":18655},{"__isSmartRef__":true,"id":18657},{"__isSmartRef__":true,"id":18659},{"__isSmartRef__":true,"id":18661},{"__isSmartRef__":true,"id":18663},{"__isSmartRef__":true,"id":18665},{"__isSmartRef__":true,"id":18667},{"__isSmartRef__":true,"id":18669},{"__isSmartRef__":true,"id":18671},{"__isSmartRef__":true,"id":18673}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":18675},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18676},"selectedLineNo":7,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":18284},"attributeConnections":[{"__isSmartRef__":true,"id":18677},{"__isSmartRef__":true,"id":18682},{"__isSmartRef__":true,"id":18684},{"__isSmartRef__":true,"id":18686}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":18688},"prevScroll":[0,0],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"18647":{"_Position":{"__isSmartRef__":true,"id":18648},"renderContextTable":{"__isSmartRef__":true,"id":18649},"_Extent":{"__isSmartRef__":true,"id":18650},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":18651},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18648":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18649":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18650":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18651":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18652":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"18653":{"isListItem":true,"string":"ObjectGraphLinearizer (extension)","value":{"__isSmartRef__":true,"id":18654}},"18654":{"target":{"__isSmartRef__":true,"id":6777},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18655":{"isListItem":true,"string":"CopyOnlySubmorphsPlugin","value":{"__isSmartRef__":true,"id":18656}},"18656":{"target":{"__isSmartRef__":true,"id":6781},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18657":{"isListItem":true,"string":"IgnoreEpiMorphsPlugin","value":{"__isSmartRef__":true,"id":18658}},"18658":{"target":{"__isSmartRef__":true,"id":6790},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18659":{"isListItem":true,"string":"lively.morphic.Shapes.Shape (extension)","value":{"__isSmartRef__":true,"id":18660}},"18660":{"target":{"__isSmartRef__":true,"id":6794},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18661":{"isListItem":true,"string":"lively.morphic.EventHandler (extension)","value":{"__isSmartRef__":true,"id":18662}},"18662":{"target":{"__isSmartRef__":true,"id":6797},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18663":{"isListItem":true,"string":"lively.morphic.Morph (extension)","value":{"__isSmartRef__":true,"id":18664}},"18664":{"target":{"__isSmartRef__":true,"id":6802},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18665":{"isListItem":true,"string":"lively.morphic.Text (extension)","value":{"__isSmartRef__":true,"id":18666}},"18666":{"target":{"__isSmartRef__":true,"id":6818},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18667":{"isListItem":true,"string":"lively.morphic.World (extension)","value":{"__isSmartRef__":true,"id":18668}},"18668":{"target":{"__isSmartRef__":true,"id":6825},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18669":{"isListItem":true,"string":"lively.morphic.World (extension)","value":{"__isSmartRef__":true,"id":18670}},"18670":{"target":{"__isSmartRef__":true,"id":6841},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18671":{"isListItem":true,"string":"lively.morphic.TextEditor (extension)","value":{"__isSmartRef__":true,"id":18672}},"18672":{"target":{"__isSmartRef__":true,"id":6849},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18673":{"isListItem":true,"string":"lively.morphic.Script (extension)","value":{"__isSmartRef__":true,"id":18674}},"18674":{"target":{"__isSmartRef__":true,"id":6852},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18675":{"morph":{"__isSmartRef__":true,"id":18646},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18676":{"x":205,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18677":{"sourceObj":{"__isSmartRef__":true,"id":18646},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setPane2Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":18678},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":18679},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18678":{"source":{"__isSmartRef__":true,"id":18646},"target":{"__isSmartRef__":true,"id":18298}},"18679":{"updater":{"__isSmartRef__":true,"id":18680}},"18680":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":18678},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":18681},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"18681":{},"18682":{"sourceObj":{"__isSmartRef__":true,"id":18646},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane2Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18683},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18683":{"source":{"__isSmartRef__":true,"id":18646},"target":{"__isSmartRef__":true,"id":18298}},"18684":{"sourceObj":{"__isSmartRef__":true,"id":18646},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane2Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18685},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18685":{"source":{"__isSmartRef__":true,"id":18646},"target":{"__isSmartRef__":true,"id":18298}},"18686":{"sourceObj":{"__isSmartRef__":true,"id":18646},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane2Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18687},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18687":{"source":{"__isSmartRef__":true,"id":18646},"target":{"__isSmartRef__":true,"id":18298}},"18688":{"target":{"__isSmartRef__":true,"id":6825},"browser":{"__isSmartRef__":true,"id":18298},"__LivelyClassName__":"lively.ide.CategorizedClassFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18689":{"source":{"__isSmartRef__":true,"id":18298},"target":{"__isSmartRef__":true,"id":18646}},"18690":{"sourceObj":{"__isSmartRef__":true,"id":18298},"sourceAttrName":"setPane3Content","targetObj":{"__isSmartRef__":true,"id":18691},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18715},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18691":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18692},"id":61,"renderContextTable":{"__isSmartRef__":true,"id":18697},"itemList":[{"__isSmartRef__":true,"id":18698},{"__isSmartRef__":true,"id":18700}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":18702},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18703},"selectedLineNo":0,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":18284},"attributeConnections":[{"__isSmartRef__":true,"id":18704},{"__isSmartRef__":true,"id":18709},{"__isSmartRef__":true,"id":18711},{"__isSmartRef__":true,"id":18713}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":18699},"prevScroll":[0,176],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"18692":{"_Position":{"__isSmartRef__":true,"id":18693},"renderContextTable":{"__isSmartRef__":true,"id":18694},"_Extent":{"__isSmartRef__":true,"id":18695},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":18696},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18693":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18694":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18695":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18696":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18697":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"18698":{"isListItem":true,"string":"-- all --","value":{"__isSmartRef__":true,"id":18699}},"18699":{"target":{"__isSmartRef__":true,"id":6825},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18668},"__LivelyClassName__":"lively.ide.AllMethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18700":{"isListItem":true,"string":"serialization","value":{"__isSmartRef__":true,"id":18701}},"18701":{"target":{"__isSmartRef__":true,"id":6827},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18668},"targets":[{"__isSmartRef__":true,"id":6827}],"__LivelyClassName__":"lively.ide.MethodCategoryFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18702":{"morph":{"__isSmartRef__":true,"id":18691},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18703":{"x":410,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18704":{"sourceObj":{"__isSmartRef__":true,"id":18691},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setPane3Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":18705},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":18706},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18705":{"source":{"__isSmartRef__":true,"id":18691},"target":{"__isSmartRef__":true,"id":18298}},"18706":{"updater":{"__isSmartRef__":true,"id":18707}},"18707":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":18705},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":18708},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"18708":{},"18709":{"sourceObj":{"__isSmartRef__":true,"id":18691},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane3Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18710},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18710":{"source":{"__isSmartRef__":true,"id":18691},"target":{"__isSmartRef__":true,"id":18298}},"18711":{"sourceObj":{"__isSmartRef__":true,"id":18691},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane3Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18712},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18712":{"source":{"__isSmartRef__":true,"id":18691},"target":{"__isSmartRef__":true,"id":18298}},"18713":{"sourceObj":{"__isSmartRef__":true,"id":18691},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane3Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18714},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18714":{"source":{"__isSmartRef__":true,"id":18691},"target":{"__isSmartRef__":true,"id":18298}},"18715":{"source":{"__isSmartRef__":true,"id":18298},"target":{"__isSmartRef__":true,"id":18691}},"18716":{"sourceObj":{"__isSmartRef__":true,"id":18298},"sourceAttrName":"setPane4Content","targetObj":{"__isSmartRef__":true,"id":18717},"targetMethodName":"updateList","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18763},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18717":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18718},"id":62,"renderContextTable":{"__isSmartRef__":true,"id":18723},"itemList":[{"__isSmartRef__":true,"id":18724},{"__isSmartRef__":true,"id":18726},{"__isSmartRef__":true,"id":18728},{"__isSmartRef__":true,"id":18730},{"__isSmartRef__":true,"id":18732},{"__isSmartRef__":true,"id":18734},{"__isSmartRef__":true,"id":18736},{"__isSmartRef__":true,"id":18738},{"__isSmartRef__":true,"id":18740},{"__isSmartRef__":true,"id":18742},{"__isSmartRef__":true,"id":18744},{"__isSmartRef__":true,"id":18746},{"__isSmartRef__":true,"id":18748}],"_FontFamily":"Helvetica","eventHandler":{"__isSmartRef__":true,"id":18750},"droppingEnabled":true,"halosEnabled":true,"_ClipMode":"auto","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18751},"selectedLineNo":3,"selectOnMove":false,"owner":{"__isSmartRef__":true,"id":18284},"attributeConnections":[{"__isSmartRef__":true,"id":18752},{"__isSmartRef__":true,"id":18757},{"__isSmartRef__":true,"id":18759},{"__isSmartRef__":true,"id":18761}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"selection":{"__isSmartRef__":true,"id":18731},"prevScroll":[0,16],"__LivelyClassName__":"lively.morphic.List","__SourceModuleName__":"Global.lively.morphic.Core"},"18718":{"_Position":{"__isSmartRef__":true,"id":18719},"renderContextTable":{"__isSmartRef__":true,"id":18720},"_Extent":{"__isSmartRef__":true,"id":18721},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":18722},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18719":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18720":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18721":{"x":205,"y":192.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18722":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18723":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"18724":{"isListItem":true,"string":"doNotSerialize (proto)","value":{"__isSmartRef__":true,"id":18725}},"18725":{"target":{"__isSmartRef__":true,"id":6826},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18726":{"isListItem":true,"string":"onrestore (proto)","value":{"__isSmartRef__":true,"id":18727}},"18727":{"target":{"__isSmartRef__":true,"id":6828},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18728":{"isListItem":true,"string":"interactiveSaveWorldAs (proto)","value":{"__isSmartRef__":true,"id":18729}},"18729":{"target":{"__isSmartRef__":true,"id":6829},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18730":{"isListItem":true,"string":"saveWorldAs (proto)","value":{"__isSmartRef__":true,"id":18731}},"18731":{"target":{"__isSmartRef__":true,"id":6830},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18732":{"isListItem":true,"string":"saveWorld (proto)","value":{"__isSmartRef__":true,"id":18733}},"18733":{"target":{"__isSmartRef__":true,"id":6831},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18734":{"isListItem":true,"string":"visitNewPageAfterSaveAs (proto)","value":{"__isSmartRef__":true,"id":18735}},"18735":{"target":{"__isSmartRef__":true,"id":6832},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18736":{"isListItem":true,"string":"checkIfPathExistsAndStoreDoc (proto)","value":{"__isSmartRef__":true,"id":18737}},"18737":{"target":{"__isSmartRef__":true,"id":6833},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18738":{"isListItem":true,"string":"storeDoc (proto)","value":{"__isSmartRef__":true,"id":18739}},"18739":{"target":{"__isSmartRef__":true,"id":6834},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18740":{"isListItem":true,"string":"askToOverwrite (proto)","value":{"__isSmartRef__":true,"id":18741}},"18741":{"target":{"__isSmartRef__":true,"id":6835},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18742":{"isListItem":true,"string":"handleSaveStatus (proto)","value":{"__isSmartRef__":true,"id":18743}},"18743":{"target":{"__isSmartRef__":true,"id":6836},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18744":{"isListItem":true,"string":"tryToGetWorldRevision (proto)","value":{"__isSmartRef__":true,"id":18745}},"18745":{"target":{"__isSmartRef__":true,"id":6837},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18746":{"isListItem":true,"string":"getServerRevision (proto)","value":{"__isSmartRef__":true,"id":18747}},"18747":{"target":{"__isSmartRef__":true,"id":6838},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18748":{"isListItem":true,"string":"getCurrentAndServerVersion (proto)","value":{"__isSmartRef__":true,"id":18749}},"18749":{"target":{"__isSmartRef__":true,"id":6839},"browser":{"__isSmartRef__":true,"id":18298},"parent":{"__isSmartRef__":true,"id":18699},"__LivelyClassName__":"lively.ide.ClassElemFragmentNode","__SourceModuleName__":"Global.lively.ide.SystemBrowserNodes"},"18750":{"morph":{"__isSmartRef__":true,"id":18717},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18751":{"x":615,"y":27.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18752":{"sourceObj":{"__isSmartRef__":true,"id":18717},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setPane4Selection","converter":null,"converterString":null,"updaterString":"function ($upd, v) { $upd(v, this.sourceObj) }","varMapping":{"__isSmartRef__":true,"id":18753},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":18754},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18753":{"source":{"__isSmartRef__":true,"id":18717},"target":{"__isSmartRef__":true,"id":18298}},"18754":{"updater":{"__isSmartRef__":true,"id":18755}},"18755":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":18753},"source":"function ($upd, v) { $upd(v, this.sourceObj) }","funcProperties":{"__isSmartRef__":true,"id":18756},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"18756":{},"18757":{"sourceObj":{"__isSmartRef__":true,"id":18717},"sourceAttrName":"getSelection","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane4Selection","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18758},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18758":{"source":{"__isSmartRef__":true,"id":18717},"target":{"__isSmartRef__":true,"id":18298}},"18759":{"sourceObj":{"__isSmartRef__":true,"id":18717},"sourceAttrName":"getList","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane4Content","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18760},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18760":{"source":{"__isSmartRef__":true,"id":18717},"target":{"__isSmartRef__":true,"id":18298}},"18761":{"sourceObj":{"__isSmartRef__":true,"id":18717},"sourceAttrName":"getMenu","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"getPane4Menu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18762},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18762":{"source":{"__isSmartRef__":true,"id":18717},"target":{"__isSmartRef__":true,"id":18298}},"18763":{"source":{"__isSmartRef__":true,"id":18298},"target":{"__isSmartRef__":true,"id":18717}},"18764":{"sourceObj":{"__isSmartRef__":true,"id":18298},"sourceAttrName":"setSourceString","targetObj":{"__isSmartRef__":true,"id":18765},"targetMethodName":"setTextString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18922},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18765":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18766},"id":64,"renderContextTable":{"__isSmartRef__":true,"id":18770},"textChunks":[{"__isSmartRef__":true,"id":18771},{"__isSmartRef__":true,"id":18773},{"__isSmartRef__":true,"id":18775},{"__isSmartRef__":true,"id":18777},{"__isSmartRef__":true,"id":18779},{"__isSmartRef__":true,"id":18781},{"__isSmartRef__":true,"id":18783},{"__isSmartRef__":true,"id":18785},{"__isSmartRef__":true,"id":18787},{"__isSmartRef__":true,"id":18789},{"__isSmartRef__":true,"id":18791},{"__isSmartRef__":true,"id":18793},{"__isSmartRef__":true,"id":18795},{"__isSmartRef__":true,"id":18797},{"__isSmartRef__":true,"id":18799},{"__isSmartRef__":true,"id":18801},{"__isSmartRef__":true,"id":18803},{"__isSmartRef__":true,"id":18805},{"__isSmartRef__":true,"id":18807},{"__isSmartRef__":true,"id":18809},{"__isSmartRef__":true,"id":18811},{"__isSmartRef__":true,"id":18813},{"__isSmartRef__":true,"id":18815},{"__isSmartRef__":true,"id":18817},{"__isSmartRef__":true,"id":18819},{"__isSmartRef__":true,"id":18821},{"__isSmartRef__":true,"id":18823},{"__isSmartRef__":true,"id":18825},{"__isSmartRef__":true,"id":18827},{"__isSmartRef__":true,"id":18829},{"__isSmartRef__":true,"id":18831},{"__isSmartRef__":true,"id":18833},{"__isSmartRef__":true,"id":18835},{"__isSmartRef__":true,"id":18837},{"__isSmartRef__":true,"id":18840},{"__isSmartRef__":true,"id":18842},{"__isSmartRef__":true,"id":18844},{"__isSmartRef__":true,"id":18846},{"__isSmartRef__":true,"id":18848},{"__isSmartRef__":true,"id":18850},{"__isSmartRef__":true,"id":18852},{"__isSmartRef__":true,"id":18854},{"__isSmartRef__":true,"id":18856},{"__isSmartRef__":true,"id":18858},{"__isSmartRef__":true,"id":18860},{"__isSmartRef__":true,"id":18862},{"__isSmartRef__":true,"id":18864},{"__isSmartRef__":true,"id":18866},{"__isSmartRef__":true,"id":18868},{"__isSmartRef__":true,"id":18870},{"__isSmartRef__":true,"id":18872},{"__isSmartRef__":true,"id":18874},{"__isSmartRef__":true,"id":18876},{"__isSmartRef__":true,"id":18878},{"__isSmartRef__":true,"id":18880},{"__isSmartRef__":true,"id":18882},{"__isSmartRef__":true,"id":18884},{"__isSmartRef__":true,"id":18886},{"__isSmartRef__":true,"id":18888},{"__isSmartRef__":true,"id":18890},{"__isSmartRef__":true,"id":18892},{"__isSmartRef__":true,"id":18894},{"__isSmartRef__":true,"id":18896},{"__isSmartRef__":true,"id":18898},{"__isSmartRef__":true,"id":18900},{"__isSmartRef__":true,"id":18902},{"__isSmartRef__":true,"id":18904},{"__isSmartRef__":true,"id":18906},{"__isSmartRef__":true,"id":18908},{"__isSmartRef__":true,"id":18910},{"__isSmartRef__":true,"id":18912}],"eventHandler":{"__isSmartRef__":true,"id":18914},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18915},"_ClipMode":"scroll","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Courier","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18916},"priorExtent":{"__isSmartRef__":true,"id":18917},"_MaxTextWidth":820,"_MaxTextHeight":302.5,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18284},"accessibleInInactiveWindow":true,"layout":{"__isSmartRef__":true,"id":18918},"noEval":true,"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":18919},{"__isSmartRef__":true,"id":18920}],"doNotSerialize":["$$textString","$$savedTextString"],"doNotCopyProperties":["$$textString","$$savedTextString"],"textString":" saveWorldAs: function(url, checkForOverwrites) {\n var serializer = ObjectGraphLinearizer.forNewLively(),\n doc = new Importer().getBaseDocument();\n lively.persistence.Serializer.serializeWorldToDocumentWithSerializer(this, doc, serializer);\n \n // make sure that links to bootstrap.js points to the right directory\n new DocLinkConverter(URL.codeBase, url.getDirectory()).convert(doc);\n\n // Change page title\n var titleTag = doc.getElementsByTagName('title')[0]; \n if (titleTag) titleTag.textContent = url.filename().replace('.xhtml', '');\n\n this.savedWorldAsURL = undefined;\n connect(this, 'savedWorldAsURL', this, 'visitNewPageAfterSaveAs', {\n updater: function($upd, v) { \n if (v && v.toString() !== URL.source.toString()) {\n $upd(v) \n }\n }\n })\n\n if (URL.source.eq(url))\n this.storeDoc(doc, url, checkForOverwrites);\n else\n this.checkIfPathExistsAndStoreDoc(doc, url, checkForOverwrites)\n },","lastSyntaxHighlightTime":1308937165507,"savedTextString":" storeDoc: function(doc, url, checkForOverwrites) {\n // this.alertOK('Saving to ' + url + '...');\n var webR = new WebResource(url);\n webR.createProgressBar('Saving...'/*function(progressEvt) {}*/);\n connect(webR, 'status', this, 'handleSaveStatus');\n webR.beAsync().put(doc, null, checkForOverwrites ? this.revisionOnLoad : null);\n },","styleClass":["Browser_codePaneText"],"focusHaloBorderWidth":0.5,"priorSelectionRange":[104,104],"charsReplaced":" this.alertOK('Saving to ' + url + '...');","lastFindLoc":107,"lastSearchString":"text","prevScroll":[0,378],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18766":{"_Position":{"__isSmartRef__":true,"id":18767},"renderContextTable":{"__isSmartRef__":true,"id":18768},"_Extent":{"__isSmartRef__":true,"id":18769},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":229},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18767":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18768":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18769":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18770":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18771":{"style":{"__isSmartRef__":true,"id":18772},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18772":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18773":{"style":{"__isSmartRef__":true,"id":18774},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"saveWorldAs:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18774":{"color":{"__isSmartRef__":true,"id":2789},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18775":{"style":{"__isSmartRef__":true,"id":18776},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18776":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18777":{"style":{"__isSmartRef__":true,"id":18778},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18778":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18779":{"style":{"__isSmartRef__":true,"id":18780},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"(url, checkForOverwrites) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18780":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18781":{"style":{"__isSmartRef__":true,"id":18782},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18782":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18783":{"style":{"__isSmartRef__":true,"id":18784},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18784":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18785":{"style":{"__isSmartRef__":true,"id":18786},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18786":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18787":{"style":{"__isSmartRef__":true,"id":18788},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" serializer = ObjectGraphLinearizer.forNewLively(),\n doc = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18788":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18789":{"style":{"__isSmartRef__":true,"id":18790},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"new","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18790":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18791":{"style":{"__isSmartRef__":true,"id":18792},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" Importer().getBaseDocument();\n lively.persistence.Serializer.serializeWorldToDocumentWithSerializer(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18792":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18793":{"style":{"__isSmartRef__":true,"id":18794},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18794":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18795":{"style":{"__isSmartRef__":true,"id":18796},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":", doc, serializer);\n \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18796":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18797":{"style":{"__isSmartRef__":true,"id":18798},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"// make sure that links to bootstrap.js points to the right directory","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18798":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18799":{"style":{"__isSmartRef__":true,"id":18800},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18800":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18801":{"style":{"__isSmartRef__":true,"id":18802},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"new","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18802":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18803":{"style":{"__isSmartRef__":true,"id":18804},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" DocLinkConverter(URL.codeBase, url.getDirectory()).convert(doc);\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18804":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18805":{"style":{"__isSmartRef__":true,"id":18806},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"// Change page title","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18806":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18807":{"style":{"__isSmartRef__":true,"id":18808},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18808":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18809":{"style":{"__isSmartRef__":true,"id":18810},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18810":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18811":{"style":{"__isSmartRef__":true,"id":18812},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" titleTag = doc.getElementsByTagName(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18812":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18813":{"style":{"__isSmartRef__":true,"id":18814},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"'title'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18814":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18815":{"style":{"__isSmartRef__":true,"id":18816},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":")[","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18816":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18817":{"style":{"__isSmartRef__":true,"id":18818},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18818":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18819":{"style":{"__isSmartRef__":true,"id":18820},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"]; \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18820":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18821":{"style":{"__isSmartRef__":true,"id":18822},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18822":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18823":{"style":{"__isSmartRef__":true,"id":18824},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" (titleTag) titleTag.textContent = url.filename().replace(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18824":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18825":{"style":{"__isSmartRef__":true,"id":18826},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"'.xhtml'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18826":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18827":{"style":{"__isSmartRef__":true,"id":18828},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18828":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18829":{"style":{"__isSmartRef__":true,"id":18830},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"''","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18830":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18831":{"style":{"__isSmartRef__":true,"id":18832},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":");\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18832":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18833":{"style":{"__isSmartRef__":true,"id":18834},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18834":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18835":{"style":{"__isSmartRef__":true,"id":18836},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":".savedWorldAsURL = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18836":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18837":{"style":{"__isSmartRef__":true,"id":18838},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"undefined","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18838":{"color":{"__isSmartRef__":true,"id":18839},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18839":{"r":0.5019607843137255,"g":0,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18840":{"style":{"__isSmartRef__":true,"id":18841},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":";\n connect(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18841":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18842":{"style":{"__isSmartRef__":true,"id":18843},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18843":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18844":{"style":{"__isSmartRef__":true,"id":18845},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18845":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18846":{"style":{"__isSmartRef__":true,"id":18847},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"'savedWorldAsURL'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18847":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18848":{"style":{"__isSmartRef__":true,"id":18849},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18849":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18850":{"style":{"__isSmartRef__":true,"id":18851},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18851":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18852":{"style":{"__isSmartRef__":true,"id":18853},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18853":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18854":{"style":{"__isSmartRef__":true,"id":18855},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"'visitNewPageAfterSaveAs'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18855":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18856":{"style":{"__isSmartRef__":true,"id":18857},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18857":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18858":{"style":{"__isSmartRef__":true,"id":18859},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18859":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18860":{"style":{"__isSmartRef__":true,"id":18861},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18861":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18862":{"style":{"__isSmartRef__":true,"id":18863},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"updater:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18863":{"color":{"__isSmartRef__":true,"id":2789},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18864":{"style":{"__isSmartRef__":true,"id":18865},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18865":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18866":{"style":{"__isSmartRef__":true,"id":18867},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18867":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18868":{"style":{"__isSmartRef__":true,"id":18869},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"($upd, v) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18869":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18870":{"style":{"__isSmartRef__":true,"id":18871},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18871":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18872":{"style":{"__isSmartRef__":true,"id":18873},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18873":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18874":{"style":{"__isSmartRef__":true,"id":18875},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18875":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18876":{"style":{"__isSmartRef__":true,"id":18877},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" (v && v.toString() !== URL.source.toString()) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18877":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18878":{"style":{"__isSmartRef__":true,"id":18879},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18879":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18880":{"style":{"__isSmartRef__":true,"id":18881},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n $upd(v) \n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18881":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18882":{"style":{"__isSmartRef__":true,"id":18883},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18883":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18884":{"style":{"__isSmartRef__":true,"id":18885},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18885":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18886":{"style":{"__isSmartRef__":true,"id":18887},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18887":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18888":{"style":{"__isSmartRef__":true,"id":18889},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18889":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18890":{"style":{"__isSmartRef__":true,"id":18891},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18891":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18892":{"style":{"__isSmartRef__":true,"id":18893},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":")\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18893":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18894":{"style":{"__isSmartRef__":true,"id":18895},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18895":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18896":{"style":{"__isSmartRef__":true,"id":18897},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":" (URL.source.eq(url))\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18897":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18898":{"style":{"__isSmartRef__":true,"id":18899},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18899":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18900":{"style":{"__isSmartRef__":true,"id":18901},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":".storeDoc(doc, url, checkForOverwrites);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18901":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18902":{"style":{"__isSmartRef__":true,"id":18903},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18903":{"color":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18904":{"style":{"__isSmartRef__":true,"id":18905},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18905":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18906":{"style":{"__isSmartRef__":true,"id":18907},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18907":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18908":{"style":{"__isSmartRef__":true,"id":18909},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":".checkIfPathExistsAndStoreDoc(doc, url, checkForOverwrites)\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18909":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18910":{"style":{"__isSmartRef__":true,"id":18911},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18911":{"color":{"__isSmartRef__":true,"id":86},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18912":{"style":{"__isSmartRef__":true,"id":18913},"chunkOwner":{"__isSmartRef__":true,"id":18765},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18913":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18914":{"morph":{"__isSmartRef__":true,"id":18765},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18915":{"x":5,"y":5,"width":-10,"height":-10,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18916":{"x":0,"y":247.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18917":{"x":820,"y":302.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18918":{"resizeWidth":true,"resizeHeight":true},"18919":{"sourceObj":{"__isSmartRef__":true,"id":18765},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":18765},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18920":{"sourceObj":{"__isSmartRef__":true,"id":18765},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setSourceString","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18921},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18921":{"source":{"__isSmartRef__":true,"id":18765},"target":{"__isSmartRef__":true,"id":18298}},"18922":{"source":{"__isSmartRef__":true,"id":18298},"target":{"__isSmartRef__":true,"id":18765}},"18923":{"sourceObj":{"__isSmartRef__":true,"id":18298},"sourceAttrName":"targetURL","targetObj":{"__isSmartRef__":true,"id":18285},"targetMethodName":"setTextString","converter":null,"converterString":null,"updaterString":"function ($upd, value) { value && $upd(String(value)) }","varMapping":{"__isSmartRef__":true,"id":18924},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":18925},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18924":{"source":{"__isSmartRef__":true,"id":18298},"target":{"__isSmartRef__":true,"id":18285}},"18925":{"updater":{"__isSmartRef__":true,"id":18926}},"18926":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":18924},"source":"function ($upd, value) { value && $upd(String(value)) }","funcProperties":{"__isSmartRef__":true,"id":18927},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"18927":{},"18928":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/lively/morphic/","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"18929":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18930},"id":320,"renderContextTable":{"__isSmartRef__":true,"id":18935},"textChunks":[{"__isSmartRef__":true,"id":18936}],"eventHandler":{"__isSmartRef__":true,"id":18938},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":3317},"_ClipMode":"visible","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18939},"priorExtent":{"__isSmartRef__":true,"id":18940},"_MaxTextWidth":300,"_MaxTextHeight":30,"evalEnabled":false,"owner":null,"_TextColor":{"__isSmartRef__":true,"id":8264},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18930":{"_Position":{"__isSmartRef__":true,"id":18931},"renderContextTable":{"__isSmartRef__":true,"id":18932},"_Extent":{"__isSmartRef__":true,"id":18933},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":{"__isSmartRef__":true,"id":18934},"_StrokeOpacity":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18931":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18932":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18933":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18934":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18935":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18936":{"style":{"__isSmartRef__":true,"id":18937},"chunkOwner":{"__isSmartRef__":true,"id":18929},"storedString":"Saving storeDoc...\nSuccessfully saved\nSuccessfully evaluated storeDoc","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18937":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18938":{"morph":{"__isSmartRef__":true,"id":18929},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18939":{"x":260,"y":136.25,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18940":{"x":300,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18941":{"source":{"__isSmartRef__":true,"id":18285},"target":{"__isSmartRef__":true,"id":18298}},"18942":{"submorphs":[{"__isSmartRef__":true,"id":18943}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18955},"id":55,"renderContextTable":{"__isSmartRef__":true,"id":18959},"eventHandler":{"__isSmartRef__":true,"id":18960},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18961},"priorExtent":{"__isSmartRef__":true,"id":18962},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18963},"label":{"__isSmartRef__":true,"id":18943},"owner":{"__isSmartRef__":true,"id":18284},"attributeConnections":[{"__isSmartRef__":true,"id":18972}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":18974},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18943":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18944},"id":56,"renderContextTable":{"__isSmartRef__":true,"id":18948},"textChunks":[{"__isSmartRef__":true,"id":18949}],"eventHandler":{"__isSmartRef__":true,"id":18951},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18952},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18953},"priorExtent":{"__isSmartRef__":true,"id":18954},"_MaxTextWidth":98.39999999999999,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18942},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18944":{"_Position":{"__isSmartRef__":true,"id":18945},"renderContextTable":{"__isSmartRef__":true,"id":18946},"_Extent":{"__isSmartRef__":true,"id":18947},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18945":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18946":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18947":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18948":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18949":{"style":{"__isSmartRef__":true,"id":18950},"chunkOwner":{"__isSmartRef__":true,"id":18943},"storedString":"codebase","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18950":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18951":{"morph":{"__isSmartRef__":true,"id":18943},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18952":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18953":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18954":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18955":{"_Position":{"__isSmartRef__":true,"id":18956},"renderContextTable":{"__isSmartRef__":true,"id":18957},"_Extent":{"__isSmartRef__":true,"id":18958},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18956":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18957":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18958":{"x":98.39999999999999,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18959":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18960":{"morph":{"__isSmartRef__":true,"id":18942},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18961":{"x":656,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18962":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18963":{"stops":[{"__isSmartRef__":true,"id":18964},{"__isSmartRef__":true,"id":18966},{"__isSmartRef__":true,"id":18968},{"__isSmartRef__":true,"id":18970}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18964":{"offset":0,"color":{"__isSmartRef__":true,"id":18965}},"18965":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18966":{"offset":0.4,"color":{"__isSmartRef__":true,"id":18967}},"18967":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18968":{"offset":0.6,"color":{"__isSmartRef__":true,"id":18969}},"18969":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18970":{"offset":1,"color":{"__isSmartRef__":true,"id":18971}},"18971":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18972":{"sourceObj":{"__isSmartRef__":true,"id":18942},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.codeBase.withFilename('lively/')}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":18973},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"18973":{"source":{"__isSmartRef__":true,"id":18942},"target":{"__isSmartRef__":true,"id":18298}},"18974":{"moveHorizontal":true},"18975":{"submorphs":[{"__isSmartRef__":true,"id":18976}],"scripts":[],"shape":{"__isSmartRef__":true,"id":18988},"id":57,"renderContextTable":{"__isSmartRef__":true,"id":18992},"eventHandler":{"__isSmartRef__":true,"id":18993},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":18994},"priorExtent":{"__isSmartRef__":true,"id":18995},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":4425},"lighterFill":{"__isSmartRef__":true,"id":18996},"label":{"__isSmartRef__":true,"id":18976},"owner":{"__isSmartRef__":true,"id":18284},"attributeConnections":[{"__isSmartRef__":true,"id":19005}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"layout":{"__isSmartRef__":true,"id":19007},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"18976":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":18977},"id":58,"renderContextTable":{"__isSmartRef__":true,"id":18981},"textChunks":[{"__isSmartRef__":true,"id":18982}],"eventHandler":{"__isSmartRef__":true,"id":18984},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":18985},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":18986},"priorExtent":{"__isSmartRef__":true,"id":18987},"_MaxTextWidth":65.6,"_MaxTextHeight":22,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":18975},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18977":{"_Position":{"__isSmartRef__":true,"id":18978},"renderContextTable":{"__isSmartRef__":true,"id":18979},"_Extent":{"__isSmartRef__":true,"id":18980},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":3306},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18978":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18979":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18980":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18981":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"18982":{"style":{"__isSmartRef__":true,"id":18983},"chunkOwner":{"__isSmartRef__":true,"id":18976},"storedString":"local","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18983":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18984":{"morph":{"__isSmartRef__":true,"id":18976},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18985":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"18986":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18987":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18988":{"_Position":{"__isSmartRef__":true,"id":18989},"renderContextTable":{"__isSmartRef__":true,"id":18990},"_Extent":{"__isSmartRef__":true,"id":18991},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":4424},"_Fill":{"__isSmartRef__":true,"id":4425},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18989":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18990":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"18991":{"x":65.6,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18992":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"18993":{"morph":{"__isSmartRef__":true,"id":18975},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"18994":{"x":754.4,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18995":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"18996":{"stops":[{"__isSmartRef__":true,"id":18997},{"__isSmartRef__":true,"id":18999},{"__isSmartRef__":true,"id":19001},{"__isSmartRef__":true,"id":19003}],"vector":{"__isSmartRef__":true,"id":232},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"18997":{"offset":0,"color":{"__isSmartRef__":true,"id":18998}},"18998":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"18999":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19000}},"19000":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19001":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19002}},"19002":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19003":{"offset":1,"color":{"__isSmartRef__":true,"id":19004}},"19004":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19005":{"sourceObj":{"__isSmartRef__":true,"id":18975},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":18298},"targetMethodName":"setTargetURL","converter":null,"converterString":"function () { return URL.source.getDirectory() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19006},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"19006":{"source":{"__isSmartRef__":true,"id":18975},"target":{"__isSmartRef__":true,"id":18298}},"19007":{"moveHorizontal":true},"19008":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19009},"id":63,"renderContextTable":{"__isSmartRef__":true,"id":19013},"eventHandler":{"__isSmartRef__":true,"id":19014},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"_Position":{"__isSmartRef__":true,"id":19015},"fixed":[{"__isSmartRef__":true,"id":18300},{"__isSmartRef__":true,"id":18334},{"__isSmartRef__":true,"id":18371},{"__isSmartRef__":true,"id":18405},{"__isSmartRef__":true,"id":18439},{"__isSmartRef__":true,"id":18473},{"__isSmartRef__":true,"id":18507}],"scalingBelow":[{"__isSmartRef__":true,"id":18765}],"scalingAbove":[{"__isSmartRef__":true,"id":18547},{"__isSmartRef__":true,"id":18646},{"__isSmartRef__":true,"id":18691},{"__isSmartRef__":true,"id":18717}],"minHeight":20,"pointerConnection":null,"owner":{"__isSmartRef__":true,"id":18284},"styleClass":["Browser_resizer"],"__LivelyClassName__":"lively.morphic.HorizontalDivider","__SourceModuleName__":"Global.lively.morphic.Widgets"},"19009":{"_Position":{"__isSmartRef__":true,"id":19010},"renderContextTable":{"__isSmartRef__":true,"id":19011},"_Extent":{"__isSmartRef__":true,"id":19012},"_Fill":{"__isSmartRef__":true,"id":8337},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"19010":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19011":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19012":{"x":820,"y":5.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19013":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19014":{"morph":{"__isSmartRef__":true,"id":19008},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"19015":{"x":0,"y":242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19016":{"_Position":{"__isSmartRef__":true,"id":19017},"renderContextTable":{"__isSmartRef__":true,"id":19018},"_Extent":{"__isSmartRef__":true,"id":19019},"_Fill":{"__isSmartRef__":true,"id":19020},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"19017":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19018":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19019":{"x":820,"y":550,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19020":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19021":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19022":{"morph":{"__isSmartRef__":true,"id":18284},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"19023":{"adjustForNewBounds":true,"resizeWidth":true,"resizeHeight":true},"19024":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19025":{"renderContextTable":{"__isSmartRef__":true,"id":19026},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":19027},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19026":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19027":{"x":820,"y":572,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19028":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19029":{"morph":{"__isSmartRef__":true,"id":18160},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19030":{"adjustForNewBounds":true},"19031":{"x":168.5,"y":889.5,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19032":{"x":820,"y":572,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19033":{"x":819,"y":904,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19034":{"submorphs":[{"__isSmartRef__":true,"id":19035},{"__isSmartRef__":true,"id":19081}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19204},"id":81,"renderContextTable":{"__isSmartRef__":true,"id":19207},"eventHandler":{"__isSmartRef__":true,"id":19208},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":19209},"LK2":true,"_Position":{"__isSmartRef__":true,"id":19210},"priorExtent":{"__isSmartRef__":true,"id":19211},"targetMorph":{"__isSmartRef__":true,"id":19035},"titleBar":{"__isSmartRef__":true,"id":19081},"contentOffset":{"__isSmartRef__":true,"id":19077},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":{"__isSmartRef__":true,"id":0},"prevDragPos":{"__isSmartRef__":true,"id":19212},"highlighted":true,"_Rotation":0,"_Scale":1,"__SourceModuleName__":"Global.lively.morphic.Widgets","showsHalos":false,"__LivelyClassName__":"lively.morphic.Window"},"19035":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19036},"id":80,"renderContextTable":{"__isSmartRef__":true,"id":19041},"textChunks":[{"__isSmartRef__":true,"id":19042},{"__isSmartRef__":true,"id":19044},{"__isSmartRef__":true,"id":19046},{"__isSmartRef__":true,"id":19048},{"__isSmartRef__":true,"id":19050},{"__isSmartRef__":true,"id":19052},{"__isSmartRef__":true,"id":19054},{"__isSmartRef__":true,"id":19056},{"__isSmartRef__":true,"id":19058},{"__isSmartRef__":true,"id":19060},{"__isSmartRef__":true,"id":19062},{"__isSmartRef__":true,"id":19064},{"__isSmartRef__":true,"id":19066},{"__isSmartRef__":true,"id":19068},{"__isSmartRef__":true,"id":19070},{"__isSmartRef__":true,"id":19072},{"__isSmartRef__":true,"id":19074}],"eventHandler":{"__isSmartRef__":true,"id":19076},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":925},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":19077},"priorExtent":{"__isSmartRef__":true,"id":19078},"_MaxTextWidth":768,"_MaxTextHeight":305,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19034},"layout":{"__isSmartRef__":true,"id":19079},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":19080}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"lastSyntaxHighlightTime":1309010390227,"accessibleInInactiveWindow":true,"priorSelectionRange":[171,171],"charsReplaced":"","lastFindLoc":284,"prevScroll":[0,0],"__SourceModuleName__":"Global.lively.morphic.TextCore","textString":"p = new lively.morphic.ProgressBar()\np.openInWorld()\np.align(p.bounds().bottomLeft(), this.owner.bounds().topLeft())\np.setValue(0.5)\np.setLabel('test')\n\np.labelBlack.fit()\nnewShowMorph(p.labelBlack)\np.labelBlack.fit()\nadjustForNewBounds\n\np = this.world().addProgressBar(null, 'test')\nthis.world().addStatusMessageMorph(p)\np.setValue(0.1)\np.remove()\n","__LivelyClassName__":"lively.morphic.Text"},"19036":{"_Position":{"__isSmartRef__":true,"id":19037},"renderContextTable":{"__isSmartRef__":true,"id":19038},"_Extent":{"__isSmartRef__":true,"id":19039},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":{"__isSmartRef__":true,"id":19040},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19037":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19038":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19039":{"x":768,"y":305,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19040":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19041":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19042":{"style":{"__isSmartRef__":true,"id":19043},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"p = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19043":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19044":{"style":{"__isSmartRef__":true,"id":19045},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"new","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19045":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19046":{"style":{"__isSmartRef__":true,"id":19047},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":" lively.morphic.ProgressBar()\np.openInWorld()\np.align(p.bounds().bottomLeft(), ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19047":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19048":{"style":{"__isSmartRef__":true,"id":19049},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19049":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19050":{"style":{"__isSmartRef__":true,"id":19051},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":".owner.bounds().topLeft())\np.setValue(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19051":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19052":{"style":{"__isSmartRef__":true,"id":19053},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"0.5","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19053":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19054":{"style":{"__isSmartRef__":true,"id":19055},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":")\np.setLabel(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19055":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19056":{"style":{"__isSmartRef__":true,"id":19057},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"'test'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19057":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19058":{"style":{"__isSmartRef__":true,"id":19059},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":")\n\np.labelBlack.fit()\nnewShowMorph(p.labelBlack)\np.labelBlack.fit()\nadjustForNewBounds\n\np = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19059":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19060":{"style":{"__isSmartRef__":true,"id":19061},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19061":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19062":{"style":{"__isSmartRef__":true,"id":19063},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":".world().addProgressBar(null, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19063":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19064":{"style":{"__isSmartRef__":true,"id":19065},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"'test'","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19065":{"color":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19066":{"style":{"__isSmartRef__":true,"id":19067},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":")\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19067":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19068":{"style":{"__isSmartRef__":true,"id":19069},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19069":{"color":{"__isSmartRef__":true,"id":78},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19070":{"style":{"__isSmartRef__":true,"id":19071},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":".world().addStatusMessageMorph(p)\np.setValue(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19071":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19072":{"style":{"__isSmartRef__":true,"id":19073},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":"0.1","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19073":{"color":{"__isSmartRef__":true,"id":713},"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19074":{"style":{"__isSmartRef__":true,"id":19075},"chunkOwner":{"__isSmartRef__":true,"id":19035},"storedString":")\np.remove()\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19075":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19076":{"morph":{"__isSmartRef__":true,"id":19035},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19077":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19078":{"x":768,"y":305,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19079":{"resizeWidth":true,"resizeHeight":true},"19080":{"sourceObj":{"__isSmartRef__":true,"id":19035},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":19035},"targetMethodName":"highlightJavaScriptSyntax","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19081":{"submorphs":[{"__isSmartRef__":true,"id":19082},{"__isSmartRef__":true,"id":19094},{"__isSmartRef__":true,"id":19128},{"__isSmartRef__":true,"id":19161}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19195},"id":82,"renderContextTable":{"__isSmartRef__":true,"id":19199},"eventHandler":{"__isSmartRef__":true,"id":19200},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":19201},"_Position":{"__isSmartRef__":true,"id":19202},"windowMorph":{"__isSmartRef__":true,"id":19034},"label":{"__isSmartRef__":true,"id":19082},"closeButton":{"__isSmartRef__":true,"id":19094},"menuButton":{"__isSmartRef__":true,"id":19128},"collapseButton":{"__isSmartRef__":true,"id":19161},"priorExtent":{"__isSmartRef__":true,"id":19203},"owner":{"__isSmartRef__":true,"id":19034},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"19082":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19083},"id":83,"renderContextTable":{"__isSmartRef__":true,"id":19087},"textChunks":[{"__isSmartRef__":true,"id":19088}],"eventHandler":{"__isSmartRef__":true,"id":19090},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":968},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":19091},"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":19081},"priorExtent":{"__isSmartRef__":true,"id":19092},"_MaxTextWidth":709,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":19093},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19083":{"_Position":{"__isSmartRef__":true,"id":19084},"renderContextTable":{"__isSmartRef__":true,"id":19085},"_Extent":{"__isSmartRef__":true,"id":19086},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19084":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19085":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19086":{"x":709,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19087":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19088":{"style":{"__isSmartRef__":true,"id":19089},"chunkOwner":{"__isSmartRef__":true,"id":19082},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Workspace","__LivelyClassName__":"lively.morphic.TextChunk"},"19089":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19090":{"morph":{"__isSmartRef__":true,"id":19082},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19091":{"resizeWidth":true},"19092":{"x":709,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19093":{"x":20,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19094":{"submorphs":[{"__isSmartRef__":true,"id":19095}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19106},"id":84,"renderContextTable":{"__isSmartRef__":true,"id":19110},"eventHandler":{"__isSmartRef__":true,"id":19111},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19112},"priorExtent":{"__isSmartRef__":true,"id":19113},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":990},"lighterFill":{"__isSmartRef__":true,"id":19114},"label":{"__isSmartRef__":true,"id":19095},"owner":{"__isSmartRef__":true,"id":19081},"layout":{"__isSmartRef__":true,"id":19123},"attributeConnections":[{"__isSmartRef__":true,"id":19124},{"__isSmartRef__":true,"id":19126}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19095":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19096},"id":85,"renderContextTable":{"__isSmartRef__":true,"id":19100},"textChunks":[{"__isSmartRef__":true,"id":19101}],"eventHandler":{"__isSmartRef__":true,"id":19103},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":982},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":19104},"priorExtent":{"__isSmartRef__":true,"id":19105},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19094},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19096":{"_Position":{"__isSmartRef__":true,"id":19097},"renderContextTable":{"__isSmartRef__":true,"id":19098},"_Extent":{"__isSmartRef__":true,"id":19099},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19097":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19098":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19099":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19100":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19101":{"style":{"__isSmartRef__":true,"id":19102},"chunkOwner":{"__isSmartRef__":true,"id":19095},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"19102":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19103":{"morph":{"__isSmartRef__":true,"id":19095},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19104":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19105":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19106":{"_Position":{"__isSmartRef__":true,"id":19107},"renderContextTable":{"__isSmartRef__":true,"id":19108},"_Extent":{"__isSmartRef__":true,"id":19109},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":989},"_Fill":{"__isSmartRef__":true,"id":990},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19107":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19108":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19109":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19110":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19111":{"morph":{"__isSmartRef__":true,"id":19094},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19112":{"x":748,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19113":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19114":{"stops":[{"__isSmartRef__":true,"id":19115},{"__isSmartRef__":true,"id":19117},{"__isSmartRef__":true,"id":19119},{"__isSmartRef__":true,"id":19121}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19115":{"offset":0,"color":{"__isSmartRef__":true,"id":19116}},"19116":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19117":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19118}},"19118":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19119":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19120}},"19120":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19121":{"offset":1,"color":{"__isSmartRef__":true,"id":19122}},"19122":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19123":{"moveHorizontal":true},"19124":{"sourceObj":{"__isSmartRef__":true,"id":19094},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19034},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19125},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19125":{"source":{"__isSmartRef__":true,"id":19094},"target":{"__isSmartRef__":true,"id":19034}},"19126":{"sourceObj":{"__isSmartRef__":true,"id":19094},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19034},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19127},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19127":{"source":{"__isSmartRef__":true,"id":19094},"target":{"__isSmartRef__":true,"id":19034}},"19128":{"submorphs":[{"__isSmartRef__":true,"id":19129}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19140},"id":86,"renderContextTable":{"__isSmartRef__":true,"id":19144},"eventHandler":{"__isSmartRef__":true,"id":19145},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19146},"priorExtent":{"__isSmartRef__":true,"id":19147},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":990},"lighterFill":{"__isSmartRef__":true,"id":19148},"label":{"__isSmartRef__":true,"id":19129},"owner":{"__isSmartRef__":true,"id":19081},"attributeConnections":[{"__isSmartRef__":true,"id":19157},{"__isSmartRef__":true,"id":19159}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19129":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19130},"id":87,"renderContextTable":{"__isSmartRef__":true,"id":19134},"textChunks":[{"__isSmartRef__":true,"id":19135}],"eventHandler":{"__isSmartRef__":true,"id":19137},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":982},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":19138},"priorExtent":{"__isSmartRef__":true,"id":19139},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19128},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19130":{"_Position":{"__isSmartRef__":true,"id":19131},"renderContextTable":{"__isSmartRef__":true,"id":19132},"_Extent":{"__isSmartRef__":true,"id":19133},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19131":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19132":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19133":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19134":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19135":{"style":{"__isSmartRef__":true,"id":19136},"chunkOwner":{"__isSmartRef__":true,"id":19129},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"19136":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19137":{"morph":{"__isSmartRef__":true,"id":19129},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19138":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19139":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19140":{"_Position":{"__isSmartRef__":true,"id":19141},"renderContextTable":{"__isSmartRef__":true,"id":19142},"_Extent":{"__isSmartRef__":true,"id":19143},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":989},"_Fill":{"__isSmartRef__":true,"id":990},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19141":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19142":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19143":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19144":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19145":{"morph":{"__isSmartRef__":true,"id":19128},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19146":{"x":3,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19147":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19148":{"stops":[{"__isSmartRef__":true,"id":19149},{"__isSmartRef__":true,"id":19151},{"__isSmartRef__":true,"id":19153},{"__isSmartRef__":true,"id":19155}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19149":{"offset":0,"color":{"__isSmartRef__":true,"id":19150}},"19150":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19151":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19152}},"19152":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19153":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19154}},"19154":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19155":{"offset":1,"color":{"__isSmartRef__":true,"id":19156}},"19156":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19157":{"sourceObj":{"__isSmartRef__":true,"id":19128},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19034},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19158},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19158":{"source":{"__isSmartRef__":true,"id":19128},"target":{"__isSmartRef__":true,"id":19034}},"19159":{"sourceObj":{"__isSmartRef__":true,"id":19128},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19034},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19160},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19160":{"source":{"__isSmartRef__":true,"id":19128},"target":{"__isSmartRef__":true,"id":19034}},"19161":{"submorphs":[{"__isSmartRef__":true,"id":19162}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19173},"id":88,"renderContextTable":{"__isSmartRef__":true,"id":19177},"eventHandler":{"__isSmartRef__":true,"id":19178},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19179},"priorExtent":{"__isSmartRef__":true,"id":19180},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":990},"lighterFill":{"__isSmartRef__":true,"id":19181},"label":{"__isSmartRef__":true,"id":19162},"owner":{"__isSmartRef__":true,"id":19081},"layout":{"__isSmartRef__":true,"id":19190},"attributeConnections":[{"__isSmartRef__":true,"id":19191},{"__isSmartRef__":true,"id":19193}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19162":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19163},"id":89,"renderContextTable":{"__isSmartRef__":true,"id":19167},"textChunks":[{"__isSmartRef__":true,"id":19168}],"eventHandler":{"__isSmartRef__":true,"id":19170},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":982},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"_Position":{"__isSmartRef__":true,"id":19171},"priorExtent":{"__isSmartRef__":true,"id":19172},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19161},"isLabel":true,"_HandStyle":"default","_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19163":{"_Position":{"__isSmartRef__":true,"id":19164},"renderContextTable":{"__isSmartRef__":true,"id":19165},"_Extent":{"__isSmartRef__":true,"id":19166},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":917},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19164":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19165":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19166":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19167":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19168":{"style":{"__isSmartRef__":true,"id":19169},"chunkOwner":{"__isSmartRef__":true,"id":19162},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"19169":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19170":{"morph":{"__isSmartRef__":true,"id":19162},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19171":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19172":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19173":{"_Position":{"__isSmartRef__":true,"id":19174},"renderContextTable":{"__isSmartRef__":true,"id":19175},"_Extent":{"__isSmartRef__":true,"id":19176},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":989},"_Fill":{"__isSmartRef__":true,"id":990},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19174":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19175":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19176":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19177":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19178":{"morph":{"__isSmartRef__":true,"id":19161},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19179":{"x":729,"y":3,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19180":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19181":{"stops":[{"__isSmartRef__":true,"id":19182},{"__isSmartRef__":true,"id":19184},{"__isSmartRef__":true,"id":19186},{"__isSmartRef__":true,"id":19188}],"vector":{"__isSmartRef__":true,"id":941},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19182":{"offset":0,"color":{"__isSmartRef__":true,"id":19183}},"19183":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19184":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19185}},"19185":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19186":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19187}},"19187":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19188":{"offset":1,"color":{"__isSmartRef__":true,"id":19189}},"19189":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19190":{"moveHorizontal":true},"19191":{"sourceObj":{"__isSmartRef__":true,"id":19161},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19034},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19192},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19192":{"source":{"__isSmartRef__":true,"id":19161},"target":{"__isSmartRef__":true,"id":19034}},"19193":{"sourceObj":{"__isSmartRef__":true,"id":19161},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19034},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19194},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19194":{"source":{"__isSmartRef__":true,"id":19161},"target":{"__isSmartRef__":true,"id":19034}},"19195":{"_Position":{"__isSmartRef__":true,"id":19196},"renderContextTable":{"__isSmartRef__":true,"id":19197},"_Extent":{"__isSmartRef__":true,"id":19198},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1088},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19196":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19197":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19198":{"x":768,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19199":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19200":{"morph":{"__isSmartRef__":true,"id":19081},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19201":{"resizeWidth":true,"adjustForNewBounds":true},"19202":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19203":{"x":768,"y":22,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19204":{"renderContextTable":{"__isSmartRef__":true,"id":19205},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":19206},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19205":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19206":{"x":768,"y":327,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19207":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19208":{"morph":{"__isSmartRef__":true,"id":19034},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19209":{"adjustForNewBounds":true},"19210":{"x":1095,"y":904,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19211":{"x":768,"y":327,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19212":{"x":1449,"y":916,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19213":{"submorphs":[{"__isSmartRef__":true,"id":19214},{"__isSmartRef__":true,"id":19352}],"scripts":[],"shape":{"__isSmartRef__":true,"id":20416},"id":126,"renderContextTable":{"__isSmartRef__":true,"id":20420},"eventHandler":{"__isSmartRef__":true,"id":20421},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":20422},"LK2":true,"_Position":{"__isSmartRef__":true,"id":20423},"priorExtent":{"__isSmartRef__":true,"id":20424},"targetMorph":{"__isSmartRef__":true,"id":19352},"titleBar":{"__isSmartRef__":true,"id":19214},"contentOffset":{"__isSmartRef__":true,"id":20355},"collapsedTransform":{"__isSmartRef__":true,"id":20425},"collapsedExtent":{"__isSmartRef__":true,"id":20426},"expandedTransform":{"__isSmartRef__":true,"id":20427},"expandedExtent":{"__isSmartRef__":true,"id":20428},"ignoreEventsOnExpand":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":20429},"name":"ObjectEditor","prevDragPos":{"__isSmartRef__":true,"id":20430},"highlighted":true,"_Scale":1,"cameForward":false,"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","expandedPosition":{"__isSmartRef__":true,"id":20431},"state":"expanded","collapsedPosition":{"__isSmartRef__":true,"id":20432},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":20433},"__LivelyClassName__":"lively.morphic.Window"},"19214":{"submorphs":[{"__isSmartRef__":true,"id":19215},{"__isSmartRef__":true,"id":19229},{"__isSmartRef__":true,"id":19275},{"__isSmartRef__":true,"id":19308}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19342},"id":127,"renderContextTable":{"__isSmartRef__":true,"id":19347},"eventHandler":{"__isSmartRef__":true,"id":19348},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":19349},"_Position":{"__isSmartRef__":true,"id":19350},"windowMorph":{"__isSmartRef__":true,"id":19213},"label":{"__isSmartRef__":true,"id":19215},"closeButton":{"__isSmartRef__":true,"id":19229},"menuButton":{"__isSmartRef__":true,"id":19275},"collapseButton":{"__isSmartRef__":true,"id":19308},"priorExtent":{"__isSmartRef__":true,"id":19351},"owner":{"__isSmartRef__":true,"id":19213},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.TitleBar"},"19215":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19216},"id":128,"renderContextTable":{"__isSmartRef__":true,"id":19221},"textChunks":[{"__isSmartRef__":true,"id":19222}],"eventHandler":{"__isSmartRef__":true,"id":19224},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19225},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":19226},"_FontSize":10,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":19214},"priorExtent":{"__isSmartRef__":true,"id":19227},"_MaxTextWidth":586.8038277511961,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":19228},"__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"19216":{"_Position":{"__isSmartRef__":true,"id":19217},"renderContextTable":{"__isSmartRef__":true,"id":19218},"_Extent":{"__isSmartRef__":true,"id":19219},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19217":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19218":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19219":{"x":586.8038277511961,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19220":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19221":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19222":{"style":{"__isSmartRef__":true,"id":19223},"chunkOwner":{"__isSmartRef__":true,"id":19215},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"ObjectEditor","__LivelyClassName__":"lively.morphic.TextChunk"},"19223":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19224":{"morph":{"__isSmartRef__":true,"id":19215},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19225":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19226":{"resizeWidth":true},"19227":{"x":586.8038277511961,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19228":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19229":{"submorphs":[{"__isSmartRef__":true,"id":19230}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19242},"id":129,"renderContextTable":{"__isSmartRef__":true,"id":19257},"eventHandler":{"__isSmartRef__":true,"id":19258},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19259},"priorExtent":{"__isSmartRef__":true,"id":19260},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19261},"label":{"__isSmartRef__":true,"id":19230},"owner":{"__isSmartRef__":true,"id":19214},"layout":{"__isSmartRef__":true,"id":19270},"attributeConnections":[{"__isSmartRef__":true,"id":19271},{"__isSmartRef__":true,"id":19273}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19230":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19231},"id":130,"renderContextTable":{"__isSmartRef__":true,"id":19235},"textChunks":[{"__isSmartRef__":true,"id":19236}],"eventHandler":{"__isSmartRef__":true,"id":19238},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19240},"priorExtent":{"__isSmartRef__":true,"id":19241},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19229},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"19231":{"_Position":{"__isSmartRef__":true,"id":19232},"renderContextTable":{"__isSmartRef__":true,"id":19233},"_Extent":{"__isSmartRef__":true,"id":19234},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19232":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19233":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19234":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19235":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19236":{"style":{"__isSmartRef__":true,"id":19237},"chunkOwner":{"__isSmartRef__":true,"id":19230},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"19237":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19238":{"morph":{"__isSmartRef__":true,"id":19230},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19239":{"x":0,"y":3,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19240":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19241":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19242":{"_Position":{"__isSmartRef__":true,"id":19243},"renderContextTable":{"__isSmartRef__":true,"id":19244},"_Extent":{"__isSmartRef__":true,"id":19245},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19243":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19244":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19245":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19246":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19247":{"stops":[{"__isSmartRef__":true,"id":19248},{"__isSmartRef__":true,"id":19250},{"__isSmartRef__":true,"id":19252},{"__isSmartRef__":true,"id":19254}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19248":{"offset":0,"color":{"__isSmartRef__":true,"id":19249}},"19249":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19250":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19251}},"19251":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19252":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19253}},"19253":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19254":{"offset":1,"color":{"__isSmartRef__":true,"id":19255}},"19255":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19256":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19257":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19258":{"morph":{"__isSmartRef__":true,"id":19229},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19259":{"x":625.8038277511961,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19260":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19261":{"stops":[{"__isSmartRef__":true,"id":19262},{"__isSmartRef__":true,"id":19264},{"__isSmartRef__":true,"id":19266},{"__isSmartRef__":true,"id":19268}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19262":{"offset":0,"color":{"__isSmartRef__":true,"id":19263}},"19263":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19264":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19265}},"19265":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19266":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19267}},"19267":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19268":{"offset":1,"color":{"__isSmartRef__":true,"id":19269}},"19269":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19270":{"moveHorizontal":true},"19271":{"sourceObj":{"__isSmartRef__":true,"id":19229},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19213},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19272},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19272":{"source":{"__isSmartRef__":true,"id":19229},"target":{"__isSmartRef__":true,"id":19213}},"19273":{"sourceObj":{"__isSmartRef__":true,"id":19229},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19213},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19274},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19274":{"source":{"__isSmartRef__":true,"id":19229},"target":{"__isSmartRef__":true,"id":19213}},"19275":{"submorphs":[{"__isSmartRef__":true,"id":19276}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19287},"id":131,"renderContextTable":{"__isSmartRef__":true,"id":19291},"eventHandler":{"__isSmartRef__":true,"id":19292},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19293},"priorExtent":{"__isSmartRef__":true,"id":19294},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19295},"label":{"__isSmartRef__":true,"id":19276},"owner":{"__isSmartRef__":true,"id":19214},"attributeConnections":[{"__isSmartRef__":true,"id":19304},{"__isSmartRef__":true,"id":19306}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19276":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19277},"id":132,"renderContextTable":{"__isSmartRef__":true,"id":19281},"textChunks":[{"__isSmartRef__":true,"id":19282}],"eventHandler":{"__isSmartRef__":true,"id":19284},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19285},"priorExtent":{"__isSmartRef__":true,"id":19286},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19275},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"19277":{"_Position":{"__isSmartRef__":true,"id":19278},"renderContextTable":{"__isSmartRef__":true,"id":19279},"_Extent":{"__isSmartRef__":true,"id":19280},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19278":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19279":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19280":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19281":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19282":{"style":{"__isSmartRef__":true,"id":19283},"chunkOwner":{"__isSmartRef__":true,"id":19276},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk"},"19283":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19284":{"morph":{"__isSmartRef__":true,"id":19276},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19285":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19286":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19287":{"_Position":{"__isSmartRef__":true,"id":19288},"renderContextTable":{"__isSmartRef__":true,"id":19289},"_Extent":{"__isSmartRef__":true,"id":19290},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19288":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19289":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19290":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19291":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19292":{"morph":{"__isSmartRef__":true,"id":19275},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19293":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19294":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19295":{"stops":[{"__isSmartRef__":true,"id":19296},{"__isSmartRef__":true,"id":19298},{"__isSmartRef__":true,"id":19300},{"__isSmartRef__":true,"id":19302}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19296":{"offset":0,"color":{"__isSmartRef__":true,"id":19297}},"19297":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19298":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19299}},"19299":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19300":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19301}},"19301":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19302":{"offset":1,"color":{"__isSmartRef__":true,"id":19303}},"19303":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19304":{"sourceObj":{"__isSmartRef__":true,"id":19275},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19213},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19305},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19305":{"source":{"__isSmartRef__":true,"id":19275},"target":{"__isSmartRef__":true,"id":19213}},"19306":{"sourceObj":{"__isSmartRef__":true,"id":19275},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19213},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19307},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19307":{"source":{"__isSmartRef__":true,"id":19275},"target":{"__isSmartRef__":true,"id":19213}},"19308":{"submorphs":[{"__isSmartRef__":true,"id":19309}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19320},"id":133,"renderContextTable":{"__isSmartRef__":true,"id":19324},"eventHandler":{"__isSmartRef__":true,"id":19325},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19326},"priorExtent":{"__isSmartRef__":true,"id":19327},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19328},"label":{"__isSmartRef__":true,"id":19309},"owner":{"__isSmartRef__":true,"id":19214},"layout":{"__isSmartRef__":true,"id":19337},"attributeConnections":[{"__isSmartRef__":true,"id":19338},{"__isSmartRef__":true,"id":19340}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19309":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19310},"id":134,"renderContextTable":{"__isSmartRef__":true,"id":19314},"textChunks":[{"__isSmartRef__":true,"id":19315}],"eventHandler":{"__isSmartRef__":true,"id":19317},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19318},"priorExtent":{"__isSmartRef__":true,"id":19319},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19308},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"__LivelyClassName__":"lively.morphic.Text"},"19310":{"_Position":{"__isSmartRef__":true,"id":19311},"renderContextTable":{"__isSmartRef__":true,"id":19312},"_Extent":{"__isSmartRef__":true,"id":19313},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19311":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19312":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19313":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19314":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19315":{"style":{"__isSmartRef__":true,"id":19316},"chunkOwner":{"__isSmartRef__":true,"id":19309},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk"},"19316":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19317":{"morph":{"__isSmartRef__":true,"id":19309},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19318":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19319":{"x":17,"y":17,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19320":{"_Position":{"__isSmartRef__":true,"id":19321},"renderContextTable":{"__isSmartRef__":true,"id":19322},"_Extent":{"__isSmartRef__":true,"id":19323},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19321":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19322":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19323":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19324":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19325":{"morph":{"__isSmartRef__":true,"id":19308},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19326":{"x":606.8038277511961,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19327":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19328":{"stops":[{"__isSmartRef__":true,"id":19329},{"__isSmartRef__":true,"id":19331},{"__isSmartRef__":true,"id":19333},{"__isSmartRef__":true,"id":19335}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19329":{"offset":0,"color":{"__isSmartRef__":true,"id":19330}},"19330":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19331":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19332}},"19332":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19333":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19334}},"19334":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19335":{"offset":1,"color":{"__isSmartRef__":true,"id":19336}},"19336":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19337":{"moveHorizontal":true},"19338":{"sourceObj":{"__isSmartRef__":true,"id":19308},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19213},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19339},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19339":{"source":{"__isSmartRef__":true,"id":19308},"target":{"__isSmartRef__":true,"id":19213}},"19340":{"sourceObj":{"__isSmartRef__":true,"id":19308},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19213},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19341},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19341":{"source":{"__isSmartRef__":true,"id":19308},"target":{"__isSmartRef__":true,"id":19213}},"19342":{"_Position":{"__isSmartRef__":true,"id":19343},"renderContextTable":{"__isSmartRef__":true,"id":19344},"_Extent":{"__isSmartRef__":true,"id":19345},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":19346},"_Fill":{"__isSmartRef__":true,"id":227},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19343":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19344":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19345":{"x":645.8038277511961,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19346":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19347":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19348":{"morph":{"__isSmartRef__":true,"id":19214},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19349":{"resizeWidth":true,"adjustForNewBounds":true},"19350":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19351":{"x":645.8038277511961,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19352":{"submorphs":[{"__isSmartRef__":true,"id":19353},{"__isSmartRef__":true,"id":20135},{"__isSmartRef__":true,"id":19963},{"__isSmartRef__":true,"id":20148},{"__isSmartRef__":true,"id":20162},{"__isSmartRef__":true,"id":20209},{"__isSmartRef__":true,"id":20256},{"__isSmartRef__":true,"id":20303},{"__isSmartRef__":true,"id":19829},{"__isSmartRef__":true,"id":20026}],"scripts":[],"id":135,"shape":{"__isSmartRef__":true,"id":20350},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":20355},"showsHalos":false,"name":"ObjectEditorPane","partsBinMetaInfo":{"__isSmartRef__":true,"id":20356},"__SourceModuleName__":"Global.lively.morphic.Core","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":20357},"eventHandler":{"__isSmartRef__":true,"id":20358},"owner":{"__isSmartRef__":true,"id":19213},"priorExtent":{"__isSmartRef__":true,"id":20359},"layout":{"__isSmartRef__":true,"id":20360},"target":{"__isSmartRef__":true,"id":853},"scriptPane":{"__isSmartRef__":true,"id":19829},"scriptList":{"__isSmartRef__":true,"id":19353},"connectionList":{"__isSmartRef__":true,"id":19963},"morphSelector":{"__isSmartRef__":true,"id":20026},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":20361},"__LivelyClassName__":"lively.morphic.Box"},"19353":{"submorphs":[],"scripts":[],"id":136,"shape":{"__isSmartRef__":true,"id":19354},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19360},"itemList":["-- ALL --","getValue","setLabel","setValue","updateBar"],"selectedLineNo":4,"showsHalos":false,"name":"ObjectEditorScriptList","partsBinMetaInfo":{"__isSmartRef__":true,"id":19361},"__SourceModuleName__":"Global.lively.morphic.Core","_Scale":1,"_ClipMode":"auto","owner":{"__isSmartRef__":true,"id":19352},"priorExtent":{"__isSmartRef__":true,"id":19362},"prevScroll":[0,0],"attributeConnections":[{"__isSmartRef__":true,"id":19363}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"layout":{"__isSmartRef__":true,"id":19365},"doitContext":{"__isSmartRef__":true,"id":19366},"renderContextTable":{"__isSmartRef__":true,"id":20132},"AttributeConnection(.selection --> ObjectEditor - ObjectEditor.displaySourceForConnection)":{"__isSmartRef__":true,"id":20133},"eventHandler":{"__isSmartRef__":true,"id":20134},"_FontSize":10,"_Rotation":0,"selection":"updateBar","__LivelyClassName__":"lively.morphic.List"},"19354":{"position":{"__isSmartRef__":true,"id":19355},"_Extent":{"__isSmartRef__":true,"id":19356},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":19357},"_Fill":{"__isSmartRef__":true,"id":19358},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":19359},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19355":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19356":{"x":180,"y":223.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19357":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19358":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19359":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19360":{"x":16,"y":45.99999999999997,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19361":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":2,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"19362":{"x":173.7,"y":223.23350080310803,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19363":{"sourceObj":{"__isSmartRef__":true,"id":19353},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":19352},"targetMethodName":"displaySourceForScript","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19364},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19364":{"source":{"__isSmartRef__":true,"id":19353},"target":{"__isSmartRef__":true,"id":19352}},"19365":{"resizeHeight":false},"19366":{"submorphs":[],"scripts":[],"id":836,"shape":{"__isSmartRef__":true,"id":19367},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":19372},"priorExtent":{"__isSmartRef__":true,"id":19373},"titleBar":{"__isSmartRef__":true,"id":19374},"contentOffset":{"__isSmartRef__":true,"id":19515},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":{"__isSmartRef__":true,"id":19516},"expandedExtent":{"__isSmartRef__":true,"id":19517},"highlighted":true,"_Rotation":0,"_Scale":1,"prevDragPos":{"__isSmartRef__":true,"id":19518},"showsHalos":false,"name":"ObjectEditor","__SourceModuleName__":"Global.lively.morphic.Widgets","target":{"__isSmartRef__":true,"id":19519},"expandedPosition":{"__isSmartRef__":true,"id":19827},"partsBinMetaInfo":{"__isSmartRef__":true,"id":19828},"scriptList":{"__isSmartRef__":true,"id":19353},"scriptPane":{"__isSmartRef__":true,"id":19829},"classButton":{"__isSmartRef__":true,"id":19918},"connectionList":{"__isSmartRef__":true,"id":19963},"targetButton":{"__isSmartRef__":true,"id":19981},"renderContextTable":{"__isSmartRef__":true,"id":20024},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Position":{"__isSmartRef__":true,"id":20025},"morphSelector":{"__isSmartRef__":true,"id":20026},"eventHandler":{"__isSmartRef__":true,"id":20079},"cameForward":false,"isCopyMorphRef":true,"morphRefId":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":20080},"__LivelyClassName__":"lively.morphic.Window"},"19367":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":19368},"_StrokeOpacity":0,"_BorderRadius":9.25,"_Extent":{"__isSmartRef__":true,"id":19369},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderColor":{"__isSmartRef__":true,"id":19370},"renderContextTable":{"__isSmartRef__":true,"id":19371},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19368":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19369":{"x":981,"y":585.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19370":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19371":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19372":{"adjustForNewBounds":true},"19373":{"x":981,"y":585.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19374":{"submorphs":[{"__isSmartRef__":true,"id":19375},{"__isSmartRef__":true,"id":19388},{"__isSmartRef__":true,"id":19432},{"__isSmartRef__":true,"id":19464}],"scripts":[],"id":837,"shape":{"__isSmartRef__":true,"id":19497},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":19510},"_Position":{"__isSmartRef__":true,"id":19511},"eventsAreIgnored":true,"windowMorph":{"__isSmartRef__":true,"id":19366},"label":{"__isSmartRef__":true,"id":19375},"closeButton":{"__isSmartRef__":true,"id":19388},"menuButton":{"__isSmartRef__":true,"id":19432},"collapseButton":{"__isSmartRef__":true,"id":19464},"priorExtent":{"__isSmartRef__":true,"id":19512},"owner":null,"__SourceModuleName__":"Global.lively.morphic.Widgets","name":"ObjectEditorTitleBar","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19513},"eventHandler":{"__isSmartRef__":true,"id":19514},"__LivelyClassName__":"lively.morphic.TitleBar"},"19375":{"submorphs":[],"scripts":[],"id":838,"shape":{"__isSmartRef__":true,"id":19376},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19381},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19382},"priorExtent":{"__isSmartRef__":true,"id":19383},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":19384}],"evalEnabled":false,"isLabel":true,"eventsAreIgnored":true,"_FontSize":10,"_Align":"center","owner":{"__isSmartRef__":true,"id":19374},"__SourceModuleName__":"Global.lively.morphic.TextCore","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19386},"eventHandler":{"__isSmartRef__":true,"id":19387},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"19376":{"_Position":{"__isSmartRef__":true,"id":19377},"_Extent":{"__isSmartRef__":true,"id":19378},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19379},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19380},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19377":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19378":{"x":921.9776803724167,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19379":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19380":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19381":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19382":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19383":{"x":921.9776803724167,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19384":{"style":{"__isSmartRef__":true,"id":19385},"chunkOwner":{"__isSmartRef__":true,"id":19375},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19385":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19386":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19387":{"morph":{"__isSmartRef__":true,"id":19375},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19388":{"submorphs":[{"__isSmartRef__":true,"id":19389}],"scripts":[],"id":839,"shape":{"__isSmartRef__":true,"id":19401},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19416},"priorExtent":{"__isSmartRef__":true,"id":19417},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19405},"lighterFill":{"__isSmartRef__":true,"id":19418},"label":{"__isSmartRef__":true,"id":19389},"owner":{"__isSmartRef__":true,"id":19374},"layout":{"__isSmartRef__":true,"id":19427},"attributeConnections":[{"__isSmartRef__":true,"id":19428},{"__isSmartRef__":true,"id":19429}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19430},"eventHandler":{"__isSmartRef__":true,"id":19431},"__LivelyClassName__":"lively.morphic.WindowControl"},"19389":{"submorphs":[],"scripts":[],"id":840,"shape":{"__isSmartRef__":true,"id":19390},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19394},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19395},"priorExtent":{"__isSmartRef__":true,"id":19396},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":19397}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19388},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19399},"eventHandler":{"__isSmartRef__":true,"id":19400},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"19390":{"_Position":{"__isSmartRef__":true,"id":19391},"_Extent":{"__isSmartRef__":true,"id":19392},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19379},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19393},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19391":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19392":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19393":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19394":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19395":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19396":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19397":{"style":{"__isSmartRef__":true,"id":19398},"chunkOwner":{"__isSmartRef__":true,"id":19389},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19398":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19399":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19400":{"morph":{"__isSmartRef__":true,"id":19389},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19401":{"_Position":{"__isSmartRef__":true,"id":19402},"_Extent":{"__isSmartRef__":true,"id":19403},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19404},"_Fill":{"__isSmartRef__":true,"id":19405},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19415},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19402":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19403":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19404":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19405":{"stops":[{"__isSmartRef__":true,"id":19406},{"__isSmartRef__":true,"id":19408},{"__isSmartRef__":true,"id":19410},{"__isSmartRef__":true,"id":19412}],"vector":{"__isSmartRef__":true,"id":19414},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19406":{"offset":0,"color":{"__isSmartRef__":true,"id":19407}},"19407":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19408":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19409}},"19409":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19410":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19411}},"19411":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19412":{"offset":1,"color":{"__isSmartRef__":true,"id":19413}},"19413":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19414":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19415":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19416":{"x":960.9776803724167,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19417":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19418":{"stops":[{"__isSmartRef__":true,"id":19419},{"__isSmartRef__":true,"id":19421},{"__isSmartRef__":true,"id":19423},{"__isSmartRef__":true,"id":19425}],"vector":{"__isSmartRef__":true,"id":19414},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19419":{"offset":0,"color":{"__isSmartRef__":true,"id":19420}},"19420":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19421":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19422}},"19422":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19423":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19424}},"19424":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19425":{"offset":1,"color":{"__isSmartRef__":true,"id":19426}},"19426":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19427":{"moveHorizontal":true},"19428":{"sourceObj":{"__isSmartRef__":true,"id":19388},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19366},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19429":{"sourceObj":{"__isSmartRef__":true,"id":19388},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19366},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19430":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19431":{"morph":{"__isSmartRef__":true,"id":19388},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19432":{"submorphs":[{"__isSmartRef__":true,"id":19433}],"scripts":[],"id":841,"shape":{"__isSmartRef__":true,"id":19445},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19449},"priorExtent":{"__isSmartRef__":true,"id":19450},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19405},"lighterFill":{"__isSmartRef__":true,"id":19451},"label":{"__isSmartRef__":true,"id":19433},"owner":{"__isSmartRef__":true,"id":19374},"attributeConnections":[{"__isSmartRef__":true,"id":19460},{"__isSmartRef__":true,"id":19461}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","showsHalos":false,"_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19462},"eventHandler":{"__isSmartRef__":true,"id":19463},"__LivelyClassName__":"lively.morphic.WindowControl"},"19433":{"submorphs":[],"scripts":[],"id":842,"shape":{"__isSmartRef__":true,"id":19434},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19438},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19439},"priorExtent":{"__isSmartRef__":true,"id":19440},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":19441}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19432},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19443},"eventHandler":{"__isSmartRef__":true,"id":19444},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"19434":{"_Position":{"__isSmartRef__":true,"id":19435},"_Extent":{"__isSmartRef__":true,"id":19436},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19379},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19437},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19435":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19436":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19437":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19438":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19439":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19440":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19441":{"style":{"__isSmartRef__":true,"id":19442},"chunkOwner":{"__isSmartRef__":true,"id":19433},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19442":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19443":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19444":{"morph":{"__isSmartRef__":true,"id":19433},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19445":{"_Position":{"__isSmartRef__":true,"id":19446},"_Extent":{"__isSmartRef__":true,"id":19447},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19404},"_Fill":{"__isSmartRef__":true,"id":19405},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19448},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19446":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19447":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19448":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19449":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19450":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19451":{"stops":[{"__isSmartRef__":true,"id":19452},{"__isSmartRef__":true,"id":19454},{"__isSmartRef__":true,"id":19456},{"__isSmartRef__":true,"id":19458}],"vector":{"__isSmartRef__":true,"id":19414},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19452":{"offset":0,"color":{"__isSmartRef__":true,"id":19453}},"19453":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19454":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19455}},"19455":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19456":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19457}},"19457":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19458":{"offset":1,"color":{"__isSmartRef__":true,"id":19459}},"19459":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19460":{"sourceObj":{"__isSmartRef__":true,"id":19432},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19366},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19461":{"sourceObj":{"__isSmartRef__":true,"id":19432},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19366},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19462":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19463":{"morph":{"__isSmartRef__":true,"id":19432},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19464":{"submorphs":[{"__isSmartRef__":true,"id":19465}],"scripts":[],"id":843,"shape":{"__isSmartRef__":true,"id":19477},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19481},"priorExtent":{"__isSmartRef__":true,"id":19482},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19405},"lighterFill":{"__isSmartRef__":true,"id":19483},"label":{"__isSmartRef__":true,"id":19465},"owner":{"__isSmartRef__":true,"id":19374},"layout":{"__isSmartRef__":true,"id":19492},"attributeConnections":[{"__isSmartRef__":true,"id":19493},{"__isSmartRef__":true,"id":19494}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19495},"eventHandler":{"__isSmartRef__":true,"id":19496},"__LivelyClassName__":"lively.morphic.WindowControl"},"19465":{"submorphs":[],"scripts":[],"id":844,"shape":{"__isSmartRef__":true,"id":19466},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19470},"_ClipMode":"hidden","fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19471},"priorExtent":{"__isSmartRef__":true,"id":19472},"_MaxTextWidth":null,"_MaxTextHeight":17,"textChunks":[{"__isSmartRef__":true,"id":19473}],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19464},"isLabel":true,"eventsAreIgnored":true,"_FontSize":8,"__SourceModuleName__":"Global.lively.morphic.TextCore","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19475},"eventHandler":{"__isSmartRef__":true,"id":19476},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"19466":{"_Position":{"__isSmartRef__":true,"id":19467},"_Extent":{"__isSmartRef__":true,"id":19468},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19379},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19469},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19467":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19468":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19469":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19470":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19471":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19472":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19473":{"style":{"__isSmartRef__":true,"id":19474},"chunkOwner":{"__isSmartRef__":true,"id":19465},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19474":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19475":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19476":{"morph":{"__isSmartRef__":true,"id":19465},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19477":{"_Position":{"__isSmartRef__":true,"id":19478},"_Extent":{"__isSmartRef__":true,"id":19479},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19404},"_Fill":{"__isSmartRef__":true,"id":19405},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19480},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19478":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19479":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19480":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19481":{"x":941.9776803724167,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19482":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19483":{"stops":[{"__isSmartRef__":true,"id":19484},{"__isSmartRef__":true,"id":19486},{"__isSmartRef__":true,"id":19488},{"__isSmartRef__":true,"id":19490}],"vector":{"__isSmartRef__":true,"id":19414},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19484":{"offset":0,"color":{"__isSmartRef__":true,"id":19485}},"19485":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19486":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19487}},"19487":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19488":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19489}},"19489":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19490":{"offset":1,"color":{"__isSmartRef__":true,"id":19491}},"19491":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19492":{"moveHorizontal":true},"19493":{"sourceObj":{"__isSmartRef__":true,"id":19464},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19366},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19494":{"sourceObj":{"__isSmartRef__":true,"id":19464},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19366},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19495":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19496":{"morph":{"__isSmartRef__":true,"id":19464},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19497":{"_Position":{"__isSmartRef__":true,"id":19498},"_Extent":{"__isSmartRef__":true,"id":19499},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":19500},"_Fill":{"__isSmartRef__":true,"id":19501},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":19509},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19498":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19499":{"x":980.9776803724167,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19500":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19501":{"stops":[{"__isSmartRef__":true,"id":19502},{"__isSmartRef__":true,"id":19504},{"__isSmartRef__":true,"id":19506}],"vector":{"__isSmartRef__":true,"id":19508},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19502":{"offset":0,"color":{"__isSmartRef__":true,"id":19503}},"19503":{"r":0.7200000000000001,"g":0.7200000000000001,"b":0.7200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19504":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19505}},"19505":{"r":0.9,"g":0.9,"b":0.9,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19506":{"offset":1,"color":{"__isSmartRef__":true,"id":19507}},"19507":{"r":0.7200000000000001,"g":0.7200000000000001,"b":0.7200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19508":{"x":0,"y":1,"width":0,"height":-1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19509":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19510":{"resizeWidth":true,"adjustForNewBounds":true},"19511":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19512":{"x":980.9776803724167,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19513":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19514":{"morph":{"__isSmartRef__":true,"id":19374},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19515":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19516":{"a":1,"b":0,"c":0,"d":1,"e":377.6609726943286,"f":419.5142810783999,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Similitude"},"19517":{"x":861.5223196275833,"y":575.166499196892,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19518":{"x":613,"y":129,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19519":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19520},"id":394,"renderContextTable":{"__isSmartRef__":true,"id":19525},"textChunks":[{"__isSmartRef__":true,"id":19526}],"eventHandler":{"__isSmartRef__":true,"id":19528},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19529},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19530},"priorExtent":{"__isSmartRef__":true,"id":19531},"_MaxTextWidth":500,"_MaxTextHeight":200,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19532},"layout":{"__isSmartRef__":true,"id":19665},"doitContext":{"__isSmartRef__":true,"id":19666},"priorSelectionRange":[0,36],"charsReplaced":"","lastFindLoc":20,"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19520":{"_Position":{"__isSmartRef__":true,"id":19521},"renderContextTable":{"__isSmartRef__":true,"id":19522},"_Extent":{"__isSmartRef__":true,"id":19523},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":{"__isSmartRef__":true,"id":19524},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19521":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19522":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19523":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19524":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19525":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19526":{"style":{"__isSmartRef__":true,"id":19527},"chunkOwner":{"__isSmartRef__":true,"id":19519},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19527":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19528":{"morph":{"__isSmartRef__":true,"id":19519},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19529":{"x":2,"y":1,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19530":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19531":{"x":500,"y":200,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19532":{"submorphs":[{"__isSmartRef__":true,"id":19519},{"__isSmartRef__":true,"id":19533}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19656},"id":395,"renderContextTable":{"__isSmartRef__":true,"id":19659},"eventHandler":{"__isSmartRef__":true,"id":19660},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":19661},"LK2":true,"_Position":{"__isSmartRef__":true,"id":19662},"priorExtent":{"__isSmartRef__":true,"id":19663},"targetMorph":{"__isSmartRef__":true,"id":19519},"titleBar":{"__isSmartRef__":true,"id":19533},"contentOffset":{"__isSmartRef__":true,"id":19530},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"highlighted":true,"_Rotation":0,"_Scale":1,"prevDragPos":{"__isSmartRef__":true,"id":19664},"cameForward":false,"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"19533":{"submorphs":[{"__isSmartRef__":true,"id":19534},{"__isSmartRef__":true,"id":19546},{"__isSmartRef__":true,"id":19580},{"__isSmartRef__":true,"id":19613}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19647},"id":396,"renderContextTable":{"__isSmartRef__":true,"id":19651},"eventHandler":{"__isSmartRef__":true,"id":19652},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":19653},"_Position":{"__isSmartRef__":true,"id":19654},"windowMorph":{"__isSmartRef__":true,"id":19532},"label":{"__isSmartRef__":true,"id":19534},"closeButton":{"__isSmartRef__":true,"id":19546},"menuButton":{"__isSmartRef__":true,"id":19580},"collapseButton":{"__isSmartRef__":true,"id":19613},"priorExtent":{"__isSmartRef__":true,"id":19655},"owner":{"__isSmartRef__":true,"id":19532},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"19534":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19535},"id":397,"renderContextTable":{"__isSmartRef__":true,"id":19539},"textChunks":[{"__isSmartRef__":true,"id":19540}],"eventHandler":{"__isSmartRef__":true,"id":19542},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19225},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":19543},"_FontSize":10,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":19533},"priorExtent":{"__isSmartRef__":true,"id":19544},"_MaxTextWidth":441,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":19545},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19535":{"_Position":{"__isSmartRef__":true,"id":19536},"renderContextTable":{"__isSmartRef__":true,"id":19537},"_Extent":{"__isSmartRef__":true,"id":19538},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19536":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19537":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19538":{"x":441,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19539":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19540":{"style":{"__isSmartRef__":true,"id":19541},"chunkOwner":{"__isSmartRef__":true,"id":19534},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19541":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19542":{"morph":{"__isSmartRef__":true,"id":19534},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19543":{"resizeWidth":true},"19544":{"x":0,"y":14,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19545":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19546":{"submorphs":[{"__isSmartRef__":true,"id":19547}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19558},"id":398,"renderContextTable":{"__isSmartRef__":true,"id":19562},"eventHandler":{"__isSmartRef__":true,"id":19563},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19564},"priorExtent":{"__isSmartRef__":true,"id":19565},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19566},"label":{"__isSmartRef__":true,"id":19547},"owner":{"__isSmartRef__":true,"id":19533},"layout":{"__isSmartRef__":true,"id":19575},"attributeConnections":[{"__isSmartRef__":true,"id":19576},{"__isSmartRef__":true,"id":19578}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19547":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19548},"id":399,"renderContextTable":{"__isSmartRef__":true,"id":19552},"textChunks":[{"__isSmartRef__":true,"id":19553}],"eventHandler":{"__isSmartRef__":true,"id":19555},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19556},"priorExtent":{"__isSmartRef__":true,"id":19557},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19546},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19548":{"_Position":{"__isSmartRef__":true,"id":19549},"renderContextTable":{"__isSmartRef__":true,"id":19550},"_Extent":{"__isSmartRef__":true,"id":19551},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19549":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19550":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19551":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19552":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19553":{"style":{"__isSmartRef__":true,"id":19554},"chunkOwner":{"__isSmartRef__":true,"id":19547},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19554":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19555":{"morph":{"__isSmartRef__":true,"id":19547},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19556":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19557":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19558":{"_Position":{"__isSmartRef__":true,"id":19559},"renderContextTable":{"__isSmartRef__":true,"id":19560},"_Extent":{"__isSmartRef__":true,"id":19561},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19559":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19560":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19561":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19562":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19563":{"morph":{"__isSmartRef__":true,"id":19546},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19564":{"x":480,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19565":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19566":{"stops":[{"__isSmartRef__":true,"id":19567},{"__isSmartRef__":true,"id":19569},{"__isSmartRef__":true,"id":19571},{"__isSmartRef__":true,"id":19573}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19567":{"offset":0,"color":{"__isSmartRef__":true,"id":19568}},"19568":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19569":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19570}},"19570":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19571":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19572}},"19572":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19573":{"offset":1,"color":{"__isSmartRef__":true,"id":19574}},"19574":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19575":{"moveHorizontal":true},"19576":{"sourceObj":{"__isSmartRef__":true,"id":19546},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19532},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19577},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19577":{"source":{"__isSmartRef__":true,"id":19546},"target":{"__isSmartRef__":true,"id":19532}},"19578":{"sourceObj":{"__isSmartRef__":true,"id":19546},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19532},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19579},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19579":{"source":{"__isSmartRef__":true,"id":19546},"target":{"__isSmartRef__":true,"id":19532}},"19580":{"submorphs":[{"__isSmartRef__":true,"id":19581}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19592},"id":400,"renderContextTable":{"__isSmartRef__":true,"id":19596},"eventHandler":{"__isSmartRef__":true,"id":19597},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19598},"priorExtent":{"__isSmartRef__":true,"id":19599},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19600},"label":{"__isSmartRef__":true,"id":19581},"owner":{"__isSmartRef__":true,"id":19533},"attributeConnections":[{"__isSmartRef__":true,"id":19609},{"__isSmartRef__":true,"id":19611}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19581":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19582},"id":401,"renderContextTable":{"__isSmartRef__":true,"id":19586},"textChunks":[{"__isSmartRef__":true,"id":19587}],"eventHandler":{"__isSmartRef__":true,"id":19589},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19590},"priorExtent":{"__isSmartRef__":true,"id":19591},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19580},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19582":{"_Position":{"__isSmartRef__":true,"id":19583},"renderContextTable":{"__isSmartRef__":true,"id":19584},"_Extent":{"__isSmartRef__":true,"id":19585},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19583":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19584":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19585":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19586":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19587":{"style":{"__isSmartRef__":true,"id":19588},"chunkOwner":{"__isSmartRef__":true,"id":19581},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19588":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19589":{"morph":{"__isSmartRef__":true,"id":19581},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19590":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19591":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19592":{"_Position":{"__isSmartRef__":true,"id":19593},"renderContextTable":{"__isSmartRef__":true,"id":19594},"_Extent":{"__isSmartRef__":true,"id":19595},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19593":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19594":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19595":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19596":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19597":{"morph":{"__isSmartRef__":true,"id":19580},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19598":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19599":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19600":{"stops":[{"__isSmartRef__":true,"id":19601},{"__isSmartRef__":true,"id":19603},{"__isSmartRef__":true,"id":19605},{"__isSmartRef__":true,"id":19607}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19601":{"offset":0,"color":{"__isSmartRef__":true,"id":19602}},"19602":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19603":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19604}},"19604":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19605":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19606}},"19606":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19607":{"offset":1,"color":{"__isSmartRef__":true,"id":19608}},"19608":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19609":{"sourceObj":{"__isSmartRef__":true,"id":19580},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19532},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19610},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19610":{"source":{"__isSmartRef__":true,"id":19580},"target":{"__isSmartRef__":true,"id":19532}},"19611":{"sourceObj":{"__isSmartRef__":true,"id":19580},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19532},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19612},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19612":{"source":{"__isSmartRef__":true,"id":19580},"target":{"__isSmartRef__":true,"id":19532}},"19613":{"submorphs":[{"__isSmartRef__":true,"id":19614}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19625},"id":402,"renderContextTable":{"__isSmartRef__":true,"id":19629},"eventHandler":{"__isSmartRef__":true,"id":19630},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19631},"priorExtent":{"__isSmartRef__":true,"id":19632},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19633},"label":{"__isSmartRef__":true,"id":19614},"owner":{"__isSmartRef__":true,"id":19533},"layout":{"__isSmartRef__":true,"id":19642},"attributeConnections":[{"__isSmartRef__":true,"id":19643},{"__isSmartRef__":true,"id":19645}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19614":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19615},"id":403,"renderContextTable":{"__isSmartRef__":true,"id":19619},"textChunks":[{"__isSmartRef__":true,"id":19620}],"eventHandler":{"__isSmartRef__":true,"id":19622},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19623},"priorExtent":{"__isSmartRef__":true,"id":19624},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19613},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19615":{"_Position":{"__isSmartRef__":true,"id":19616},"renderContextTable":{"__isSmartRef__":true,"id":19617},"_Extent":{"__isSmartRef__":true,"id":19618},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19616":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19617":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19618":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19619":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19620":{"style":{"__isSmartRef__":true,"id":19621},"chunkOwner":{"__isSmartRef__":true,"id":19614},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19621":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19622":{"morph":{"__isSmartRef__":true,"id":19614},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19623":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19624":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19625":{"_Position":{"__isSmartRef__":true,"id":19626},"renderContextTable":{"__isSmartRef__":true,"id":19627},"_Extent":{"__isSmartRef__":true,"id":19628},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19626":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19627":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19628":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19629":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19630":{"morph":{"__isSmartRef__":true,"id":19613},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19631":{"x":461,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19632":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19633":{"stops":[{"__isSmartRef__":true,"id":19634},{"__isSmartRef__":true,"id":19636},{"__isSmartRef__":true,"id":19638},{"__isSmartRef__":true,"id":19640}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19634":{"offset":0,"color":{"__isSmartRef__":true,"id":19635}},"19635":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19636":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19637}},"19637":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19638":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19639}},"19639":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19640":{"offset":1,"color":{"__isSmartRef__":true,"id":19641}},"19641":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19642":{"moveHorizontal":true},"19643":{"sourceObj":{"__isSmartRef__":true,"id":19613},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19532},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19644},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19644":{"source":{"__isSmartRef__":true,"id":19613},"target":{"__isSmartRef__":true,"id":19532}},"19645":{"sourceObj":{"__isSmartRef__":true,"id":19613},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19532},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19646},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19646":{"source":{"__isSmartRef__":true,"id":19613},"target":{"__isSmartRef__":true,"id":19532}},"19647":{"_Position":{"__isSmartRef__":true,"id":19648},"renderContextTable":{"__isSmartRef__":true,"id":19649},"_Extent":{"__isSmartRef__":true,"id":19650},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":19346},"_Fill":{"__isSmartRef__":true,"id":19501},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19648":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19649":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19650":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19651":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19652":{"morph":{"__isSmartRef__":true,"id":19533},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19653":{"resizeWidth":true,"adjustForNewBounds":true},"19654":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19655":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19656":{"renderContextTable":{"__isSmartRef__":true,"id":19657},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":19658},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19657":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19658":{"x":500,"y":222,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19659":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19660":{"morph":{"__isSmartRef__":true,"id":19532},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19661":{"adjustForNewBounds":true},"19662":{"x":1234,"y":448,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19663":{"x":500,"y":222,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19664":{"x":1478,"y":453,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19665":{"resizeWidth":true,"resizeHeight":true},"19666":{"submorphs":[{"__isSmartRef__":true,"id":19667},{"__isSmartRef__":true,"id":19681}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19811},"id":361,"renderContextTable":{"__isSmartRef__":true,"id":19815},"eventHandler":{"__isSmartRef__":true,"id":19816},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":19817},"LK2":true,"_Position":{"__isSmartRef__":true,"id":19818},"priorExtent":{"__isSmartRef__":true,"id":19819},"targetMorph":{"__isSmartRef__":true,"id":19667},"titleBar":{"__isSmartRef__":true,"id":19681},"contentOffset":{"__isSmartRef__":true,"id":19677},"collapsedTransform":{"__isSmartRef__":true,"id":19820},"collapsedExtent":{"__isSmartRef__":true,"id":19821},"expandedTransform":{"__isSmartRef__":true,"id":19822},"expandedExtent":{"__isSmartRef__":true,"id":19823},"ignoreEventsOnExpand":false,"owner":null,"showsHalos":false,"highlighted":true,"_Rotation":0,"_Scale":1,"prevDragPos":{"__isSmartRef__":true,"id":19824},"expandedPosition":{"__isSmartRef__":true,"id":19825},"state":"shutdown","collapsedPosition":{"__isSmartRef__":true,"id":19826},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"19667":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19668},"id":360,"renderContextTable":{"__isSmartRef__":true,"id":19673},"textChunks":[{"__isSmartRef__":true,"id":19674}],"eventHandler":{"__isSmartRef__":true,"id":19676},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19529},"_ClipMode":"auto","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_Position":{"__isSmartRef__":true,"id":19677},"priorExtent":{"__isSmartRef__":true,"id":19678},"_MaxTextWidth":500,"_MaxTextHeight":0,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19666},"layout":{"__isSmartRef__":true,"id":19679},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":19680}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"cachedTextString":"dddasd\n\n\nasd\n\n\nnothing","lastSyntaxHighlightTime":1307282796737,"accessibleInInactiveWindow":true,"eventsAreIgnored":false,"_HandStyle":"default","_PointerEvents":"auto","_Visible":true,"priorSelectionRange":[0,22],"charsReplaced":"","lastFindLoc":15,"__SourceModuleName__":"Global.lively.morphic.TextCore","textString":"dddasd\n\n\nasd\n\n\nnothing","__LivelyClassName__":"lively.morphic.Text"},"19668":{"_Position":{"__isSmartRef__":true,"id":19669},"renderContextTable":{"__isSmartRef__":true,"id":19670},"_Extent":{"__isSmartRef__":true,"id":19671},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":{"__isSmartRef__":true,"id":19672},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19669":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19670":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19671":{"x":500,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19672":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19673":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19674":{"style":{"__isSmartRef__":true,"id":19675},"chunkOwner":{"__isSmartRef__":true,"id":19667},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19675":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19676":{"morph":{"__isSmartRef__":true,"id":19667},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19677":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19678":{"x":500,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19679":{"resizeWidth":true,"resizeHeight":true},"19680":{"sourceObj":{"__isSmartRef__":true,"id":19667},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":19667},"targetMethodName":"highlightJavaScriptSyntax","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19681":{"submorphs":[{"__isSmartRef__":true,"id":19682},{"__isSmartRef__":true,"id":19694},{"__isSmartRef__":true,"id":19728},{"__isSmartRef__":true,"id":19761}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19795},"id":362,"renderContextTable":{"__isSmartRef__":true,"id":19806},"eventHandler":{"__isSmartRef__":true,"id":19807},"droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":19808},"_Position":{"__isSmartRef__":true,"id":19809},"windowMorph":{"__isSmartRef__":true,"id":19666},"label":{"__isSmartRef__":true,"id":19682},"closeButton":{"__isSmartRef__":true,"id":19694},"menuButton":{"__isSmartRef__":true,"id":19728},"collapseButton":{"__isSmartRef__":true,"id":19761},"priorExtent":{"__isSmartRef__":true,"id":19810},"owner":{"__isSmartRef__":true,"id":19666},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"19682":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19683},"id":363,"renderContextTable":{"__isSmartRef__":true,"id":19687},"textChunks":[{"__isSmartRef__":true,"id":19688}],"eventHandler":{"__isSmartRef__":true,"id":19690},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19225},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","evalEnabled":false,"isLabel":true,"_HandStyle":"default","layout":{"__isSmartRef__":true,"id":19691},"_FontSize":10,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","owner":{"__isSmartRef__":true,"id":19681},"priorExtent":{"__isSmartRef__":true,"id":19692},"_MaxTextWidth":441,"_MaxTextHeight":17,"_Position":{"__isSmartRef__":true,"id":19693},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19683":{"_Position":{"__isSmartRef__":true,"id":19684},"renderContextTable":{"__isSmartRef__":true,"id":19685},"_Extent":{"__isSmartRef__":true,"id":19686},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"_BorderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19684":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19685":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19686":{"x":441,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19687":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19688":{"style":{"__isSmartRef__":true,"id":19689},"chunkOwner":{"__isSmartRef__":true,"id":19682},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19689":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19690":{"morph":{"__isSmartRef__":true,"id":19682},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19691":{"resizeWidth":true},"19692":{"x":0,"y":14,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19693":{"x":20,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19694":{"submorphs":[{"__isSmartRef__":true,"id":19695}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19706},"id":364,"renderContextTable":{"__isSmartRef__":true,"id":19710},"eventHandler":{"__isSmartRef__":true,"id":19711},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19712},"priorExtent":{"__isSmartRef__":true,"id":19713},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19714},"label":{"__isSmartRef__":true,"id":19695},"owner":{"__isSmartRef__":true,"id":19681},"layout":{"__isSmartRef__":true,"id":19723},"attributeConnections":[{"__isSmartRef__":true,"id":19724},{"__isSmartRef__":true,"id":19726}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19695":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19696},"id":365,"renderContextTable":{"__isSmartRef__":true,"id":19700},"textChunks":[{"__isSmartRef__":true,"id":19701}],"eventHandler":{"__isSmartRef__":true,"id":19703},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19704},"priorExtent":{"__isSmartRef__":true,"id":19705},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19694},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19696":{"_Position":{"__isSmartRef__":true,"id":19697},"renderContextTable":{"__isSmartRef__":true,"id":19698},"_Extent":{"__isSmartRef__":true,"id":19699},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19697":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19698":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19699":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19700":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19701":{"style":{"__isSmartRef__":true,"id":19702},"chunkOwner":{"__isSmartRef__":true,"id":19695},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19702":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19703":{"morph":{"__isSmartRef__":true,"id":19695},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19704":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19705":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19706":{"_Position":{"__isSmartRef__":true,"id":19707},"renderContextTable":{"__isSmartRef__":true,"id":19708},"_Extent":{"__isSmartRef__":true,"id":19709},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19707":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19708":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19709":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19710":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19711":{"morph":{"__isSmartRef__":true,"id":19694},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19712":{"x":480,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19713":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19714":{"stops":[{"__isSmartRef__":true,"id":19715},{"__isSmartRef__":true,"id":19717},{"__isSmartRef__":true,"id":19719},{"__isSmartRef__":true,"id":19721}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19715":{"offset":0,"color":{"__isSmartRef__":true,"id":19716}},"19716":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19717":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19718}},"19718":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19719":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19720}},"19720":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19721":{"offset":1,"color":{"__isSmartRef__":true,"id":19722}},"19722":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19723":{"moveHorizontal":true},"19724":{"sourceObj":{"__isSmartRef__":true,"id":19694},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19666},"targetMethodName":"getCloseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19725},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19725":{"source":{"__isSmartRef__":true,"id":19694},"target":{"__isSmartRef__":true,"id":19666}},"19726":{"sourceObj":{"__isSmartRef__":true,"id":19694},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19666},"targetMethodName":"initiateShutdown","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19727},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19727":{"source":{"__isSmartRef__":true,"id":19694},"target":{"__isSmartRef__":true,"id":19666}},"19728":{"submorphs":[{"__isSmartRef__":true,"id":19729}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19740},"id":366,"renderContextTable":{"__isSmartRef__":true,"id":19744},"eventHandler":{"__isSmartRef__":true,"id":19745},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19746},"priorExtent":{"__isSmartRef__":true,"id":19747},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19748},"label":{"__isSmartRef__":true,"id":19729},"owner":{"__isSmartRef__":true,"id":19681},"attributeConnections":[{"__isSmartRef__":true,"id":19757},{"__isSmartRef__":true,"id":19759}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19729":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19730},"id":367,"renderContextTable":{"__isSmartRef__":true,"id":19734},"textChunks":[{"__isSmartRef__":true,"id":19735}],"eventHandler":{"__isSmartRef__":true,"id":19737},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19738},"priorExtent":{"__isSmartRef__":true,"id":19739},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19728},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19730":{"_Position":{"__isSmartRef__":true,"id":19731},"renderContextTable":{"__isSmartRef__":true,"id":19732},"_Extent":{"__isSmartRef__":true,"id":19733},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19731":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19732":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19733":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19734":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19735":{"style":{"__isSmartRef__":true,"id":19736},"chunkOwner":{"__isSmartRef__":true,"id":19729},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19736":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19737":{"morph":{"__isSmartRef__":true,"id":19729},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19738":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19739":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19740":{"_Position":{"__isSmartRef__":true,"id":19741},"renderContextTable":{"__isSmartRef__":true,"id":19742},"_Extent":{"__isSmartRef__":true,"id":19743},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19741":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19742":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19743":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19744":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19745":{"morph":{"__isSmartRef__":true,"id":19728},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19746":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19747":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19748":{"stops":[{"__isSmartRef__":true,"id":19749},{"__isSmartRef__":true,"id":19751},{"__isSmartRef__":true,"id":19753},{"__isSmartRef__":true,"id":19755}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19749":{"offset":0,"color":{"__isSmartRef__":true,"id":19750}},"19750":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19751":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19752}},"19752":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19753":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19754}},"19754":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19755":{"offset":1,"color":{"__isSmartRef__":true,"id":19756}},"19756":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19757":{"sourceObj":{"__isSmartRef__":true,"id":19728},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19666},"targetMethodName":"getMenuHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19758},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19758":{"source":{"__isSmartRef__":true,"id":19728},"target":{"__isSmartRef__":true,"id":19666}},"19759":{"sourceObj":{"__isSmartRef__":true,"id":19728},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19666},"targetMethodName":"showTargetMorphMenu","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19760},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19760":{"source":{"__isSmartRef__":true,"id":19728},"target":{"__isSmartRef__":true,"id":19666}},"19761":{"submorphs":[{"__isSmartRef__":true,"id":19762}],"scripts":[],"shape":{"__isSmartRef__":true,"id":19773},"id":368,"renderContextTable":{"__isSmartRef__":true,"id":19777},"eventHandler":{"__isSmartRef__":true,"id":19778},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19779},"priorExtent":{"__isSmartRef__":true,"id":19780},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19247},"lighterFill":{"__isSmartRef__":true,"id":19781},"label":{"__isSmartRef__":true,"id":19762},"owner":{"__isSmartRef__":true,"id":19681},"layout":{"__isSmartRef__":true,"id":19790},"attributeConnections":[{"__isSmartRef__":true,"id":19791},{"__isSmartRef__":true,"id":19793}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"19762":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":19763},"id":369,"renderContextTable":{"__isSmartRef__":true,"id":19767},"textChunks":[{"__isSmartRef__":true,"id":19768}],"eventHandler":{"__isSmartRef__":true,"id":19770},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19239},"_ClipMode":"hidden","fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_Position":{"__isSmartRef__":true,"id":19771},"priorExtent":{"__isSmartRef__":true,"id":19772},"_MaxTextWidth":17,"_MaxTextHeight":17,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":19761},"isLabel":true,"_HandStyle":"default","_FontSize":8,"_Align":"center","eventsAreIgnored":true,"_PointerEvents":"none","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.Text"},"19763":{"_Position":{"__isSmartRef__":true,"id":19764},"renderContextTable":{"__isSmartRef__":true,"id":19765},"_Extent":{"__isSmartRef__":true,"id":19766},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19220},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19764":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19765":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19766":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19767":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19768":{"style":{"__isSmartRef__":true,"id":19769},"chunkOwner":{"__isSmartRef__":true,"id":19762},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19769":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19770":{"morph":{"__isSmartRef__":true,"id":19762},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19771":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19772":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19773":{"_Position":{"__isSmartRef__":true,"id":19774},"renderContextTable":{"__isSmartRef__":true,"id":19775},"_Extent":{"__isSmartRef__":true,"id":19776},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":19246},"_Fill":{"__isSmartRef__":true,"id":19247},"_StrokeOpacity":0,"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19774":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19775":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19776":{"x":17,"y":17,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19777":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19778":{"morph":{"__isSmartRef__":true,"id":19761},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19779":{"x":461,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19780":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19781":{"stops":[{"__isSmartRef__":true,"id":19782},{"__isSmartRef__":true,"id":19784},{"__isSmartRef__":true,"id":19786},{"__isSmartRef__":true,"id":19788}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19782":{"offset":0,"color":{"__isSmartRef__":true,"id":19783}},"19783":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19784":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19785}},"19785":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19786":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19787}},"19787":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19788":{"offset":1,"color":{"__isSmartRef__":true,"id":19789}},"19789":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19790":{"moveHorizontal":true},"19791":{"sourceObj":{"__isSmartRef__":true,"id":19761},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":19666},"targetMethodName":"getCollapseHelp","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19792},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19792":{"source":{"__isSmartRef__":true,"id":19761},"target":{"__isSmartRef__":true,"id":19666}},"19793":{"sourceObj":{"__isSmartRef__":true,"id":19761},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19666},"targetMethodName":"toggleCollapse","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19794},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"19794":{"source":{"__isSmartRef__":true,"id":19761},"target":{"__isSmartRef__":true,"id":19666}},"19795":{"_Position":{"__isSmartRef__":true,"id":19796},"renderContextTable":{"__isSmartRef__":true,"id":19797},"_Extent":{"__isSmartRef__":true,"id":19798},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":19346},"_Fill":{"__isSmartRef__":true,"id":19799},"_StrokeOpacity":1,"_BorderRadius":"8px 8px 0px 0px","__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19796":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19797":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19798":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19799":{"stops":[{"__isSmartRef__":true,"id":19800},{"__isSmartRef__":true,"id":19802},{"__isSmartRef__":true,"id":19804}],"vector":{"__isSmartRef__":true,"id":19256},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19800":{"offset":0,"color":{"__isSmartRef__":true,"id":19801}},"19801":{"r":0.8600000000000001,"g":0.8600000000000001,"b":0.8600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19802":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19803}},"19803":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19804":{"offset":1,"color":{"__isSmartRef__":true,"id":19805}},"19805":{"r":0.8600000000000001,"g":0.8600000000000001,"b":0.8600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19806":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19807":{"morph":{"__isSmartRef__":true,"id":19681},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19808":{"resizeWidth":true,"adjustForNewBounds":true},"19809":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19810":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19811":{"renderContextTable":{"__isSmartRef__":true,"id":19812},"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":19813},"_Position":{"__isSmartRef__":true,"id":19814},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19812":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19813":{"x":500,"y":222,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19814":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19815":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19816":{"morph":{"__isSmartRef__":true,"id":19666},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19817":{"adjustForNewBounds":true},"19818":{"x":1131,"y":79,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19819":{"x":500,"y":222,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19820":{"a":1,"b":0,"c":0,"d":1,"e":1131,"f":79,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Similitude"},"19821":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19822":{"a":1,"b":0,"c":0,"d":1,"e":1131,"f":79,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Similitude"},"19823":{"x":500,"y":222,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19824":{"x":1507,"y":76,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19825":{"x":1131,"y":79,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19826":{"x":1131,"y":79,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19827":{"x":377.6609726943286,"y":419.5142810783999,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19828":{"requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Tools","__SourceModuleName__":"Global.lively.PartsBin","comment":"Edit scripts and connections of a specific morph. Early version.","partName":"ObjectEditor","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"19829":{"submorphs":[],"scripts":[],"id":148,"shape":{"__isSmartRef__":true,"id":19830},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Padding":{"__isSmartRef__":true,"id":19836},"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":true,"_OverflowMode":"auto","_FontFamily":"helvetica","_Position":{"__isSmartRef__":true,"id":19837},"_MaxTextWidth":428.8038277511961,"_MaxTextHeight":324.91387559808607,"textChunks":[{"__isSmartRef__":true,"id":19838},{"__isSmartRef__":true,"id":19841},{"__isSmartRef__":true,"id":19843},{"__isSmartRef__":true,"id":19845},{"__isSmartRef__":true,"id":19847},{"__isSmartRef__":true,"id":19850},{"__isSmartRef__":true,"id":19852},{"__isSmartRef__":true,"id":19855},{"__isSmartRef__":true,"id":19857},{"__isSmartRef__":true,"id":19859},{"__isSmartRef__":true,"id":19861},{"__isSmartRef__":true,"id":19863},{"__isSmartRef__":true,"id":19865},{"__isSmartRef__":true,"id":19867},{"__isSmartRef__":true,"id":19869},{"__isSmartRef__":true,"id":19872},{"__isSmartRef__":true,"id":19874},{"__isSmartRef__":true,"id":19877},{"__isSmartRef__":true,"id":19879},{"__isSmartRef__":true,"id":19881},{"__isSmartRef__":true,"id":19883},{"__isSmartRef__":true,"id":19886},{"__isSmartRef__":true,"id":19888},{"__isSmartRef__":true,"id":19890}],"layout":{"__isSmartRef__":true,"id":19892},"showsHalos":false,"prevScroll":[0,0],"_Scale":1,"priorSelectionRange":[215,215],"name":"ObjectEditorScriptPane","charsReplaced":"// changed at Wed Jun 15 2011 11:36:28 GMT+0200 (CEST) by lauritz \n\nthis.addScript(function reset() {\n this.targetMorph.reset();\n});\n\n\n// changed at Thu Jun 16 2011 09:28:58 GMT+0200 (CEST) by lauritz \n\nthis.addScript(function setTarget(t) {\n this.targetMorph.setTarget(t);\n});\n\n","lastFindLoc":-287,"partsBinMetaInfo":{"__isSmartRef__":true,"id":19893},"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":19894},"_ClipMode":"auto","owner":{"__isSmartRef__":true,"id":19352},"_FontSize":9,"lastSyntaxHighlightTime":1308902760314,"doitContext":{"__isSmartRef__":true,"id":853},"savedTextString":"// changed at Thu Jun 16 2011 11:02:42 GMT+0200 (CEST) by lauritz \n\nthis.addScript(function ensureAnnotationLayer() {\n module('lively.LayerableMorphs').load(true);\n if (!(\"ScriptAnnotationLayer\" in Global)) {\n cop.create(\"ScriptAnnotationLayer\").refineClass(\n lively.morphic.Morph,{\n \n addScriptAnnotationFor : function(funcOrString) {\n var func = Function.fromString(funcOrString);\n if (!func.name) return;\n\n // source not changed\n if (this[func.name] && \n this[func.name].toString() === func.toString()) return;\n\n if (!this.scriptAnnotations) this.scriptAnnotations = {};\n\n var annotation = {time : new Date()};\n if (this.world() && this.world().getUserName && \n this.world().getUserName()) {\n annotation.user = this.world().getUserName();\n }\n \n this.scriptAnnotations[func.name] = annotation;\n },\n\n addScript : function(funcOrString) {\n this.addScriptAnnotationFor(funcOrString); \n return cop.proceed.apply(this, arguments);\n }\n }); \n }\n});","_Align":"justify","renderContextTable":{"__isSmartRef__":true,"id":19895},"lastSearchString":"stringsformat","eventHandler":{"__isSmartRef__":true,"id":19896},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Rotation":0,"scriptAnnotations":{"__isSmartRef__":true,"id":19897},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":19900},"__LivelyClassName__":"lively.morphic.Text"},"19830":{"_Position":{"__isSmartRef__":true,"id":19831},"_Extent":{"__isSmartRef__":true,"id":19832},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":19833},"_Fill":{"__isSmartRef__":true,"id":19834},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":19835},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19831":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19832":{"x":428.8038277511961,"y":324.91387559808607,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19833":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19834":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19835":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19836":{"x":2,"y":1,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19837":{"x":200,"y":45.99999999999997,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19838":{"style":{"__isSmartRef__":true,"id":19839},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk"},"19839":{"color":{"__isSmartRef__":true,"id":19840},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19840":{"r":0,"g":0,"b":0.5450980392156862,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19841":{"style":{"__isSmartRef__":true,"id":19842},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":".addScript(","__LivelyClassName__":"lively.morphic.TextChunk"},"19842":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19843":{"style":{"__isSmartRef__":true,"id":19844},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk"},"19844":{"color":{"__isSmartRef__":true,"id":19840},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19845":{"style":{"__isSmartRef__":true,"id":19846},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":" updateBar(value) ","__LivelyClassName__":"lively.morphic.TextChunk"},"19846":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19847":{"style":{"__isSmartRef__":true,"id":19848},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk"},"19848":{"color":{"__isSmartRef__":true,"id":19849},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19849":{"r":0,"g":0.5019607843137255,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19850":{"style":{"__isSmartRef__":true,"id":19851},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk"},"19851":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19852":{"style":{"__isSmartRef__":true,"id":19853},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk"},"19853":{"color":{"__isSmartRef__":true,"id":19854},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19854":{"r":0,"g":0,"b":0.5019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19855":{"style":{"__isSmartRef__":true,"id":19856},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":" maxExt = ","__LivelyClassName__":"lively.morphic.TextChunk"},"19856":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19857":{"style":{"__isSmartRef__":true,"id":19858},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk"},"19858":{"color":{"__isSmartRef__":true,"id":19840},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19859":{"style":{"__isSmartRef__":true,"id":19860},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":".getExtent();\n\n ","__LivelyClassName__":"lively.morphic.TextChunk"},"19860":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19861":{"style":{"__isSmartRef__":true,"id":19862},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk"},"19862":{"color":{"__isSmartRef__":true,"id":19854},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19863":{"style":{"__isSmartRef__":true,"id":19864},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":" bar = ","__LivelyClassName__":"lively.morphic.TextChunk"},"19864":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19865":{"style":{"__isSmartRef__":true,"id":19866},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk"},"19866":{"color":{"__isSmartRef__":true,"id":19840},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19867":{"style":{"__isSmartRef__":true,"id":19868},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":".get(","__LivelyClassName__":"lively.morphic.TextChunk"},"19868":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19869":{"style":{"__isSmartRef__":true,"id":19870},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"'bar'","__LivelyClassName__":"lively.morphic.TextChunk"},"19870":{"color":{"__isSmartRef__":true,"id":19871},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19871":{"r":0,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19872":{"style":{"__isSmartRef__":true,"id":19873},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":");\n bar.setPosition(pt(","__LivelyClassName__":"lively.morphic.TextChunk"},"19873":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19874":{"style":{"__isSmartRef__":true,"id":19875},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk"},"19875":{"color":{"__isSmartRef__":true,"id":19876},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19876":{"r":0,"g":0,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19877":{"style":{"__isSmartRef__":true,"id":19878},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":",","__LivelyClassName__":"lively.morphic.TextChunk"},"19878":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19879":{"style":{"__isSmartRef__":true,"id":19880},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"1","__LivelyClassName__":"lively.morphic.TextChunk"},"19880":{"color":{"__isSmartRef__":true,"id":19876},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19881":{"style":{"__isSmartRef__":true,"id":19882},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"));\n bar.setExtent(pt(","__LivelyClassName__":"lively.morphic.TextChunk"},"19882":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19883":{"style":{"__isSmartRef__":true,"id":19884},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Math","__LivelyClassName__":"lively.morphic.TextChunk"},"19884":{"color":{"__isSmartRef__":true,"id":19885},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19885":{"r":1,"g":0.0784313725490196,"b":0.5764705882352941,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19886":{"style":{"__isSmartRef__":true,"id":19887},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":".floor(maxExt.x * value), maxExt.y));\n","__LivelyClassName__":"lively.morphic.TextChunk"},"19887":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19888":{"style":{"__isSmartRef__":true,"id":19889},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk"},"19889":{"color":{"__isSmartRef__":true,"id":19849},"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19890":{"style":{"__isSmartRef__":true,"id":19891},"chunkOwner":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":");","__LivelyClassName__":"lively.morphic.TextChunk"},"19891":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"19892":{"resizeWidth":true,"resizeHeight":true},"19893":{"requiredModules":[],"partsSpaceName":"PartsBin/Widgets/","migrationLevel":2,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"19894":{"x":428.8038277511961,"y":324.91387559808607,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"19895":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19896":{"morph":{"__isSmartRef__":true,"id":19829},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19897":{"ensureAnnotationLayer":{"__isSmartRef__":true,"id":19898}},"19898":{"time":{"__isSmartRef__":true,"id":19899},"user":"lauritz"},"19899":{"isSerializedDate":true,"string":"Thu Jun 16 2011 11:02:42 GMT+0200 (CEST)"},"19900":{"doSave":{"__isSmartRef__":true,"id":19901},"boundEval":{"__isSmartRef__":true,"id":19908},"ensureAnnotationLayer":{"__isSmartRef__":true,"id":19915}},"19901":{"varMapping":{"__isSmartRef__":true,"id":19902},"source":"function doSave() {\n $super();\n var saved = this.boundEval(this.textString);\n if (saved) {\n alertOK(\"saved source\");\n } else {\n alertDbg(\"not saved\");\n }\n}","funcProperties":{"__isSmartRef__":true,"id":19907},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"19902":{"this":{"__isSmartRef__":true,"id":19829},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":19903}},"19903":{"$super":{"__isSmartRef__":true,"id":19904}},"19904":{"varMapping":{"__isSmartRef__":true,"id":19905},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":19906},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"19905":{"obj":{"__isSmartRef__":true,"id":19829},"name":"doSave"},"19906":{},"19907":{},"19908":{"varMapping":{"__isSmartRef__":true,"id":19909},"source":"function boundEval(str) {\n var result;\n\n this.ensureAnnotationLayer();\n withLayers([ScriptAnnotationLayer], function() {\n result = $super(str);\n })\n \n if (result) {\n this.owner.updateLists();\n this.owner.selectChangedContent(str);\n }\n return result\n}","funcProperties":{"__isSmartRef__":true,"id":19914},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"19909":{"this":{"__isSmartRef__":true,"id":19829},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":19910}},"19910":{"$super":{"__isSmartRef__":true,"id":19911}},"19911":{"varMapping":{"__isSmartRef__":true,"id":19912},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch(e) {\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":19913},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"19912":{"obj":{"__isSmartRef__":true,"id":19829},"name":"boundEval"},"19913":{},"19914":{},"19915":{"varMapping":{"__isSmartRef__":true,"id":19916},"source":"function ensureAnnotationLayer() {\n module('lively.LayerableMorphs').load(true);\n if (!(\"ScriptAnnotationLayer\" in Global)) {\n cop.create(\"ScriptAnnotationLayer\").refineClass(\n lively.morphic.Morph,{\n \n addScriptAnnotationFor : function(funcOrString) {\n var func = Function.fromString(funcOrString);\n if (!func.name) return;\n\n // source not changed\n if (this[func.name] && \n this[func.name].toString() === func.toString()) return;\n\n if (!this.scriptAnnotations) this.scriptAnnotations = {};\n\n var annotation = {time : new Date()};\n if (this.world() && this.world().getUserName && \n this.world().getUserName()) {\n annotation.user = this.world().getUserName();\n }\n \n this.scriptAnnotations[func.name] = annotation;\n },\n\n addScript : function(funcOrString) {\n this.addScriptAnnotationFor(funcOrString); \n return cop.proceed.apply(this, arguments);\n }\n }); \n }\n}","funcProperties":{"__isSmartRef__":true,"id":19917},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"19916":{"this":{"__isSmartRef__":true,"id":19829}},"19917":{},"19918":{"submorphs":[{"__isSmartRef__":true,"id":19919}],"scripts":[],"id":847,"shape":{"__isSmartRef__":true,"id":19933},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":19948},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19936},"lighterFill":{"__isSmartRef__":true,"id":19949},"label":{"__isSmartRef__":true,"id":19919},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","_Rotation":0,"padding":{"__isSmartRef__":true,"id":19958},"name":"ObjectEditorClassButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":19959},"_Scale":1,"owner":null,"layout":{"__isSmartRef__":true,"id":19960},"renderContextTable":{"__isSmartRef__":true,"id":19961},"eventHandler":{"__isSmartRef__":true,"id":19962},"__LivelyClassName__":"lively.morphic.Button"},"19919":{"submorphs":[],"scripts":[],"id":848,"shape":{"__isSmartRef__":true,"id":19920},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":116,"_MaxTextHeight":18,"fixedHeight":true,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":19925},"textColor":{"__isSmartRef__":true,"id":19923},"owner":{"__isSmartRef__":true,"id":19918},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":19926}],"padding":{"__isSmartRef__":true,"id":19928},"_Padding":{"__isSmartRef__":true,"id":19929},"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":19930},"_FontFamily":"Helvetica, Sans-Serif","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19931},"eventHandler":{"__isSmartRef__":true,"id":19932},"_HandStyle":"default","_PointerEvents":"none","__LivelyClassName__":"lively.morphic.Text"},"19920":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":19921},"_Extent":{"__isSmartRef__":true,"id":19922},"_BorderColor":{"__isSmartRef__":true,"id":19923},"renderContextTable":{"__isSmartRef__":true,"id":19924},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19921":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19922":{"x":116,"y":18,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19923":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19924":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19925":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19926":{"style":{"__isSmartRef__":true,"id":19927},"chunkOwner":{"__isSmartRef__":true,"id":19919},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19927":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19928":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19929":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19930":{"x":116,"y":18,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19931":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19932":{"morph":{"__isSmartRef__":true,"id":19919},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19933":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":19934},"_Extent":{"__isSmartRef__":true,"id":19935},"_Fill":{"__isSmartRef__":true,"id":19936},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":19946},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":19947},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19934":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19935":{"x":116,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19936":{"stops":[{"__isSmartRef__":true,"id":19937},{"__isSmartRef__":true,"id":19939},{"__isSmartRef__":true,"id":19941},{"__isSmartRef__":true,"id":19943}],"vector":{"__isSmartRef__":true,"id":19945},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19937":{"offset":0,"color":{"__isSmartRef__":true,"id":19938}},"19938":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19939":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19940}},"19940":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19941":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19942}},"19942":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19943":{"offset":1,"color":{"__isSmartRef__":true,"id":19944}},"19944":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19945":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19946":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19947":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19948":{"x":820,"y":8.999999999999972,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19949":{"stops":[{"__isSmartRef__":true,"id":19950},{"__isSmartRef__":true,"id":19952},{"__isSmartRef__":true,"id":19954},{"__isSmartRef__":true,"id":19956}],"vector":{"__isSmartRef__":true,"id":19945},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19950":{"offset":0,"color":{"__isSmartRef__":true,"id":19951}},"19951":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19952":{"offset":0.4,"color":{"__isSmartRef__":true,"id":19953}},"19953":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19954":{"offset":0.6,"color":{"__isSmartRef__":true,"id":19955}},"19955":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19956":{"offset":1,"color":{"__isSmartRef__":true,"id":19957}},"19957":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19958":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19959":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"19960":{"moveHorizontal":true},"19961":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"19962":{"morph":{"__isSmartRef__":true,"id":19918},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19963":{"submorphs":[],"scripts":[],"id":138,"shape":{"__isSmartRef__":true,"id":19964},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":19970},"itemList":["-- ALL --",["value",{"__isSmartRef__":true,"id":892}],["setExtent",{"__isSmartRef__":true,"id":893}]],"selectedLineNo":0,"showsHalos":false,"name":"ObjectEditorConnectionList","partsBinMetaInfo":{"__isSmartRef__":true,"id":19971},"__SourceModuleName__":"Global.lively.morphic.Core","_Scale":1,"_ClipMode":"auto","owner":{"__isSmartRef__":true,"id":19352},"priorExtent":{"__isSmartRef__":true,"id":19972},"attributeConnections":[{"__isSmartRef__":true,"id":19973}],"doNotSerialize":["$$selection"],"doNotCopyProperties":["$$selection"],"prevScroll":[0,0],"layout":{"__isSmartRef__":true,"id":19978},"renderContextTable":{"__isSmartRef__":true,"id":19979},"eventHandler":{"__isSmartRef__":true,"id":19980},"_FontSize":10,"_Rotation":0,"selection":"-- ALL --","__LivelyClassName__":"lively.morphic.List"},"19964":{"position":{"__isSmartRef__":true,"id":19965},"_Extent":{"__isSmartRef__":true,"id":19966},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":19967},"_Fill":{"__isSmartRef__":true,"id":19968},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":19969},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19965":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19966":{"x":180,"y":55.913875598086065,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19967":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19968":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"19969":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"19970":{"x":16,"y":315,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19971":{"partsSpaceName":"PartsBin/NewWorld","migrationLevel":2,"__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"19972":{"x":180,"y":56.83253588516743,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19973":{"sourceObj":{"__isSmartRef__":true,"id":19963},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":19352},"targetMethodName":"displaySourceForConnection","converterString":"function (newValue) {\n if (!newValue) return;\n if (typeof newValue === \"string\") { \n return newValue;\n } else {\n return newValue[1];\n }; \n}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":19974},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":19975},"__LivelyClassName__":"AttributeConnection"},"19974":{"source":{"__isSmartRef__":true,"id":19963},"target":{"__isSmartRef__":true,"id":19352}},"19975":{"converter":{"__isSmartRef__":true,"id":19976}},"19976":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":19974},"source":"function (newValue) {\n if (!newValue) return;\n if (typeof newValue === \"string\") { \n return newValue;\n } else {\n return newValue[1];\n }; \n}","funcProperties":{"__isSmartRef__":true,"id":19977},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"19977":{},"19978":{"resizeHeight":true,"moveVertical":false},"19979":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateListContent":"updateListContentHTML","resizeList":"resizeListHTML","getItemIndexFromEvent":"getItemIndexFromEventHTML","getListExtent":"getListExtentHTML","setSize":"setSizeHTML","renderAsDropDownList":"renderAsDropDownListHTML","setFontSize":"setFontSizeHTML","setFontFamily":"setFontFamilyHTML","getSelectedIndexes":"getSelectedIndexesHTML","enableMultipleSelections":"enableMultipleSelectionsHTML","selectAllAt":"selectAllAtHTML","clearSelections":"clearSelectionsHTML","deselectAt":"deselectAtHTML"},"19980":{"morph":{"__isSmartRef__":true,"id":19963},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"19981":{"submorphs":[{"__isSmartRef__":true,"id":19982}],"scripts":[],"id":47,"shape":{"__isSmartRef__":true,"id":19995},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":20010},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":19998},"lighterFill":{"__isSmartRef__":true,"id":20011},"label":{"__isSmartRef__":true,"id":19982},"attributeConnections":[{"__isSmartRef__":true,"id":20020}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"showsHalos":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","_Rotation":0,"padding":{"__isSmartRef__":true,"id":20021},"name":"ObjectEditorTargetButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":20022},"_Scale":1,"owner":null,"renderContextTable":{"__isSmartRef__":true,"id":20023},"isCopyMorphRef":true,"morphRefId":1,"__LivelyClassName__":"lively.morphic.Button"},"19982":{"submorphs":[],"scripts":[],"id":48,"shape":{"__isSmartRef__":true,"id":19983},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":true,"fixedWidth":true,"_MaxTextWidth":116,"_MaxTextHeight":20,"fixedHeight":true,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":19988},"textColor":{"__isSmartRef__":true,"id":19986},"owner":{"__isSmartRef__":true,"id":19981},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","textChunks":[{"__isSmartRef__":true,"id":19989}],"padding":{"__isSmartRef__":true,"id":19991},"_Padding":{"__isSmartRef__":true,"id":19992},"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":19993},"_FontFamily":"Helvetica, Sans-Serif","_ClipMode":"hidden","_WhiteSpaceHandling":"pre-wrap","_Align":"center","_Scale":1,"renderContextTable":{"__isSmartRef__":true,"id":19994},"__LivelyClassName__":"lively.morphic.Text"},"19983":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":19984},"_Extent":{"__isSmartRef__":true,"id":19985},"_BorderColor":{"__isSmartRef__":true,"id":19986},"renderContextTable":{"__isSmartRef__":true,"id":19987},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19984":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19985":{"x":116,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19986":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"19987":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setOpacity":"setOpacityHTML"},"19988":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19989":{"style":{"__isSmartRef__":true,"id":19990},"chunkOwner":{"__isSmartRef__":true,"id":19982},"storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19990":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19991":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19992":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"19993":{"x":116,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19994":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"19995":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":19996},"_Extent":{"__isSmartRef__":true,"id":19997},"_Fill":{"__isSmartRef__":true,"id":19998},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":20008},"_BorderRadius":5,"renderContextTable":{"__isSmartRef__":true,"id":20009},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"19996":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19997":{"x":116,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"19998":{"stops":[{"__isSmartRef__":true,"id":19999},{"__isSmartRef__":true,"id":20001},{"__isSmartRef__":true,"id":20003},{"__isSmartRef__":true,"id":20005}],"vector":{"__isSmartRef__":true,"id":20007},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"19999":{"offset":0,"color":{"__isSmartRef__":true,"id":20000}},"20000":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20001":{"offset":0.4,"color":{"__isSmartRef__":true,"id":20002}},"20002":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20003":{"offset":0.6,"color":{"__isSmartRef__":true,"id":20004}},"20004":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20005":{"offset":1,"color":{"__isSmartRef__":true,"id":20006}},"20006":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20007":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"20008":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20009":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setOpacity":"setOpacityHTML"},"20010":{"x":215,"y":35,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"20011":{"stops":[{"__isSmartRef__":true,"id":20012},{"__isSmartRef__":true,"id":20014},{"__isSmartRef__":true,"id":20016},{"__isSmartRef__":true,"id":20018}],"vector":{"__isSmartRef__":true,"id":20007},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"20012":{"offset":0,"color":{"__isSmartRef__":true,"id":20013}},"20013":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20014":{"offset":0.4,"color":{"__isSmartRef__":true,"id":20015}},"20015":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20016":{"offset":0.6,"color":{"__isSmartRef__":true,"id":20017}},"20017":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20018":{"offset":1,"color":{"__isSmartRef__":true,"id":20019}},"20019":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20020":{"sourceObj":{"__isSmartRef__":true,"id":19981},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":19366},"targetMethodName":"chooseTargetMorphMenu","__SourceModuleName__":"Global.lively.bindings","converter":null,"converterString":null,"updater":null,"updaterString":null,"__LivelyClassName__":"AttributeConnection"},"20021":{"x":5,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"20022":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Simple button. Connect to 'fire' to trigger actions when the button is pressed.","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"20023":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML"},"20024":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML"},"20025":{"x":715.5,"y":73.89999999999998,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"20026":{"submorphs":[],"scripts":[],"id":149,"shape":{"__isSmartRef__":true,"id":20027},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":20032},"_MaxTextWidth":221.41088580576314,"_MaxTextHeight":22.901814300960496,"textColor":{"__isSmartRef__":true,"id":20030},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"ObjectEditorMorphSelector","partsBinMetaInfo":{"__isSmartRef__":true,"id":20033},"textChunks":[{"__isSmartRef__":true,"id":20034}],"charsReplaced":"empty","lastFindLoc":-5,"priorSelectionRange":[19,19],"prevScroll":[0,0],"_Scale":1,"_ClipMode":"hidden","list":[],"attributeConnections":[{"__isSmartRef__":true,"id":20036},{"__isSmartRef__":true,"id":20038},{"__isSmartRef__":true,"id":20039}],"doNotSerialize":["$$selection","$$savedTextString"],"doNotCopyProperties":["$$selection","$$savedTextString"],"listMorph":null,"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":19352},"priorExtent":{"__isSmartRef__":true,"id":20040},"_Align":"left","renderContextTable":{"__isSmartRef__":true,"id":20041},"eventHandler":{"__isSmartRef__":true,"id":20042},"_Rotation":0,"selection":{"__isSmartRef__":true,"id":19213},"savedTextString":"100","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":20043},"__LivelyClassName__":"lively.morphic.Text"},"20027":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":20028},"_Extent":{"__isSmartRef__":true,"id":20029},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":20030},"renderContextTable":{"__isSmartRef__":true,"id":20031},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"20028":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"20029":{"x":221.41088580576314,"y":22.901814300960496,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"20030":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"20031":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"20032":{"x":200.34258271077908,"y":18.578548559231564,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"20033":{"partsSpaceName":"PartsBin/Inputs/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"20034":{"style":{"__isSmartRef__":true,"id":20035},"chunkOwner":{"__isSmartRef__":true,"id":20026},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"ProgressBar","__LivelyClassName__":"lively.morphic.TextChunk"},"20035":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"20036":{"sourceObj":{"__isSmartRef__":true,"id":20026},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":20026},"targetMethodName":"textString","converter":null,"converterString":"function (morph) { return morph.getName() }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":20037},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"20037":{"source":{"__isSmartRef__":true,"id":20026},"target":{"__isSmartRef__":true,"id":20026}},"20038":{"sourceObj":{"__isSmartRef__":true,"id":20026},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":20026},"targetMethodName":"selection","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"20039":{"sourceObj":{"__isSmartRef__":true,"id":20026},"sourceAttrName":"selection","targetObj":{"__isSmartRef__":true,"id":19352},"targetMethodName":"setTarget","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"20040":{"x":221.41088580576314,"y":22.901814300960496,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"20041":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","triggerEvent":"triggerEventHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","setOrigin":"setOriginHTML","setClipMode":"setClipModeHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML"},"20042":{"morph":{"__isSmartRef__":true,"id":20026},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"20043":{"onMouseUp":{"__isSmartRef__":true,"id":20044},"getList":{"__isSmartRef__":true,"id":20051},"setList":{"__isSmartRef__":true,"id":20054},"reset":{"__isSmartRef__":true,"id":20057},"example":{"__isSmartRef__":true,"id":20060},"removeList":{"__isSmartRef__":true,"id":20063},"onBlur":{"__isSmartRef__":true,"id":20066},"createListMorph":{"__isSmartRef__":true,"id":20073},"resetConnections":{"__isSmartRef__":true,"id":20076}},"20044":{"varMapping":{"__isSmartRef__":true,"id":20045},"source":"function onMouseUp(evt) {\n if (evt.isCommandKey() || evt.isRightMouseButtonDown()) return $super(evt);\n if (this.listMorph) { this.removeList(); return true }\n var list = this.createListMorph();\n this.addMorph(list);\n list.align(list.bounds().topLeft(), this.shape.bounds().bottomLeft())\n connect(list, 'selection', this, 'selection');\n connect(list, 'selection', this, 'removeList');\n if (this.listMorph) this.listMorph.remove();\n this.listMorph = list;\n return true;\n}","funcProperties":{"__isSmartRef__":true,"id":20050},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20045":{"this":{"__isSmartRef__":true,"id":20026},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":20046}},"20046":{"$super":{"__isSmartRef__":true,"id":20047}},"20047":{"varMapping":{"__isSmartRef__":true,"id":20048},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":20049},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20048":{"obj":{"__isSmartRef__":true,"id":20026},"name":"onMouseUp"},"20049":{},"20050":{},"20051":{"varMapping":{"__isSmartRef__":true,"id":20052},"source":"function getList() {\n return this.world().indentedListItemsOfMorphNames();\n}","funcProperties":{"__isSmartRef__":true,"id":20053},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20052":{"this":{"__isSmartRef__":true,"id":20026}},"20053":{},"20054":{"varMapping":{"__isSmartRef__":true,"id":20055},"source":"function setList(list) {\n return this.list = list;\n}","funcProperties":{"__isSmartRef__":true,"id":20056},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20055":{"this":{"__isSmartRef__":true,"id":20026}},"20056":{},"20057":{"varMapping":{"__isSmartRef__":true,"id":20058},"source":"function reset() {\n this.list = [];\n this.textString = 'empty';\n this.removeList();\n this.resetConnections();\n this.applyStyle({fixedWidth: true, fixedHeight: true, borderWidth: 1, overflow: 'hidden'})\n}","funcProperties":{"__isSmartRef__":true,"id":20059},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20058":{"this":{"__isSmartRef__":true,"id":20026}},"20059":{},"20060":{"varMapping":{"__isSmartRef__":true,"id":20061},"source":"function example() {\n/*\nthis.example()\nthis.getList()\n*/\n this.setList(Array.range(0,100));\n this.textString = 'empty';\n}","funcProperties":{"__isSmartRef__":true,"id":20062},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20061":{"this":{"__isSmartRef__":true,"id":20026}},"20062":{},"20063":{"varMapping":{"__isSmartRef__":true,"id":20064},"source":"function removeList() {\n this.listMorph && this.listMorph.remove()\n this.listMorph = null;\n}","funcProperties":{"__isSmartRef__":true,"id":20065},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20064":{"this":{"__isSmartRef__":true,"id":20026}},"20065":{},"20066":{"varMapping":{"__isSmartRef__":true,"id":20067},"source":"function onBlur() {\n $super();\n this.removeList();\n}","funcProperties":{"__isSmartRef__":true,"id":20072},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20067":{"this":{"__isSmartRef__":true,"id":20026},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":20068}},"20068":{"$super":{"__isSmartRef__":true,"id":20069}},"20069":{"varMapping":{"__isSmartRef__":true,"id":20070},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":20071},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20070":{"obj":{"__isSmartRef__":true,"id":20026},"name":"onBlur"},"20071":{},"20072":{},"20073":{"varMapping":{"__isSmartRef__":true,"id":20074},"source":"function createListMorph() {\n return new lively.morphic.List(new Rectangle(0,0, this.getExtent().x, 520), this.getList());\n}","funcProperties":{"__isSmartRef__":true,"id":20075},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20074":{"this":{"__isSmartRef__":true,"id":20026}},"20075":{},"20076":{"varMapping":{"__isSmartRef__":true,"id":20077},"source":"function resetConnections() {\n disconnectAll(this);\n connect(this, 'selection', this, 'textString', {converter: function(morph) { return morph.getName() }});\n connect(this, 'savedTextString', this, 'selection');\n connect(this, \"selection\", this.owner, \"setTarget\");\n}","funcProperties":{"__isSmartRef__":true,"id":20078},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20077":{"this":{"__isSmartRef__":true,"id":20026}},"20078":{},"20079":{"morph":{"__isSmartRef__":true,"id":19366},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"20080":{"sortedScriptNamesOfObj":{"__isSmartRef__":true,"id":20081},"setTarget":{"__isSmartRef__":true,"id":20084},"generateSourceForScript":{"__isSmartRef__":true,"id":20087},"generateSourceForConnection":{"__isSmartRef__":true,"id":20090},"generateTargetCode":{"__isSmartRef__":true,"id":20093},"sortedConnectionNamesOfObj":{"__isSmartRef__":true,"id":20096},"displayJavaScriptSource":{"__isSmartRef__":true,"id":20099},"displaySourceForScript":{"__isSmartRef__":true,"id":20102},"displaySourceForConnection":{"__isSmartRef__":true,"id":20105},"newScript":{"__isSmartRef__":true,"id":20108},"newConnection":{"__isSmartRef__":true,"id":20111},"deleteSelectedScript":{"__isSmartRef__":true,"id":20114},"disconnectConnection":{"__isSmartRef__":true,"id":20117},"updateLists":{"__isSmartRef__":true,"id":20120},"displayInitialScript":{"__isSmartRef__":true,"id":20123},"reset":{"__isSmartRef__":true,"id":20126},"selectChangedContent":{"__isSmartRef__":true,"id":20129}},"20081":{"varMapping":{"__isSmartRef__":true,"id":20082},"source":"function sortedScriptNamesOfObj(obj) {\n if (!Functions.own(obj) || Functions.own(obj).size() == 0) return [];\n return Functions.own(obj)\n\t.select(function(name) { return obj[name].hasLivelyClosure })\n\t.sortBy(function(name) { return name.toLowerCase() });\n}","funcProperties":{"__isSmartRef__":true,"id":20083},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20082":{"this":{"__isSmartRef__":true,"id":19366}},"20083":{},"20084":{"varMapping":{"__isSmartRef__":true,"id":20085},"source":"function setTarget(morph) {\n this.reset();\n module('lively.ide.SyntaxHighlighting').load(true);\n this.target = morph;\n this.morphSelector.textString = (this.target.getName() || this.target.toString());\n this.scriptPane.doitContext = this.target;\n this.updateLists();\n this.displayInitialScript();\n}","funcProperties":{"__isSmartRef__":true,"id":20086},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20085":{"this":{"__isSmartRef__":true,"id":19366}},"20086":{},"20087":{"varMapping":{"__isSmartRef__":true,"id":20088},"source":"function generateSourceForScript(scriptName) {\n var script = this.target[scriptName].getOriginal();\n return Strings.format('this.addScript(%s);' ,script)\n}","funcProperties":{"__isSmartRef__":true,"id":20089},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20088":{"this":{"__isSmartRef__":true,"id":19366}},"20089":{},"20090":{"varMapping":{"__isSmartRef__":true,"id":20091},"source":"function generateSourceForConnection(connection) {\n var c = connection, targetObject = this.target;\n\tif (!c.getTargetObj() || !c.getTargetObj().name || \n\t\t!c.getSourceObj() || !c.getSourceObj().name) return String(c);\n\n\tvar optConfig = []\n\tif (c.converterString)\n\t\toptConfig.push(\"converter: \\n\\t\" + c.converterString)\n\tif (c.updaterString)\n\t\toptConfig.push(\"updater: \\n\\t\" + c.updaterString)\n\treturn Strings.format('connect(%s, \"%s\", %s, \"%s\", {%s});', \n\t\t\tthis.generateTargetCode(targetObject, c.getSourceObj()),\n\t\t\tc.getSourceAttrName(),\n\t\t\tthis.generateTargetCode(targetObject, c.getTargetObj()),\n\t\t\tc.getTargetMethodName(),\n\t\t\toptConfig.join(','));\n\n}","funcProperties":{"__isSmartRef__":true,"id":20092},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20091":{"this":{"__isSmartRef__":true,"id":19366}},"20092":{},"20093":{"varMapping":{"__isSmartRef__":true,"id":20094},"source":"function generateTargetCode(baseObject, targetObject) {\n\tvar name = targetObject.name;\n\tif (baseObject === targetObject) \n\t\treturn \"this\";\n\telse if (baseObject[name] === targetObject) \n\t\treturn \"this.\" + name;\n\telse if (baseObject.testObject === targetObject) \n\t\treturn \"this.testObject\";\n\telse if (baseObject.get(name) === targetObject) \n\t\treturn 'this.get(\"' + name + '\")';\n\telse if (targetObject instanceof Morph) \n\t\treturn '$morph(\"' + name + '\")';\n\telse \n\t\treturn \"????\";\n}","funcProperties":{"__isSmartRef__":true,"id":20095},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20094":{"this":{"__isSmartRef__":true,"id":19366}},"20095":{},"20096":{"varMapping":{"__isSmartRef__":true,"id":20097},"source":"function sortedConnectionNamesOfObj(obj) {\n if (\"attributeConnections\" in obj) {\n return obj.attributeConnections\n .sortBy(function(each) {return name.toLowerCase() })\n .collect(function(each) {return [each.getSourceAttrName(), each]});\n } else {\n return [];\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20098},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20097":{"this":{"__isSmartRef__":true,"id":19366}},"20098":{},"20099":{"varMapping":{"__isSmartRef__":true,"id":20100},"source":"function displayJavaScriptSource(jsCode) {\n this.scriptPane.setTextString(jsCode);\n this.scriptPane.highlightJavaScriptSyntax();\n}","funcProperties":{"__isSmartRef__":true,"id":20101},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20100":{"this":{"__isSmartRef__":true,"id":19366}},"20101":{},"20102":{"varMapping":{"__isSmartRef__":true,"id":20103},"source":"function displaySourceForScript(scriptName) {\n if (!scriptName) return;\n var code = \"\", that = this;\n if (scriptName === \"-- ALL --\") {\n this.sortedScriptNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForScript(each)).concat(\"\\n\\n\");\n });\n } else {\n code = this.generateSourceForScript(scriptName); \n }\n this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":20104},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20103":{"this":{"__isSmartRef__":true,"id":19366}},"20104":{},"20105":{"varMapping":{"__isSmartRef__":true,"id":20106},"source":"function displaySourceForConnection(connection) {\n if (!connection) return;\n var code = \"\", that = this;\n if ((typeof connection === \"string\") && connection === \"-- ALL --\") {\n this.sortedConnectionNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForConnection(each[1])).concat(\"\\n\\n\");\n })\n } else {\n code = this.generateSourceForConnection(connection);\n }\n this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":20107},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20106":{"this":{"__isSmartRef__":true,"id":19366}},"20107":{},"20108":{"varMapping":{"__isSmartRef__":true,"id":20109},"source":"function newScript() {\n if (this.target) {\n var code = \"this.addScript(function SCRIPTNAME() {\\n\\t\\n});\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20110},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20109":{"this":{"__isSmartRef__":true,"id":19366}},"20110":{},"20111":{"varMapping":{"__isSmartRef__":true,"id":20112},"source":"function newConnection() {\n if (this.target) {\n var code = \"connect(SOURCE, SOURCE_PROPERTY, TARGET, TARGET_PROPERTY);\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20113},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20112":{"this":{"__isSmartRef__":true,"id":19366}},"20113":{},"20114":{"varMapping":{"__isSmartRef__":true,"id":20115},"source":"function deleteSelectedScript() {\n if (this.scriptList.selection && this.target) {\n if (!this.target.hasOwnProperty(this.scriptList.selection)) return;\n delete this.target[this.scriptList.selection];\n this.updateLists();\n this.displayInitialScript();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20116},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20115":{"this":{"__isSmartRef__":true,"id":19366}},"20116":{},"20117":{"varMapping":{"__isSmartRef__":true,"id":20118},"source":"function disconnectConnection() {\n var selection = this.connectionList.selection;\n if (selection && \n (typeof selection !== \"string\") &&\n this.target.attributeConnections.indexOf(selection[1]) > -1) {\n var c = this.connectionList.selection[1];\n disconnect(c.sourceObj, c.sourceAttrName, c.targetObj, c.targetMethodName);\n this.updateLists();\n this.displayInitialScript();\n } \n}","funcProperties":{"__isSmartRef__":true,"id":20119},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20118":{"this":{"__isSmartRef__":true,"id":19366}},"20119":{},"20120":{"varMapping":{"__isSmartRef__":true,"id":20121},"source":"function updateLists() {\n this.scriptList.setList(this.sortedScriptNamesOfObj(this.target));\n var scriptListItems = this.scriptList.getList();\n scriptListItems.unshift(\"-- ALL --\");\n this.scriptList.setList(scriptListItems);\n\n this.connectionList.setList(this.sortedConnectionNamesOfObj(this.target));\n var connectionListItems = this.connectionList.getList();\n connectionListItems.unshift(\"-- ALL --\");\n this.connectionList.setList(connectionListItems);\n}","funcProperties":{"__isSmartRef__":true,"id":20122},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20121":{"this":{"__isSmartRef__":true,"id":19366}},"20122":{},"20123":{"varMapping":{"__isSmartRef__":true,"id":20124},"source":"function displayInitialScript() {\n if (this.scriptList.getList().size() > 1) {\n this.scriptList.selectAt(0);\n } else if (this.connectionList.getList().size() > 1) {\n this.connectionList.selectAt(0);\n } else {\n this.scriptList.selectAt(0);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20125},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20124":{"this":{"__isSmartRef__":true,"id":19366}},"20125":{},"20126":{"varMapping":{"__isSmartRef__":true,"id":20127},"source":"function reset() {\n this.target = null;\n this.scriptPane.doitContext = null;\n this.scriptList.setList();\n this.connectionList.setList();\n this.scriptPane.setTextString(\"\");\n this.morphSelector.reset();\n}","funcProperties":{"__isSmartRef__":true,"id":20128},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20127":{"this":{"__isSmartRef__":true,"id":19366}},"20128":{},"20129":{"varMapping":{"__isSmartRef__":true,"id":20130},"source":"function selectChangedContent(source) {\n\n var addScriptRegex = /this\\.addScript\\s*\\(\\s*function\\s*([^\\(]*)/g;\n var addScriptMatches = [];\n var addScriptMatch = addScriptRegex.exec(source);\n while (addScriptMatch) {\n addScriptMatches.push(addScriptMatch[1]);\n addScriptMatch = addScriptRegex.exec(source);\n }\n \n // if scripts were added, select either a specific one or all\n if (addScriptMatches.length > 0) { \n if (addScriptMatches.length === 1) {\n var index = this.scriptList.getList().indexOf(addScriptMatches[0]);\n if (index > -1) { \n return this.scriptList.selectAt(index);\n }\n }\n return this.scriptList.selectAt(0);\n }\n\n var connectionRegex = \n /connect\\(\\s*([^,]*)\\s*,\\s*\"([^,]*)\"\\s*,\\s*([^,]*)\\s*,\\s*\"([^,]*)\"/g;\n var connectionMatches = [];\n var connectionMatch = connectionRegex.exec(source);\n while (connectionMatch) {\n connectionMatches.push(connectionMatch);\n connectionMatch = connectionRegex.exec(source);\n }\n\n // if connections were made, select either a specific one or all\n if (connectionMatches.length > 0) {\n if (connectionMatches.length === 1) {\n var match = connectionMatches[0];\n for (var i=0; i -1) {\n var c = this.connectionList.selection[1];\n disconnect(c.sourceObj, c.sourceAttrName, c.targetObj, c.targetMethodName);\n this.updateLists();\n this.displayInitialScript();\n } \n}","funcProperties":{"__isSmartRef__":true,"id":20367},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20366":{"this":{"__isSmartRef__":true,"id":19352}},"20367":{},"20368":{"varMapping":{"__isSmartRef__":true,"id":20369},"source":"function displayInitialScript() {\n if (this.scriptList.getList().size() > 1) {\n this.scriptList.selectAt(0);\n } else if (this.connectionList.getList().size() > 1) {\n this.connectionList.selectAt(0);\n } else {\n this.scriptList.selectAt(0);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20370},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20369":{"this":{"__isSmartRef__":true,"id":19352}},"20370":{},"20371":{"varMapping":{"__isSmartRef__":true,"id":20372},"source":"function displayJavaScriptSource(jsCode) {\n this.scriptPane.setTextString(jsCode);\n this.scriptPane.highlightJavaScriptSyntax();\n}","funcProperties":{"__isSmartRef__":true,"id":20373},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20372":{"this":{"__isSmartRef__":true,"id":19352}},"20373":{},"20374":{"varMapping":{"__isSmartRef__":true,"id":20375},"source":"function displaySourceForConnection(connection) {\n if (!connection) return;\n var code = \"\", that = this;\n if ((typeof connection === \"string\") && connection === \"-- ALL --\") {\n this.sortedConnectionNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForConnection(each[1])).concat(\"\\n\\n\");\n })\n } else {\n code = this.generateSourceForConnection(connection);\n }\n this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":20376},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20375":{"this":{"__isSmartRef__":true,"id":19352}},"20376":{},"20377":{"varMapping":{"__isSmartRef__":true,"id":20378},"source":"function displaySourceForScript(scriptName) {\n if (!scriptName) return;\n var code = \"\", that = this;\n if (scriptName === \"-- ALL --\") {\n this.sortedScriptNamesOfObj(this.target).forEach(function(each) {\n code = code.concat(that.generateSourceForScript(each)).concat(\"\\n\\n\\n\");\n });\n } else {\n code = this.generateSourceForScript(scriptName); \n }\n this.displayJavaScriptSource(code);\n}","funcProperties":{"__isSmartRef__":true,"id":20379},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20378":{"this":{"__isSmartRef__":true,"id":19352}},"20379":{},"20380":{"varMapping":{"__isSmartRef__":true,"id":20381},"source":"function generateSourceForConnection(connection) {\n var c = connection, targetObject = this.target;\n\tif (!c.getTargetObj() || !c.getTargetObj().name || \n\t\t!c.getSourceObj() || !c.getSourceObj().name) return String(c);\n\n\tvar optConfig = []\n\tif (c.converterString)\n\t\toptConfig.push(\"converter: \\n\\t\" + c.converterString)\n\tif (c.updaterString)\n\t\toptConfig.push(\"updater: \\n\\t\" + c.updaterString)\n\treturn Strings.format('connect(%s, \"%s\", %s, \"%s\", {%s});', \n\t\t\tthis.generateTargetCode(targetObject, c.getSourceObj()),\n\t\t\tc.getSourceAttrName(),\n\t\t\tthis.generateTargetCode(targetObject, c.getTargetObj()),\n\t\t\tc.getTargetMethodName(),\n\t\t\toptConfig.join(','));\n\n}","funcProperties":{"__isSmartRef__":true,"id":20382},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20381":{"this":{"__isSmartRef__":true,"id":19352}},"20382":{},"20383":{"varMapping":{"__isSmartRef__":true,"id":20384},"source":"function generateSourceForScript(scriptName) {\n var script = this.target[scriptName].getOriginal();\n var source = \"\";\n if (this.target.scriptAnnotations && \n this.target.scriptAnnotations[scriptName]) {\n var user = this.target.scriptAnnotations[scriptName].user;\n var time = this.target.scriptAnnotations[scriptName].time;\n source = Strings.format('// changed at %s by %s \\n\\n', time, user);\n }\n return source + Strings.format('this.addScript(%s);', script);\n}","funcProperties":{"__isSmartRef__":true,"id":20385},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20384":{"this":{"__isSmartRef__":true,"id":19352}},"20385":{},"20386":{"varMapping":{"__isSmartRef__":true,"id":20387},"source":"function generateTargetCode(baseObject, targetObject) {\n\tvar name = targetObject.name;\n\tif (baseObject === targetObject) \n\t\treturn \"this\";\n\telse if (baseObject[name] === targetObject) \n\t\treturn \"this.\" + name;\n\telse if (baseObject.testObject === targetObject) \n\t\treturn \"this.testObject\";\n\telse if (baseObject.get(name) === targetObject) \n\t\treturn 'this.get(\"' + name + '\")';\n\telse if (targetObject instanceof Morph) \n\t\treturn '$morph(\"' + name + '\")';\n\telse \n\t\treturn \"????\";\n}","funcProperties":{"__isSmartRef__":true,"id":20388},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20387":{"this":{"__isSmartRef__":true,"id":19352}},"20388":{},"20389":{"varMapping":{"__isSmartRef__":true,"id":20390},"source":"function newConnection() {\n if (this.target) {\n var code = \"connect(SOURCE, SOURCE_PROPERTY, TARGET, TARGET_PROPERTY);\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20391},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20390":{"this":{"__isSmartRef__":true,"id":19352}},"20391":{},"20392":{"varMapping":{"__isSmartRef__":true,"id":20393},"source":"function newScript() {\n if (this.target) {\n var code = \"this.addScript(function SCRIPTNAME() {\\n\\t\\n});\";\n this.displayJavaScriptSource(code);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":20394},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20393":{"this":{"__isSmartRef__":true,"id":19352}},"20394":{},"20395":{"varMapping":{"__isSmartRef__":true,"id":20396},"source":"function reset() {\n this.scriptPane = this.get('ObjectEditorScriptPane')\n this.scriptList = this.get('ObjectEditorScriptList')\n this.connectionList = this.get('ObjectEditorConnectionList')\n this.morphSelector = this.get('ObjectEditorMorphSelector')\n this.target = null;\n this.scriptPane.doitContext = null;\n this.scriptList.setList();\n this.connectionList.setList();\n this.scriptPane.setTextString(\"\");\n this.morphSelector.reset();\n}","funcProperties":{"__isSmartRef__":true,"id":20397},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"20396":{"this":{"__isSmartRef__":true,"id":19352}},"20397":{},"20398":{"varMapping":{"__isSmartRef__":true,"id":20399},"source":"function selectChangedContent(source) {\n\n var addScriptRegex = /this\\.addScript\\s*\\(\\s*function\\s*([^\\(]*)/g;\n var addScriptMatches = [];\n var addScriptMatch = addScriptRegex.exec(source);\n while (addScriptMatch) {\n addScriptMatches.push(addScriptMatch[1]);\n addScriptMatch = addScriptRegex.exec(source);\n }\n \n // if scripts were added, select either a specific one or all\n if (addScriptMatches.length > 0) { \n if (addScriptMatches.length === 1) {\n var index = this.scriptList.getList().indexOf(addScriptMatches[0]);\n if (index > -1) { \n return this.scriptList.selectAt(index);\n }\n }\n return this.scriptList.selectAt(0);\n }\n\n var connectionRegex = \n /connect\\(\\s*([^,]*)\\s*,\\s*\"([^,]*)\"\\s*,\\s*([^,]*)\\s*,\\s*\"([^,]*)\"/g;\n var connectionMatches = [];\n var connectionMatch = connectionRegex.exec(source);\n while (connectionMatch) {\n connectionMatches.push(connectionMatch);\n connectionMatch = connectionRegex.exec(source);\n }\n\n // if connections were made, select either a specific one or all\n if (connectionMatches.length > 0) {\n if (connectionMatches.length === 1) {\n var match = connectionMatches[0];\n for (var i=0; i