>basicRequire: ' + e, debugCode)\n } finally {\n module.deactivate();\n }\n }\n module.addOnloadCallback(codeWrapper);\n module.load();\n }\n };\n };\n\n dbgOn(!Object.isString(moduleName));\n var module = createNamespaceModule(moduleName);\n module.wasDefined = true;\n module.requires = basicRequire.curry(module);\n return module;\n},require: function require(/*requiredModuleNameOrAnArray, anotherRequiredModuleName, ...*/) {\n var getUniqueName = function() { return 'anonymous_module_' + require.counter },\n args = $A(arguments);\n require.counter !== undefined ? require.counter++ : require.counter = 0;\n var m = module(getUniqueName()).beAnonymous();\n if (lively.Config.showModuleDefStack)\n try { throw new Error() } catch(e) { m.defStack = e.stack }\n return m.requires(Object.isArray(args[0]) ? args[0] : args);\n},Class: [object Object],getStack: function getStack() {\n var result = [];\n for(var caller = arguments.callee.caller; caller; caller = caller.caller) {\n if (result.indexOf(caller) != -1) {\n result.push({name: \"recursive call can't be traced\"});\n break;\n }\n result.push(caller);\n };\n return result;\n},printStack: function printStack() {\n function guessFunctionName(func) {\n var qName = func.qualifiedMethodName && func.qualifiedMethodName(),\n regExpRes = func.toString().match(/function (.+)\\(/);\n return qName || (regExpRes && regExpRes[1]) || func;\n };\n\n var string = \"== Stack ==\\n\",\n stack = getStack();\n stack.shift(); // for getStack\n stack.shift(); // for printStack (me)\n var indent = \"\";\n for (var i=0; i < stack.length; i++) {\n string += indent + i + \": \" +guessFunctionName(stack[i]) + \"\\n\";\n indent += \" \";\n };\n return string;\n},logStack: function logStack() {\n this.console.log(printStack());\n},reqs: [lively.morphic.CompatLayer, lively.morphic.Widgets, lively.morphic.MorphAddons],$: function ( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},jQuery: function ( selector, context ) {\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\treturn new jQuery.fn.init( selector, context, rootjQuery );\n\t},requestAnimationFrame: function webkitRequestAnimationFrame() { [native code] },cancelAnimationFrame: function webkitCancelAnimationFrame() { [native code] },CustomJSON: [object Object],Objects: [object Object],Properties: [object Object],Strings: [object Object],Numbers: [object Object],UserAgent: [object Object],constructor: function Namespace(){ Class.initializer.apply(this, arguments) },initialize: function (context, nsName) {\n this.namespaceIdentifier = context.namespaceIdentifier + '.' + nsName;\n this.createTime = new Date();\n },gather: function (selector, condition, recursive) {\n var result = Object.values(this).select(function(ea) { return condition.call(this, ea) }, this);\n if (!recursive) return result;\n return this.subNamespaces().inject(result, function(result, ns) { return result.concat(ns[selector](true)) });\n },subNamespaces: function (recursive) {\n return this.gather(\n 'subNamespaces',\n function(ea) { return (ea instanceof lively.lang.Namespace || ea === Global) && ea !== this },\n recursive);\n },classes: function (recursive) {\n var normalClasses = this.gather(\n 'classes',\n function(ea) { return ea && ea !== this.constructor && Class.isClass(ea) },\n recursive);\n if (this === Global)\n return [Array, Number, String, Function].concat(normalClasses);\n return normalClasses;\n },functions: function (recursive) {\n return this.gather(\n 'functions',\n function(ea) { return ea\n && !Class.isClass(ea)\n && Object.isFunction(ea)\n && !ea.declaredClass\n && this.requires !== ea\n && ea.getOriginal() === ea },\n recursive);\n },namespaceIdentifier: Global,isLoaded: function () {\n return true;\n },lively: module(Global.lively),UUID: function UUID(){ Class.initializer.apply(this, arguments) },Namespace: [object Object],Converter: [object Object],NodeFactory: [object Object],XLinkNS: [object Object],LivelyNS: [object Object],XHTMLNS: [object Object],Exporter: function Exporter(){ Class.initializer.apply(this, arguments) },Copier: function Copier(){ Class.initializer.apply(this, arguments) },Importer: function Importer(){ Class.initializer.apply(this, arguments) },DocLinkConverter: function DocLinkConverter(){ Class.initializer.apply(this, arguments) },stringToXML: function (string) {\n return new DOMParser().parseFromString(string, \"text/xml\").documentElement;\n },RealTrait: function RealTrait(){ Class.initializer.apply(this, arguments) },Trait: function (/*traitName, def ... */) {\n var args = $A(arguments),\n traitName = args.shift(),\n trait = RealTrait.named(traitName),\n category = ' default category';\n for (var i = 0; i < args.length; i++) {\n if (Object.isString(args[i])) {\n category = args[i];\n } else {\n trait.extend(category, args[i]);\n }\n }\n return trait;\n },logStackFor: function (obj, methodName) {\n obj[methodName] = obj[methodName].wrap(function(proceed) {\n var args = $A(arguments); args.shift();\n MyLogDepth++;\n dbgOn(true);\n var result = proceed.apply(this, args);\n\n logStack();\n MyLogDepth--;\n return result\n })\n },MyLogDepth: 0,resetLogDepth: function () { MyLogDepth = 0 },logCall: function (args, from, shift) {\n var s = Strings.indent('', ' ', Global.MyLogDepth);\n if (from) s += String(from) + \" \";\n s += args.callee.qualifiedMethodName() + \"(\"\n var myargs = $A(args);\n if (shift) myargs.shift(); // for loggin inside wrapper functions\n myargs.each(function(ea){ s += ea + \", \"});\n s += \")\";\n console.log(s);\n },logCallHelper: function (from, methodName, args, indent) {\n return Strings.indent(\n Strings.format('%s>>%s(%s)',\n from.toString(),\n methodName,\n args.collect(function(ea) { return ea.toString() }).join(', ')),\n ' ', indent);\n },logMethod: function (obj, methodName) {\n obj[methodName] = obj[methodName].wrap(function(proceed) {\n var args = $A(arguments); args.shift();\n MyLogDepth++;\n console.log(logCallHelper(this, methodName, args, MyLogDepth * 2))\n var result = proceed.apply(this, args);\n MyLogDepth--;\n return result\n })\n },printObject: function (obj) {\n var s = String(obj) + \":\";\n Properties.own(obj).forEach(function(ea) {\n var value;\n try { value = String(obj[ea])} catch (e) { };\n s += \" \" + ea + \":\" + value + \"\\n\"\n });\n return s\n },printObjectFull: function (obj) {\n var s = \"{\";\n for(ea in obj) {\n s += \" \" + ea + \":\" + String(obj[ea]) + \", \\n\"\n };\n return s + \"}\"\n },logObject: function (obj) {\n console.log(printObject(obj))\n },AttributeConnection: function AttributeConnection(){ Class.initializer.apply(this, arguments) },connect: function () { [native code] },disconnect: function (sourceObj, attrName, targetObj, targetMethodName) {\n if (!sourceObj.attributeConnections) return;\n\n sourceObj.attributeConnections.select(function(con) {\n return \tcon.getSourceAttrName() == attrName &&\n con.getTargetObj() === targetObj &&\n con.getTargetMethodName() == targetMethodName;\n }).forEach(function(con) { con.disconnect() });\n\n if (typeof sourceObj['onDisconnect'] == 'function') {\n sourceObj.onDisconnect(attrName, targetObj, targetMethodName);\n };\n },disconnectAll: function (sourceObj) {\n while (sourceObj.attributeConnections && sourceObj.attributeConnections.length > 0) {\n sourceObj.attributeConnections[0].disconnect();\n }\n },signal: function (sourceObj, attrName, newVal) {\n var connections = sourceObj.attributeConnections;\n if (!connections) return;\n var oldVal = sourceObj[attrName];\n for (var i = 0, len = connections.length; i < len; i++) {\n var c = connections[i];\n if (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n }\n },updateAttributeConnection: function (sourceObj, attrName, newVal) {\n var connections = sourceObj.attributeConnections;\n if (!connections) return;\n var oldVal = sourceObj[attrName];\n for (var i = 0, len = connections.length; i < len; i++) {\n var c = connections[i];\n if (c.getSourceAttrName() == attrName) c.update(newVal, oldVal);\n }\n },apps: module(Global.apps),Point: function Point(){ Class.initializer.apply(this, arguments) },pt: function (x, y) {\n // DEPRECATED: use lively.pt(x, y) instead\n return lively.pt(x, y);\n},Rectangle: function Rectangle(){ Class.initializer.apply(this, arguments) },rect: function (arg1, arg2, arg3, arg4) {\n // DEPRECATED: use lively.rect(arg1, arg2, arg3, arg4) instead\n return lively.rect(arg1, arg2, arg3, arg4);\n},Color: function Color(){ Class.initializer.apply(this, arguments) },ObjectGraphLinearizer: function ObjectGraphLinearizer(){ Class.initializer.apply(this, arguments) },ObjectLinearizerPlugin: function ObjectLinearizerPlugin(){ Class.initializer.apply(this, arguments) },ClassPlugin: function ClassPlugin(){ Class.initializer.apply(this, arguments) },LayerPlugin: function LayerPlugin(){ Class.initializer.apply(this, arguments) },StoreAndRestorePlugin: function StoreAndRestorePlugin(){ Class.initializer.apply(this, arguments) },DoNotSerializePlugin: function DoNotSerializePlugin(){ Class.initializer.apply(this, arguments) },DoWeakSerializePlugin: function DoWeakSerializePlugin(){ Class.initializer.apply(this, arguments) },LivelyWrapperPlugin: function LivelyWrapperPlugin(){ Class.initializer.apply(this, arguments) },IgnoreDOMElementsPlugin: function IgnoreDOMElementsPlugin(){ Class.initializer.apply(this, arguments) },RegExpPlugin: function RegExpPlugin(){ Class.initializer.apply(this, arguments) },OldModelFilter: function OldModelFilter(){ Class.initializer.apply(this, arguments) },DEPRECATEDScriptFilter: function DEPRECATEDScriptFilter(){ Class.initializer.apply(this, arguments) },ClosurePlugin: function ClosurePlugin(){ Class.initializer.apply(this, arguments) },IgnoreFunctionsPlugin: function IgnoreFunctionsPlugin(){ Class.initializer.apply(this, arguments) },GenericFilter: function GenericFilter(){ Class.initializer.apply(this, arguments) },ConversionPlugin: function ConversionPlugin(){ Class.initializer.apply(this, arguments) },AttributeConnectionPlugin: function AttributeConnectionPlugin(){ Class.initializer.apply(this, arguments) },CopyOnlySubmorphsPlugin: function CopyOnlySubmorphsPlugin(){ Class.initializer.apply(this, arguments) },IgnoreEpiMorphsPlugin: function IgnoreEpiMorphsPlugin(){ Class.initializer.apply(this, arguments) },cop: module(Global.cop),enableLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },disableLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },withoutLayers: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },createLayer: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerObject: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClass: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },layerClassAndSubclasses: function wrapped() {\n var wrapperArgs = wrapper.isWrapper ? Array.from(arguments) : [__method.bind(this)].concat(Array.from(arguments));\n return wrapper.apply(this, wrapperArgs);\n },Layer: function Layer(){ Class.initializer.apply(this, arguments) },LayerableObjectTrait: [object Object],LayerableObject: function LayerableObject(){ Class.initializer.apply(this, arguments) },COPError: function COPError(){ Class.initializer.apply(this, arguments) },CouchDB: function CouchDB(){ Class.initializer.apply(this, arguments) },ometa: module(Global.ometa),escapeStringFor: [object Object],escapeChar: function (c) {\n var charCode = c.charCodeAt(0)\n return charCode > 255 ? String.fromCharCode(charCode) : escapeStringFor[charCode]\n},getTag: function (x) {\n\t\tif (x === null || x === undefined) return x;\n\t\tswitch (typeof x) {\n\t\t\tcase 'object': return x.hasOwnProperty(\"_id_\") ? x._id_ : x._id_ = \"R\" + numIds++;\n\t\t\tcase 'boolean': return x ? \"Btrue\" : \"Bfalse\";\n\t\t\tcase 'string': return \"S\" + x;\n\t\t\tcase 'number': return \"N\" + x;\n\t\t}\n\t\tthrow new Error('Cannot determine tag for object ' + x);\n\t},printOn: function ometaPrintOn(objOrArray, ws) {\n\tif (Object.isArray(objOrArray)) {\n\t\tws.nextPutAll(\"[\")\n\t\tfor (var idx = 0; idx < objOrArray.length; idx++) {\n\t\t\tif (idx > 0)\n\t\t\tws.nextPutAll(\", \")\n\t\t\tprintOn(objOrArray[idx], ws);\n\t\t}\n\t\tws.nextPutAll(\"]\")\n\t} else {\n\t\tws.nextPutAll(objOrArray !== 0 && !objOrArray ? String(objOrArray) : objOrArray.toString())\n\t}\n},ownPropertyNames: function ownPropertyNames(obj) {\n var r = []\n for (name in obj)\n if (obj.hasOwnProperty(name))\n r.push(name)\n return r\n},hasProperty: function hasProperty(obj, p) { { return obj[p] != undefined } },isImmutable: function (x) { return x === null || x === undefined || typeof x === 'boolean' || typeof x === 'number' || typeof x === 'string'},isNumber: function isNumber(obj) { return Object.isNumber(obj) },isString: function isString(obj) { return Object.isString(obj) },isCharacter: function isCharacter(obj) { return Object.isString(obj) && obj.length == 1 },isSpace: function isSpace(obj) { return isCharacter(obj) && obj.charCodeAt(0) <= 32 },isDigit: function isDigit(obj) { return isCharacter(obj) && obj >= \"0\" && obj <= \"9\" },isLower: function isLower(obj) { return isCharacter(obj) && obj >= \"a\" && obj <= \"z\" },isUpper: function isUpper(obj) { return isCharacter(obj) && obj >= \"A\" && obj <= \"Z\" },digitValue: function digitValue(obj) { return Object.isString(obj) && obj.charCodeAt(0) - \"0\".charCodeAt(0) },isSequenceable: function (obj) { return Object.isArray(obj) || Object.isString(obj) },StringBuffer: function StringBuffer() {\n this.strings = []\n for (var idx = 0; idx < arguments.length; idx++)\n this.nextPutAll(arguments[idx])\n},ReadStream: function ReadStream(anArrayOrString) {\n this.src = anArrayOrString\n this.pos = 0\n},ometaUnescape: function ometaUnescape(s) {\n if (s[0] == '\\\\')\n switch (s[1]) {\n case '\\\\': return '\\\\'\n case 'r': return '\\r'\n case 'n': return '\\n'\n case 't': return '\\t'\n default: return s[1]\n }\n else\n return s\n},tempnam: function tempnam(s) { return (s ? s : \"_tmpnam_\") + tempnam.n++ },Change: function Change(){ Class.initializer.apply(this, arguments) },ChangeSet: function ChangeSet(){ Class.initializer.apply(this, arguments) },ClassChange: function ClassChange(){ Class.initializer.apply(this, arguments) },ProtoChange: function ProtoChange(){ Class.initializer.apply(this, arguments) },StaticChange: function StaticChange(){ Class.initializer.apply(this, arguments) },MethodCategoryChange: function MethodCategoryChange(){ Class.initializer.apply(this, arguments) },DoitChange: function DoitChange(){ Class.initializer.apply(this, arguments) },AnotherCodeMarkupParser: function AnotherCodeMarkupParser(){ Class.initializer.apply(this, arguments) },CrayonColors: function CrayonColors(){ Class.initializer.apply(this, arguments) },Model: function Model(){ Class.initializer.apply(this, arguments) },SyntheticModel: function SyntheticModel(){ Class.initializer.apply(this, arguments) },ViewTrait: [object Object],View: function View(){ Class.initializer.apply(this, arguments) },range: function (begin, end, step) {\n step = step || 1\n var result = [];\n for (var i = begin; i <= end; i += step)\n result.push(i);\n return result;\n },newFakeMouseEvent: function (point) {\n // DEPRECATED use livelymorphic.Events EventSimulator\n var rawEvent = {\n type: \"mousemove\",\n pageX: 100,\n pageY: 100,\n altKey: false,\n shiftKey: false,\n metaKey: false\n };\n var evt = new Event(rawEvent);\n evt.hand = lively.morphic.World.current().hands.first();\n if (point) evt.mousePoint = point;\n return evt;\n },showThenHide: function (morph, duration) {\n duration = duration || 3;\n morph.openInWorld();\n if (duration) // FIXME use scheduler\n (function() { morph.remove() }).delay(duration);\n },showPt: function (/*pos or x,y, duration, extent*/) {\n var args = $A(arguments);\n // pos either specified using point object or two numbers\n var pos = args[0].constructor == lively.Point ?\n args.shift() :\n pt(args.shift(), args.shift());\n var duration = args.shift();\n var extent = args.shift() || pt(12,12);\n\n\n var b = new BoxMorph(extent.extentAsRectangle());\n b.align(b.getCenter(), pos);\n b.applyStyle({fill: Color.red});\n b.ignoreEvents();\n b.disableEvents();\n b.setOpacity(0.5);\n\n showThenHide(b, duration);\n return b;\n },showRect: function (rect, duration) {\n var b = new BoxMorph(rect);\n b.applyStyle({borderColor: Color.red, borderWidth: 2, fill: null});\n b.ignoreEvents();\n b.disableEvents();\n b.setOpacity(0.5);\n showThenHide(b, duration);\n return b\n },showMorph: function (morph) {\n showRect(morph.getGlobalTransform().transformRectToRect(morph.shape.bounds()))\n },showConnection: function (c, duration) {\n var m1 = c.getSourceObj();\n var m2 = c.getTargetObj();\n\n if (m1.isConnectionVisualization || m2.isConnectionVisualization) return; // don't show yourself...\n if (!(m1 instanceof Morph)) return;\n if (!(m2 instanceof Morph)) return;\n\n var morph = Morph.makeConnector(pt(100,100), pt(200,200));\n morph.isConnectionVisualization = true;\n\n if (duration) showThenHide(morph, duration);\n else morph.openInWorld();\n\n morph.setBorderWidth(2);\n morph.setBorderColor(Color.red);\n morph.arrowHead.head.setFill(Color.red);\n morph.arrowHead.head.setBorderColor(Color.red);\n\n var labelStyle = {fill: Color.white, textColor: Color.red};\n\n morph.connectMorphs(m1, m2)\n var startLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.getSourceAttrName()).beLabel();\n startLabel.applyStyle(labelStyle);\n morph.addMorph(startLabel);\n morph.startLabel = startLabel;\n\n var endLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.getTargetMethodName()).beLabel();\n endLabel.applyStyle(labelStyle);\n morph.addMorph(endLabel);\n morph.endLabel = endLabel;\n\n if (c.converterString) {\n var middleLabel = new lively.morphic.Text(new Rectangle(0,0, 100,30), c.converterString).beLabel();\n middleLabel.applyStyle(labelStyle);\n morph.addMorph(middleLabel);\n morph.middleLabel = middleLabel;\n }\n\n morph.addScript(function updateLabelPositions() {\n this.startLabel.setPosition(this.getStartPos());\n this.endLabel.setPosition(this.getEndPos());\n if (this.middleLabel) this.middleLabel.setPosition(this.getRelativePoint(0.5));\n });\n\n connect(morph, 'geometryChanged', morph, 'updateLabelPositions');\n\n morph.toggleLineStyle();\n\n return morph;\n },showConnections: function (obj) {\n if (!obj.attributeConnections) return;\n for (var i = 0; i < obj.attributeConnections.length; i++)\n showConnection(obj.attributeConnections[i]);\n },hideAllConnections: function (morph) {\n morph.withAllSubmorphsDo(function() {\n if (this.isConnectionVisualization) this.remove();\n });\n },fail: match failed,OMeta: [object Object],ChunkParser: [object Object],OMInputStream: function OMInputStream(hd, tl) {\n this.memo = { }\n this.hd = hd\n this.tl = tl\n},OMInputStreamEnd: function OMInputStreamEnd(idx) {\n this.memo = { }\n this.idx = idx\n},makeArrayOMInputStream: function makeArrayOMInputStream(arr, idx) { return idx < arr.length ? new ArrayOMInputStream(arr, idx) : new OMInputStreamEnd(idx) },ArrayOMInputStream: function ArrayOMInputStream(arr, idx) {\n this.memo = { }\n this.arr = arr\n this.idx = idx\n this.hd = arr[idx]\n},makeOMInputStreamProxy: function makeOMInputStreamProxy(target) {\n return Object.delegated(target,{\n memo: { },\n target: target,\n tail: function() { return makeOMInputStreamProxy(target.tail()) }\n })\n},Failer: function Failer() { },DeprecatedView: function DeprecatedView(){ Class.initializer.apply(this, arguments) },XPathEmulator: function XPathEmulator(){ Class.initializer.apply(this, arguments) },XPathEmulatorResult: function XPathEmulatorResult(){ Class.initializer.apply(this, arguments) },Query: function Query(){ Class.initializer.apply(this, arguments) },Styles: function Styles(){ Class.initializer.apply(this, arguments) },DisplayThemes: [object Object],Parser: [object Object],BSNullOptimization: [object Object],BSAssociativeOptimization: [object Object],BSSeqInliner: [object Object],JumpTable: function (choiceOp,choice){(this[\"choiceOp\"]=choiceOp);(this[\"choices\"]=({}));this.add(choice)},BSJumpTableOptimization: [object Object],BSOMetaOptimizer: [object Object],URL: function URL(){ Class.initializer.apply(this, arguments) },NetRequestStatus: function NetRequestStatus(){ Class.initializer.apply(this, arguments) },NetRequest: function NetRequest(){ Class.initializer.apply(this, arguments) },NetRequestReporterTrait: [object Object],NetRequestReporter: function NetRequestReporter(){ Class.initializer.apply(this, arguments) },Resource: function Resource(){ Class.initializer.apply(this, arguments) },SVNResource: function SVNResource(){ Class.initializer.apply(this, arguments) },SVNVersionInfo: function SVNVersionInfo(){ Class.initializer.apply(this, arguments) },WebResource: function WebResource(){ Class.initializer.apply(this, arguments) },LKFileParser: [object Object],TextDevLayer: TextDevLayer,NewMorphicCompatLayer: NewMorphicCompatLayer,_layer_object_id: 0,__layered_Morph__: undefined,Morph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_BoxMorph__: undefined,__layered_TextMorph__: undefined,__layered_WorldMorph__: undefined,WorldMorph: function World(){ Class.initializer.apply(this, arguments) },__layered_ButtonMorph__: undefined,ButtonMorph: function Button(){ Class.initializer.apply(this, arguments) },__layered_PanelMorph__: undefined,PanelMorph: function Panel(){ Class.initializer.apply(this, arguments) },__layered_HorizontalDivider__: undefined,HorizontalDivider: function HorizontalDivider(){ Class.initializer.apply(this, arguments) },__layered_SliderMorph__: undefined,SliderMorph: function Slider(){ Class.initializer.apply(this, arguments) },__layered_MenuMorph__: undefined,MenuMorph: function Menu(){ Class.initializer.apply(this, arguments) },__layered_ImageMorph__: undefined,ImageMorph: function Image(){ Class.initializer.apply(this, arguments) },__layered_ContainerMorph__: undefined,ContainerMorph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_TextSelectionMorph__: undefined,TextSelectionMorph: function Morph(){ Class.initializer.apply(this, arguments) },__layered_Widget__: undefined,Widget: function WindowedApp(){ Class.initializer.apply(this, arguments) },__layered_newTextPane__: undefined,newTextPane: function (initialBounds, defaultText) {\n var text = new lively.morphic.Text(initialBounds.extent().extentAsRectangle(), defaultText);\n text.applyStyle({clipMode: 'scroll', fixedWidth: true, fixedHeight: true})\n return text\n },__layered_newDragnDropListPane__: undefined,newDragnDropListPane: function (initialBounds, suppressSelectionOnUpdate) {\n return new lively.morphic.List(initialBounds, ['-----'])\n },LivelyJSParser: [object Object],JSTranslator: [object Object],BSJSParser: [object Object],keywords: [break, case, catch, continue, default, delete, do, else, finally, for, function, if, in, instanceof, new, return, switch, this, throw, try, typeof, var, void, while, with, ometa],BSJSTranslator: [object Object],less: [object Object],BSOMetaParser: [object Object],BSOMetaTranslator: [object Object],LKJSParser: [object Object],LKJSTranslator: [object Object],LKOMetaParser: [object Object],LKOMetaJSParser: [object Object],LKOMetaJSTranslator: [object Object],OMetaSupport: function OMetaSupport(){ Class.initializer.apply(this, arguments) },CodeParser: function CodeParser(){ Class.initializer.apply(this, arguments) },JsParser: function JsParser(){ Class.initializer.apply(this, arguments) },OMetaParser: function OMetaParser(){ Class.initializer.apply(this, arguments) },show: function (obj) {\n if (!obj) return null;\n if (Object.isArray(obj)) return obj.forEach(function(ea) { lively.morphic.show(ea) });\n else if (obj instanceof lively.Point) return lively.morphic.newShowPt(obj);\n else if (obj instanceof lively.Line) return lively.morphic.newShowLine(obj);\n else if (obj instanceof Rectangle) return lively.morphic.newShowRect(obj);\n else if (obj.isMorph) return lively.morphic.newShowMorph(obj);\n else if (obj instanceof HTMLElement) return lively.morphic.newShowElement(obj);\n return null;\n },alertDbg: function (msg) {\n if (Global.lively.morphic.World) alert(msg)\n },alert: function (msg, delay) {\n var world = Global.lively && lively.morphic && lively.morphic.World.current();\n if (world) world.alert(String(msg), delay);\n else console.log('ALERT: ' + msg);\n },alertOK: function (msg, delay) {\n var world = Global.lively && lively.morphic && lively.morphic.World.current();\n if (world) world.setStatusMessage(String(msg), Color.green, delay || 5);\n else console.log(msg);\n },inspect: function (obj) {\n if (Global.lively && lively.morphic && lively.morphic.World.current())\n return lively.morphic.World.current().openInspectorFor(obj);\n },edit: function (obj) {\n if (Global.lively && lively.morphic && lively.morphic.World.current())\n return lively.morphic.World.current().openObjectEditorFor(obj);\n },log: function (/*msg, args*/) {\n var args = Array.from(arguments),\n msg = Strings.format.apply(Strings, args);\n if (Config.verboseLogging) {\n $world.setStatusMessage(msg, Config.get('textColor'), 3);\n } else {\n console.log(msg);\n }\n },AnotherSourceDatabase: function AnotherSourceDatabase(){ Class.initializer.apply(this, arguments) },IgnoreRenderContextTablePlugin: function IgnoreRenderContextTablePlugin(){ Class.initializer.apply(this, arguments) },anonymous_module_0: module(Global.anonymous_module_0),$morph: function getMorphNamedShortcut(name) {\n return lively.morphic.World.current().getMorphNamed(name);\n },$world: ,$m: function getMorphWrappedObject(name){\n\n var morph = $morph(name)\n if(!morph || !morph.wrappedObject) return undefined\n return morph.wrappedObject()\n },$part: function getPartItem(partName, partSpaceName) {\n return $world.loadPartItem(partName, partSpaceName);\n },anonymous_module_1: module(Global.anonymous_module_1),ConnectorLayer: ConnectorLayer,NoMagnetsLayer: NoMagnetsLayer,PartCachingLayer: PartCachingLayer,EventExperimentLayer: EventExperimentLayer,SyntaxHighlightLayer: SyntaxHighlightLayer,SyntaxHighlighter: function SyntaxHighlighter(){ Class.initializer.apply(this, arguments) },foundClass: function Object() { [native code] },AtomicDiff: function AtomicDiff(){ Class.initializer.apply(this, arguments) },Diff: function Diff(){ Class.initializer.apply(this, arguments) },DiffList: function DiffList(){ Class.initializer.apply(this, arguments) },anonymous_module_2: module(Global.anonymous_module_2),anonymous_module_3: module(Global.anonymous_module_3),anonymous_module_4: module(Global.anonymous_module_4),AdvancedSyntaxHighlighting: AdvancedSyntaxHighlighting,anonymous_module_5: module(Global.anonymous_module_5),projects: module(Global.projects),Preloader: Preloader,anonymous_module_6: module(Global.anonymous_module_6),WorldSearchLayer: WorldSearchLayer,HighlightSearchLayer: HighlightSearchLayer,TracerStackNode: function TracerStackNode(){ Class.initializer.apply(this, arguments) },TracerTreeNode: function TracerTreeNode(){ Class.initializer.apply(this, arguments) },DebugScriptsLayer: DebugScriptsLayer,DebugMethodsLayer: DebugMethodsLayer,DebugGlobalErrorHandlerLayer: DebugGlobalErrorHandlerLayer,DeepInterpretationLayer: DeepInterpretationLayer,LiveInterpreterLayer: LiveInterpreterLayer,IntelligentSlider: IntelligentSlider,anonymous_module_7: module(Global.anonymous_module_7),LastEvent: [object MouseEvent],LastEventWasHandled: false,d3: [object Object],g: [object Object],self: [object Object],worldRequirementsChange: DoitChange named local requirements -- subelems: 0,worldRequirements: [lively.morphic.CompatLayer, apps.ObjectGrapher],removeRequirement: function (name) {\n changeSet.removeWorldRequirement(name);\n alertOK(name + ' is not loaded at startup anymore');\n },menuItems: [[lively.morphic.CompatLayer, [[Remove, function curried() {\n return __method.apply(this, args.concat(Array.from(arguments)));\n }]]], [apps.ObjectGrapher, [[Remove, function curried() {\n return __method.apply(this, args.concat(Array.from(arguments)));\n }]]]],lastMenuBounds: lively.rect(336,987,100,230),CSSCharsetRule: function CSSCharsetRule() { [native code] },HTMLLIElement: function HTMLLIElement() { [native code] },WebKitCSSTransformValue: function WebKitCSSTransformValue() { [native code] },SVGFEConvolveMatrixElement: function SVGFEConvolveMatrixElement() { [native code] },NamedNodeMap: function NamedNodeMap() { [native code] },FileReader: function FileReader() { [native code] },SVGMissingGlyphElement: function SVGMissingGlyphElement() { [native code] },FileError: function FileError() { [native code] },CompositionEvent: function CompositionEvent() { [native code] },SVGCircleElement: function SVGCircleElement() { [native code] },SVGFontFaceSrcElement: function SVGFontFaceSrcElement() { [native code] },SVGSetElement: function SVGSetElement() { [native code] },HTMLHeadingElement: function HTMLHeadingElement() { [native code] },SVGAnimatedBoolean: function SVGAnimatedBoolean() { [native code] },HTMLAnchorElement: function HTMLAnchorElement() { [native code] },HTMLHtmlElement: function HTMLHtmlElement() { [native code] },SVGImageElement: function SVGImageElement() { [native code] },OverflowEvent: function OverflowEvent() { [native code] },Int8Array: function Int8Array() { [native code] },SpeechInputEvent: function SpeechInputEvent() { [native code] },SVGFEOffsetElement: function SVGFEOffsetElement() { [native code] },HTMLFrameElement: function HTMLFrameElement() { [native code] },webkitAudioContext: function AudioContext() { [native code] },HTMLLegendElement: function HTMLLegendElement() { [native code] },TouchEvent: function TouchEvent() { [native code] },DOMStringMap: function DOMStringMap() { [native code] },RangeException: function RangeException() { [native code] },parent: [object Window],event: [object MouseEvent],webkitIDBRequest: function IDBRequest() { [native code] },SVGFEBlendElement: function SVGFEBlendElement() { [native code] },SVGAltGlyphItemElement: function SVGAltGlyphItemElement() { [native code] },Notation: function Notation() { [native code] },HTMLPreElement: function HTMLPreElement() { [native code] },Selection: function Selection() { [native code] },SVGFEMorphologyElement: function SVGFEMorphologyElement() { [native code] },Text: function Text() { [native code] },SVGFESpotLightElement: function SVGFESpotLightElement() { [native code] },SVGGlyphElement: function SVGGlyphElement() { [native code] },HTMLBaseFontElement: function HTMLBaseFontElement() { [native code] },SVGPolygonElement: function SVGPolygonElement() { [native code] },File: function File() { [native code] },SVGLinearGradientElement: function SVGLinearGradientElement() { [native code] },HTMLMenuElement: function HTMLMenuElement() { [native code] },scrollbars: [object BarInfo],pageXOffset: 0,screen: [object Screen],Attr: function Attr() { [native code] },DOMStringList: function DOMStringList() { [native code] },HTMLTitleElement: function HTMLTitleElement() { [native code] },webkitIDBTransaction: function IDBTransaction() { [native code] },performance: [object Performance],frameElement: null,SVGTitleElement: function SVGTitleElement() { [native code] },defaultStatus: ,Node: function Node() { [native code] },StyleSheet: function StyleSheet() { [native code] },SVGPathSegCurvetoCubicSmoothRel: function SVGPathSegCurvetoCubicSmoothRel() { [native code] },WebKitCSSKeyframesRule: function WebKitCSSKeyframesRule() { [native code] },webkitURL: function URL() { [native code] },XPathEvaluator: function XPathEvaluator() { [native code] },SVGLength: function SVGLength() { [native code] },Option: [object Function],WebKitCSSMatrix: function WebKitCSSMatrix() { [native code] },statusbar: [object BarInfo],Rect: function Rect() { [native code] },SVGMatrix: function SVGMatrix() { [native code] },AudioProcessingEvent: function AudioProcessingEvent() { [native code] },WebKitCSSRegionRule: function WebKitCSSRegionRule() { [native code] },SVGStringList: function SVGStringList() { [native code] },EventException: function EventException() { [native code] },WebGLBuffer: function WebGLBuffer() { [native code] },HTMLMapElement: function HTMLMapElement() { [native code] },SVGPolylineElement: function SVGPolylineElement() { [native code] },crypto: [object Crypto],SVGAnimatedLengthList: function SVGAnimatedLengthList() { [native code] },SVGStopElement: function SVGStopElement() { [native code] },CSSStyleSheet: function CSSStyleSheet() { [native code] },webkitIDBKeyRange: function IDBKeyRange() { [native code] },SVGPreserveAspectRatio: function SVGPreserveAspectRatio() { [native code] },CanvasGradient: function CanvasGradient() { [native code] },SVGAnimatedLength: function SVGAnimatedLength() { [native code] },SVGPathSegCurvetoCubicSmoothAbs: function SVGPathSegCurvetoCubicSmoothAbs() { [native code] },WebSocket: function WebSocket() { [native code] },length: 0,offscreenBuffering: true,HTMLTableSectionElement: function HTMLTableSectionElement() { [native code] },SVGPathSegCurvetoQuadraticAbs: function SVGPathSegCurvetoQuadraticAbs() { [native code] },SVGPathSegLinetoHorizontalAbs: function SVGPathSegLinetoHorizontalAbs() { [native code] },HTMLFieldSetElement: function HTMLFieldSetElement() { [native code] },HTMLAudioElement: function HTMLAudioElement() { [native code] },HTMLCollection: function HTMLCollection() { [native code] },SVGFEFuncRElement: function SVGFEFuncRElement() { [native code] },screenTop: 24,personalbar: [object BarInfo],SVGSwitchElement: function SVGSwitchElement() { [native code] },SVGAnimatedString: function SVGAnimatedString() { [native code] },PopStateEvent: function PopStateEvent() { [native code] },SVGAnimatedPreserveAspectRatio: function SVGAnimatedPreserveAspectRatio() { [native code] },HTMLImageElement: function HTMLImageElement() { [native code] },SVGLineElement: function SVGLineElement() { [native code] },WebKitPoint: function WebKitPoint() { [native code] },SVGLengthList: function SVGLengthList() { [native code] },DOMSettableTokenList: function DOMSettableTokenList() { [native code] },MediaError: function MediaError() { [native code] },SVGPathSegCurvetoQuadraticSmoothRel: function SVGPathSegCurvetoQuadraticSmoothRel() { [native code] },UIEvent: function UIEvent() { [native code] },HTMLMarqueeElement: function HTMLMarqueeElement() { [native code] },Counter: function Counter() { [native code] },HTMLDivElement: function HTMLDivElement() { [native code] },SVGRectElement: function SVGRectElement() { [native code] },SVGPoint: function SVGPoint() { [native code] },SVGAnimatedTransformList: function SVGAnimatedTransformList() { [native code] },HTMLBRElement: function HTMLBRElement() { [native code] },pageYOffset: 554,SVGElement: function SVGElement() { [native code] },HTMLElement: function HTMLElement() { [native code] },HTMLLabelElement: function HTMLLabelElement() { [native code] },HTMLOptGroupElement: function HTMLOptGroupElement() { [native code] },SVGAnimatedEnumeration: function SVGAnimatedEnumeration() { [native code] },closed: false,HTMLEmbedElement: function HTMLEmbedElement() { [native code] },HTMLDataListElement: function HTMLDataListElement() { [native code] },SVGPathSeg: function SVGPathSeg() { [native code] },WebKitIntent: function Intent() { [native code] },CSSValue: function CSSValue() { [native code] },SVGScriptElement: function SVGScriptElement() { [native code] },SVGPathSegCurvetoCubicRel: function SVGPathSegCurvetoCubicRel() { [native code] },HTMLProgressElement: function HTMLProgressElement() { [native code] },SVGAnimatedInteger: function SVGAnimatedInteger() { [native code] },MessageEvent: function MessageEvent() { [native code] },HTMLIFrameElement: function HTMLIFrameElement() { [native code] },HTMLDListElement: function HTMLDListElement() { [native code] },SVGFEDisplacementMapElement: function SVGFEDisplacementMapElement() { [native code] },DocumentFragment: function DocumentFragment() { [native code] },menubar: [object BarInfo],SVGPathSegLinetoRel: function SVGPathSegLinetoRel() { [native code] },HTMLTableCaptionElement: function HTMLTableCaptionElement() { [native code] },SVGForeignObjectElement: function SVGForeignObjectElement() { [native code] },SVGHKernElement: function SVGHKernElement() { [native code] },SVGPathSegList: function SVGPathSegList() { [native code] },SVGMaskElement: function SVGMaskElement() { [native code] },WebKitCSSKeyframeRule: function WebKitCSSKeyframeRule() { [native code] },defaultstatus: ,SVGVKernElement: function SVGVKernElement() { [native code] },styleMedia: [object StyleMedia],SVGRect: function SVGRect() { [native code] },WheelEvent: function WheelEvent() { [native code] },SVGTransformList: function SVGTransformList() { [native code] },SVGViewElement: function SVGViewElement() { [native code] },HTMLCanvasElement: function HTMLCanvasElement() { [native code] },SVGMarkerElement: function SVGMarkerElement() { [native code] },XSLTProcessor: function XSLTProcessor() { [native code] },webkitIDBFactory: function IDBFactory() { [native code] },CSSRule: function CSSRule() { [native code] },SVGPathSegCurvetoQuadraticRel: function SVGPathSegCurvetoQuadraticRel() { [native code] },SVGUseElement: function SVGUseElement() { [native code] },HTMLAreaElement: function HTMLAreaElement() { [native code] },FileList: function FileList() { [native code] },SVGSVGElement: function SVGSVGElement() { [native code] },SVGPathSegClosePath: function SVGPathSegClosePath() { [native code] },SVGFEDiffuseLightingElement: function SVGFEDiffuseLightingElement() { [native code] },HTMLDirectoryElement: function HTMLDirectoryElement() { [native code] },CustomEvent: function CustomEvent() { [native code] },Range: function Range() { [native code] },SVGAElement: function SVGAElement() { [native code] },SVGFilterElement: function SVGFilterElement() { [native code] },SVGGlyphRefElement: function SVGGlyphRefElement() { [native code] },MouseEvent: function MouseEvent() { [native code] },HTMLAppletElement: function HTMLAppletElement() { [native code] },SVGFEFloodElement: function SVGFEFloodElement() { [native code] },WebGLActiveInfo: function WebGLActiveInfo() { [native code] },WebKitBlobBuilder: function WebKitBlobBuilder() { [native code] },HTMLParagraphElement: function HTMLParagraphElement() { [native code] },Comment: function Comment() { [native code] },StyleSheetList: function StyleSheetList() { [native code] },KeyboardEvent: function KeyboardEvent() { [native code] },SVGAnimatedNumber: function SVGAnimatedNumber() { [native code] },HTMLScriptElement: function HTMLScriptElement() { [native code] },webkitNotifications: [object NotificationCenter],WebGLFramebuffer: function WebGLFramebuffer() { [native code] },webkitIDBDatabaseException: function IDBDatabaseException() { [native code] },WebKitAnimationEvent: function WebKitAnimationEvent() { [native code] },outerHeight: 936,status: ,PluginArray: function PluginArray() { [native code] },name: unserialize,ErrorEvent: function ErrorEvent() { [native code] },SharedWorker: function SharedWorker() { [native code] },DOMTokenList: function DOMTokenList() { [native code] },SQLException: function SQLException() { [native code] },innerWidth: 1024,webkitStorageInfo: [object StorageInfo],SVGAnimatedRect: function SVGAnimatedRect() { [native code] },FormData: function FormData() { [native code] },SVGPaint: function SVGPaint() { [native code] },history: [object History],SVGFESpecularLightingElement: function SVGFESpecularLightingElement() { [native code] },SVGPatternElement: function SVGPatternElement() { [native code] },HTMLFormElement: function HTMLFormElement() { [native code] },HTMLTextAreaElement: function HTMLTextAreaElement() { [native code] },CloseEvent: function CloseEvent() { [native code] },Plugin: function Plugin() { [native code] },SVGClipPathElement: function SVGClipPathElement() { [native code] },CSSValueList: function CSSValueList() { [native code] },SVGAnimatedNumberList: function SVGAnimatedNumberList() { [native code] },Document: function Document() { [native code] },locationbar: [object BarInfo],webkitAudioPannerNode: function AudioPannerNode() { [native code] },SVGAnimateMotionElement: function SVGAnimateMotionElement() { [native code] },WebGLShader: function WebGLShader() { [native code] },SVGTransform: function SVGTransform() { [native code] },MimeTypeArray: function MimeTypeArray() { [native code] },SVGFEColorMatrixElement: function SVGFEColorMatrixElement() { [native code] },webkitIDBCursor: function IDBCursor() { [native code] },PageTransitionEvent: function PageTransitionEvent() { [native code] },clientInformation: [object Navigator],SessionDescription: function SessionDescription() { [native code] },WebGLProgram: function WebGLProgram() { [native code] },WebKitMutationObserver: function WebKitMutationObserver() { [native code] },ClientRectList: function ClientRectList() { [native code] },HTMLButtonElement: function HTMLButtonElement() { [native code] },OfflineAudioCompletionEvent: function OfflineAudioCompletionEvent() { [native code] },Int32Array: function Int32Array() { [native code] },Uint8Array: function Uint8Array() { [native code] },HTMLStyleElement: function HTMLStyleElement() { [native code] },XMLSerializer: function XMLSerializer() { [native code] },IceCandidate: function IceCandidate() { [native code] },HTMLTableColElement: function HTMLTableColElement() { [native code] },Event: function Event() { [native code] },SVGDocument: function SVGDocument() { [native code] },XMLHttpRequestProgressEvent: function XMLHttpRequestProgressEvent() { [native code] },SVGFEDistantLightElement: function SVGFEDistantLightElement() { [native code] },TextMetrics: function TextMetrics() { [native code] },SVGTextPathElement: function SVGTextPathElement() { [native code] },Worker: function Worker() { [native code] },WebGLRenderingContext: function WebGLRenderingContext() { [native code] },scrollX: 0,XMLDocument: function Document() { [native code] },webkitIDBDatabase: function IDBDatabase() { [native code] },SVGDescElement: function SVGDescElement() { [native code] },XMLHttpRequestUpload: function XMLHttpRequestUpload() { [native code] },SVGFEFuncBElement: function SVGFEFuncBElement() { [native code] },SVGFEDropShadowElement: function SVGFEDropShadowElement() { [native code] },SVGAltGlyphElement: function SVGAltGlyphElement() { [native code] },SVGPathSegArcAbs: function SVGPathSegArcAbs() { [native code] },SVGPathSegCurvetoCubicAbs: function SVGPathSegCurvetoCubicAbs() { [native code] },sessionStorage: [object Storage],SVGPathSegArcRel: function SVGPathSegArcRel() { [native code] },HTMLUListElement: function HTMLUListElement() { [native code] },navigator: [object Navigator],SVGAltGlyphDefElement: function SVGAltGlyphDefElement() { [native code] },SVGTSpanElement: function SVGTSpanElement() { [native code] },SVGMPathElement: function SVGMPathElement() { [native code] },HTMLTableElement: function HTMLTableElement() { [native code] },WebGLRenderbuffer: function WebGLRenderbuffer() { [native code] },Image: [object Function],HTMLObjectElement: function HTMLObjectElement() { [native code] },SVGElementInstanceList: function SVGElementInstanceList() { [native code] },EventSource: function EventSource() { [native code] },TextEvent: function TextEvent() { [native code] },Window: function Window() { [native code] },ImageData: function ImageData() { [native code] },SVGZoomEvent: function SVGZoomEvent() { [native code] },HTMLModElement: function HTMLModElement() { [native code] },SVGFontFaceElement: function SVGFontFaceElement() { [native code] },Entity: function Entity() { [native code] },CSSMediaRule: function CSSMediaRule() { [native code] },MutationEvent: function MutationEvent() { [native code] },XPathResult: function XPathResult() { [native code] },CSSFontFaceRule: function CSSFontFaceRule() { [native code] },SVGAnimatedAngle: function SVGAnimatedAngle() { [native code] },HTMLBaseElement: function HTMLBaseElement() { [native code] },HTMLMeterElement: function HTMLMeterElement() { [native code] },DataView: function DataView() { [native code] },SVGGradientElement: function SVGGradientElement() { [native code] },WebKitTransitionEvent: function WebKitTransitionEvent() { [native code] },SVGAnimateElement: function SVGAnimateElement() { [native code] },SVGPathSegMovetoAbs: function SVGPathSegMovetoAbs() { [native code] },CSSPageRule: function CSSPageRule() { [native code] },Element: function Element() { [native code] },screenY: 24,SVGAnimateTransformElement: function SVGAnimateTransformElement() { [native code] },Blob: function Blob() { [native code] },HTMLVideoElement: function HTMLVideoElement() { [native code] },SVGFontFaceNameElement: function SVGFontFaceNameElement() { [native code] },EntityReference: function EntityReference() { [native code] },SVGPathSegCurvetoQuadraticSmoothAbs: function SVGPathSegCurvetoQuadraticSmoothAbs() { [native code] },XMLHttpRequestException: function XMLHttpRequestException() { [native code] },MessagePort: function MessagePort() { [native code] },toolbar: [object BarInfo],ClientRect: function ClientRect() { [native code] },HTMLSourceElement: function HTMLSourceElement() { [native code] },SVGException: function SVGException() { [native code] },SVGPathSegLinetoAbs: function SVGPathSegLinetoAbs() { [native code] },HTMLQuoteElement: function HTMLQuoteElement() { [native code] },HTMLBodyElement: function HTMLBodyElement() { [native code] },CSSStyleRule: function CSSStyleRule() { [native code] },SVGFEImageElement: function SVGFEImageElement() { [native code] },NodeFilter: function NodeFilter() { [native code] },webkitIDBObjectStore: function IDBObjectStore() { [native code] },SVGFEMergeNodeElement: function SVGFEMergeNodeElement() { [native code] },SVGFEGaussianBlurElement: function SVGFEGaussianBlurElement() { [native code] },HTMLDocument: function HTMLDocument() { [native code] },HTMLMediaElement: function HTMLMediaElement() { [native code] },SVGSymbolElement: function SVGSymbolElement() { [native code] },WebGLContextEvent: function WebGLContextEvent() { [native code] },SVGMetadataElement: function SVGMetadataElement() { [native code] },SVGTextElement: function SVGTextElement() { [native code] },applicationCache: [object DOMApplicationCache],localStorage: [object Storage],HTMLOListElement: function HTMLOListElement() { [native code] },HTMLOutputElement: function HTMLOutputElement() { [native code] },SVGFEMergeElement: function SVGFEMergeElement() { [native code] },WebKitCSSFilterValue: function WebKitCSSFilterValue() { [native code] },HTMLOptionElement: function HTMLOptionElement() { [native code] },SVGGElement: function SVGGElement() { [native code] },BeforeLoadEvent: function BeforeLoadEvent() { [native code] },SVGPathSegLinetoVerticalRel: function SVGPathSegLinetoVerticalRel() { [native code] },SVGTextContentElement: function SVGTextContentElement() { [native code] },TimeRanges: function TimeRanges() { [native code] },SVGPathElement: function SVGPathElement() { [native code] },XMLHttpRequest: function XMLHttpRequest() { [native code] },SVGFEPointLightElement: function SVGFEPointLightElement() { [native code] },HTMLUnknownElement: function HTMLUnknownElement() { [native code] },SVGEllipseElement: function SVGEllipseElement() { [native code] },innerHeight: 699,CSSImportRule: function CSSImportRule() { [native code] },Clipboard: function Clipboard() { [native code] },CSSRuleList: function CSSRuleList() { [native code] },SVGFEComponentTransferElement: function SVGFEComponentTransferElement() { [native code] },SVGFETileElement: function SVGFETileElement() { [native code] },SVGFEFuncGElement: function SVGFEFuncGElement() { [native code] },MediaList: function MediaList() { [native code] },SVGDefsElement: function SVGDefsElement() { [native code] },MediaController: function MediaController() { [native code] },SVGTRefElement: function SVGTRefElement() { [native code] },RGBColor: function RGBColor() { [native code] },SVGNumberList: function SVGNumberList() { [native code] },SVGRadialGradientElement: function SVGRadialGradientElement() { [native code] },HTMLMetaElement: function HTMLMetaElement() { [native code] },SVGAngle: function SVGAngle() { [native code] },DOMImplementation: function DOMImplementation() { [native code] },StorageEvent: function StorageEvent() { [native code] },SVGComponentTransferFunctionElement: function SVGComponentTransferFunctionElement() { [native code] },HTMLLinkElement: function HTMLLinkElement() { [native code] },DeviceOrientationEvent: function DeviceOrientationEvent() { [native code] },SVGPathSegLinetoVerticalAbs: function SVGPathSegLinetoVerticalAbs() { [native code] },Uint16Array: function Uint16Array() { [native code] },WebGLUniformLocation: function WebGLUniformLocation() { [native code] },webkitIDBIndex: function IDBIndex() { [native code] },ProcessingInstruction: function ProcessingInstruction() { [native code] },SVGPointList: function SVGPointList() { [native code] },HTMLKeygenElement: function HTMLKeygenElement() { [native code] },HTMLHRElement: function HTMLHRElement() { [native code] },scrollY: 554,screenLeft: 1366,SVGPathSegMovetoRel: function SVGPathSegMovetoRel() { [native code] },XPathException: function XPathException() { [native code] },DOMParser: function DOMParser() { [native code] },CSSStyleDeclaration: function CSSStyleDeclaration() { [native code] },HTMLTableCellElement: function HTMLTableCellElement() { [native code] },SVGFEFuncAElement: function SVGFEFuncAElement() { [native code] },devicePixelRatio: 1,CSSPrimitiveValue: function CSSPrimitiveValue() { [native code] },SVGTextPositioningElement: function SVGTextPositioningElement() { [native code] },HTMLAllCollection: function HTMLAllCollection() { [native code] },HashChangeEvent: function HashChangeEvent() { [native code] },WebGLTexture: function WebGLTexture() { [native code] },HTMLInputElement: function HTMLInputElement() { [native code] },CDATASection: function CDATASection() { [native code] },ArrayBuffer: function ArrayBuffer() { [native code] },HTMLSelectElement: function HTMLSelectElement() { [native code] },SVGUnitTypes: function SVGUnitTypes() { [native code] },DocumentType: function DocumentType() { [native code] },SVGFECompositeElement: function SVGFECompositeElement() { [native code] },MessageChannel: function MessageChannel() { [native code] },SVGStyleElement: function SVGStyleElement() { [native code] },Uint32Array: function Uint32Array() { [native code] },MediaStreamEvent: function MediaStreamEvent() { [native code] },WebGLShaderPrecisionFormat: function WebGLShaderPrecisionFormat() { [native code] },HTMLHeadElement: function HTMLHeadElement() { [native code] },ProgressEvent: function ProgressEvent() { [native code] },SVGAnimateColorElement: function SVGAnimateColorElement() { [native code] },SVGFontFaceUriElement: function SVGFontFaceUriElement() { [native code] },screenX: 1366,frames: [object Window],MimeType: function MimeType() { [native code] },Float64Array: function Float64Array() { [native code] },NodeList: function NodeList() { [native code] },SVGColor: function SVGColor() { [native code] },SVGFETurbulenceElement: function SVGFETurbulenceElement() { [native code] },SVGCursorElement: function SVGCursorElement() { [native code] },SVGPathSegLinetoHorizontalRel: function SVGPathSegLinetoHorizontalRel() { [native code] },SVGElementInstance: function SVGElementInstance() { [native code] },CharacterData: function CharacterData() { [native code] },webkitIndexedDB: [object IDBFactory],HTMLFrameSetElement: function HTMLFrameSetElement() { [native code] },Notification: function Notification() { [native code] },Storage: function Storage() { [native code] },Float32Array: function Float32Array() { [native code] },HTMLSpanElement: function HTMLSpanElement() { [native code] },Int16Array: function Int16Array() { [native code] },Audio: [object Function],SVGFontElement: function SVGFontElement() { [native code] },CanvasRenderingContext2D: function CanvasRenderingContext2D() { [native code] },opener: null,HTMLFontElement: function HTMLFontElement() { [native code] },Uint8ClampedArray: function Uint8ClampedArray() { [native code] },CanvasPattern: function CanvasPattern() { [native code] },outerWidth: 1280,SVGFontFaceFormatElement: function SVGFontFaceFormatElement() { [native code] },HTMLParamElement: function HTMLParamElement() { [native code] },HTMLTableRowElement: function HTMLTableRowElement() { [native code] },SVGRenderingIntent: function SVGRenderingIntent() { [native code] },SVGNumber: function SVGNumber() { [native code] },DOMException: function DOMException() { [native code] }})[mapping]\n path:[\"submorphs\"][\"0\"][\"environmentCache\"][\"0\"][\"pc\"][\"_parent\"][\"_parent\"][\"children\"][\"4\"][\"children\"][\"0\"][\"val\"][\"properties\"][\"2\"][\"property\"][\"lexicalScope\"][\"containingScope\"]","__layered_draggingEnabled__":true,"_Scale":1,"eventHandler":{"__isSmartRef__":true,"id":4240},"worldMenuOpened":true,"prevScroll":[0,-2040],"attributeConnections":[{"__isSmartRef__":true,"id":4241}],"doNotSerialize":["$$savedWorldAsURL","$$baseThemeStyleSheet"],"doNotCopyProperties":["$$savedWorldAsURL"],"savedWorldAsURL":{"__isSmartRef__":true,"id":4243},"_ClipMode":"visible","loadingMorph":{"__isSmartRef__":true,"id":4244},"clickedOnMorphTime":1357635710559,"lastModified":{"__isSmartRef__":true,"id":4370},"_Scroll":[0,-2040],"__serializedExpressions__":["_Position","eventStartPos"],"__LivelyClassName__":"lively.morphic.World","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,0.0)","eventStartPos":"lively.pt(426.0,1200.0)"},"1":{"submorphs":[{"__isSmartRef__":true,"id":2},{"__isSmartRef__":true,"id":54},{"__isSmartRef__":true,"id":106},{"__isSmartRef__":true,"id":417},{"__isSmartRef__":true,"id":440},{"__isSmartRef__":true,"id":482},{"__isSmartRef__":true,"id":523},{"__isSmartRef__":true,"id":558},{"__isSmartRef__":true,"id":2500}],"scripts":[],"id":"7B9E26FF-42D9-4BA5-A107-918DFEC73CC0","shape":{"__isSmartRef__":true,"id":2542},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"SeeTheState","partsBinMetaInfo":{"__isSmartRef__":true,"id":2543},"eventHandler":{"__isSmartRef__":true,"id":2581},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","5F7F12D5-1492-4CA2-BA16-DD5C04E20B8B","17037C40-8436-49D6-9E09-D05B30529706","EB58D9A2-20F3-4EE4-BD7C-6FF10B439A69","A7BD38F7-F024-4EBA-AA0C-C8E32BF66387","C47FA32D-69E3-4997-B42F-8D369E13120A","982320D1-1086-4672-8653-8C7155008436","B64009D2-9A04-4B65-924B-99BE41A02C67"],"partTests":{"__isSmartRef__":true,"id":2582},"_ClipMode":"visible","moved":true,"isBeingDragged":false,"prevScroll":[0,0],"doNotSerialize":["lastFrame"],"runScript":{"__isSmartRef__":true,"id":2587},"livingElements":{"__isSmartRef__":true,"id":2588},"maximumSteps":30,"ctx":{"__isSmartRef__":true,"id":2589},"stepCounter":0,"functionSource":"function(){\nvar first = { type : \"assign\", varName : \"a\", value : 10 };\nvar second = { type : \"assign\", varName : \"b\", value : 5 };\nvar third = { type : \"addition\", summand1 : { type : \"variable\", varName : \"a\" }, summand2 : { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvar result = visitor.stack.pop();\nresult;\n\n}","context":{"__isSmartRef__":true,"id":2684},"stepsToRun":23,"steps":23,"environmentCache":[{"__isSmartRef__":true,"id":2869}],"#startLetters":"acti","oldStepsToRun":23,"isLockOwner":false,"sliderStep":1,"timeline":{"__isSmartRef__":true,"id":3182},"grabbingEnabled":true,"timelineTable":{"__isSmartRef__":true,"id":3191},"timelineGrid":{"__isSmartRef__":true,"id":3192},"timelineColumns":[],"isCopyMorphRef":true,"morphRefId":1,"smallSliderBaseStep":23,"lastCacheRead":-1,"sliderObjectGraphStep":-13994,"activated":false,"owner":{"__isSmartRef__":true,"id":0},"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3193},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","withLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(8.0,-1.0)","distanceToDragEvent":"lively.pt(755.0,10.0)"},"2":{"submorphs":[{"__isSmartRef__":true,"id":3}],"scripts":[],"id":"CAFB4765-45B7-4339-AAF6-F974E786DC57","shape":{"__isSmartRef__":true,"id":10},"droppingEnabled":true,"halosEnabled":true,"sliderExtent":0.1,"valueScale":1,"sliderKnob":{"__isSmartRef__":true,"id":3},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"smallStepsSlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":15},"eventHandler":{"__isSmartRef__":true,"id":19},"layout":{"__isSmartRef__":true,"id":20},"derivationIds":[2631,"E6C0AF56-6D3E-41C8-AE8E-A0520F495C6B","81D11ED3-9CBC-4995-9335-6715226B9A83","9DBDB273-94AA-435B-9E41-11D2D85086AD","DC33D08A-3989-4A29-B68A-13035B39CAB7","CE1714A9-CE0E-4E39-B1FE-08547112344B","457608DB-A2BE-4837-8B07-8E4278E6FB90","84FF8F62-555B-4DCF-9A6D-B8EF9966EF84","D5CF158F-81F0-4AC0-89D0-6652AE183E59"],"_ClipMode":"visible","moved":true,"value":0.5,"attributeConnections":[{"__isSmartRef__":true,"id":21},{"__isSmartRef__":true,"id":23}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"sliding":false,"owner":{"__isSmartRef__":true,"id":1},"grabbingEnabled":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":25},"__LivelyClassName__":"lively.morphic.Slider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(5.1,33.2)","distanceToDragEvent":"lively.pt(592.0,-15.0)"},"3":{"submorphs":[],"scripts":[],"id":"30BF1D50-3560-4139-97CE-79D4E90A02B1","shape":{"__isSmartRef__":true,"id":4},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"slider":{"__isSmartRef__":true,"id":2},"owner":{"__isSmartRef__":true,"id":2},"styleClass":["slider_horizontal"],"eventHandler":{"__isSmartRef__":true,"id":9},"derivationIds":[2632,"A8917D7B-B083-4C54-AFA0-5443B4DEF9E4","0E2E07C7-9998-4F7E-8219-894CA3ECA25A","E8032524-4EF5-4180-826E-5D79D9B60A68","22F59F4B-C9BF-4C1B-A330-C5A194A93A1B","5806F46E-54B2-4FCA-A105-05949BED7ED0","5AB7BA18-867F-4861-9588-5AEA3669682B","2449748E-F856-4B17-8250-AAFCB7415080","588D86A6-57D2-4EFA-91C7-5F9B9E92BB42"],"_ClipMode":"visible","isBeingDragged":false,"showsHalos":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","hitPoint","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.SliderKnob","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(399.6,0.0)","hitPoint":"lively.pt(546.0,92.0)","distanceToDragEvent":"lively.pt(59.6,-13.0)"},"4":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":5},"_BorderRadius":6,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(88.8,23.0)","_BorderColor":"Color.rgb(102,102,102)","_Padding":"lively.rect(0,0,0,0)"},"5":{"stops":[{"__isSmartRef__":true,"id":6},{"__isSmartRef__":true,"id":7},{"__isSmartRef__":true,"id":8}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"6":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(196,211,221)"},"7":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(137,167,187)"},"8":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(96,130,153)"},"9":{"morph":{"__isSmartRef__":true,"id":3},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"10":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":11},"_BorderRadius":6,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(888.0,23.0)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"11":{"stops":[{"__isSmartRef__":true,"id":12},{"__isSmartRef__":true,"id":13},{"__isSmartRef__":true,"id":14}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"12":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"13":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"14":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"15":{"requiredModules":[],"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Slider","comment":"The connection point \"value\" can be used to read/write the slider knob position.","changes":[{"__isSmartRef__":true,"id":16}],"lastModifiedDate":{"__isSmartRef__":true,"id":18},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"16":{"date":{"__isSmartRef__":true,"id":17},"author":"dustin.glaeser","message":"no comment","id":"9CD9677C-9A79-4D71-85C1-E5C72C253D16"},"17":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:34:16 GMT+0100 (CET)"},"18":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:33:52 GMT+0100 (CET)"},"19":{"morph":{"__isSmartRef__":true,"id":2},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"20":{},"21":{"sourceObj":{"__isSmartRef__":true,"id":2},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":2},"targetMethodName":"adjustSliderParts","varMapping":{"__isSmartRef__":true,"id":22},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"22":{"source":{"__isSmartRef__":true,"id":2},"target":{"__isSmartRef__":true,"id":2}},"23":{"sourceObj":{"__isSmartRef__":true,"id":2},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onSmallSliderMove","varMapping":{"__isSmartRef__":true,"id":24},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"24":{"source":{"__isSmartRef__":true,"id":2},"target":{"__isSmartRef__":true,"id":1}},"25":{"onrestore":{"__isSmartRef__":true,"id":26},"onMouseMove":{"__isSmartRef__":true,"id":34},"triggerSliding":{"__isSmartRef__":true,"id":42},"onMouseDown":{"__isSmartRef__":true,"id":46}},"26":{"varMapping":{"__isSmartRef__":true,"id":27},"source":"function onrestore() {\n this.sliding = false;\n}","funcProperties":{"__isSmartRef__":true,"id":32},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"27":{"this":{"__isSmartRef__":true,"id":2},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":28}},"28":{"$super":{"__isSmartRef__":true,"id":29}},"29":{"varMapping":{"__isSmartRef__":true,"id":30},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":31},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"30":{"obj":{"__isSmartRef__":true,"id":2},"name":"onrestore"},"31":{},"32":{"timestamp":{"__isSmartRef__":true,"id":33},"user":"erp","tags":[]},"33":{"isSerializedDate":true,"string":"Fri Jan 04 2013 15:57:48 GMT+0100 (CET)"},"34":{"varMapping":{"__isSmartRef__":true,"id":35},"source":"function onMouseMove(evt) {\n if(this.sliding) {\n var newValue = this.localize(evt.mousePoint).x / this.getExtent().x;\n newValue = newValue < 0 ? 0 : newValue;\n newValue = newValue > this.valueScale ? this.valueScale : newValue;\n this.setValue(newValue);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":40},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"35":{"this":{"__isSmartRef__":true,"id":2},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":36}},"36":{"$super":{"__isSmartRef__":true,"id":37}},"37":{"varMapping":{"__isSmartRef__":true,"id":38},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":39},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"38":{"obj":{"__isSmartRef__":true,"id":2},"name":"onMouseMove"},"39":{},"40":{"timestamp":{"__isSmartRef__":true,"id":41},"user":"erp","tags":[]},"41":{"isSerializedDate":true,"string":"Sat Jan 05 2013 10:40:37 GMT+0100 (CET)"},"42":{"varMapping":{"__isSmartRef__":true,"id":43},"source":"function triggerSliding() {\n this.sliding = !this.sliding;\n if(!this.sliding) {\n this.owner.renderObjectGraph();\n }\n}","funcProperties":{"__isSmartRef__":true,"id":44},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"43":{"this":{"__isSmartRef__":true,"id":2}},"44":{"timestamp":{"__isSmartRef__":true,"id":45},"user":"erp","tags":[]},"45":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:16:18 GMT+0100 (CET)"},"46":{"varMapping":{"__isSmartRef__":true,"id":47},"source":"function onMouseDown(evt) {\n this.triggerSliding();\n}","funcProperties":{"__isSmartRef__":true,"id":52},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"47":{"this":{"__isSmartRef__":true,"id":2},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":48}},"48":{"$super":{"__isSmartRef__":true,"id":49}},"49":{"varMapping":{"__isSmartRef__":true,"id":50},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":51},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"50":{"obj":{"__isSmartRef__":true,"id":2},"name":"onMouseDown"},"51":{},"52":{"timestamp":{"__isSmartRef__":true,"id":53},"user":"erp","tags":[]},"53":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:33:06 GMT+0100 (CET)"},"54":{"submorphs":[{"__isSmartRef__":true,"id":55}],"scripts":[],"id":"504E74AE-EC0F-4283-AF12-C3AF8E019922","shape":{"__isSmartRef__":true,"id":62},"droppingEnabled":true,"halosEnabled":true,"sliderExtent":0.1,"valueScale":1,"sliderKnob":{"__isSmartRef__":true,"id":55},"styleClass":["slider_background_horizontal"],"showsHalos":false,"name":"stepsSlider","partsBinMetaInfo":{"__isSmartRef__":true,"id":67},"eventHandler":{"__isSmartRef__":true,"id":71},"layout":{"__isSmartRef__":true,"id":72},"derivationIds":[2631,"E6C0AF56-6D3E-41C8-AE8E-A0520F495C6B","81D11ED3-9CBC-4995-9335-6715226B9A83","77D6B490-D399-46B3-9589-938C6F171CE1","3040B48B-1391-402F-8DE1-FECEE8ACA796","A8685160-21D8-4242-A2CA-80A1D87C5BDC","68C17987-09F7-4AC0-A986-38313CFAFDA7","D7DD65A1-E070-4D3B-BCC9-5D4A5B32DFB2"],"_ClipMode":"visible","moved":true,"owner":{"__isSmartRef__":true,"id":1},"value":0.7543918918918918,"attributeConnections":[{"__isSmartRef__":true,"id":73},{"__isSmartRef__":true,"id":75}],"doNotSerialize":["$$value"],"doNotCopyProperties":["$$value"],"sliding":false,"grabbingEnabled":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":77},"__LivelyClassName__":"lively.morphic.Slider","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(4.1,6.2)","distanceToDragEvent":"lively.pt(592.0,-15.0)"},"55":{"submorphs":[],"scripts":[],"id":"E81CFEC7-FCC1-48E3-9DA7-63D0B8C6F4D8","shape":{"__isSmartRef__":true,"id":56},"droppingEnabled":true,"halosEnabled":true,"draggingEnabled":true,"slider":{"__isSmartRef__":true,"id":54},"owner":{"__isSmartRef__":true,"id":54},"styleClass":["slider_horizontal"],"eventHandler":{"__isSmartRef__":true,"id":61},"derivationIds":[2632,"A8917D7B-B083-4C54-AFA0-5443B4DEF9E4","0E2E07C7-9998-4F7E-8219-894CA3ECA25A","320FB3E0-81E4-44A2-8B6E-75E56000F8C0","B3EE08B4-B2D1-4C65-86FE-3BF9E19292EA","3C727374-E888-4DF7-9516-77FB1BC71B1F","73B8A71C-6104-4CEB-9F25-590C2AE18E25","A22295F3-E8E1-481B-9B94-ADD2E177354E"],"_ClipMode":"visible","isBeingDragged":false,"showsHalos":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","hitPoint","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.SliderKnob","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(602.9,0.0)","hitPoint":"lively.pt(864.0,36.0)","distanceToDragEvent":"lively.pt(59.6,-13.0)"},"56":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":57},"_BorderRadius":6,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(88.8,23.0)","_BorderColor":"Color.rgb(102,102,102)","_Padding":"lively.rect(0,0,0,0)"},"57":{"stops":[{"__isSmartRef__":true,"id":58},{"__isSmartRef__":true,"id":59},{"__isSmartRef__":true,"id":60}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"58":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(196,211,221)"},"59":{"offset":0.5,"__serializedExpressions__":["color"],"color":"Color.rgb(137,167,187)"},"60":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(96,130,153)"},"61":{"morph":{"__isSmartRef__":true,"id":55},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"62":{"_BorderWidth":1,"_Fill":{"__isSmartRef__":true,"id":63},"_BorderRadius":6,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(888.0,23.0)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"63":{"stops":[{"__isSmartRef__":true,"id":64},{"__isSmartRef__":true,"id":65},{"__isSmartRef__":true,"id":66}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"64":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"65":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"66":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"67":{"requiredModules":[],"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Slider","comment":"The connection point \"value\" can be used to read/write the slider knob position.","changes":[{"__isSmartRef__":true,"id":68}],"lastModifiedDate":{"__isSmartRef__":true,"id":70},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"68":{"date":{"__isSmartRef__":true,"id":69},"author":"dustin.glaeser","message":"no comment","id":"9CD9677C-9A79-4D71-85C1-E5C72C253D16"},"69":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:34:16 GMT+0100 (CET)"},"70":{"isSerializedDate":true,"string":"Thu Dec 13 2012 11:33:52 GMT+0100 (CET)"},"71":{"morph":{"__isSmartRef__":true,"id":54},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"72":{},"73":{"sourceObj":{"__isSmartRef__":true,"id":54},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":54},"targetMethodName":"adjustSliderParts","varMapping":{"__isSmartRef__":true,"id":74},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"74":{"source":{"__isSmartRef__":true,"id":54},"target":{"__isSmartRef__":true,"id":54}},"75":{"sourceObj":{"__isSmartRef__":true,"id":54},"sourceAttrName":"value","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onSliderMove","varMapping":{"__isSmartRef__":true,"id":76},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"76":{"source":{"__isSmartRef__":true,"id":54},"target":{"__isSmartRef__":true,"id":1}},"77":{"onrestore":{"__isSmartRef__":true,"id":78},"onMouseMove":{"__isSmartRef__":true,"id":86},"triggerSliding":{"__isSmartRef__":true,"id":94},"onMouseDown":{"__isSmartRef__":true,"id":98}},"78":{"varMapping":{"__isSmartRef__":true,"id":79},"source":"function onrestore() {\n this.sliding = false;\n}","funcProperties":{"__isSmartRef__":true,"id":84},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"79":{"this":{"__isSmartRef__":true,"id":54},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":80}},"80":{"$super":{"__isSmartRef__":true,"id":81}},"81":{"varMapping":{"__isSmartRef__":true,"id":82},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":83},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"82":{"obj":{"__isSmartRef__":true,"id":54},"name":"onrestore"},"83":{},"84":{"timestamp":{"__isSmartRef__":true,"id":85},"user":"erp","tags":[]},"85":{"isSerializedDate":true,"string":"Fri Jan 04 2013 15:57:48 GMT+0100 (CET)"},"86":{"varMapping":{"__isSmartRef__":true,"id":87},"source":"function onMouseMove(evt) {\n if(this.sliding) {\n var newValue = this.localize(evt.mousePoint).x / this.getExtent().x;\n newValue = newValue < 0 ? 0 : newValue;\n newValue = newValue > this.valueScale ? this.valueScale : newValue;\n this.setValue(newValue);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":92},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"87":{"this":{"__isSmartRef__":true,"id":54},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":88}},"88":{"$super":{"__isSmartRef__":true,"id":89}},"89":{"varMapping":{"__isSmartRef__":true,"id":90},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":91},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"90":{"obj":{"__isSmartRef__":true,"id":54},"name":"onMouseMove"},"91":{},"92":{"timestamp":{"__isSmartRef__":true,"id":93},"user":"erp","tags":[]},"93":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:32:32 GMT+0100 (CET)"},"94":{"varMapping":{"__isSmartRef__":true,"id":95},"source":"function triggerSliding() {\n this.sliding = !this.sliding;\n if(!this.sliding) {\n this.owner.renderObjectGraph();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":96},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"95":{"this":{"__isSmartRef__":true,"id":54}},"96":{"timestamp":{"__isSmartRef__":true,"id":97},"user":"erp","tags":[]},"97":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:15:57 GMT+0100 (CET)"},"98":{"varMapping":{"__isSmartRef__":true,"id":99},"source":"function onMouseDown(evt) {\n this.triggerSliding();\n}","funcProperties":{"__isSmartRef__":true,"id":104},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"99":{"this":{"__isSmartRef__":true,"id":54},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":100}},"100":{"$super":{"__isSmartRef__":true,"id":101}},"101":{"varMapping":{"__isSmartRef__":true,"id":102},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":103},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"102":{"obj":{"__isSmartRef__":true,"id":54},"name":"onMouseDown"},"103":{},"104":{"timestamp":{"__isSmartRef__":true,"id":105},"user":"erp","tags":[]},"105":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:32:52 GMT+0100 (CET)"},"106":{"submorphs":[],"scripts":[],"id":"A18A631C-1E12-4D20-871E-BC3889E6F1FB","shape":{"__isSmartRef__":true,"id":107},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_OverflowMode":"visible","_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_MaxTextWidth":360.6320000000002,"_MaxTextHeight":null,"showsHalos":false,"_FontSize":9,"name":"functionEditor","partsBinMetaInfo":{"__isSmartRef__":true,"id":108},"textChunks":[{"__isSmartRef__":true,"id":109},{"__isSmartRef__":true,"id":111},{"__isSmartRef__":true,"id":113},{"__isSmartRef__":true,"id":115},{"__isSmartRef__":true,"id":117},{"__isSmartRef__":true,"id":119},{"__isSmartRef__":true,"id":121},{"__isSmartRef__":true,"id":123},{"__isSmartRef__":true,"id":125},{"__isSmartRef__":true,"id":127},{"__isSmartRef__":true,"id":129},{"__isSmartRef__":true,"id":131},{"__isSmartRef__":true,"id":133},{"__isSmartRef__":true,"id":135},{"__isSmartRef__":true,"id":137},{"__isSmartRef__":true,"id":139},{"__isSmartRef__":true,"id":141},{"__isSmartRef__":true,"id":143},{"__isSmartRef__":true,"id":145},{"__isSmartRef__":true,"id":147},{"__isSmartRef__":true,"id":149},{"__isSmartRef__":true,"id":151},{"__isSmartRef__":true,"id":153},{"__isSmartRef__":true,"id":155},{"__isSmartRef__":true,"id":157},{"__isSmartRef__":true,"id":159},{"__isSmartRef__":true,"id":161},{"__isSmartRef__":true,"id":163},{"__isSmartRef__":true,"id":165},{"__isSmartRef__":true,"id":167},{"__isSmartRef__":true,"id":169},{"__isSmartRef__":true,"id":171},{"__isSmartRef__":true,"id":173},{"__isSmartRef__":true,"id":175},{"__isSmartRef__":true,"id":177},{"__isSmartRef__":true,"id":179},{"__isSmartRef__":true,"id":181},{"__isSmartRef__":true,"id":183},{"__isSmartRef__":true,"id":185},{"__isSmartRef__":true,"id":187},{"__isSmartRef__":true,"id":189},{"__isSmartRef__":true,"id":191},{"__isSmartRef__":true,"id":193},{"__isSmartRef__":true,"id":195},{"__isSmartRef__":true,"id":197},{"__isSmartRef__":true,"id":199},{"__isSmartRef__":true,"id":201},{"__isSmartRef__":true,"id":203},{"__isSmartRef__":true,"id":205},{"__isSmartRef__":true,"id":207},{"__isSmartRef__":true,"id":209},{"__isSmartRef__":true,"id":211},{"__isSmartRef__":true,"id":213},{"__isSmartRef__":true,"id":215},{"__isSmartRef__":true,"id":217},{"__isSmartRef__":true,"id":219},{"__isSmartRef__":true,"id":221},{"__isSmartRef__":true,"id":223},{"__isSmartRef__":true,"id":225},{"__isSmartRef__":true,"id":227},{"__isSmartRef__":true,"id":229},{"__isSmartRef__":true,"id":231},{"__isSmartRef__":true,"id":233},{"__isSmartRef__":true,"id":235},{"__isSmartRef__":true,"id":237},{"__isSmartRef__":true,"id":239},{"__isSmartRef__":true,"id":241},{"__isSmartRef__":true,"id":243},{"__isSmartRef__":true,"id":245},{"__isSmartRef__":true,"id":247},{"__isSmartRef__":true,"id":249},{"__isSmartRef__":true,"id":251},{"__isSmartRef__":true,"id":253},{"__isSmartRef__":true,"id":255},{"__isSmartRef__":true,"id":257},{"__isSmartRef__":true,"id":259},{"__isSmartRef__":true,"id":261},{"__isSmartRef__":true,"id":263},{"__isSmartRef__":true,"id":265},{"__isSmartRef__":true,"id":267},{"__isSmartRef__":true,"id":269},{"__isSmartRef__":true,"id":271},{"__isSmartRef__":true,"id":273},{"__isSmartRef__":true,"id":275},{"__isSmartRef__":true,"id":277},{"__isSmartRef__":true,"id":279},{"__isSmartRef__":true,"id":281},{"__isSmartRef__":true,"id":283},{"__isSmartRef__":true,"id":285},{"__isSmartRef__":true,"id":287},{"__isSmartRef__":true,"id":289},{"__isSmartRef__":true,"id":291},{"__isSmartRef__":true,"id":293},{"__isSmartRef__":true,"id":295},{"__isSmartRef__":true,"id":297},{"__isSmartRef__":true,"id":299},{"__isSmartRef__":true,"id":301},{"__isSmartRef__":true,"id":303},{"__isSmartRef__":true,"id":305},{"__isSmartRef__":true,"id":307},{"__isSmartRef__":true,"id":309},{"__isSmartRef__":true,"id":311},{"__isSmartRef__":true,"id":313},{"__isSmartRef__":true,"id":315},{"__isSmartRef__":true,"id":317},{"__isSmartRef__":true,"id":319},{"__isSmartRef__":true,"id":321},{"__isSmartRef__":true,"id":323},{"__isSmartRef__":true,"id":325},{"__isSmartRef__":true,"id":327},{"__isSmartRef__":true,"id":329},{"__isSmartRef__":true,"id":331},{"__isSmartRef__":true,"id":333},{"__isSmartRef__":true,"id":335},{"__isSmartRef__":true,"id":337},{"__isSmartRef__":true,"id":339},{"__isSmartRef__":true,"id":341},{"__isSmartRef__":true,"id":343},{"__isSmartRef__":true,"id":345},{"__isSmartRef__":true,"id":347},{"__isSmartRef__":true,"id":349},{"__isSmartRef__":true,"id":351},{"__isSmartRef__":true,"id":353},{"__isSmartRef__":true,"id":355},{"__isSmartRef__":true,"id":357},{"__isSmartRef__":true,"id":359},{"__isSmartRef__":true,"id":361},{"__isSmartRef__":true,"id":363},{"__isSmartRef__":true,"id":365},{"__isSmartRef__":true,"id":367},{"__isSmartRef__":true,"id":369},{"__isSmartRef__":true,"id":371},{"__isSmartRef__":true,"id":373},{"__isSmartRef__":true,"id":375},{"__isSmartRef__":true,"id":377},{"__isSmartRef__":true,"id":379},{"__isSmartRef__":true,"id":381},{"__isSmartRef__":true,"id":383},{"__isSmartRef__":true,"id":385},{"__isSmartRef__":true,"id":387},{"__isSmartRef__":true,"id":389},{"__isSmartRef__":true,"id":391},{"__isSmartRef__":true,"id":393},{"__isSmartRef__":true,"id":395},{"__isSmartRef__":true,"id":397},{"__isSmartRef__":true,"id":399},{"__isSmartRef__":true,"id":401},{"__isSmartRef__":true,"id":403}],"charsReplaced":"","lastFindLoc":431,"prevScroll":[0,0],"eventHandler":{"__isSmartRef__":true,"id":405},"derivationIds":[1958,"DF0EB566-4F85-407E-9ECD-6A046ED8B638","6A7CAB02-48F5-4CB1-8692-1B26C25FDCBE","EC8394D6-3F04-4063-B8AD-1C55F1CDE12A","75E35A5E-8C11-447B-A246-8F7421203F00","99524073-B4C5-446A-960E-A77ABE8875A3","BD12D5D6-72C1-4A93-8A25-810490EFC657"],"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":1},"_MinTextWidth":360.6320000000002,"_MinTextHeight":null,"savedTextString":"var j = 1;\nvar z = 3;\nvar c = 0;\nfor(var i = 0; i< 70; i++) {\n var m = Morph.makeRectangle(0,0, 10,50)\n m.moveBy(pt(70+i,70))\n m.rotateBy(i * 0.1)\n m.setFill(Color.rgb(i * 10,0,0))\n this.addMorph(m) \n c += 3;\n}\n\nthis.submorphs.invoke('remove')\n\n","isBeingDragged":false,"isLockOwner":false,"#startLetters":"l","_WordBreak":"break-all","syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":406}],"doNotSerialize":["$$textString","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors","parseErrors"],"doNotCopyProperties":["$$textString"],"_lastSyntaxHighlightTime":67,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","textColor","distanceToDragEvent"],"textString":"var first = { type : \"assign\", \n varName : \"a\", value : 10 };\nvar second = { type : \"assign\", \n varName : \"b\", value : 5 };\nvar third = { type : \"addition\", \n summand1 : \n { type : \"variable\", varName : \"a\" }, \n summand2 : \n { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", \n statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvar result = visitor.stack.pop();\nresult;\n","previousSelection":[340,340],"priorSelectionRange":[413,413],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":408},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(763.0,85.0)","textColor":"Color.rgb(0,0,0)","distanceToDragEvent":"lively.pt(238.0,-12.0)"},"107":{"fill":null,"_BorderWidth":1.1840000000000002,"_BorderRadius":6.660000000000001,"__serializedExpressions__":["_Position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(367.0,556.4)","_BorderColor":"Color.rgb(192,192,192)","_Padding":"lively.rect(0,0,0,0)"},"108":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":2,"comment":"Simple input field for Forms demo","partName":"InputField","revisionOnLoad":148665,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"109":{"style":{"__isSmartRef__":true,"id":110},"chunkOwner":{"__isSmartRef__":true,"id":106},"_id":"_5","storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"110":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"111":{"_id":"_41","style":{"__isSmartRef__":true,"id":112},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" first = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"112":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"113":{"_id":"_42","style":{"__isSmartRef__":true,"id":114},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"114":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"115":{"_id":"_43","style":{"__isSmartRef__":true,"id":116},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"116":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"117":{"_id":"_44","style":{"__isSmartRef__":true,"id":118},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"118":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"119":{"_id":"_45","style":{"__isSmartRef__":true,"id":120},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"120":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"121":{"_id":"_897","style":{"__isSmartRef__":true,"id":122},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"122":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgba(204,204,0,0.4)"},"123":{"_id":"_898","style":{"__isSmartRef__":true,"id":124},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"124":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"125":{"_id":"_46","style":{"__isSmartRef__":true,"id":126},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"126":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"127":{"_id":"_47","style":{"__isSmartRef__":true,"id":128},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"128":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"129":{"_id":"_48","style":{"__isSmartRef__":true,"id":130},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"10","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"130":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"131":{"_id":"_49","style":{"__isSmartRef__":true,"id":132},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"132":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"133":{"_id":"_50","style":{"__isSmartRef__":true,"id":134},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"134":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"135":{"_id":"_51","style":{"__isSmartRef__":true,"id":136},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"136":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"137":{"_id":"_52","style":{"__isSmartRef__":true,"id":138},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"138":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"139":{"_id":"_53","style":{"__isSmartRef__":true,"id":140},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" second = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"140":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"141":{"_id":"_54","style":{"__isSmartRef__":true,"id":142},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"142":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"143":{"_id":"_55","style":{"__isSmartRef__":true,"id":144},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"144":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"145":{"_id":"_56","style":{"__isSmartRef__":true,"id":146},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"146":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"147":{"_id":"_57","style":{"__isSmartRef__":true,"id":148},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"148":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"149":{"_id":"_899","style":{"__isSmartRef__":true,"id":150},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"150":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgba(204,204,0,0.4)"},"151":{"_id":"_900","style":{"__isSmartRef__":true,"id":152},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"152":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"153":{"_id":"_58","style":{"__isSmartRef__":true,"id":154},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"154":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"155":{"_id":"_59","style":{"__isSmartRef__":true,"id":156},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"156":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"157":{"_id":"_60","style":{"__isSmartRef__":true,"id":158},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"5","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"158":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"159":{"_id":"_61","style":{"__isSmartRef__":true,"id":160},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"160":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"161":{"_id":"_62","style":{"__isSmartRef__":true,"id":162},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"162":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"163":{"_id":"_63","style":{"__isSmartRef__":true,"id":164},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"164":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"165":{"_id":"_64","style":{"__isSmartRef__":true,"id":166},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"166":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"167":{"_id":"_65","style":{"__isSmartRef__":true,"id":168},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" third = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"168":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"169":{"_id":"_66","style":{"__isSmartRef__":true,"id":170},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"170":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"171":{"_id":"_67","style":{"__isSmartRef__":true,"id":172},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"172":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"173":{"_id":"_68","style":{"__isSmartRef__":true,"id":174},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"174":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"175":{"_id":"_69","style":{"__isSmartRef__":true,"id":176},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"176":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"177":{"_id":"_901","style":{"__isSmartRef__":true,"id":178},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"178":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgba(204,204,0,0.4)"},"179":{"_id":"_902","style":{"__isSmartRef__":true,"id":180},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand1 :","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"180":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"181":{"_id":"_903","style":{"__isSmartRef__":true,"id":182},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"182":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgba(204,204,0,0.4)"},"183":{"_id":"_70","style":{"__isSmartRef__":true,"id":184},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"184":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"185":{"_id":"_904","style":{"__isSmartRef__":true,"id":186},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"186":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"187":{"_id":"_71","style":{"__isSmartRef__":true,"id":188},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"188":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"189":{"_id":"_72","style":{"__isSmartRef__":true,"id":190},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"190":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"191":{"_id":"_73","style":{"__isSmartRef__":true,"id":192},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"192":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"193":{"_id":"_74","style":{"__isSmartRef__":true,"id":194},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"194":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"195":{"_id":"_75","style":{"__isSmartRef__":true,"id":196},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"196":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"197":{"_id":"_76","style":{"__isSmartRef__":true,"id":198},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"198":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"199":{"_id":"_77","style":{"__isSmartRef__":true,"id":200},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"200":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"201":{"_id":"_905","style":{"__isSmartRef__":true,"id":202},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"202":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgba(204,204,0,0.4)"},"203":{"_id":"_906","style":{"__isSmartRef__":true,"id":204},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand2 :","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"204":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"205":{"_id":"_907","style":{"__isSmartRef__":true,"id":206},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"206":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgba(204,204,0,0.4)"},"207":{"_id":"_78","style":{"__isSmartRef__":true,"id":208},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"208":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"209":{"_id":"_908","style":{"__isSmartRef__":true,"id":210},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"210":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"211":{"_id":"_79","style":{"__isSmartRef__":true,"id":212},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"212":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"213":{"_id":"_80","style":{"__isSmartRef__":true,"id":214},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"type:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"214":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"215":{"_id":"_81","style":{"__isSmartRef__":true,"id":216},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"216":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"217":{"_id":"_82","style":{"__isSmartRef__":true,"id":218},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"218":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"219":{"_id":"_83","style":{"__isSmartRef__":true,"id":220},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"220":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"221":{"_id":"_84","style":{"__isSmartRef__":true,"id":222},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"222":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"223":{"_id":"_85","style":{"__isSmartRef__":true,"id":224},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"224":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"225":{"_id":"_86","style":{"__isSmartRef__":true,"id":226},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"226":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"227":{"_id":"_87","style":{"__isSmartRef__":true,"id":228},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"228":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"229":{"_id":"_88","style":{"__isSmartRef__":true,"id":230},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"230":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"231":{"_id":"_89","style":{"__isSmartRef__":true,"id":232},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"232":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"233":{"_id":"_90","style":{"__isSmartRef__":true,"id":234},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" program = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"234":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"235":{"_id":"_91","style":{"__isSmartRef__":true,"id":236},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"236":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"237":{"_id":"_92","style":{"__isSmartRef__":true,"id":238},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"238":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"239":{"_id":"_93","style":{"__isSmartRef__":true,"id":240},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"sequence\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"240":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"241":{"_id":"_94","style":{"__isSmartRef__":true,"id":242},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"242":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"243":{"_id":"_909","style":{"__isSmartRef__":true,"id":244},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"244":{"__serializedExpressions__":["color","backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)","backgroundColor":"Color.rgba(204,204,0,0.4)"},"245":{"_id":"_910","style":{"__isSmartRef__":true,"id":246},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" statements : [first, second, third] ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"246":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"247":{"_id":"_95","style":{"__isSmartRef__":true,"id":248},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"248":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"249":{"_id":"_96","style":{"__isSmartRef__":true,"id":250},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"250":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"251":{"_id":"_97","style":{"__isSmartRef__":true,"id":252},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"252":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"253":{"_id":"_98","style":{"__isSmartRef__":true,"id":254},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" visitor = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"254":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"255":{"_id":"_99","style":{"__isSmartRef__":true,"id":256},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"256":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"257":{"_id":"_100","style":{"__isSmartRef__":true,"id":258},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n variables : [],\n stack : [],\n visit : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"258":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"259":{"_id":"_101","style":{"__isSmartRef__":true,"id":260},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"260":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"261":{"_id":"_102","style":{"__isSmartRef__":true,"id":262},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"262":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"263":{"_id":"_103","style":{"__isSmartRef__":true,"id":264},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"264":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"265":{"_id":"_104","style":{"__isSmartRef__":true,"id":266},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"266":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"267":{"_id":"_105","style":{"__isSmartRef__":true,"id":268},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"268":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"269":{"_id":"_106","style":{"__isSmartRef__":true,"id":270},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":".lastNode = node;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"270":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"271":{"_id":"_107","style":{"__isSmartRef__":true,"id":272},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"272":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"273":{"_id":"_108","style":{"__isSmartRef__":true,"id":274},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"274":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"275":{"_id":"_109","style":{"__isSmartRef__":true,"id":276},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"276":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"277":{"_id":"_110","style":{"__isSmartRef__":true,"id":278},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":".visitActions[node.type](","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"278":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"279":{"_id":"_111","style":{"__isSmartRef__":true,"id":280},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"280":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"281":{"_id":"_112","style":{"__isSmartRef__":true,"id":282},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":", node);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"282":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"283":{"_id":"_113","style":{"__isSmartRef__":true,"id":284},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"284":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"285":{"_id":"_114","style":{"__isSmartRef__":true,"id":286},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":",\n visitActions : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"286":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"287":{"_id":"_115","style":{"__isSmartRef__":true,"id":288},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"288":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"289":{"_id":"_116","style":{"__isSmartRef__":true,"id":290},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"290":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"291":{"_id":"_117","style":{"__isSmartRef__":true,"id":292},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"292":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"293":{"_id":"_118","style":{"__isSmartRef__":true,"id":294},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"294":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"295":{"_id":"_119","style":{"__isSmartRef__":true,"id":296},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"296":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"297":{"_id":"_120","style":{"__isSmartRef__":true,"id":298},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(visitor, node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"298":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"299":{"_id":"_121","style":{"__isSmartRef__":true,"id":300},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"300":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"301":{"_id":"_122","style":{"__isSmartRef__":true,"id":302},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n visitor.stack.push(visitor.variables[node.varName]);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"302":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"303":{"_id":"_123","style":{"__isSmartRef__":true,"id":304},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"304":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"305":{"_id":"_124","style":{"__isSmartRef__":true,"id":306},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"306":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"307":{"_id":"_125","style":{"__isSmartRef__":true,"id":308},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"308":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"309":{"_id":"_126","style":{"__isSmartRef__":true,"id":310},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"310":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"311":{"_id":"_127","style":{"__isSmartRef__":true,"id":312},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"312":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"313":{"_id":"_128","style":{"__isSmartRef__":true,"id":314},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"314":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"315":{"_id":"_129","style":{"__isSmartRef__":true,"id":316},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"316":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"317":{"_id":"_130","style":{"__isSmartRef__":true,"id":318},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"318":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"319":{"_id":"_131","style":{"__isSmartRef__":true,"id":320},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"320":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"321":{"_id":"_132","style":{"__isSmartRef__":true,"id":322},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" i = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"322":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"323":{"_id":"_133","style":{"__isSmartRef__":true,"id":324},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"324":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"325":{"_id":"_134","style":{"__isSmartRef__":true,"id":326},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"; i < program.statements.length; i++) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"326":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"327":{"_id":"_135","style":{"__isSmartRef__":true,"id":328},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"328":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"329":{"_id":"_136","style":{"__isSmartRef__":true,"id":330},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"330":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"331":{"_id":"_137","style":{"__isSmartRef__":true,"id":332},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"332":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"333":{"_id":"_138","style":{"__isSmartRef__":true,"id":334},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" node = program.statements[i];\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"334":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"335":{"_id":"_139","style":{"__isSmartRef__":true,"id":336},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"336":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"337":{"_id":"_140","style":{"__isSmartRef__":true,"id":338},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"338":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"339":{"_id":"_141","style":{"__isSmartRef__":true,"id":340},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"340":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"341":{"_id":"_142","style":{"__isSmartRef__":true,"id":342},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"342":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"343":{"_id":"_143","style":{"__isSmartRef__":true,"id":344},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"344":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"345":{"_id":"_144","style":{"__isSmartRef__":true,"id":346},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"346":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"347":{"_id":"_145","style":{"__isSmartRef__":true,"id":348},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"348":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"349":{"_id":"_146","style":{"__isSmartRef__":true,"id":350},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t\tvisitor.visit(node.summand1);\n\t \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"350":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"351":{"_id":"_147","style":{"__isSmartRef__":true,"id":352},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"352":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"353":{"_id":"_148","style":{"__isSmartRef__":true,"id":354},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"354":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"355":{"_id":"_149","style":{"__isSmartRef__":true,"id":356},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"356":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"357":{"_id":"_150","style":{"__isSmartRef__":true,"id":358},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"358":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"359":{"_id":"_151","style":{"__isSmartRef__":true,"id":360},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"360":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"361":{"_id":"_152","style":{"__isSmartRef__":true,"id":362},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"362":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"363":{"_id":"_153","style":{"__isSmartRef__":true,"id":364},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"364":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"365":{"_id":"_154","style":{"__isSmartRef__":true,"id":366},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"366":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"367":{"_id":"_155","style":{"__isSmartRef__":true,"id":368},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"368":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"369":{"_id":"_156","style":{"__isSmartRef__":true,"id":370},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"370":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"371":{"_id":"_157","style":{"__isSmartRef__":true,"id":372},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"372":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"373":{"_id":"_158","style":{"__isSmartRef__":true,"id":374},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"374":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"375":{"_id":"_159","style":{"__isSmartRef__":true,"id":376},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"376":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"377":{"_id":"_160","style":{"__isSmartRef__":true,"id":378},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t\tvisitor.variables[node.varName] = node.value;\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"378":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"379":{"_id":"_161","style":{"__isSmartRef__":true,"id":380},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"380":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"381":{"_id":"_162","style":{"__isSmartRef__":true,"id":382},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"382":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"383":{"_id":"_163","style":{"__isSmartRef__":true,"id":384},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"384":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"385":{"_id":"_164","style":{"__isSmartRef__":true,"id":386},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"386":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"387":{"_id":"_165","style":{"__isSmartRef__":true,"id":388},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"388":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"389":{"_id":"_166","style":{"__isSmartRef__":true,"id":390},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\n\t\tvisitor.visit(node);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"390":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"391":{"_id":"_167","style":{"__isSmartRef__":true,"id":392},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"392":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"393":{"_id":"_168","style":{"__isSmartRef__":true,"id":394},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"394":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"395":{"_id":"_169","style":{"__isSmartRef__":true,"id":396},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"396":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"397":{"_id":"_170","style":{"__isSmartRef__":true,"id":398},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"398":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"399":{"_id":"_171","style":{"__isSmartRef__":true,"id":400},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"400":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"401":{"_id":"_172","style":{"__isSmartRef__":true,"id":402},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"402":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"403":{"_id":"_173","style":{"__isSmartRef__":true,"id":404},"chunkOwner":{"__isSmartRef__":true,"id":106},"storedString":" result = visitor.stack.pop();\nresult;\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"404":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"405":{"morph":{"__isSmartRef__":true,"id":106},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"406":{"sourceObj":{"__isSmartRef__":true,"id":106},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":106},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":407},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"407":{"source":{"__isSmartRef__":true,"id":106},"target":{"__isSmartRef__":true,"id":106}},"408":{"doSave":{"__isSmartRef__":true,"id":409}},"409":{"varMapping":{"__isSmartRef__":true,"id":410},"source":"function doSave() {\n this.get(\"SeeTheState\").onPrepare();\n}","funcProperties":{"__isSmartRef__":true,"id":415},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"410":{"this":{"__isSmartRef__":true,"id":106},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":411}},"411":{"$super":{"__isSmartRef__":true,"id":412}},"412":{"varMapping":{"__isSmartRef__":true,"id":413},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":414},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"413":{"obj":{"__isSmartRef__":true,"id":106},"name":"doSave"},"414":{},"415":{"timestamp":{"__isSmartRef__":true,"id":416},"user":"erp","tags":[]},"416":{"isSerializedDate":true,"string":"Thu Jan 03 2013 17:25:54 GMT+0100 (CET)"},"417":{"submorphs":[],"scripts":[],"id":"CE01B5DF-84D9-4DD3-B6B1-AC5BAB2ACE90","shape":{"__isSmartRef__":true,"id":418},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"contextOfFunction","partsBinMetaInfo":{"__isSmartRef__":true,"id":419},"eventHandler":{"__isSmartRef__":true,"id":434},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","6DF0F42B-01DE-4064-B290-A965B89F419C","3480B411-42F3-454C-86FF-6FA01A641B1B","96DB9CEA-D2B7-47C6-AB92-E8071A3E2083","145BE27E-0454-4B90-B608-335748831B95","58F6E6F7-984A-48C2-9B20-3E2121905E22","9DD184BD-EE32-4B42-8B3B-F2654E77CF6F"],"partTests":{"__isSmartRef__":true,"id":435},"_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":1},"isBeingDragged":false,"#startLetters":"mo","isLockOwner":false,"prevScroll":[0,0],"grabbingEnabled":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(1224.4,43.0)","distanceToDragEvent":"lively.pt(332.6,-14.0)"},"418":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":6.660000000000001,"_Opacity":1,"_BorderStyle":"solid","__serializedExpressions__":["position","_Extent","_Fill","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(392.0,209.0)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(192,192,192)"},"419":{"partsSpaceName":"PartsBin/Basic/","comment":"A simple box morph. A really orange one. Its amazing what you can build out of simple boxes.... Who needs stars when you got orange rectangles!","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":420},{"__isSmartRef__":true,"id":422},{"__isSmartRef__":true,"id":424},{"__isSmartRef__":true,"id":426},{"__isSmartRef__":true,"id":428},{"__isSmartRef__":true,"id":430},{"__isSmartRef__":true,"id":432}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"420":{"date":{"__isSmartRef__":true,"id":421},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"421":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"422":{"date":{"__isSmartRef__":true,"id":423},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"423":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"424":{"date":{"__isSmartRef__":true,"id":425},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"425":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"426":{"date":{"__isSmartRef__":true,"id":427},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"427":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"428":{"date":{"__isSmartRef__":true,"id":429},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"429":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"430":{"date":{"__isSmartRef__":true,"id":431},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"431":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"432":{"date":{"__isSmartRef__":true,"id":433},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"433":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"434":{"morph":{"__isSmartRef__":true,"id":417},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"435":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":436}},"436":{"test01IsMorph":{"__isSmartRef__":true,"id":437}},"437":{"varMapping":{"__isSmartRef__":true,"id":438},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":439},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"438":{"this":{"__isSmartRef__":true,"id":435}},"439":{},"440":{"submorphs":[{"__isSmartRef__":true,"id":441}],"scripts":[],"id":"1607D438-64DF-4EA6-878F-6231FF867345","shape":{"__isSmartRef__":true,"id":446},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":452},"lighterFill":{"__isSmartRef__":true,"id":457},"label":{"__isSmartRef__":true,"id":441},"name":"startFlow","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":462},"attributeConnections":[{"__isSmartRef__":true,"id":473},{"__isSmartRef__":true,"id":474}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":476},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","3597FFA9-12FB-4025-8DFD-9303B28004C6","61E5C30F-19AF-4C83-91E1-AAE6080BBDCD","B9934068-0B57-446E-827E-896BC509FBA6","727D6E7D-50BF-4747-BEAC-3412E5F2DD35","58500A45-550C-4820-A447-DCB686F94F95","27550D3E-FE5F-4206-BEDF-AAAC766D3C91"],"_ClipMode":"visible","isPressed":false,"moved":true,"owner":{"__isSmartRef__":true,"id":1},"isLockOwner":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":477},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(897.1,5.2)","distanceToDragEvent":"lively.pt(72.9,-15.2)"},"441":{"submorphs":[],"scripts":[],"id":"29F98FF5-3B45-4E46-8C85-D8C8FDD83CB1","shape":{"__isSmartRef__":true,"id":442},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":440},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":443}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":445},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","951C1A71-B1FC-4ED0-8BD4-DF9603C49044","FC7A98C1-5983-49EC-AC26-F95BB22D0B87","BEB41C13-E3CE-4781-96FA-5CDFA95AC047","A92B9BE3-6F7E-4144-AA6B-1F46234ED02F","AC2487E4-F559-4ECB-AD90-59D7224E9A9C","EF2B31DB-532F-4A04-B7A8-80F75CC7E13E"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"442":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"443":{"style":{"__isSmartRef__":true,"id":444},"chunkOwner":{"__isSmartRef__":true,"id":441},"_id":"_8478","storedString":"run","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"444":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"445":{"morph":{"__isSmartRef__":true,"id":441},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"446":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":447},"_BorderRadius":5.2,"_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"447":{"stops":[{"__isSmartRef__":true,"id":448},{"__isSmartRef__":true,"id":449},{"__isSmartRef__":true,"id":450},{"__isSmartRef__":true,"id":451}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"448":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"449":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"450":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"451":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"452":{"stops":[{"__isSmartRef__":true,"id":453},{"__isSmartRef__":true,"id":454},{"__isSmartRef__":true,"id":455},{"__isSmartRef__":true,"id":456}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"453":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"454":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"455":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"456":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"457":{"stops":[{"__isSmartRef__":true,"id":458},{"__isSmartRef__":true,"id":459},{"__isSmartRef__":true,"id":460},{"__isSmartRef__":true,"id":461}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"458":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"459":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"460":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"461":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"462":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":463},{"__isSmartRef__":true,"id":465},{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":469},{"__isSmartRef__":true,"id":471}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"463":{"date":{"__isSmartRef__":true,"id":464},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"464":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"465":{"date":{"__isSmartRef__":true,"id":466},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"466":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"467":{"date":{"__isSmartRef__":true,"id":468},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"468":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"469":{"date":{"__isSmartRef__":true,"id":470},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"470":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"471":{"date":{"__isSmartRef__":true,"id":472},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"472":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"473":{"sourceObj":{"__isSmartRef__":true,"id":440},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":440},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"474":{"sourceObj":{"__isSmartRef__":true,"id":440},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onStep","varMapping":{"__isSmartRef__":true,"id":475},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"475":{"source":{"__isSmartRef__":true,"id":440},"target":{"__isSmartRef__":true,"id":1}},"476":{"morph":{"__isSmartRef__":true,"id":440},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"477":{"doAction":{"__isSmartRef__":true,"id":478}},"478":{"varMapping":{"__isSmartRef__":true,"id":479},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":480},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"479":{"this":{"__isSmartRef__":true,"id":440}},"480":{"timestamp":{"__isSmartRef__":true,"id":481},"user":"robertkrahn","tags":[]},"481":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"482":{"submorphs":[{"__isSmartRef__":true,"id":483}],"scripts":[],"id":"416AD37A-25B7-4A72-A85D-AAB8088B7A86","shape":{"__isSmartRef__":true,"id":488},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":494},"lighterFill":{"__isSmartRef__":true,"id":499},"label":{"__isSmartRef__":true,"id":483},"name":"prepareFollowing","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":504},"attributeConnections":[{"__isSmartRef__":true,"id":515},{"__isSmartRef__":true,"id":516}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":517},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","A97F19D5-FCEE-4B39-A022-7D458240AD03","D8533980-787B-4106-A0B0-64566F37D85E","559908A5-75DC-4242-98DE-2B39F452D151","3D3CCE89-1D18-481F-B04E-835699DFF638","32CD85E2-86DC-40BE-84DB-E1B2397854D1","AF6C2FC9-CE58-4A1F-BD79-73D6254B21E7"],"_ClipMode":"visible","isPressed":false,"moved":true,"owner":{"__isSmartRef__":true,"id":1},"isLockOwner":false,"prevScroll":[0,0],"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":518},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(898.6,31.9)","distanceToDragEvent":"lively.pt(73.4,-21.9)"},"483":{"submorphs":[],"scripts":[],"id":"1C772734-A425-4411-A2FE-12C8BC573D24","shape":{"__isSmartRef__":true,"id":484},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":482},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":485}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":487},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","6600F388-3476-4281-853C-2F7B90AB1921","A9303864-2C87-47FF-8AB1-8F585A8B429F","6CC4EF26-F9C8-4B18-9078-01E7839020C8","3A5328EF-D7DB-444A-AAC4-EE11153AB16F","7BB8F312-7243-4806-8C56-22DE794CA45F","6A937A2D-264B-400C-97CD-8D22594E2CF0"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"484":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(104.0,25.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"485":{"style":{"__isSmartRef__":true,"id":486},"chunkOwner":{"__isSmartRef__":true,"id":483},"_id":"_94939","storedString":"prepare","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"486":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"487":{"morph":{"__isSmartRef__":true,"id":483},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"488":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":489},"_BorderRadius":5.2,"_ClipMode":"visible","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(104.0,25.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"489":{"stops":[{"__isSmartRef__":true,"id":490},{"__isSmartRef__":true,"id":491},{"__isSmartRef__":true,"id":492},{"__isSmartRef__":true,"id":493}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"490":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"491":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"492":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"493":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"494":{"stops":[{"__isSmartRef__":true,"id":495},{"__isSmartRef__":true,"id":496},{"__isSmartRef__":true,"id":497},{"__isSmartRef__":true,"id":498}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"495":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"496":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"497":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"498":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"499":{"stops":[{"__isSmartRef__":true,"id":500},{"__isSmartRef__":true,"id":501},{"__isSmartRef__":true,"id":502},{"__isSmartRef__":true,"id":503}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"500":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"501":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"502":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"503":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"504":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":505},{"__isSmartRef__":true,"id":507},{"__isSmartRef__":true,"id":509},{"__isSmartRef__":true,"id":511},{"__isSmartRef__":true,"id":513}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"505":{"date":{"__isSmartRef__":true,"id":506},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"506":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"507":{"date":{"__isSmartRef__":true,"id":508},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"508":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"509":{"date":{"__isSmartRef__":true,"id":510},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"510":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"511":{"date":{"__isSmartRef__":true,"id":512},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"512":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"513":{"date":{"__isSmartRef__":true,"id":514},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"514":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"515":{"sourceObj":{"__isSmartRef__":true,"id":482},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":482},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"516":{"sourceObj":{"__isSmartRef__":true,"id":482},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1},"targetMethodName":"onPrepare","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"517":{"morph":{"__isSmartRef__":true,"id":482},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"518":{"doAction":{"__isSmartRef__":true,"id":519}},"519":{"varMapping":{"__isSmartRef__":true,"id":520},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":521},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"520":{"this":{"__isSmartRef__":true,"id":482}},"521":{"timestamp":{"__isSmartRef__":true,"id":522},"user":"robertkrahn","tags":[]},"522":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"523":{"submorphs":[{"__isSmartRef__":true,"id":524}],"scripts":[],"id":"8F7A417D-3EA0-4925-B295-94E095F26FE8","shape":{"__isSmartRef__":true,"id":529},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":535},"lighterFill":{"__isSmartRef__":true,"id":540},"label":{"__isSmartRef__":true,"id":524},"name":"zoomOut","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":545},"attributeConnections":[{"__isSmartRef__":true,"id":556},{"__isSmartRef__":true,"id":557}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":2494},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","3597FFA9-12FB-4025-8DFD-9303B28004C6","2962F335-F931-47D8-8A19-40E58684C4DB","15178EFF-3BAB-4DAF-B314-ADF4528B23C3","6D3EDF33-7D1B-4AA5-B391-1EF44601E54B","BF48BE10-AB38-4EA0-9760-BBFD45010B34","9DBDAF8C-C384-4629-B814-E523A53AF804","71DCDB82-537B-47E6-91C5-0028084707C0"],"_ClipMode":"visible","isPressed":false,"moved":true,"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":1},"#startLetters":"set","_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2495},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(1393.1,286.2)","distanceToDragEvent":"lively.pt(64.9,-12.2)"},"524":{"submorphs":[],"scripts":[],"id":"C2558951-0098-47DD-AD2A-DC216C860448","shape":{"__isSmartRef__":true,"id":525},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":523},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":526}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":528},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","951C1A71-B1FC-4ED0-8BD4-DF9603C49044","3367CA85-84EA-4BD6-B103-0C6B9D59AF69","2713B2FF-71FF-4E0B-8CC0-A6AA480B0E3A","D7E0A0EA-AD7B-4457-9BB8-5E87814C426E","7D379649-9B57-4882-8867-1B43082948D1","65C13E7E-4EFA-4990-A411-7674F4AAD914","2C5D2425-F1F9-420E-B5F3-897B37F1C279"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"525":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"526":{"style":{"__isSmartRef__":true,"id":527},"chunkOwner":{"__isSmartRef__":true,"id":524},"_id":"_17950","storedString":"Zoom out","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"527":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"528":{"morph":{"__isSmartRef__":true,"id":524},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"529":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":530},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"530":{"stops":[{"__isSmartRef__":true,"id":531},{"__isSmartRef__":true,"id":532},{"__isSmartRef__":true,"id":533},{"__isSmartRef__":true,"id":534}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"531":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"532":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"533":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"534":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"535":{"stops":[{"__isSmartRef__":true,"id":536},{"__isSmartRef__":true,"id":537},{"__isSmartRef__":true,"id":538},{"__isSmartRef__":true,"id":539}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"536":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"537":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"538":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"539":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"540":{"stops":[{"__isSmartRef__":true,"id":541},{"__isSmartRef__":true,"id":542},{"__isSmartRef__":true,"id":543},{"__isSmartRef__":true,"id":544}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"541":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"542":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"543":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"544":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"545":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":546},{"__isSmartRef__":true,"id":548},{"__isSmartRef__":true,"id":550},{"__isSmartRef__":true,"id":552},{"__isSmartRef__":true,"id":554}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"546":{"date":{"__isSmartRef__":true,"id":547},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"547":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"548":{"date":{"__isSmartRef__":true,"id":549},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"549":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"550":{"date":{"__isSmartRef__":true,"id":551},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"551":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"552":{"date":{"__isSmartRef__":true,"id":553},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"553":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"554":{"date":{"__isSmartRef__":true,"id":555},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"555":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"556":{"sourceObj":{"__isSmartRef__":true,"id":523},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":523},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"557":{"sourceObj":{"__isSmartRef__":true,"id":523},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":558},"targetMethodName":"toggleZoom","varMapping":{"__isSmartRef__":true,"id":2493},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"558":{"submorphs":[],"scripts":[],"id":"3726CE3F-FA21-44C4-8F23-4C2B758D8F97","shape":{"__isSmartRef__":true,"id":559},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"showsHalos":false,"name":"timeline2","partsBinMetaInfo":{"__isSmartRef__":true,"id":560},"eventHandler":{"__isSmartRef__":true,"id":578},"derivationIds":[127,"F0291F62-F100-480C-AEBF-0230398F7983","AE8B5ED7-E305-45BC-BE4A-1C28A49EE12B","39BA345C-17FA-45A0-BAC2-F0CF5654ACF8","FE91EA31-D8AE-461B-8A49-95DA5FBAE5B4","F38439A3-2F4E-4AC2-BF73-2633C00B1393","6748F5B5-2284-4748-A6EE-F1A261CBAD0B","BBAFB862-93AE-4F89-BCFF-9F1C67B7FE4C","7EC17E78-593A-4CC8-B7E3-859BCBBFE785","EC8B1062-685E-4CF2-B56C-0F3B5FDF29B5","5A063386-4E3A-43B7-ADA8-E088C02B97AB","DA00D02D-EECF-4ADA-ADFB-6EEDBD989E11","DBEE3F55-5F23-4BB0-B143-79B5F31B1B93","07999C19-E790-4313-8670-A67FABFC68E4","9A230CB2-BB4E-42D2-96A9-9D0F0C3B95A9"],"partTests":{"__isSmartRef__":true,"id":579},"_ClipMode":"auto","moved":true,"owner":{"__isSmartRef__":true,"id":1},"isBeingDragged":false,"prevScroll":[0,346],"grabbingEnabled":false,"zoomedOut":false,"toogleZoom":false,"#startLetters":"setAccumulatedSc","timelineColumns":[[{"__isSmartRef__":true,"id":584},{"__isSmartRef__":true,"id":585},{"__isSmartRef__":true,"id":586},{"__isSmartRef__":true,"id":587},{"__isSmartRef__":true,"id":588}],[{"__isSmartRef__":true,"id":589},{"__isSmartRef__":true,"id":590},{"__isSmartRef__":true,"id":591},{"__isSmartRef__":true,"id":592},{"__isSmartRef__":true,"id":593}],[{"__isSmartRef__":true,"id":594},{"__isSmartRef__":true,"id":595},{"__isSmartRef__":true,"id":596},{"__isSmartRef__":true,"id":597},{"__isSmartRef__":true,"id":598}],[{"__isSmartRef__":true,"id":599},{"__isSmartRef__":true,"id":600},{"__isSmartRef__":true,"id":601},{"__isSmartRef__":true,"id":602},{"__isSmartRef__":true,"id":603}],[{"__isSmartRef__":true,"id":604},{"__isSmartRef__":true,"id":605},{"__isSmartRef__":true,"id":606},{"__isSmartRef__":true,"id":607},{"__isSmartRef__":true,"id":608}],[{"__isSmartRef__":true,"id":609},{"__isSmartRef__":true,"id":610},{"__isSmartRef__":true,"id":611},{"__isSmartRef__":true,"id":612},{"__isSmartRef__":true,"id":613}],[{"__isSmartRef__":true,"id":614},{"__isSmartRef__":true,"id":615},{"__isSmartRef__":true,"id":616},{"__isSmartRef__":true,"id":617},{"__isSmartRef__":true,"id":618}],[{"__isSmartRef__":true,"id":619},{"__isSmartRef__":true,"id":620},{"__isSmartRef__":true,"id":621},{"__isSmartRef__":true,"id":622},{"__isSmartRef__":true,"id":623}],[{"__isSmartRef__":true,"id":624},{"__isSmartRef__":true,"id":625},{"__isSmartRef__":true,"id":626},{"__isSmartRef__":true,"id":627},{"__isSmartRef__":true,"id":628}],[{"__isSmartRef__":true,"id":629},{"__isSmartRef__":true,"id":630},{"__isSmartRef__":true,"id":631},{"__isSmartRef__":true,"id":632},{"__isSmartRef__":true,"id":633}],[{"__isSmartRef__":true,"id":634},{"__isSmartRef__":true,"id":635},{"__isSmartRef__":true,"id":636},{"__isSmartRef__":true,"id":637},{"__isSmartRef__":true,"id":638}],[{"__isSmartRef__":true,"id":639},{"__isSmartRef__":true,"id":640},{"__isSmartRef__":true,"id":641},{"__isSmartRef__":true,"id":642},{"__isSmartRef__":true,"id":643}],[{"__isSmartRef__":true,"id":644},{"__isSmartRef__":true,"id":645},{"__isSmartRef__":true,"id":646},{"__isSmartRef__":true,"id":647},{"__isSmartRef__":true,"id":648}],[{"__isSmartRef__":true,"id":649},{"__isSmartRef__":true,"id":650},{"__isSmartRef__":true,"id":651},{"__isSmartRef__":true,"id":652},{"__isSmartRef__":true,"id":653}],[{"__isSmartRef__":true,"id":654},{"__isSmartRef__":true,"id":655},{"__isSmartRef__":true,"id":656},{"__isSmartRef__":true,"id":657},{"__isSmartRef__":true,"id":658}],[{"__isSmartRef__":true,"id":659},{"__isSmartRef__":true,"id":660},{"__isSmartRef__":true,"id":661},{"__isSmartRef__":true,"id":662},{"__isSmartRef__":true,"id":663}],[{"__isSmartRef__":true,"id":664},{"__isSmartRef__":true,"id":665},{"__isSmartRef__":true,"id":666},{"__isSmartRef__":true,"id":667},{"__isSmartRef__":true,"id":668}],[{"__isSmartRef__":true,"id":669},{"__isSmartRef__":true,"id":670},{"__isSmartRef__":true,"id":671},{"__isSmartRef__":true,"id":672},{"__isSmartRef__":true,"id":673}],[{"__isSmartRef__":true,"id":674},{"__isSmartRef__":true,"id":675},{"__isSmartRef__":true,"id":676},{"__isSmartRef__":true,"id":677},{"__isSmartRef__":true,"id":678}],[{"__isSmartRef__":true,"id":679},{"__isSmartRef__":true,"id":680},{"__isSmartRef__":true,"id":681},{"__isSmartRef__":true,"id":682},{"__isSmartRef__":true,"id":683}],[{"__isSmartRef__":true,"id":684},{"__isSmartRef__":true,"id":685},{"__isSmartRef__":true,"id":686},{"__isSmartRef__":true,"id":687},{"__isSmartRef__":true,"id":688}],[{"__isSmartRef__":true,"id":689},{"__isSmartRef__":true,"id":690},{"__isSmartRef__":true,"id":691},{"__isSmartRef__":true,"id":692},{"__isSmartRef__":true,"id":693}],[{"__isSmartRef__":true,"id":694},{"__isSmartRef__":true,"id":695},{"__isSmartRef__":true,"id":696},{"__isSmartRef__":true,"id":697},{"__isSmartRef__":true,"id":698}],[{"__isSmartRef__":true,"id":699},{"__isSmartRef__":true,"id":700},{"__isSmartRef__":true,"id":701},{"__isSmartRef__":true,"id":702},{"__isSmartRef__":true,"id":703}],[{"__isSmartRef__":true,"id":704},{"__isSmartRef__":true,"id":705},{"__isSmartRef__":true,"id":706},{"__isSmartRef__":true,"id":707},{"__isSmartRef__":true,"id":708}],[{"__isSmartRef__":true,"id":709},{"__isSmartRef__":true,"id":710},{"__isSmartRef__":true,"id":711},{"__isSmartRef__":true,"id":712},{"__isSmartRef__":true,"id":713}],[{"__isSmartRef__":true,"id":714},{"__isSmartRef__":true,"id":715},{"__isSmartRef__":true,"id":716},{"__isSmartRef__":true,"id":717},{"__isSmartRef__":true,"id":718}],[{"__isSmartRef__":true,"id":719},{"__isSmartRef__":true,"id":720},{"__isSmartRef__":true,"id":721},{"__isSmartRef__":true,"id":722},{"__isSmartRef__":true,"id":723}],[{"__isSmartRef__":true,"id":724},{"__isSmartRef__":true,"id":725},{"__isSmartRef__":true,"id":726},{"__isSmartRef__":true,"id":727},{"__isSmartRef__":true,"id":728}],[{"__isSmartRef__":true,"id":729},{"__isSmartRef__":true,"id":730},{"__isSmartRef__":true,"id":731},{"__isSmartRef__":true,"id":732},{"__isSmartRef__":true,"id":733}],[{"__isSmartRef__":true,"id":734},{"__isSmartRef__":true,"id":735},{"__isSmartRef__":true,"id":736},{"__isSmartRef__":true,"id":737},{"__isSmartRef__":true,"id":738}],[{"__isSmartRef__":true,"id":739},{"__isSmartRef__":true,"id":740},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":742},{"__isSmartRef__":true,"id":743}],[{"__isSmartRef__":true,"id":744},{"__isSmartRef__":true,"id":745},{"__isSmartRef__":true,"id":746},{"__isSmartRef__":true,"id":747},{"__isSmartRef__":true,"id":748}],[{"__isSmartRef__":true,"id":749},{"__isSmartRef__":true,"id":750},{"__isSmartRef__":true,"id":751},{"__isSmartRef__":true,"id":752},{"__isSmartRef__":true,"id":753}],[{"__isSmartRef__":true,"id":754},{"__isSmartRef__":true,"id":755},{"__isSmartRef__":true,"id":756},{"__isSmartRef__":true,"id":757},{"__isSmartRef__":true,"id":758}],[{"__isSmartRef__":true,"id":759},{"__isSmartRef__":true,"id":760},{"__isSmartRef__":true,"id":761},{"__isSmartRef__":true,"id":762},{"__isSmartRef__":true,"id":763}],[{"__isSmartRef__":true,"id":764},{"__isSmartRef__":true,"id":765},{"__isSmartRef__":true,"id":766},{"__isSmartRef__":true,"id":767},{"__isSmartRef__":true,"id":768}],[{"__isSmartRef__":true,"id":769},{"__isSmartRef__":true,"id":770},{"__isSmartRef__":true,"id":771},{"__isSmartRef__":true,"id":772},{"__isSmartRef__":true,"id":773}],[{"__isSmartRef__":true,"id":774},{"__isSmartRef__":true,"id":775},{"__isSmartRef__":true,"id":776},{"__isSmartRef__":true,"id":777},{"__isSmartRef__":true,"id":778}],[{"__isSmartRef__":true,"id":779},{"__isSmartRef__":true,"id":780},{"__isSmartRef__":true,"id":781},{"__isSmartRef__":true,"id":782},{"__isSmartRef__":true,"id":783}],[{"__isSmartRef__":true,"id":784},{"__isSmartRef__":true,"id":785},{"__isSmartRef__":true,"id":786},{"__isSmartRef__":true,"id":787},{"__isSmartRef__":true,"id":788}],[{"__isSmartRef__":true,"id":789},{"__isSmartRef__":true,"id":790},{"__isSmartRef__":true,"id":791},{"__isSmartRef__":true,"id":792},{"__isSmartRef__":true,"id":793}],[{"__isSmartRef__":true,"id":794},{"__isSmartRef__":true,"id":795},{"__isSmartRef__":true,"id":796},{"__isSmartRef__":true,"id":797},{"__isSmartRef__":true,"id":798}],[{"__isSmartRef__":true,"id":799},{"__isSmartRef__":true,"id":800},{"__isSmartRef__":true,"id":801},{"__isSmartRef__":true,"id":802},{"__isSmartRef__":true,"id":803}],[{"__isSmartRef__":true,"id":804},{"__isSmartRef__":true,"id":805},{"__isSmartRef__":true,"id":806},{"__isSmartRef__":true,"id":807},{"__isSmartRef__":true,"id":808}],[{"__isSmartRef__":true,"id":809},{"__isSmartRef__":true,"id":810},{"__isSmartRef__":true,"id":811},{"__isSmartRef__":true,"id":812},{"__isSmartRef__":true,"id":813}],[{"__isSmartRef__":true,"id":814},{"__isSmartRef__":true,"id":815},{"__isSmartRef__":true,"id":816},{"__isSmartRef__":true,"id":817},{"__isSmartRef__":true,"id":818}],[{"__isSmartRef__":true,"id":819},{"__isSmartRef__":true,"id":820},{"__isSmartRef__":true,"id":821},{"__isSmartRef__":true,"id":822},{"__isSmartRef__":true,"id":823}],[{"__isSmartRef__":true,"id":824},{"__isSmartRef__":true,"id":825},{"__isSmartRef__":true,"id":826},{"__isSmartRef__":true,"id":827},{"__isSmartRef__":true,"id":828}],[{"__isSmartRef__":true,"id":829},{"__isSmartRef__":true,"id":830},{"__isSmartRef__":true,"id":831},{"__isSmartRef__":true,"id":832},{"__isSmartRef__":true,"id":833}],[{"__isSmartRef__":true,"id":834},{"__isSmartRef__":true,"id":835},{"__isSmartRef__":true,"id":836},{"__isSmartRef__":true,"id":837},{"__isSmartRef__":true,"id":838}],[{"__isSmartRef__":true,"id":839},{"__isSmartRef__":true,"id":840},{"__isSmartRef__":true,"id":841},{"__isSmartRef__":true,"id":842},{"__isSmartRef__":true,"id":843}],[{"__isSmartRef__":true,"id":844},{"__isSmartRef__":true,"id":845},{"__isSmartRef__":true,"id":846},{"__isSmartRef__":true,"id":847},{"__isSmartRef__":true,"id":848}],[{"__isSmartRef__":true,"id":849},{"__isSmartRef__":true,"id":850},{"__isSmartRef__":true,"id":851},{"__isSmartRef__":true,"id":852},{"__isSmartRef__":true,"id":853}],[{"__isSmartRef__":true,"id":854},{"__isSmartRef__":true,"id":855},{"__isSmartRef__":true,"id":856},{"__isSmartRef__":true,"id":857},{"__isSmartRef__":true,"id":858}],[{"__isSmartRef__":true,"id":859},{"__isSmartRef__":true,"id":860},{"__isSmartRef__":true,"id":861},{"__isSmartRef__":true,"id":862},{"__isSmartRef__":true,"id":863}],[{"__isSmartRef__":true,"id":864},{"__isSmartRef__":true,"id":865},{"__isSmartRef__":true,"id":866},{"__isSmartRef__":true,"id":867},{"__isSmartRef__":true,"id":868}],[{"__isSmartRef__":true,"id":869},{"__isSmartRef__":true,"id":870},{"__isSmartRef__":true,"id":871},{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":873}],[{"__isSmartRef__":true,"id":874},{"__isSmartRef__":true,"id":875},{"__isSmartRef__":true,"id":876},{"__isSmartRef__":true,"id":877},{"__isSmartRef__":true,"id":878}],[{"__isSmartRef__":true,"id":879},{"__isSmartRef__":true,"id":880},{"__isSmartRef__":true,"id":881},{"__isSmartRef__":true,"id":882},{"__isSmartRef__":true,"id":883}],[{"__isSmartRef__":true,"id":884},{"__isSmartRef__":true,"id":885},{"__isSmartRef__":true,"id":886},{"__isSmartRef__":true,"id":887},{"__isSmartRef__":true,"id":888}],[{"__isSmartRef__":true,"id":889},{"__isSmartRef__":true,"id":890},{"__isSmartRef__":true,"id":891},{"__isSmartRef__":true,"id":892},{"__isSmartRef__":true,"id":893}],[{"__isSmartRef__":true,"id":894},{"__isSmartRef__":true,"id":895},{"__isSmartRef__":true,"id":896},{"__isSmartRef__":true,"id":897},{"__isSmartRef__":true,"id":898}],[{"__isSmartRef__":true,"id":899},{"__isSmartRef__":true,"id":900},{"__isSmartRef__":true,"id":901},{"__isSmartRef__":true,"id":902},{"__isSmartRef__":true,"id":903}],[{"__isSmartRef__":true,"id":904},{"__isSmartRef__":true,"id":905},{"__isSmartRef__":true,"id":906},{"__isSmartRef__":true,"id":907},{"__isSmartRef__":true,"id":908}],[{"__isSmartRef__":true,"id":909},{"__isSmartRef__":true,"id":910},{"__isSmartRef__":true,"id":911},{"__isSmartRef__":true,"id":912},{"__isSmartRef__":true,"id":913}],[{"__isSmartRef__":true,"id":914},{"__isSmartRef__":true,"id":915},{"__isSmartRef__":true,"id":916},{"__isSmartRef__":true,"id":917},{"__isSmartRef__":true,"id":918}],[{"__isSmartRef__":true,"id":919},{"__isSmartRef__":true,"id":920},{"__isSmartRef__":true,"id":921},{"__isSmartRef__":true,"id":922},{"__isSmartRef__":true,"id":923}],[{"__isSmartRef__":true,"id":924},{"__isSmartRef__":true,"id":925},{"__isSmartRef__":true,"id":926},{"__isSmartRef__":true,"id":927},{"__isSmartRef__":true,"id":928}],[{"__isSmartRef__":true,"id":929},{"__isSmartRef__":true,"id":930},{"__isSmartRef__":true,"id":931},{"__isSmartRef__":true,"id":932},{"__isSmartRef__":true,"id":933}],[{"__isSmartRef__":true,"id":934},{"__isSmartRef__":true,"id":935},{"__isSmartRef__":true,"id":936},{"__isSmartRef__":true,"id":937},{"__isSmartRef__":true,"id":938}],[{"__isSmartRef__":true,"id":939},{"__isSmartRef__":true,"id":940},{"__isSmartRef__":true,"id":941},{"__isSmartRef__":true,"id":942},{"__isSmartRef__":true,"id":943}],[{"__isSmartRef__":true,"id":944},{"__isSmartRef__":true,"id":945},{"__isSmartRef__":true,"id":946},{"__isSmartRef__":true,"id":947},{"__isSmartRef__":true,"id":948}],[{"__isSmartRef__":true,"id":949},{"__isSmartRef__":true,"id":950},{"__isSmartRef__":true,"id":951},{"__isSmartRef__":true,"id":952},{"__isSmartRef__":true,"id":953}],[{"__isSmartRef__":true,"id":954},{"__isSmartRef__":true,"id":955},{"__isSmartRef__":true,"id":956},{"__isSmartRef__":true,"id":957},{"__isSmartRef__":true,"id":958}],[{"__isSmartRef__":true,"id":959},{"__isSmartRef__":true,"id":960},{"__isSmartRef__":true,"id":961},{"__isSmartRef__":true,"id":962},{"__isSmartRef__":true,"id":963}],[{"__isSmartRef__":true,"id":964},{"__isSmartRef__":true,"id":965},{"__isSmartRef__":true,"id":966},{"__isSmartRef__":true,"id":967},{"__isSmartRef__":true,"id":968}],[{"__isSmartRef__":true,"id":969},{"__isSmartRef__":true,"id":970},{"__isSmartRef__":true,"id":971},{"__isSmartRef__":true,"id":972},{"__isSmartRef__":true,"id":973}],[{"__isSmartRef__":true,"id":974},{"__isSmartRef__":true,"id":975},{"__isSmartRef__":true,"id":976},{"__isSmartRef__":true,"id":977},{"__isSmartRef__":true,"id":978}],[{"__isSmartRef__":true,"id":979},{"__isSmartRef__":true,"id":980},{"__isSmartRef__":true,"id":981},{"__isSmartRef__":true,"id":982},{"__isSmartRef__":true,"id":983}],[{"__isSmartRef__":true,"id":984},{"__isSmartRef__":true,"id":985},{"__isSmartRef__":true,"id":986},{"__isSmartRef__":true,"id":987},{"__isSmartRef__":true,"id":988}],[{"__isSmartRef__":true,"id":989},{"__isSmartRef__":true,"id":990},{"__isSmartRef__":true,"id":991},{"__isSmartRef__":true,"id":992},{"__isSmartRef__":true,"id":993}],[{"__isSmartRef__":true,"id":994},{"__isSmartRef__":true,"id":995},{"__isSmartRef__":true,"id":996},{"__isSmartRef__":true,"id":997},{"__isSmartRef__":true,"id":998}],[{"__isSmartRef__":true,"id":999},{"__isSmartRef__":true,"id":1000},{"__isSmartRef__":true,"id":1001},{"__isSmartRef__":true,"id":1002},{"__isSmartRef__":true,"id":1003}],[{"__isSmartRef__":true,"id":1004},{"__isSmartRef__":true,"id":1005},{"__isSmartRef__":true,"id":1006},{"__isSmartRef__":true,"id":1007},{"__isSmartRef__":true,"id":1008}],[{"__isSmartRef__":true,"id":1009},{"__isSmartRef__":true,"id":1010},{"__isSmartRef__":true,"id":1011},{"__isSmartRef__":true,"id":1012},{"__isSmartRef__":true,"id":1013}],[{"__isSmartRef__":true,"id":1014},{"__isSmartRef__":true,"id":1015},{"__isSmartRef__":true,"id":1016},{"__isSmartRef__":true,"id":1017},{"__isSmartRef__":true,"id":1018}],[{"__isSmartRef__":true,"id":1019},{"__isSmartRef__":true,"id":1020},{"__isSmartRef__":true,"id":1021},{"__isSmartRef__":true,"id":1022},{"__isSmartRef__":true,"id":1023}],[{"__isSmartRef__":true,"id":1024},{"__isSmartRef__":true,"id":1025},{"__isSmartRef__":true,"id":1026},{"__isSmartRef__":true,"id":1027},{"__isSmartRef__":true,"id":1028}],[{"__isSmartRef__":true,"id":1029},{"__isSmartRef__":true,"id":1030},{"__isSmartRef__":true,"id":1031},{"__isSmartRef__":true,"id":1032},{"__isSmartRef__":true,"id":1033}],[{"__isSmartRef__":true,"id":1034},{"__isSmartRef__":true,"id":1035},{"__isSmartRef__":true,"id":1036},{"__isSmartRef__":true,"id":1037},{"__isSmartRef__":true,"id":1038}],[{"__isSmartRef__":true,"id":1039},{"__isSmartRef__":true,"id":1040},{"__isSmartRef__":true,"id":1041},{"__isSmartRef__":true,"id":1042},{"__isSmartRef__":true,"id":1043}],[{"__isSmartRef__":true,"id":1044},{"__isSmartRef__":true,"id":1045},{"__isSmartRef__":true,"id":1046},{"__isSmartRef__":true,"id":1047},{"__isSmartRef__":true,"id":1048}],[{"__isSmartRef__":true,"id":1049},{"__isSmartRef__":true,"id":1050},{"__isSmartRef__":true,"id":1051},{"__isSmartRef__":true,"id":1052},{"__isSmartRef__":true,"id":1053}],[{"__isSmartRef__":true,"id":1054},{"__isSmartRef__":true,"id":1055},{"__isSmartRef__":true,"id":1056},{"__isSmartRef__":true,"id":1057},{"__isSmartRef__":true,"id":1058}],[{"__isSmartRef__":true,"id":1059},{"__isSmartRef__":true,"id":1060},{"__isSmartRef__":true,"id":1061},{"__isSmartRef__":true,"id":1062},{"__isSmartRef__":true,"id":1063}],[{"__isSmartRef__":true,"id":1064},{"__isSmartRef__":true,"id":1065},{"__isSmartRef__":true,"id":1066},{"__isSmartRef__":true,"id":1067},{"__isSmartRef__":true,"id":1068}],[{"__isSmartRef__":true,"id":1069},{"__isSmartRef__":true,"id":1070},{"__isSmartRef__":true,"id":1071},{"__isSmartRef__":true,"id":1072},{"__isSmartRef__":true,"id":1073}],[{"__isSmartRef__":true,"id":1074},{"__isSmartRef__":true,"id":1075},{"__isSmartRef__":true,"id":1076},{"__isSmartRef__":true,"id":1077},{"__isSmartRef__":true,"id":1078}],[{"__isSmartRef__":true,"id":1079},{"__isSmartRef__":true,"id":1080},{"__isSmartRef__":true,"id":1081},{"__isSmartRef__":true,"id":1082},{"__isSmartRef__":true,"id":1083}],[{"__isSmartRef__":true,"id":1084},{"__isSmartRef__":true,"id":1085},{"__isSmartRef__":true,"id":1086},{"__isSmartRef__":true,"id":1087},{"__isSmartRef__":true,"id":1088}],[{"__isSmartRef__":true,"id":1089},{"__isSmartRef__":true,"id":1090},{"__isSmartRef__":true,"id":1091},{"__isSmartRef__":true,"id":1092},{"__isSmartRef__":true,"id":1093}],[{"__isSmartRef__":true,"id":1094},{"__isSmartRef__":true,"id":1095},{"__isSmartRef__":true,"id":1096},{"__isSmartRef__":true,"id":1097},{"__isSmartRef__":true,"id":1098}],[{"__isSmartRef__":true,"id":1099},{"__isSmartRef__":true,"id":1100},{"__isSmartRef__":true,"id":1101},{"__isSmartRef__":true,"id":1102},{"__isSmartRef__":true,"id":1103}],[{"__isSmartRef__":true,"id":1104},{"__isSmartRef__":true,"id":1105},{"__isSmartRef__":true,"id":1106},{"__isSmartRef__":true,"id":1107},{"__isSmartRef__":true,"id":1108}],[{"__isSmartRef__":true,"id":1109},{"__isSmartRef__":true,"id":1110},{"__isSmartRef__":true,"id":1111},{"__isSmartRef__":true,"id":1112},{"__isSmartRef__":true,"id":1113}],[{"__isSmartRef__":true,"id":1114},{"__isSmartRef__":true,"id":1115},{"__isSmartRef__":true,"id":1116},{"__isSmartRef__":true,"id":1117},{"__isSmartRef__":true,"id":1118}],[{"__isSmartRef__":true,"id":1119},{"__isSmartRef__":true,"id":1120},{"__isSmartRef__":true,"id":1121},{"__isSmartRef__":true,"id":1122},{"__isSmartRef__":true,"id":1123}],[{"__isSmartRef__":true,"id":1124},{"__isSmartRef__":true,"id":1125},{"__isSmartRef__":true,"id":1126},{"__isSmartRef__":true,"id":1127},{"__isSmartRef__":true,"id":1128}],[{"__isSmartRef__":true,"id":1129},{"__isSmartRef__":true,"id":1130},{"__isSmartRef__":true,"id":1131},{"__isSmartRef__":true,"id":1132},{"__isSmartRef__":true,"id":1133}],[{"__isSmartRef__":true,"id":1134},{"__isSmartRef__":true,"id":1135},{"__isSmartRef__":true,"id":1136},{"__isSmartRef__":true,"id":1137},{"__isSmartRef__":true,"id":1138}],[{"__isSmartRef__":true,"id":1139},{"__isSmartRef__":true,"id":1140},{"__isSmartRef__":true,"id":1141},{"__isSmartRef__":true,"id":1142},{"__isSmartRef__":true,"id":1143}],[{"__isSmartRef__":true,"id":1144},{"__isSmartRef__":true,"id":1145},{"__isSmartRef__":true,"id":1146},{"__isSmartRef__":true,"id":1147},{"__isSmartRef__":true,"id":1148}],[{"__isSmartRef__":true,"id":1149},{"__isSmartRef__":true,"id":1150},{"__isSmartRef__":true,"id":1151},{"__isSmartRef__":true,"id":1152},{"__isSmartRef__":true,"id":1153}],[{"__isSmartRef__":true,"id":1154},{"__isSmartRef__":true,"id":1155},{"__isSmartRef__":true,"id":1156},{"__isSmartRef__":true,"id":1157},{"__isSmartRef__":true,"id":1158}],[{"__isSmartRef__":true,"id":1159},{"__isSmartRef__":true,"id":1160},{"__isSmartRef__":true,"id":1161},{"__isSmartRef__":true,"id":1162},{"__isSmartRef__":true,"id":1163}],[{"__isSmartRef__":true,"id":1164},{"__isSmartRef__":true,"id":1165},{"__isSmartRef__":true,"id":1166},{"__isSmartRef__":true,"id":1167},{"__isSmartRef__":true,"id":1168}],[{"__isSmartRef__":true,"id":1169},{"__isSmartRef__":true,"id":1170},{"__isSmartRef__":true,"id":1171},{"__isSmartRef__":true,"id":1172},{"__isSmartRef__":true,"id":1173}],[{"__isSmartRef__":true,"id":1174},{"__isSmartRef__":true,"id":1175},{"__isSmartRef__":true,"id":1176},{"__isSmartRef__":true,"id":1177},{"__isSmartRef__":true,"id":1178}],[{"__isSmartRef__":true,"id":1179},{"__isSmartRef__":true,"id":1180},{"__isSmartRef__":true,"id":1181},{"__isSmartRef__":true,"id":1182},{"__isSmartRef__":true,"id":1183}],[{"__isSmartRef__":true,"id":1184},{"__isSmartRef__":true,"id":1185},{"__isSmartRef__":true,"id":1186},{"__isSmartRef__":true,"id":1187},{"__isSmartRef__":true,"id":1188}],[{"__isSmartRef__":true,"id":1189},{"__isSmartRef__":true,"id":1190},{"__isSmartRef__":true,"id":1191},{"__isSmartRef__":true,"id":1192},{"__isSmartRef__":true,"id":1193}],[{"__isSmartRef__":true,"id":1194},{"__isSmartRef__":true,"id":1195},{"__isSmartRef__":true,"id":1196},{"__isSmartRef__":true,"id":1197},{"__isSmartRef__":true,"id":1198}],[{"__isSmartRef__":true,"id":1199},{"__isSmartRef__":true,"id":1200},{"__isSmartRef__":true,"id":1201},{"__isSmartRef__":true,"id":1202},{"__isSmartRef__":true,"id":1203}],[{"__isSmartRef__":true,"id":1204},{"__isSmartRef__":true,"id":1205},{"__isSmartRef__":true,"id":1206},{"__isSmartRef__":true,"id":1207},{"__isSmartRef__":true,"id":1208}],[{"__isSmartRef__":true,"id":1209},{"__isSmartRef__":true,"id":1210},{"__isSmartRef__":true,"id":1211},{"__isSmartRef__":true,"id":1212},{"__isSmartRef__":true,"id":1213}],[{"__isSmartRef__":true,"id":1214},{"__isSmartRef__":true,"id":1215},{"__isSmartRef__":true,"id":1216},{"__isSmartRef__":true,"id":1217},{"__isSmartRef__":true,"id":1218}],[{"__isSmartRef__":true,"id":1219},{"__isSmartRef__":true,"id":1220},{"__isSmartRef__":true,"id":1221},{"__isSmartRef__":true,"id":1222},{"__isSmartRef__":true,"id":1223}],[{"__isSmartRef__":true,"id":1224},{"__isSmartRef__":true,"id":1225},{"__isSmartRef__":true,"id":1226},{"__isSmartRef__":true,"id":1227},{"__isSmartRef__":true,"id":1228}],[{"__isSmartRef__":true,"id":1229},{"__isSmartRef__":true,"id":1230},{"__isSmartRef__":true,"id":1231},{"__isSmartRef__":true,"id":1232},{"__isSmartRef__":true,"id":1233}],[{"__isSmartRef__":true,"id":1234},{"__isSmartRef__":true,"id":1235},{"__isSmartRef__":true,"id":1236},{"__isSmartRef__":true,"id":1237},{"__isSmartRef__":true,"id":1238}],[{"__isSmartRef__":true,"id":1239},{"__isSmartRef__":true,"id":1240},{"__isSmartRef__":true,"id":1241},{"__isSmartRef__":true,"id":1242},{"__isSmartRef__":true,"id":1243}],[{"__isSmartRef__":true,"id":1244},{"__isSmartRef__":true,"id":1245},{"__isSmartRef__":true,"id":1246},{"__isSmartRef__":true,"id":1247},{"__isSmartRef__":true,"id":1248}],[{"__isSmartRef__":true,"id":1249},{"__isSmartRef__":true,"id":1250},{"__isSmartRef__":true,"id":1251},{"__isSmartRef__":true,"id":1252},{"__isSmartRef__":true,"id":1253}],[{"__isSmartRef__":true,"id":1254},{"__isSmartRef__":true,"id":1255},{"__isSmartRef__":true,"id":1256},{"__isSmartRef__":true,"id":1257},{"__isSmartRef__":true,"id":1258}],[{"__isSmartRef__":true,"id":1259},{"__isSmartRef__":true,"id":1260},{"__isSmartRef__":true,"id":1261},{"__isSmartRef__":true,"id":1262},{"__isSmartRef__":true,"id":1263}],[{"__isSmartRef__":true,"id":1264},{"__isSmartRef__":true,"id":1265},{"__isSmartRef__":true,"id":1266},{"__isSmartRef__":true,"id":1267},{"__isSmartRef__":true,"id":1268}],[{"__isSmartRef__":true,"id":1269},{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1271},{"__isSmartRef__":true,"id":1272},{"__isSmartRef__":true,"id":1273}],[{"__isSmartRef__":true,"id":1274},{"__isSmartRef__":true,"id":1275},{"__isSmartRef__":true,"id":1276},{"__isSmartRef__":true,"id":1277},{"__isSmartRef__":true,"id":1278}],[{"__isSmartRef__":true,"id":1279},{"__isSmartRef__":true,"id":1280},{"__isSmartRef__":true,"id":1281},{"__isSmartRef__":true,"id":1282},{"__isSmartRef__":true,"id":1283}],[{"__isSmartRef__":true,"id":1284},{"__isSmartRef__":true,"id":1285},{"__isSmartRef__":true,"id":1286},{"__isSmartRef__":true,"id":1287},{"__isSmartRef__":true,"id":1288}],[{"__isSmartRef__":true,"id":1289},{"__isSmartRef__":true,"id":1290},{"__isSmartRef__":true,"id":1291},{"__isSmartRef__":true,"id":1292},{"__isSmartRef__":true,"id":1293}],[{"__isSmartRef__":true,"id":1294},{"__isSmartRef__":true,"id":1295},{"__isSmartRef__":true,"id":1296},{"__isSmartRef__":true,"id":1297},{"__isSmartRef__":true,"id":1298}],[{"__isSmartRef__":true,"id":1299},{"__isSmartRef__":true,"id":1300},{"__isSmartRef__":true,"id":1301},{"__isSmartRef__":true,"id":1302},{"__isSmartRef__":true,"id":1303}],[{"__isSmartRef__":true,"id":1304},{"__isSmartRef__":true,"id":1305},{"__isSmartRef__":true,"id":1306},{"__isSmartRef__":true,"id":1307},{"__isSmartRef__":true,"id":1308}],[{"__isSmartRef__":true,"id":1309},{"__isSmartRef__":true,"id":1310},{"__isSmartRef__":true,"id":1311},{"__isSmartRef__":true,"id":1312},{"__isSmartRef__":true,"id":1313}],[{"__isSmartRef__":true,"id":1314},{"__isSmartRef__":true,"id":1315},{"__isSmartRef__":true,"id":1316},{"__isSmartRef__":true,"id":1317},{"__isSmartRef__":true,"id":1318}],[{"__isSmartRef__":true,"id":1319},{"__isSmartRef__":true,"id":1320},{"__isSmartRef__":true,"id":1321},{"__isSmartRef__":true,"id":1322},{"__isSmartRef__":true,"id":1323}],[{"__isSmartRef__":true,"id":1324},{"__isSmartRef__":true,"id":1325},{"__isSmartRef__":true,"id":1326},{"__isSmartRef__":true,"id":1327},{"__isSmartRef__":true,"id":1328}],[{"__isSmartRef__":true,"id":1329},{"__isSmartRef__":true,"id":1330},{"__isSmartRef__":true,"id":1331},{"__isSmartRef__":true,"id":1332},{"__isSmartRef__":true,"id":1333}],[{"__isSmartRef__":true,"id":1334},{"__isSmartRef__":true,"id":1335},{"__isSmartRef__":true,"id":1336},{"__isSmartRef__":true,"id":1337},{"__isSmartRef__":true,"id":1338}],[{"__isSmartRef__":true,"id":1339},{"__isSmartRef__":true,"id":1340},{"__isSmartRef__":true,"id":1341},{"__isSmartRef__":true,"id":1342},{"__isSmartRef__":true,"id":1343}],[{"__isSmartRef__":true,"id":1344},{"__isSmartRef__":true,"id":1345},{"__isSmartRef__":true,"id":1346},{"__isSmartRef__":true,"id":1347},{"__isSmartRef__":true,"id":1348}],[{"__isSmartRef__":true,"id":1349},{"__isSmartRef__":true,"id":1350},{"__isSmartRef__":true,"id":1351},{"__isSmartRef__":true,"id":1352},{"__isSmartRef__":true,"id":1353}],[{"__isSmartRef__":true,"id":1354},{"__isSmartRef__":true,"id":1355},{"__isSmartRef__":true,"id":1356},{"__isSmartRef__":true,"id":1357},{"__isSmartRef__":true,"id":1358}],[{"__isSmartRef__":true,"id":1359},{"__isSmartRef__":true,"id":1360},{"__isSmartRef__":true,"id":1361},{"__isSmartRef__":true,"id":1362},{"__isSmartRef__":true,"id":1363}],[{"__isSmartRef__":true,"id":1364},{"__isSmartRef__":true,"id":1365},{"__isSmartRef__":true,"id":1366},{"__isSmartRef__":true,"id":1367},{"__isSmartRef__":true,"id":1368}],[{"__isSmartRef__":true,"id":1369},{"__isSmartRef__":true,"id":1370},{"__isSmartRef__":true,"id":1371},{"__isSmartRef__":true,"id":1372},{"__isSmartRef__":true,"id":1373}],[{"__isSmartRef__":true,"id":1374},{"__isSmartRef__":true,"id":1375},{"__isSmartRef__":true,"id":1376},{"__isSmartRef__":true,"id":1377},{"__isSmartRef__":true,"id":1378}],[{"__isSmartRef__":true,"id":1379},{"__isSmartRef__":true,"id":1380},{"__isSmartRef__":true,"id":1381},{"__isSmartRef__":true,"id":1382},{"__isSmartRef__":true,"id":1383}],[{"__isSmartRef__":true,"id":1384},{"__isSmartRef__":true,"id":1385},{"__isSmartRef__":true,"id":1386},{"__isSmartRef__":true,"id":1387},{"__isSmartRef__":true,"id":1388}],[{"__isSmartRef__":true,"id":1389},{"__isSmartRef__":true,"id":1390},{"__isSmartRef__":true,"id":1391},{"__isSmartRef__":true,"id":1392},{"__isSmartRef__":true,"id":1393}],[{"__isSmartRef__":true,"id":1394},{"__isSmartRef__":true,"id":1395},{"__isSmartRef__":true,"id":1396},{"__isSmartRef__":true,"id":1397},{"__isSmartRef__":true,"id":1398}],[{"__isSmartRef__":true,"id":1399},{"__isSmartRef__":true,"id":1400},{"__isSmartRef__":true,"id":1401},{"__isSmartRef__":true,"id":1402},{"__isSmartRef__":true,"id":1403}],[{"__isSmartRef__":true,"id":1404},{"__isSmartRef__":true,"id":1405},{"__isSmartRef__":true,"id":1406},{"__isSmartRef__":true,"id":1407},{"__isSmartRef__":true,"id":1408}],[{"__isSmartRef__":true,"id":1409},{"__isSmartRef__":true,"id":1410},{"__isSmartRef__":true,"id":1411},{"__isSmartRef__":true,"id":1412},{"__isSmartRef__":true,"id":1413}],[{"__isSmartRef__":true,"id":1414},{"__isSmartRef__":true,"id":1415},{"__isSmartRef__":true,"id":1416},{"__isSmartRef__":true,"id":1417},{"__isSmartRef__":true,"id":1418}],[{"__isSmartRef__":true,"id":1419},{"__isSmartRef__":true,"id":1420},{"__isSmartRef__":true,"id":1421},{"__isSmartRef__":true,"id":1422},{"__isSmartRef__":true,"id":1423}],[{"__isSmartRef__":true,"id":1424},{"__isSmartRef__":true,"id":1425},{"__isSmartRef__":true,"id":1426},{"__isSmartRef__":true,"id":1427},{"__isSmartRef__":true,"id":1428}],[{"__isSmartRef__":true,"id":1429},{"__isSmartRef__":true,"id":1430},{"__isSmartRef__":true,"id":1431},{"__isSmartRef__":true,"id":1432},{"__isSmartRef__":true,"id":1433}],[{"__isSmartRef__":true,"id":1434},{"__isSmartRef__":true,"id":1435},{"__isSmartRef__":true,"id":1436},{"__isSmartRef__":true,"id":1437},{"__isSmartRef__":true,"id":1438}],[{"__isSmartRef__":true,"id":1439},{"__isSmartRef__":true,"id":1440},{"__isSmartRef__":true,"id":1441},{"__isSmartRef__":true,"id":1442},{"__isSmartRef__":true,"id":1443}],[{"__isSmartRef__":true,"id":1444},{"__isSmartRef__":true,"id":1445},{"__isSmartRef__":true,"id":1446},{"__isSmartRef__":true,"id":1447},{"__isSmartRef__":true,"id":1448}],[{"__isSmartRef__":true,"id":1449},{"__isSmartRef__":true,"id":1450},{"__isSmartRef__":true,"id":1451},{"__isSmartRef__":true,"id":1452},{"__isSmartRef__":true,"id":1453}],[{"__isSmartRef__":true,"id":1454},{"__isSmartRef__":true,"id":1455},{"__isSmartRef__":true,"id":1456},{"__isSmartRef__":true,"id":1457},{"__isSmartRef__":true,"id":1458}],[{"__isSmartRef__":true,"id":1459},{"__isSmartRef__":true,"id":1460},{"__isSmartRef__":true,"id":1461},{"__isSmartRef__":true,"id":1462},{"__isSmartRef__":true,"id":1463}],[{"__isSmartRef__":true,"id":1464},{"__isSmartRef__":true,"id":1465},{"__isSmartRef__":true,"id":1466},{"__isSmartRef__":true,"id":1467},{"__isSmartRef__":true,"id":1468}],[{"__isSmartRef__":true,"id":1469},{"__isSmartRef__":true,"id":1470},{"__isSmartRef__":true,"id":1471},{"__isSmartRef__":true,"id":1472},{"__isSmartRef__":true,"id":1473}],[{"__isSmartRef__":true,"id":1474},{"__isSmartRef__":true,"id":1475},{"__isSmartRef__":true,"id":1476},{"__isSmartRef__":true,"id":1477},{"__isSmartRef__":true,"id":1478}],[{"__isSmartRef__":true,"id":1479},{"__isSmartRef__":true,"id":1480},{"__isSmartRef__":true,"id":1481},{"__isSmartRef__":true,"id":1482},{"__isSmartRef__":true,"id":1483}],[{"__isSmartRef__":true,"id":1484},{"__isSmartRef__":true,"id":1485},{"__isSmartRef__":true,"id":1486},{"__isSmartRef__":true,"id":1487},{"__isSmartRef__":true,"id":1488}],[{"__isSmartRef__":true,"id":1489},{"__isSmartRef__":true,"id":1490},{"__isSmartRef__":true,"id":1491},{"__isSmartRef__":true,"id":1492},{"__isSmartRef__":true,"id":1493}],[{"__isSmartRef__":true,"id":1494},{"__isSmartRef__":true,"id":1495},{"__isSmartRef__":true,"id":1496},{"__isSmartRef__":true,"id":1497},{"__isSmartRef__":true,"id":1498}],[{"__isSmartRef__":true,"id":1499},{"__isSmartRef__":true,"id":1500},{"__isSmartRef__":true,"id":1501},{"__isSmartRef__":true,"id":1502},{"__isSmartRef__":true,"id":1503}],[{"__isSmartRef__":true,"id":1504},{"__isSmartRef__":true,"id":1505},{"__isSmartRef__":true,"id":1506},{"__isSmartRef__":true,"id":1507},{"__isSmartRef__":true,"id":1508}],[{"__isSmartRef__":true,"id":1509},{"__isSmartRef__":true,"id":1510},{"__isSmartRef__":true,"id":1511},{"__isSmartRef__":true,"id":1512},{"__isSmartRef__":true,"id":1513}],[{"__isSmartRef__":true,"id":1514},{"__isSmartRef__":true,"id":1515},{"__isSmartRef__":true,"id":1516},{"__isSmartRef__":true,"id":1517},{"__isSmartRef__":true,"id":1518}],[{"__isSmartRef__":true,"id":1519},{"__isSmartRef__":true,"id":1520},{"__isSmartRef__":true,"id":1521},{"__isSmartRef__":true,"id":1522},{"__isSmartRef__":true,"id":1523}],[{"__isSmartRef__":true,"id":1524},{"__isSmartRef__":true,"id":1525},{"__isSmartRef__":true,"id":1526},{"__isSmartRef__":true,"id":1527},{"__isSmartRef__":true,"id":1528}],[{"__isSmartRef__":true,"id":1529},{"__isSmartRef__":true,"id":1530},{"__isSmartRef__":true,"id":1531},{"__isSmartRef__":true,"id":1532},{"__isSmartRef__":true,"id":1533}],[{"__isSmartRef__":true,"id":1534},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1536},{"__isSmartRef__":true,"id":1537},{"__isSmartRef__":true,"id":1538}],[{"__isSmartRef__":true,"id":1539},{"__isSmartRef__":true,"id":1540},{"__isSmartRef__":true,"id":1541},{"__isSmartRef__":true,"id":1542},{"__isSmartRef__":true,"id":1543}],[{"__isSmartRef__":true,"id":1544},{"__isSmartRef__":true,"id":1545},{"__isSmartRef__":true,"id":1546},{"__isSmartRef__":true,"id":1547},{"__isSmartRef__":true,"id":1548}],[{"__isSmartRef__":true,"id":1549},{"__isSmartRef__":true,"id":1550},{"__isSmartRef__":true,"id":1551},{"__isSmartRef__":true,"id":1552},{"__isSmartRef__":true,"id":1553}],[{"__isSmartRef__":true,"id":1554},{"__isSmartRef__":true,"id":1555},{"__isSmartRef__":true,"id":1556},{"__isSmartRef__":true,"id":1557},{"__isSmartRef__":true,"id":1558}],[{"__isSmartRef__":true,"id":1559},{"__isSmartRef__":true,"id":1560},{"__isSmartRef__":true,"id":1561},{"__isSmartRef__":true,"id":1562},{"__isSmartRef__":true,"id":1563}],[{"__isSmartRef__":true,"id":1564},{"__isSmartRef__":true,"id":1565},{"__isSmartRef__":true,"id":1566},{"__isSmartRef__":true,"id":1567},{"__isSmartRef__":true,"id":1568}],[{"__isSmartRef__":true,"id":1569},{"__isSmartRef__":true,"id":1570},{"__isSmartRef__":true,"id":1571},{"__isSmartRef__":true,"id":1572},{"__isSmartRef__":true,"id":1573}],[{"__isSmartRef__":true,"id":1574},{"__isSmartRef__":true,"id":1575},{"__isSmartRef__":true,"id":1576},{"__isSmartRef__":true,"id":1577},{"__isSmartRef__":true,"id":1578}],[{"__isSmartRef__":true,"id":1579},{"__isSmartRef__":true,"id":1580},{"__isSmartRef__":true,"id":1581},{"__isSmartRef__":true,"id":1582},{"__isSmartRef__":true,"id":1583}],[{"__isSmartRef__":true,"id":1584},{"__isSmartRef__":true,"id":1585},{"__isSmartRef__":true,"id":1586},{"__isSmartRef__":true,"id":1587},{"__isSmartRef__":true,"id":1588}],[{"__isSmartRef__":true,"id":1589},{"__isSmartRef__":true,"id":1590},{"__isSmartRef__":true,"id":1591},{"__isSmartRef__":true,"id":1592},{"__isSmartRef__":true,"id":1593}],[{"__isSmartRef__":true,"id":1594},{"__isSmartRef__":true,"id":1595},{"__isSmartRef__":true,"id":1596},{"__isSmartRef__":true,"id":1597},{"__isSmartRef__":true,"id":1598}],[{"__isSmartRef__":true,"id":1599},{"__isSmartRef__":true,"id":1600},{"__isSmartRef__":true,"id":1601},{"__isSmartRef__":true,"id":1602},{"__isSmartRef__":true,"id":1603}],[{"__isSmartRef__":true,"id":1604},{"__isSmartRef__":true,"id":1605},{"__isSmartRef__":true,"id":1606},{"__isSmartRef__":true,"id":1607},{"__isSmartRef__":true,"id":1608}],[{"__isSmartRef__":true,"id":1609},{"__isSmartRef__":true,"id":1610},{"__isSmartRef__":true,"id":1611},{"__isSmartRef__":true,"id":1612},{"__isSmartRef__":true,"id":1613}],[{"__isSmartRef__":true,"id":1614},{"__isSmartRef__":true,"id":1615},{"__isSmartRef__":true,"id":1616},{"__isSmartRef__":true,"id":1617},{"__isSmartRef__":true,"id":1618}],[{"__isSmartRef__":true,"id":1619},{"__isSmartRef__":true,"id":1620},{"__isSmartRef__":true,"id":1621},{"__isSmartRef__":true,"id":1622},{"__isSmartRef__":true,"id":1623}],[{"__isSmartRef__":true,"id":1624},{"__isSmartRef__":true,"id":1625},{"__isSmartRef__":true,"id":1626},{"__isSmartRef__":true,"id":1627},{"__isSmartRef__":true,"id":1628}],[{"__isSmartRef__":true,"id":1629},{"__isSmartRef__":true,"id":1630},{"__isSmartRef__":true,"id":1631},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1633}],[{"__isSmartRef__":true,"id":1634},{"__isSmartRef__":true,"id":1635},{"__isSmartRef__":true,"id":1636},{"__isSmartRef__":true,"id":1637},{"__isSmartRef__":true,"id":1638}],[{"__isSmartRef__":true,"id":1639},{"__isSmartRef__":true,"id":1640},{"__isSmartRef__":true,"id":1641},{"__isSmartRef__":true,"id":1642},{"__isSmartRef__":true,"id":1643}],[{"__isSmartRef__":true,"id":1644},{"__isSmartRef__":true,"id":1645},{"__isSmartRef__":true,"id":1646},{"__isSmartRef__":true,"id":1647},{"__isSmartRef__":true,"id":1648}],[{"__isSmartRef__":true,"id":1649},{"__isSmartRef__":true,"id":1650},{"__isSmartRef__":true,"id":1651},{"__isSmartRef__":true,"id":1652},{"__isSmartRef__":true,"id":1653}],[{"__isSmartRef__":true,"id":1654},{"__isSmartRef__":true,"id":1655},{"__isSmartRef__":true,"id":1656},{"__isSmartRef__":true,"id":1657},{"__isSmartRef__":true,"id":1658}],[{"__isSmartRef__":true,"id":1659},{"__isSmartRef__":true,"id":1660},{"__isSmartRef__":true,"id":1661},{"__isSmartRef__":true,"id":1662},{"__isSmartRef__":true,"id":1663}],[{"__isSmartRef__":true,"id":1664},{"__isSmartRef__":true,"id":1665},{"__isSmartRef__":true,"id":1666},{"__isSmartRef__":true,"id":1667},{"__isSmartRef__":true,"id":1668}],[{"__isSmartRef__":true,"id":1669},{"__isSmartRef__":true,"id":1670},{"__isSmartRef__":true,"id":1671},{"__isSmartRef__":true,"id":1672},{"__isSmartRef__":true,"id":1673}],[{"__isSmartRef__":true,"id":1674},{"__isSmartRef__":true,"id":1675},{"__isSmartRef__":true,"id":1676},{"__isSmartRef__":true,"id":1677},{"__isSmartRef__":true,"id":1678}],[{"__isSmartRef__":true,"id":1679},{"__isSmartRef__":true,"id":1680},{"__isSmartRef__":true,"id":1681},{"__isSmartRef__":true,"id":1682},{"__isSmartRef__":true,"id":1683}],[{"__isSmartRef__":true,"id":1684},{"__isSmartRef__":true,"id":1685},{"__isSmartRef__":true,"id":1686},{"__isSmartRef__":true,"id":1687},{"__isSmartRef__":true,"id":1688}],[{"__isSmartRef__":true,"id":1689},{"__isSmartRef__":true,"id":1690},{"__isSmartRef__":true,"id":1691},{"__isSmartRef__":true,"id":1692},{"__isSmartRef__":true,"id":1693}],[{"__isSmartRef__":true,"id":1694},{"__isSmartRef__":true,"id":1695},{"__isSmartRef__":true,"id":1696},{"__isSmartRef__":true,"id":1697},{"__isSmartRef__":true,"id":1698}],[{"__isSmartRef__":true,"id":1699},{"__isSmartRef__":true,"id":1700},{"__isSmartRef__":true,"id":1701},{"__isSmartRef__":true,"id":1702},{"__isSmartRef__":true,"id":1703}],[{"__isSmartRef__":true,"id":1704},{"__isSmartRef__":true,"id":1705},{"__isSmartRef__":true,"id":1706},{"__isSmartRef__":true,"id":1707},{"__isSmartRef__":true,"id":1708}],[{"__isSmartRef__":true,"id":1709},{"__isSmartRef__":true,"id":1710},{"__isSmartRef__":true,"id":1711},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1713}],[{"__isSmartRef__":true,"id":1714},{"__isSmartRef__":true,"id":1715},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1717},{"__isSmartRef__":true,"id":1718}],[{"__isSmartRef__":true,"id":1719},{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1721},{"__isSmartRef__":true,"id":1722},{"__isSmartRef__":true,"id":1723}],[{"__isSmartRef__":true,"id":1724},{"__isSmartRef__":true,"id":1725},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1727},{"__isSmartRef__":true,"id":1728}],[{"__isSmartRef__":true,"id":1729},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1731},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1733}],[{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1735},{"__isSmartRef__":true,"id":1736},{"__isSmartRef__":true,"id":1737},{"__isSmartRef__":true,"id":1738}],[{"__isSmartRef__":true,"id":1739},{"__isSmartRef__":true,"id":1740},{"__isSmartRef__":true,"id":1741},{"__isSmartRef__":true,"id":1742},{"__isSmartRef__":true,"id":1743}],[{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1745},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1747},{"__isSmartRef__":true,"id":1748}],[{"__isSmartRef__":true,"id":1749},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1751},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1753}],[{"__isSmartRef__":true,"id":1754},{"__isSmartRef__":true,"id":1755},{"__isSmartRef__":true,"id":1756},{"__isSmartRef__":true,"id":1757},{"__isSmartRef__":true,"id":1758}],[{"__isSmartRef__":true,"id":1759},{"__isSmartRef__":true,"id":1760},{"__isSmartRef__":true,"id":1761},{"__isSmartRef__":true,"id":1762},{"__isSmartRef__":true,"id":1763}],[{"__isSmartRef__":true,"id":1764},{"__isSmartRef__":true,"id":1765},{"__isSmartRef__":true,"id":1766},{"__isSmartRef__":true,"id":1767},{"__isSmartRef__":true,"id":1768}],[{"__isSmartRef__":true,"id":1769},{"__isSmartRef__":true,"id":1770},{"__isSmartRef__":true,"id":1771},{"__isSmartRef__":true,"id":1772},{"__isSmartRef__":true,"id":1773}],[{"__isSmartRef__":true,"id":1774},{"__isSmartRef__":true,"id":1775},{"__isSmartRef__":true,"id":1776},{"__isSmartRef__":true,"id":1777},{"__isSmartRef__":true,"id":1778}],[{"__isSmartRef__":true,"id":1779},{"__isSmartRef__":true,"id":1780},{"__isSmartRef__":true,"id":1781},{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1783}],[{"__isSmartRef__":true,"id":1784},{"__isSmartRef__":true,"id":1785},{"__isSmartRef__":true,"id":1786},{"__isSmartRef__":true,"id":1787},{"__isSmartRef__":true,"id":1788}],[{"__isSmartRef__":true,"id":1789},{"__isSmartRef__":true,"id":1790},{"__isSmartRef__":true,"id":1791},{"__isSmartRef__":true,"id":1792},{"__isSmartRef__":true,"id":1793}],[{"__isSmartRef__":true,"id":1794},{"__isSmartRef__":true,"id":1795},{"__isSmartRef__":true,"id":1796},{"__isSmartRef__":true,"id":1797},{"__isSmartRef__":true,"id":1798}],[{"__isSmartRef__":true,"id":1799},{"__isSmartRef__":true,"id":1800},{"__isSmartRef__":true,"id":1801},{"__isSmartRef__":true,"id":1802},{"__isSmartRef__":true,"id":1803}],[{"__isSmartRef__":true,"id":1804},{"__isSmartRef__":true,"id":1805},{"__isSmartRef__":true,"id":1806},{"__isSmartRef__":true,"id":1807},{"__isSmartRef__":true,"id":1808}],[{"__isSmartRef__":true,"id":1809},{"__isSmartRef__":true,"id":1810},{"__isSmartRef__":true,"id":1811},{"__isSmartRef__":true,"id":1812},{"__isSmartRef__":true,"id":1813}],[{"__isSmartRef__":true,"id":1814},{"__isSmartRef__":true,"id":1815},{"__isSmartRef__":true,"id":1816},{"__isSmartRef__":true,"id":1817},{"__isSmartRef__":true,"id":1818}],[{"__isSmartRef__":true,"id":1819},{"__isSmartRef__":true,"id":1820},{"__isSmartRef__":true,"id":1821},{"__isSmartRef__":true,"id":1822},{"__isSmartRef__":true,"id":1823}],[{"__isSmartRef__":true,"id":1824},{"__isSmartRef__":true,"id":1825},{"__isSmartRef__":true,"id":1826},{"__isSmartRef__":true,"id":1827},{"__isSmartRef__":true,"id":1828}],[{"__isSmartRef__":true,"id":1829},{"__isSmartRef__":true,"id":1830},{"__isSmartRef__":true,"id":1831},{"__isSmartRef__":true,"id":1832},{"__isSmartRef__":true,"id":1833}],[{"__isSmartRef__":true,"id":1834},{"__isSmartRef__":true,"id":1835},{"__isSmartRef__":true,"id":1836},{"__isSmartRef__":true,"id":1837},{"__isSmartRef__":true,"id":1838}],[{"__isSmartRef__":true,"id":1839},{"__isSmartRef__":true,"id":1840},{"__isSmartRef__":true,"id":1841},{"__isSmartRef__":true,"id":1842},{"__isSmartRef__":true,"id":1843}],[{"__isSmartRef__":true,"id":1844},{"__isSmartRef__":true,"id":1845},{"__isSmartRef__":true,"id":1846},{"__isSmartRef__":true,"id":1847},{"__isSmartRef__":true,"id":1848}],[{"__isSmartRef__":true,"id":1849},{"__isSmartRef__":true,"id":1850},{"__isSmartRef__":true,"id":1851},{"__isSmartRef__":true,"id":1852},{"__isSmartRef__":true,"id":1853}],[{"__isSmartRef__":true,"id":1854},{"__isSmartRef__":true,"id":1855},{"__isSmartRef__":true,"id":1856},{"__isSmartRef__":true,"id":1857},{"__isSmartRef__":true,"id":1858}],[{"__isSmartRef__":true,"id":1859},{"__isSmartRef__":true,"id":1860},{"__isSmartRef__":true,"id":1861},{"__isSmartRef__":true,"id":1862},{"__isSmartRef__":true,"id":1863}],[{"__isSmartRef__":true,"id":1864},{"__isSmartRef__":true,"id":1865},{"__isSmartRef__":true,"id":1866},{"__isSmartRef__":true,"id":1867},{"__isSmartRef__":true,"id":1868}],[{"__isSmartRef__":true,"id":1869},{"__isSmartRef__":true,"id":1870},{"__isSmartRef__":true,"id":1871},{"__isSmartRef__":true,"id":1872},{"__isSmartRef__":true,"id":1873}],[{"__isSmartRef__":true,"id":1874},{"__isSmartRef__":true,"id":1875},{"__isSmartRef__":true,"id":1876},{"__isSmartRef__":true,"id":1877},{"__isSmartRef__":true,"id":1878}],[{"__isSmartRef__":true,"id":1879},{"__isSmartRef__":true,"id":1880},{"__isSmartRef__":true,"id":1881},{"__isSmartRef__":true,"id":1882},{"__isSmartRef__":true,"id":1883}],[{"__isSmartRef__":true,"id":1884},{"__isSmartRef__":true,"id":1885},{"__isSmartRef__":true,"id":1886},{"__isSmartRef__":true,"id":1887},{"__isSmartRef__":true,"id":1888}],[{"__isSmartRef__":true,"id":1889},{"__isSmartRef__":true,"id":1890},{"__isSmartRef__":true,"id":1891},{"__isSmartRef__":true,"id":1892},{"__isSmartRef__":true,"id":1893}],[{"__isSmartRef__":true,"id":1894},{"__isSmartRef__":true,"id":1895},{"__isSmartRef__":true,"id":1896},{"__isSmartRef__":true,"id":1897},{"__isSmartRef__":true,"id":1898}],[{"__isSmartRef__":true,"id":1899},{"__isSmartRef__":true,"id":1900},{"__isSmartRef__":true,"id":1901},{"__isSmartRef__":true,"id":1902},{"__isSmartRef__":true,"id":1903}],[{"__isSmartRef__":true,"id":1904},{"__isSmartRef__":true,"id":1905},{"__isSmartRef__":true,"id":1906},{"__isSmartRef__":true,"id":1907},{"__isSmartRef__":true,"id":1908}],[{"__isSmartRef__":true,"id":1909},{"__isSmartRef__":true,"id":1910},{"__isSmartRef__":true,"id":1911},{"__isSmartRef__":true,"id":1912},{"__isSmartRef__":true,"id":1913}],[{"__isSmartRef__":true,"id":1914},{"__isSmartRef__":true,"id":1915},{"__isSmartRef__":true,"id":1916},{"__isSmartRef__":true,"id":1917},{"__isSmartRef__":true,"id":1918}],[{"__isSmartRef__":true,"id":1919},{"__isSmartRef__":true,"id":1920},{"__isSmartRef__":true,"id":1921},{"__isSmartRef__":true,"id":1922},{"__isSmartRef__":true,"id":1923}],[{"__isSmartRef__":true,"id":1924},{"__isSmartRef__":true,"id":1925},{"__isSmartRef__":true,"id":1926},{"__isSmartRef__":true,"id":1927},{"__isSmartRef__":true,"id":1928}],[{"__isSmartRef__":true,"id":1929},{"__isSmartRef__":true,"id":1930},{"__isSmartRef__":true,"id":1931},{"__isSmartRef__":true,"id":1932},{"__isSmartRef__":true,"id":1933}],[{"__isSmartRef__":true,"id":1934},{"__isSmartRef__":true,"id":1935},{"__isSmartRef__":true,"id":1936},{"__isSmartRef__":true,"id":1937},{"__isSmartRef__":true,"id":1938}],[{"__isSmartRef__":true,"id":1939},{"__isSmartRef__":true,"id":1940},{"__isSmartRef__":true,"id":1941},{"__isSmartRef__":true,"id":1942},{"__isSmartRef__":true,"id":1943}],[{"__isSmartRef__":true,"id":1944},{"__isSmartRef__":true,"id":1945},{"__isSmartRef__":true,"id":1946},{"__isSmartRef__":true,"id":1947},{"__isSmartRef__":true,"id":1948}],[{"__isSmartRef__":true,"id":1949},{"__isSmartRef__":true,"id":1950},{"__isSmartRef__":true,"id":1951},{"__isSmartRef__":true,"id":1952},{"__isSmartRef__":true,"id":1953}],[{"__isSmartRef__":true,"id":1954},{"__isSmartRef__":true,"id":1955},{"__isSmartRef__":true,"id":1956},{"__isSmartRef__":true,"id":1957},{"__isSmartRef__":true,"id":1958}],[{"__isSmartRef__":true,"id":1959},{"__isSmartRef__":true,"id":1960},{"__isSmartRef__":true,"id":1961},{"__isSmartRef__":true,"id":1962},{"__isSmartRef__":true,"id":1963}],[{"__isSmartRef__":true,"id":1964},{"__isSmartRef__":true,"id":1965},{"__isSmartRef__":true,"id":1966},{"__isSmartRef__":true,"id":1967},{"__isSmartRef__":true,"id":1968}],[{"__isSmartRef__":true,"id":1969},{"__isSmartRef__":true,"id":1970},{"__isSmartRef__":true,"id":1971},{"__isSmartRef__":true,"id":1972},{"__isSmartRef__":true,"id":1973}],[{"__isSmartRef__":true,"id":1974},{"__isSmartRef__":true,"id":1975},{"__isSmartRef__":true,"id":1976},{"__isSmartRef__":true,"id":1977},{"__isSmartRef__":true,"id":1978}],[{"__isSmartRef__":true,"id":1979},{"__isSmartRef__":true,"id":1980},{"__isSmartRef__":true,"id":1981},{"__isSmartRef__":true,"id":1982},{"__isSmartRef__":true,"id":1983}],[{"__isSmartRef__":true,"id":1984},{"__isSmartRef__":true,"id":1985},{"__isSmartRef__":true,"id":1986},{"__isSmartRef__":true,"id":1987},{"__isSmartRef__":true,"id":1988}],[{"__isSmartRef__":true,"id":1989},{"__isSmartRef__":true,"id":1990},{"__isSmartRef__":true,"id":1991},{"__isSmartRef__":true,"id":1992},{"__isSmartRef__":true,"id":1993}],[{"__isSmartRef__":true,"id":1994},{"__isSmartRef__":true,"id":1995},{"__isSmartRef__":true,"id":1996},{"__isSmartRef__":true,"id":1997},{"__isSmartRef__":true,"id":1998}],[{"__isSmartRef__":true,"id":1999},{"__isSmartRef__":true,"id":2000},{"__isSmartRef__":true,"id":2001},{"__isSmartRef__":true,"id":2002},{"__isSmartRef__":true,"id":2003}],[{"__isSmartRef__":true,"id":2004},{"__isSmartRef__":true,"id":2005},{"__isSmartRef__":true,"id":2006},{"__isSmartRef__":true,"id":2007},{"__isSmartRef__":true,"id":2008}],[{"__isSmartRef__":true,"id":2009},{"__isSmartRef__":true,"id":2010},{"__isSmartRef__":true,"id":2011},{"__isSmartRef__":true,"id":2012},{"__isSmartRef__":true,"id":2013}],[{"__isSmartRef__":true,"id":2014},{"__isSmartRef__":true,"id":2015},{"__isSmartRef__":true,"id":2016},{"__isSmartRef__":true,"id":2017},{"__isSmartRef__":true,"id":2018}],[{"__isSmartRef__":true,"id":2019},{"__isSmartRef__":true,"id":2020},{"__isSmartRef__":true,"id":2021},{"__isSmartRef__":true,"id":2022},{"__isSmartRef__":true,"id":2023}],[{"__isSmartRef__":true,"id":2024},{"__isSmartRef__":true,"id":2025},{"__isSmartRef__":true,"id":2026},{"__isSmartRef__":true,"id":2027},{"__isSmartRef__":true,"id":2028}],[{"__isSmartRef__":true,"id":2029},{"__isSmartRef__":true,"id":2030},{"__isSmartRef__":true,"id":2031},{"__isSmartRef__":true,"id":2032},{"__isSmartRef__":true,"id":2033}],[{"__isSmartRef__":true,"id":2034},{"__isSmartRef__":true,"id":2035},{"__isSmartRef__":true,"id":2036},{"__isSmartRef__":true,"id":2037},{"__isSmartRef__":true,"id":2038}],[{"__isSmartRef__":true,"id":2039},{"__isSmartRef__":true,"id":2040},{"__isSmartRef__":true,"id":2041},{"__isSmartRef__":true,"id":2042},{"__isSmartRef__":true,"id":2043}],[{"__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}]],"previousColumnNumber":23,"currentColumnNumber":23,"isCopyMorphRef":true,"morphRefId":1,"activated":false,"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2424},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(1204.1,329.2)","distanceToDragEvent":"lively.pt(273.9,-11.2)"},"559":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":8.14,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(414.0,272.0)","_BorderColor":"Color.rgb(165,164,164)","_Fill":"Color.rgb(255,255,255)","_Padding":"lively.rect(0,0,0,0)"},"560":{"partsSpaceName":"PartsBin/Basic","comment":"A simple box morph. A really orange one. Its amazing what you can build out of simple boxes.... Who needs stars when you got orange rectangles!","migrationLevel":4,"partName":"Rectangle","changes":[{"__isSmartRef__":true,"id":561},{"__isSmartRef__":true,"id":563},{"__isSmartRef__":true,"id":565},{"__isSmartRef__":true,"id":567},{"__isSmartRef__":true,"id":569},{"__isSmartRef__":true,"id":571},{"__isSmartRef__":true,"id":573},{"__isSmartRef__":true,"id":575}],"lastModifiedDate":{"__isSmartRef__":true,"id":577},"revisionOnLoad":184624,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"561":{"date":{"__isSmartRef__":true,"id":562},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"562":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"563":{"date":{"__isSmartRef__":true,"id":564},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"564":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"565":{"date":{"__isSmartRef__":true,"id":566},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"566":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"567":{"date":{"__isSmartRef__":true,"id":568},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"568":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"569":{"date":{"__isSmartRef__":true,"id":570},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"570":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"571":{"date":{"__isSmartRef__":true,"id":572},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"572":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"573":{"date":{"__isSmartRef__":true,"id":574},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"574":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"575":{"date":{"__isSmartRef__":true,"id":576},"author":"jenslincke","message":"I want my blue rectangle back!","id":"5AA9291A-869F-4D36-8095-4721B5A5B205"},"576":{"isSerializedDate":true,"string":"Thu Nov 22 2012 10:35:51 GMT+0100 (CET)"},"577":{"isSerializedDate":true,"string":"Thu Nov 22 2012 10:33:25 GMT+0100 (CET)"},"578":{"morph":{"__isSmartRef__":true,"id":558},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"579":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":580}},"580":{"test01IsMorph":{"__isSmartRef__":true,"id":581}},"581":{"varMapping":{"__isSmartRef__":true,"id":582},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":583},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"582":{"this":{"__isSmartRef__":true,"id":579}},"583":{},"584":{"length":1},"585":{"length":1},"586":{"length":1},"587":{"length":1},"588":{"length":1},"589":{"length":1},"590":{"length":1},"591":{"length":1},"592":{"length":1},"593":{"length":1},"594":{"length":1},"595":{"length":1},"596":{"length":1},"597":{"length":1},"598":{"length":1},"599":{"length":1},"600":{"length":1},"601":{"length":1},"602":{"length":1},"603":{"length":1},"604":{"length":1},"605":{"length":1},"606":{"length":1},"607":{"length":1},"608":{"length":1},"609":{"length":1},"610":{"length":1},"611":{"length":1},"612":{"length":1},"613":{"length":1},"614":{"length":1},"615":{"length":1},"616":{"length":1},"617":{"length":1},"618":{"length":1},"619":{"length":1},"620":{"length":1},"621":{"length":1},"622":{"length":1},"623":{"length":1},"624":{"length":1},"625":{"length":1},"626":{"length":1},"627":{"length":1},"628":{"length":1},"629":{"length":1},"630":{"length":1},"631":{"length":1},"632":{"length":1},"633":{"length":1},"634":{"length":1},"635":{"length":1},"636":{"length":1},"637":{"length":1},"638":{"length":1},"639":{"length":1},"640":{"length":1},"641":{"length":1},"642":{"length":1},"643":{"length":1},"644":{"length":1},"645":{"length":1},"646":{"length":1},"647":{"length":1},"648":{"length":1},"649":{"length":1},"650":{"length":1},"651":{"length":1},"652":{"length":1},"653":{"length":1},"654":{"length":1},"655":{"length":1},"656":{"length":1},"657":{"length":1},"658":{"length":1},"659":{"length":1},"660":{"length":1},"661":{"length":1},"662":{"length":1},"663":{"length":1},"664":{"length":1},"665":{"length":1},"666":{"length":1},"667":{"length":1},"668":{"length":1},"669":{"length":1},"670":{"length":1},"671":{"length":1},"672":{"length":1},"673":{"length":1},"674":{"length":1},"675":{"length":1},"676":{"length":1},"677":{"length":1},"678":{"length":1},"679":{"length":1},"680":{"length":1},"681":{"length":1},"682":{"length":1},"683":{"length":1},"684":{"length":1},"685":{"length":1},"686":{"length":1},"687":{"length":1},"688":{"length":1},"689":{"length":1},"690":{"length":1},"691":{"length":1},"692":{"length":1},"693":{"length":1},"694":{"length":1},"695":{"length":1},"696":{"length":1},"697":{"length":1},"698":{"length":1},"699":{"length":1},"700":{"length":1},"701":{"length":1},"702":{"length":1},"703":{"length":1},"704":{"length":1},"705":{"length":1},"706":{"length":1},"707":{"length":1},"708":{"length":1},"709":{"length":1},"710":{"length":1},"711":{"length":1},"712":{"length":1},"713":{"length":1},"714":{"length":1},"715":{"length":1},"716":{"length":1},"717":{"length":1},"718":{"length":1},"719":{"length":1},"720":{"length":1},"721":{"length":1},"722":{"length":1},"723":{"length":1},"724":{"length":1},"725":{"length":1},"726":{"length":1},"727":{"length":1},"728":{"length":1},"729":{"length":1},"730":{"length":1},"731":{"length":1},"732":{"length":1},"733":{"length":1},"734":{"length":1},"735":{"length":1},"736":{"length":1},"737":{"length":1},"738":{"length":1},"739":{"length":1},"740":{"length":1},"741":{"length":1},"742":{"length":1},"743":{"length":1},"744":{"length":1},"745":{"length":1},"746":{"length":1},"747":{"length":1},"748":{"length":1},"749":{"length":1},"750":{"length":1},"751":{"length":1},"752":{"length":1},"753":{"length":1},"754":{"length":1},"755":{"length":1},"756":{"length":1},"757":{"length":1},"758":{"length":1},"759":{"length":1},"760":{"length":1},"761":{"length":1},"762":{"length":1},"763":{"length":1},"764":{"length":1},"765":{"length":1},"766":{"length":1},"767":{"length":1},"768":{"length":1},"769":{"length":1},"770":{"length":1},"771":{"length":1},"772":{"length":1},"773":{"length":1},"774":{"length":1},"775":{"length":1},"776":{"length":1},"777":{"length":1},"778":{"length":1},"779":{"length":1},"780":{"length":1},"781":{"length":1},"782":{"length":1},"783":{"length":1},"784":{"length":1},"785":{"length":1},"786":{"length":1},"787":{"length":1},"788":{"length":1},"789":{"length":1},"790":{"length":1},"791":{"length":1},"792":{"length":1},"793":{"length":1},"794":{"length":1},"795":{"length":1},"796":{"length":1},"797":{"length":1},"798":{"length":1},"799":{"length":1},"800":{"length":1},"801":{"length":1},"802":{"length":1},"803":{"length":1},"804":{"length":1},"805":{"length":1},"806":{"length":1},"807":{"length":1},"808":{"length":1},"809":{"length":1},"810":{"length":1},"811":{"length":1},"812":{"length":1},"813":{"length":1},"814":{"length":1},"815":{"length":1},"816":{"length":1},"817":{"length":1},"818":{"length":1},"819":{"length":1},"820":{"length":1},"821":{"length":1},"822":{"length":1},"823":{"length":1},"824":{"length":1},"825":{"length":1},"826":{"length":1},"827":{"length":1},"828":{"length":1},"829":{"length":1},"830":{"length":1},"831":{"length":1},"832":{"length":1},"833":{"length":1},"834":{"length":1},"835":{"length":1},"836":{"length":1},"837":{"length":1},"838":{"length":1},"839":{"length":1},"840":{"length":1},"841":{"length":1},"842":{"length":1},"843":{"length":1},"844":{"length":1},"845":{"length":1},"846":{"length":1},"847":{"length":1},"848":{"length":1},"849":{"length":1},"850":{"length":1},"851":{"length":1},"852":{"length":1},"853":{"length":1},"854":{"length":1},"855":{"length":1},"856":{"length":1},"857":{"length":1},"858":{"length":1},"859":{"length":1},"860":{"length":1},"861":{"length":1},"862":{"length":1},"863":{"length":1},"864":{"length":1},"865":{"length":1},"866":{"length":1},"867":{"length":1},"868":{"length":1},"869":{"length":1},"870":{"length":1},"871":{"length":1},"872":{"length":1},"873":{"length":1},"874":{"length":1},"875":{"length":1},"876":{"length":1},"877":{"length":1},"878":{"length":1},"879":{"length":1},"880":{"length":1},"881":{"length":1},"882":{"length":1},"883":{"length":1},"884":{"length":1},"885":{"length":1},"886":{"length":1},"887":{"length":1},"888":{"length":1},"889":{"length":1},"890":{"length":1},"891":{"length":1},"892":{"length":1},"893":{"length":1},"894":{"length":1},"895":{"length":1},"896":{"length":1},"897":{"length":1},"898":{"length":1},"899":{"length":1},"900":{"length":1},"901":{"length":1},"902":{"length":1},"903":{"length":1},"904":{"length":1},"905":{"length":1},"906":{"length":1},"907":{"length":1},"908":{"length":1},"909":{"length":1},"910":{"length":1},"911":{"length":1},"912":{"length":1},"913":{"length":1},"914":{"length":1},"915":{"length":1},"916":{"length":1},"917":{"length":1},"918":{"length":1},"919":{"length":1},"920":{"length":1},"921":{"length":1},"922":{"length":1},"923":{"length":1},"924":{"length":1},"925":{"length":1},"926":{"length":1},"927":{"length":1},"928":{"length":1},"929":{"length":1},"930":{"length":1},"931":{"length":1},"932":{"length":1},"933":{"length":1},"934":{"length":1},"935":{"length":1},"936":{"length":1},"937":{"length":1},"938":{"length":1},"939":{"length":1},"940":{"length":1},"941":{"length":1},"942":{"length":1},"943":{"length":1},"944":{"length":1},"945":{"length":1},"946":{"length":1},"947":{"length":1},"948":{"length":1},"949":{"length":1},"950":{"length":1},"951":{"length":1},"952":{"length":1},"953":{"length":1},"954":{"length":1},"955":{"length":1},"956":{"length":1},"957":{"length":1},"958":{"length":1},"959":{"length":1},"960":{"length":1},"961":{"length":1},"962":{"length":1},"963":{"length":1},"964":{"length":1},"965":{"length":1},"966":{"length":1},"967":{"length":1},"968":{"length":1},"969":{"length":1},"970":{"length":1},"971":{"length":1},"972":{"length":1},"973":{"length":1},"974":{"length":1},"975":{"length":1},"976":{"length":1},"977":{"length":1},"978":{"length":1},"979":{"length":1},"980":{"length":1},"981":{"length":1},"982":{"length":1},"983":{"length":1},"984":{"length":1},"985":{"length":1},"986":{"length":1},"987":{"length":1},"988":{"length":1},"989":{"length":1},"990":{"length":1},"991":{"length":1},"992":{"length":1},"993":{"length":1},"994":{"length":1},"995":{"length":1},"996":{"length":1},"997":{"length":1},"998":{"length":1},"999":{"length":1},"1000":{"length":1},"1001":{"length":1},"1002":{"length":1},"1003":{"length":1},"1004":{"length":1},"1005":{"length":1},"1006":{"length":1},"1007":{"length":1},"1008":{"length":1},"1009":{"length":1},"1010":{"length":1},"1011":{"length":1},"1012":{"length":1},"1013":{"length":1},"1014":{"length":1},"1015":{"length":1},"1016":{"length":1},"1017":{"length":1},"1018":{"length":1},"1019":{"length":1},"1020":{"length":1},"1021":{"length":1},"1022":{"length":1},"1023":{"length":1},"1024":{"length":1},"1025":{"length":1},"1026":{"length":1},"1027":{"length":1},"1028":{"length":1},"1029":{"length":1},"1030":{"length":1},"1031":{"length":1},"1032":{"length":1},"1033":{"length":1},"1034":{"length":1},"1035":{"length":1},"1036":{"length":1},"1037":{"length":1},"1038":{"length":1},"1039":{"length":1},"1040":{"length":1},"1041":{"length":1},"1042":{"length":1},"1043":{"length":1},"1044":{"length":1},"1045":{"length":1},"1046":{"length":1},"1047":{"length":1},"1048":{"length":1},"1049":{"length":1},"1050":{"length":1},"1051":{"length":1},"1052":{"length":1},"1053":{"length":1},"1054":{"length":1},"1055":{"length":1},"1056":{"length":1},"1057":{"length":1},"1058":{"length":1},"1059":{"length":1},"1060":{"length":1},"1061":{"length":1},"1062":{"length":1},"1063":{"length":1},"1064":{"length":1},"1065":{"length":1},"1066":{"length":1},"1067":{"length":1},"1068":{"length":1},"1069":{"length":1},"1070":{"length":1},"1071":{"length":1},"1072":{"length":1},"1073":{"length":1},"1074":{"length":1},"1075":{"length":1},"1076":{"length":1},"1077":{"length":1},"1078":{"length":1},"1079":{"length":1},"1080":{"length":1},"1081":{"length":1},"1082":{"length":1},"1083":{"length":1},"1084":{"length":1},"1085":{"length":1},"1086":{"length":1},"1087":{"length":1},"1088":{"length":1},"1089":{"length":1},"1090":{"length":1},"1091":{"length":1},"1092":{"length":1},"1093":{"length":1},"1094":{"length":1},"1095":{"length":1},"1096":{"length":1},"1097":{"length":1},"1098":{"length":1},"1099":{"length":1},"1100":{"length":1},"1101":{"length":1},"1102":{"length":1},"1103":{"length":1},"1104":{"length":1},"1105":{"length":1},"1106":{"length":1},"1107":{"length":1},"1108":{"length":1},"1109":{"length":1},"1110":{"length":1},"1111":{"length":1},"1112":{"length":1},"1113":{"length":1},"1114":{"length":1},"1115":{"length":1},"1116":{"length":1},"1117":{"length":1},"1118":{"length":1},"1119":{"length":1},"1120":{"length":1},"1121":{"length":1},"1122":{"length":1},"1123":{"length":1},"1124":{"length":1},"1125":{"length":1},"1126":{"length":1},"1127":{"length":1},"1128":{"length":1},"1129":{"length":1},"1130":{"length":1},"1131":{"length":1},"1132":{"length":1},"1133":{"length":1},"1134":{"length":1},"1135":{"length":1},"1136":{"length":1},"1137":{"length":1},"1138":{"length":1},"1139":{"length":1},"1140":{"length":1},"1141":{"length":1},"1142":{"length":1},"1143":{"length":1},"1144":{"length":1},"1145":{"length":1},"1146":{"length":1},"1147":{"length":1},"1148":{"length":1},"1149":{"length":1},"1150":{"length":1},"1151":{"length":1},"1152":{"length":1},"1153":{"length":1},"1154":{"length":1},"1155":{"length":1},"1156":{"length":1},"1157":{"length":1},"1158":{"length":1},"1159":{"length":1},"1160":{"length":1},"1161":{"length":1},"1162":{"length":1},"1163":{"length":1},"1164":{"length":1},"1165":{"length":1},"1166":{"length":1},"1167":{"length":1},"1168":{"length":1},"1169":{"length":1},"1170":{"length":1},"1171":{"length":1},"1172":{"length":1},"1173":{"length":1},"1174":{"length":1},"1175":{"length":1},"1176":{"length":1},"1177":{"length":1},"1178":{"length":1},"1179":{"length":1},"1180":{"length":1},"1181":{"length":1},"1182":{"length":1},"1183":{"length":1},"1184":{"length":1},"1185":{"length":1},"1186":{"length":1},"1187":{"length":1},"1188":{"length":1},"1189":{"length":1},"1190":{"length":1},"1191":{"length":1},"1192":{"length":1},"1193":{"length":1},"1194":{"length":1},"1195":{"length":1},"1196":{"length":1},"1197":{"length":1},"1198":{"length":1},"1199":{"length":1},"1200":{"length":1},"1201":{"length":1},"1202":{"length":1},"1203":{"length":1},"1204":{"length":1},"1205":{"length":1},"1206":{"length":1},"1207":{"length":1},"1208":{"length":1},"1209":{"length":1},"1210":{"length":1},"1211":{"length":1},"1212":{"length":1},"1213":{"length":1},"1214":{"length":1},"1215":{"length":1},"1216":{"length":1},"1217":{"length":1},"1218":{"length":1},"1219":{"length":1},"1220":{"length":1},"1221":{"length":1},"1222":{"length":1},"1223":{"length":1},"1224":{"length":1},"1225":{"length":1},"1226":{"length":1},"1227":{"length":1},"1228":{"length":1},"1229":{"length":1},"1230":{"length":1},"1231":{"length":1},"1232":{"length":1},"1233":{"length":1},"1234":{"length":1},"1235":{"length":1},"1236":{"length":1},"1237":{"length":1},"1238":{"length":1},"1239":{"length":1},"1240":{"length":1},"1241":{"length":1},"1242":{"length":1},"1243":{"length":1},"1244":{"length":1},"1245":{"length":1},"1246":{"length":1},"1247":{"length":1},"1248":{"length":1},"1249":{"length":1},"1250":{"length":1},"1251":{"length":1},"1252":{"length":1},"1253":{"length":1},"1254":{"length":1},"1255":{"length":1},"1256":{"length":1},"1257":{"length":1},"1258":{"length":1},"1259":{"length":1},"1260":{"length":1},"1261":{"length":1},"1262":{"length":1},"1263":{"length":1},"1264":{"length":1},"1265":{"length":1},"1266":{"length":1},"1267":{"length":1},"1268":{"length":1},"1269":{"length":1},"1270":{"length":1},"1271":{"length":1},"1272":{"length":1},"1273":{"length":1},"1274":{"length":1},"1275":{"length":1},"1276":{"length":1},"1277":{"length":1},"1278":{"length":1},"1279":{"length":1},"1280":{"length":1},"1281":{"length":1},"1282":{"length":1},"1283":{"length":1},"1284":{"length":1},"1285":{"length":1},"1286":{"length":1},"1287":{"length":1},"1288":{"length":1},"1289":{"length":1},"1290":{"length":1},"1291":{"length":1},"1292":{"length":1},"1293":{"length":1},"1294":{"length":1},"1295":{"length":1},"1296":{"length":1},"1297":{"length":1},"1298":{"length":1},"1299":{"length":1},"1300":{"length":1},"1301":{"length":1},"1302":{"length":1},"1303":{"length":1},"1304":{"length":1},"1305":{"length":1},"1306":{"length":1},"1307":{"length":1},"1308":{"length":1},"1309":{"length":1},"1310":{"length":1},"1311":{"length":1},"1312":{"length":1},"1313":{"length":1},"1314":{"length":1},"1315":{"length":1},"1316":{"length":1},"1317":{"length":1},"1318":{"length":1},"1319":{"length":1},"1320":{"length":1},"1321":{"length":1},"1322":{"length":1},"1323":{"length":1},"1324":{"length":1},"1325":{"length":1},"1326":{"length":1},"1327":{"length":1},"1328":{"length":1},"1329":{"length":1},"1330":{"length":1},"1331":{"length":1},"1332":{"length":1},"1333":{"length":1},"1334":{"length":1},"1335":{"length":1},"1336":{"length":1},"1337":{"length":1},"1338":{"length":1},"1339":{"length":1},"1340":{"length":1},"1341":{"length":1},"1342":{"length":1},"1343":{"length":1},"1344":{"length":1},"1345":{"length":1},"1346":{"length":1},"1347":{"length":1},"1348":{"length":1},"1349":{"length":1},"1350":{"length":1},"1351":{"length":1},"1352":{"length":1},"1353":{"length":1},"1354":{"length":1},"1355":{"length":1},"1356":{"length":1},"1357":{"length":1},"1358":{"length":1},"1359":{"length":1},"1360":{"length":1},"1361":{"length":1},"1362":{"length":1},"1363":{"length":1},"1364":{"length":1},"1365":{"length":1},"1366":{"length":1},"1367":{"length":1},"1368":{"length":1},"1369":{"length":1},"1370":{"length":1},"1371":{"length":1},"1372":{"length":1},"1373":{"length":1},"1374":{"length":1},"1375":{"length":1},"1376":{"length":1},"1377":{"length":1},"1378":{"length":1},"1379":{"length":1},"1380":{"length":1},"1381":{"length":1},"1382":{"length":1},"1383":{"length":1},"1384":{"length":1},"1385":{"length":1},"1386":{"length":1},"1387":{"length":1},"1388":{"length":1},"1389":{"length":1},"1390":{"length":1},"1391":{"length":1},"1392":{"length":1},"1393":{"length":1},"1394":{"length":1},"1395":{"length":1},"1396":{"length":1},"1397":{"length":1},"1398":{"length":1},"1399":{"length":1},"1400":{"length":1},"1401":{"length":1},"1402":{"length":1},"1403":{"length":1},"1404":{"length":1},"1405":{"length":1},"1406":{"length":1},"1407":{"length":1},"1408":{"length":1},"1409":{"length":1},"1410":{"length":1},"1411":{"length":1},"1412":{"length":1},"1413":{"length":1},"1414":{"length":1},"1415":{"length":1},"1416":{"length":1},"1417":{"length":1},"1418":{"length":1},"1419":{"length":1},"1420":{"length":1},"1421":{"length":1},"1422":{"length":1},"1423":{"length":1},"1424":{"length":1},"1425":{"length":1},"1426":{"length":1},"1427":{"length":1},"1428":{"length":1},"1429":{"length":1},"1430":{"length":1},"1431":{"length":1},"1432":{"length":1},"1433":{"length":1},"1434":{"length":1},"1435":{"length":1},"1436":{"length":1},"1437":{"length":1},"1438":{"length":1},"1439":{"length":1},"1440":{"length":1},"1441":{"length":1},"1442":{"length":1},"1443":{"length":1},"1444":{"length":1},"1445":{"length":1},"1446":{"length":1},"1447":{"length":1},"1448":{"length":1},"1449":{"length":1},"1450":{"length":1},"1451":{"length":1},"1452":{"length":1},"1453":{"length":1},"1454":{"length":1},"1455":{"length":1},"1456":{"length":1},"1457":{"length":1},"1458":{"length":1},"1459":{"length":1},"1460":{"length":1},"1461":{"length":1},"1462":{"length":1},"1463":{"length":1},"1464":{"length":1},"1465":{"length":1},"1466":{"length":1},"1467":{"length":1},"1468":{"length":1},"1469":{"length":1},"1470":{"length":1},"1471":{"length":1},"1472":{"length":1},"1473":{"length":1},"1474":{"length":1},"1475":{"length":1},"1476":{"length":1},"1477":{"length":1},"1478":{"length":1},"1479":{"length":1},"1480":{"length":1},"1481":{"length":1},"1482":{"length":1},"1483":{"length":1},"1484":{"length":1},"1485":{"length":1},"1486":{"length":1},"1487":{"length":1},"1488":{"length":1},"1489":{"length":1},"1490":{"length":1},"1491":{"length":1},"1492":{"length":1},"1493":{"length":1},"1494":{"length":1},"1495":{"length":1},"1496":{"length":1},"1497":{"length":1},"1498":{"length":1},"1499":{"length":1},"1500":{"length":1},"1501":{"length":1},"1502":{"length":1},"1503":{"length":1},"1504":{"length":1},"1505":{"length":1},"1506":{"length":1},"1507":{"length":1},"1508":{"length":1},"1509":{"length":1},"1510":{"length":1},"1511":{"length":1},"1512":{"length":1},"1513":{"length":1},"1514":{"length":1},"1515":{"length":1},"1516":{"length":1},"1517":{"length":1},"1518":{"length":1},"1519":{"length":1},"1520":{"length":1},"1521":{"length":1},"1522":{"length":1},"1523":{"length":1},"1524":{"length":1},"1525":{"length":1},"1526":{"length":1},"1527":{"length":1},"1528":{"length":1},"1529":{"length":1},"1530":{"length":1},"1531":{"length":1},"1532":{"length":1},"1533":{"length":1},"1534":{"length":1},"1535":{"length":1},"1536":{"length":1},"1537":{"length":1},"1538":{"length":1},"1539":{"length":1},"1540":{"length":1},"1541":{"length":1},"1542":{"length":1},"1543":{"length":1},"1544":{"length":1},"1545":{"length":1},"1546":{"length":1},"1547":{"length":1},"1548":{"length":1},"1549":{"length":1},"1550":{"length":1},"1551":{"length":1},"1552":{"length":1},"1553":{"length":1},"1554":{"length":1},"1555":{"length":1},"1556":{"length":1},"1557":{"length":1},"1558":{"length":1},"1559":{"length":1},"1560":{"length":1},"1561":{"length":1},"1562":{"length":1},"1563":{"length":1},"1564":{"length":1},"1565":{"length":1},"1566":{"length":1},"1567":{"length":1},"1568":{"length":1},"1569":{"length":1},"1570":{"length":1},"1571":{"length":1},"1572":{"length":1},"1573":{"length":1},"1574":{"length":1},"1575":{"length":1},"1576":{"length":1},"1577":{"length":1},"1578":{"length":1},"1579":{"length":1},"1580":{"length":1},"1581":{"length":1},"1582":{"length":1},"1583":{"length":1},"1584":{"length":1},"1585":{"length":1},"1586":{"length":1},"1587":{"length":1},"1588":{"length":1},"1589":{"length":1},"1590":{"length":1},"1591":{"length":1},"1592":{"length":1},"1593":{"length":1},"1594":{"length":1},"1595":{"length":1},"1596":{"length":1},"1597":{"length":1},"1598":{"length":1},"1599":{"length":1},"1600":{"length":1},"1601":{"length":1},"1602":{"length":1},"1603":{"length":1},"1604":{"length":1},"1605":{"length":1},"1606":{"length":1},"1607":{"length":1},"1608":{"length":1},"1609":{"length":1},"1610":{"length":1},"1611":{"length":1},"1612":{"length":1},"1613":{"length":1},"1614":{"length":1},"1615":{"length":1},"1616":{"length":1},"1617":{"length":1},"1618":{"length":1},"1619":{"length":1},"1620":{"length":1},"1621":{"length":1},"1622":{"length":1},"1623":{"length":1},"1624":{"length":1},"1625":{"length":1},"1626":{"length":1},"1627":{"length":1},"1628":{"length":1},"1629":{"length":1},"1630":{"length":1},"1631":{"length":1},"1632":{"length":1},"1633":{"length":1},"1634":{"length":1},"1635":{"length":1},"1636":{"length":1},"1637":{"length":1},"1638":{"length":1},"1639":{"length":1},"1640":{"length":1},"1641":{"length":1},"1642":{"length":1},"1643":{"length":1},"1644":{"length":1},"1645":{"length":1},"1646":{"length":1},"1647":{"length":1},"1648":{"length":1},"1649":{"length":1},"1650":{"length":1},"1651":{"length":1},"1652":{"length":1},"1653":{"length":1},"1654":{"length":1},"1655":{"length":1},"1656":{"length":1},"1657":{"length":1},"1658":{"length":1},"1659":{"length":1},"1660":{"length":1},"1661":{"length":1},"1662":{"length":1},"1663":{"length":1},"1664":{"length":1},"1665":{"length":1},"1666":{"length":1},"1667":{"length":1},"1668":{"length":1},"1669":{"length":1},"1670":{"length":1},"1671":{"length":1},"1672":{"length":1},"1673":{"length":1},"1674":{"length":1},"1675":{"length":1},"1676":{"length":1},"1677":{"length":1},"1678":{"length":1},"1679":{"length":1},"1680":{"length":1},"1681":{"length":1},"1682":{"length":1},"1683":{"length":1},"1684":{"length":1},"1685":{"length":1},"1686":{"length":1},"1687":{"length":1},"1688":{"length":1},"1689":{"length":1},"1690":{"length":1},"1691":{"length":1},"1692":{"length":1},"1693":{"length":1},"1694":{"length":1},"1695":{"length":1},"1696":{"length":1},"1697":{"length":1},"1698":{"length":1},"1699":{"length":1},"1700":{"length":1},"1701":{"length":1},"1702":{"length":1},"1703":{"length":1},"1704":{"length":1},"1705":{"length":1},"1706":{"length":1},"1707":{"length":1},"1708":{"length":1},"1709":{"length":1},"1710":{"length":1},"1711":{"length":1},"1712":{"length":1},"1713":{"length":1},"1714":{"length":1},"1715":{"length":1},"1716":{"length":1},"1717":{"length":1},"1718":{"length":1},"1719":{"length":1},"1720":{"length":1},"1721":{"length":1},"1722":{"length":1},"1723":{"length":1},"1724":{"length":1},"1725":{"length":1},"1726":{"length":1},"1727":{"length":1},"1728":{"length":1},"1729":{"length":1},"1730":{"length":1},"1731":{"length":1},"1732":{"length":1},"1733":{"length":1},"1734":{"length":1},"1735":{"length":1},"1736":{"length":1},"1737":{"length":1},"1738":{"length":1},"1739":{"length":1},"1740":{"length":1},"1741":{"length":1},"1742":{"length":1},"1743":{"length":1},"1744":{"length":1},"1745":{"length":1},"1746":{"length":1},"1747":{"length":1},"1748":{"length":1},"1749":{"length":1},"1750":{"length":1},"1751":{"length":1},"1752":{"length":1},"1753":{"length":1},"1754":{"length":1},"1755":{"length":1},"1756":{"length":1},"1757":{"length":1},"1758":{"length":1},"1759":{"length":1},"1760":{"length":1},"1761":{"length":1},"1762":{"length":1},"1763":{"length":1},"1764":{"length":1},"1765":{"length":1},"1766":{"length":1},"1767":{"length":1},"1768":{"length":1},"1769":{"length":1},"1770":{"length":1},"1771":{"length":1},"1772":{"length":1},"1773":{"length":1},"1774":{"length":1},"1775":{"length":1},"1776":{"length":1},"1777":{"length":1},"1778":{"length":1},"1779":{"length":1},"1780":{"length":1},"1781":{"length":1},"1782":{"length":1},"1783":{"length":1},"1784":{"length":1},"1785":{"length":1},"1786":{"length":1},"1787":{"length":1},"1788":{"length":1},"1789":{"length":1},"1790":{"length":1},"1791":{"length":1},"1792":{"length":1},"1793":{"length":1},"1794":{"length":1},"1795":{"length":1},"1796":{"length":1},"1797":{"length":1},"1798":{"length":1},"1799":{"length":1},"1800":{"length":1},"1801":{"length":1},"1802":{"length":1},"1803":{"length":1},"1804":{"length":1},"1805":{"length":1},"1806":{"length":1},"1807":{"length":1},"1808":{"length":1},"1809":{"length":1},"1810":{"length":1},"1811":{"length":1},"1812":{"length":1},"1813":{"length":1},"1814":{"length":1},"1815":{"length":1},"1816":{"length":1},"1817":{"length":1},"1818":{"length":1},"1819":{"length":1},"1820":{"length":1},"1821":{"length":1},"1822":{"length":1},"1823":{"length":1},"1824":{"length":1},"1825":{"length":1},"1826":{"length":1},"1827":{"length":1},"1828":{"length":1},"1829":{"length":1},"1830":{"length":1},"1831":{"length":1},"1832":{"length":1},"1833":{"length":1},"1834":{"length":1},"1835":{"length":1},"1836":{"length":1},"1837":{"length":1},"1838":{"length":1},"1839":{"length":1},"1840":{"length":1},"1841":{"length":1},"1842":{"length":1},"1843":{"length":1},"1844":{"length":1},"1845":{"length":1},"1846":{"length":1},"1847":{"length":1},"1848":{"length":1},"1849":{"length":1},"1850":{"length":1},"1851":{"length":1},"1852":{"length":1},"1853":{"length":1},"1854":{"length":1},"1855":{"length":1},"1856":{"length":1},"1857":{"length":1},"1858":{"length":1},"1859":{"length":1},"1860":{"length":1},"1861":{"length":1},"1862":{"length":1},"1863":{"length":1},"1864":{"length":1},"1865":{"length":1},"1866":{"length":1},"1867":{"length":1},"1868":{"length":1},"1869":{"length":1},"1870":{"length":1},"1871":{"length":1},"1872":{"length":1},"1873":{"length":1},"1874":{"length":1},"1875":{"length":1},"1876":{"length":1},"1877":{"length":1},"1878":{"length":1},"1879":{"length":1},"1880":{"length":1},"1881":{"length":1},"1882":{"length":1},"1883":{"length":1},"1884":{"length":1},"1885":{"length":1},"1886":{"length":1},"1887":{"length":1},"1888":{"length":1},"1889":{"length":1},"1890":{"length":1},"1891":{"length":1},"1892":{"length":1},"1893":{"length":1},"1894":{"length":1},"1895":{"length":1},"1896":{"length":1},"1897":{"length":1},"1898":{"length":1},"1899":{"length":1},"1900":{"length":1},"1901":{"length":1},"1902":{"length":1},"1903":{"length":1},"1904":{"length":1},"1905":{"length":1},"1906":{"length":1},"1907":{"length":1},"1908":{"length":1},"1909":{"length":1},"1910":{"length":1},"1911":{"length":1},"1912":{"length":1},"1913":{"length":1},"1914":{"length":1},"1915":{"length":1},"1916":{"length":1},"1917":{"length":1},"1918":{"length":1},"1919":{"length":1},"1920":{"length":1},"1921":{"length":1},"1922":{"length":1},"1923":{"length":1},"1924":{"length":1},"1925":{"length":1},"1926":{"length":1},"1927":{"length":1},"1928":{"length":1},"1929":{"length":1},"1930":{"length":1},"1931":{"length":1},"1932":{"length":1},"1933":{"length":1},"1934":{"length":1},"1935":{"length":1},"1936":{"length":1},"1937":{"length":1},"1938":{"length":1},"1939":{"length":1},"1940":{"length":1},"1941":{"length":1},"1942":{"length":1},"1943":{"length":1},"1944":{"length":1},"1945":{"length":1},"1946":{"length":1},"1947":{"length":1},"1948":{"length":1},"1949":{"length":1},"1950":{"length":1},"1951":{"length":1},"1952":{"length":1},"1953":{"length":1},"1954":{"length":1},"1955":{"length":1},"1956":{"length":1},"1957":{"length":1},"1958":{"length":1},"1959":{"length":1},"1960":{"length":1},"1961":{"length":1},"1962":{"length":1},"1963":{"length":1},"1964":{"length":1},"1965":{"length":1},"1966":{"length":1},"1967":{"length":1},"1968":{"length":1},"1969":{"length":1},"1970":{"length":1},"1971":{"length":1},"1972":{"length":1},"1973":{"length":1},"1974":{"length":1},"1975":{"length":1},"1976":{"length":1},"1977":{"length":1},"1978":{"length":1},"1979":{"length":1},"1980":{"length":1},"1981":{"length":1},"1982":{"length":1},"1983":{"length":1},"1984":{"length":1},"1985":{"length":1},"1986":{"length":1},"1987":{"length":1},"1988":{"length":1},"1989":{"length":1},"1990":{"length":1},"1991":{"length":1},"1992":{"length":1},"1993":{"length":1},"1994":{"length":1},"1995":{"length":1},"1996":{"length":1},"1997":{"length":1},"1998":{"length":1},"1999":{"length":1},"2000":{"length":1},"2001":{"length":1},"2002":{"length":1},"2003":{"length":1},"2004":{"length":1},"2005":{"length":1},"2006":{"length":1},"2007":{"length":1},"2008":{"length":1},"2009":{"length":1},"2010":{"length":1},"2011":{"length":1},"2012":{"length":1},"2013":{"length":1},"2014":{"length":1},"2015":{"length":1},"2016":{"length":1},"2017":{"length":1},"2018":{"length":1},"2019":{"length":1},"2020":{"length":1},"2021":{"length":1},"2022":{"length":1},"2023":{"length":1},"2024":{"length":1},"2025":{"length":1},"2026":{"length":1},"2027":{"length":1},"2028":{"length":1},"2029":{"length":1},"2030":{"length":1},"2031":{"length":1},"2032":{"length":1},"2033":{"length":1},"2034":{"length":1},"2035":{"length":1},"2036":{"length":1},"2037":{"length":1},"2038":{"length":1},"2039":{"length":1},"2040":{"length":1},"2041":{"length":1},"2042":{"length":1},"2043":{"length":1},"2044":{"length":1},"2045":{"length":1},"2046":{"length":1},"2047":{"length":1},"2048":{"length":1},"2049":{"length":1},"2050":{"length":1},"2051":{"length":1},"2052":{"length":1},"2053":{"length":1},"2054":{"length":1},"2055":{"length":1},"2056":{"length":1},"2057":{"length":1},"2058":{"length":1},"2059":{"length":1},"2060":{"length":1},"2061":{"length":1},"2062":{"length":1},"2063":{"length":1},"2064":{"length":1},"2065":{"length":1},"2066":{"length":1},"2067":{"length":1},"2068":{"length":1},"2069":{"length":1},"2070":{"length":1},"2071":{"length":1},"2072":{"length":1},"2073":{"length":1},"2074":{"length":1},"2075":{"length":1},"2076":{"length":1},"2077":{"length":1},"2078":{"length":1},"2079":{"length":1},"2080":{"length":1},"2081":{"length":1},"2082":{"length":1},"2083":{"length":1},"2084":{"length":1},"2085":{"length":1},"2086":{"length":1},"2087":{"length":1},"2088":{"length":1},"2089":{"length":1},"2090":{"length":1},"2091":{"length":1},"2092":{"length":1},"2093":{"length":1},"2094":{"length":1},"2095":{"length":1},"2096":{"length":1},"2097":{"length":1},"2098":{"length":1},"2099":{"length":1},"2100":{"length":1},"2101":{"length":1},"2102":{"length":1},"2103":{"length":1},"2104":{"length":1},"2105":{"length":1},"2106":{"length":1},"2107":{"length":1},"2108":{"length":1},"2109":{"length":1},"2110":{"length":1},"2111":{"length":1},"2112":{"length":1},"2113":{"length":1},"2114":{"length":1},"2115":{"length":1},"2116":{"length":1},"2117":{"length":1},"2118":{"length":1},"2119":{"length":1},"2120":{"length":1},"2121":{"length":1},"2122":{"length":1},"2123":{"length":1},"2124":{"length":1},"2125":{"length":1},"2126":{"length":1},"2127":{"length":1},"2128":{"length":1},"2129":{"length":1},"2130":{"length":1},"2131":{"length":1},"2132":{"length":1},"2133":{"length":1},"2134":{"length":1},"2135":{"length":1},"2136":{"length":1},"2137":{"length":1},"2138":{"length":1},"2139":{"length":1},"2140":{"length":1},"2141":{"length":1},"2142":{"length":1},"2143":{"length":1},"2144":{"length":1},"2145":{"length":1},"2146":{"length":1},"2147":{"length":1},"2148":{"length":1},"2149":{"length":1},"2150":{"length":1},"2151":{"length":1},"2152":{"length":1},"2153":{"length":1},"2154":{"length":1},"2155":{"length":1},"2156":{"length":1},"2157":{"length":1},"2158":{"length":1},"2159":{"length":1},"2160":{"length":1},"2161":{"length":1},"2162":{"length":1},"2163":{"length":1},"2164":{"length":1},"2165":{"length":1},"2166":{"length":1},"2167":{"length":1},"2168":{"length":1},"2169":{"length":1},"2170":{"length":1},"2171":{"length":1},"2172":{"length":1},"2173":{"length":1},"2174":{"length":1},"2175":{"length":1},"2176":{"length":1},"2177":{"length":1},"2178":{"length":1},"2179":{"length":1},"2180":{"length":1},"2181":{"length":1},"2182":{"length":1},"2183":{"length":1},"2184":{"length":1},"2185":{"length":1},"2186":{"length":1},"2187":{"length":1},"2188":{"length":1},"2189":{"length":1},"2190":{"length":1},"2191":{"length":1},"2192":{"length":1},"2193":{"length":1},"2194":{"length":1},"2195":{"length":1},"2196":{"length":1},"2197":{"length":1},"2198":{"length":1},"2199":{"length":1},"2200":{"length":1},"2201":{"length":1},"2202":{"length":1},"2203":{"length":1},"2204":{"length":1},"2205":{"length":1},"2206":{"length":1},"2207":{"length":1},"2208":{"length":1},"2209":{"length":1},"2210":{"length":1},"2211":{"length":1},"2212":{"length":1},"2213":{"length":1},"2214":{"length":1},"2215":{"length":1},"2216":{"length":1},"2217":{"length":1},"2218":{"length":1},"2219":{"length":1},"2220":{"length":1},"2221":{"length":1},"2222":{"length":1},"2223":{"length":1},"2224":{"length":1},"2225":{"length":1},"2226":{"length":1},"2227":{"length":1},"2228":{"length":1},"2229":{"length":1},"2230":{"length":1},"2231":{"length":1},"2232":{"length":1},"2233":{"length":1},"2234":{"length":1},"2235":{"length":1},"2236":{"length":1},"2237":{"length":1},"2238":{"length":1},"2239":{"length":1},"2240":{"length":1},"2241":{"length":1},"2242":{"length":1},"2243":{"length":1},"2244":{"length":1},"2245":{"length":1},"2246":{"length":1},"2247":{"length":1},"2248":{"length":1},"2249":{"length":1},"2250":{"length":1},"2251":{"length":1},"2252":{"length":1},"2253":{"length":1},"2254":{"length":1},"2255":{"length":1},"2256":{"length":1},"2257":{"length":1},"2258":{"length":1},"2259":{"length":1},"2260":{"length":1},"2261":{"length":1},"2262":{"length":1},"2263":{"length":1},"2264":{"length":1},"2265":{"length":1},"2266":{"length":1},"2267":{"length":1},"2268":{"length":1},"2269":{"length":1},"2270":{"length":1},"2271":{"length":1},"2272":{"length":1},"2273":{"length":1},"2274":{"length":1},"2275":{"length":1},"2276":{"length":1},"2277":{"length":1},"2278":{"length":1},"2279":{"length":1},"2280":{"length":1},"2281":{"length":1},"2282":{"length":1},"2283":{"length":1},"2284":{"length":1},"2285":{"length":1},"2286":{"length":1},"2287":{"length":1},"2288":{"length":1},"2289":{"length":1},"2290":{"length":1},"2291":{"length":1},"2292":{"length":1},"2293":{"length":1},"2294":{"length":1},"2295":{"length":1},"2296":{"length":1},"2297":{"length":1},"2298":{"length":1},"2299":{"length":1},"2300":{"length":1},"2301":{"length":1},"2302":{"length":1},"2303":{"length":1},"2304":{"length":1},"2305":{"length":1},"2306":{"length":1},"2307":{"length":1},"2308":{"length":1},"2309":{"length":1},"2310":{"length":1},"2311":{"length":1},"2312":{"length":1},"2313":{"length":1},"2314":{"length":1},"2315":{"length":1},"2316":{"length":1},"2317":{"length":1},"2318":{"length":1},"2319":{"length":1},"2320":{"length":1},"2321":{"length":1},"2322":{"length":1},"2323":{"length":1},"2324":{"length":1},"2325":{"length":1},"2326":{"length":1},"2327":{"length":1},"2328":{"length":1},"2329":{"length":1},"2330":{"length":1},"2331":{"length":1},"2332":{"length":1},"2333":{"length":1},"2334":{"length":1},"2335":{"length":1},"2336":{"length":1},"2337":{"length":1},"2338":{"length":1},"2339":{"length":1},"2340":{"length":1},"2341":{"length":1},"2342":{"length":1},"2343":{"length":1},"2344":{"length":1},"2345":{"length":1},"2346":{"length":1},"2347":{"length":1},"2348":{"length":1},"2349":{"length":1},"2350":{"length":1},"2351":{"length":1},"2352":{"length":1},"2353":{"length":1},"2354":{"length":1},"2355":{"length":1},"2356":{"length":1},"2357":{"length":1},"2358":{"length":1},"2359":{"length":1},"2360":{"length":1},"2361":{"length":1},"2362":{"length":1},"2363":{"length":1},"2364":{"length":1},"2365":{"length":1},"2366":{"length":1},"2367":{"length":1},"2368":{"length":1},"2369":{"length":1},"2370":{"length":1},"2371":{"length":1},"2372":{"length":1},"2373":{"length":1},"2374":{"length":1},"2375":{"length":1},"2376":{"length":1},"2377":{"length":1},"2378":{"length":1},"2379":{"length":1},"2380":{"length":1},"2381":{"length":1},"2382":{"length":1},"2383":{"length":1},"2384":{"length":1},"2385":{"length":1},"2386":{"length":1},"2387":{"length":1},"2388":{"length":1},"2389":{"length":1},"2390":{"length":1},"2391":{"length":1},"2392":{"length":1},"2393":{"length":1},"2394":{"length":1},"2395":{"length":1},"2396":{"length":1},"2397":{"length":1},"2398":{"length":1},"2399":{"length":1},"2400":{"length":1},"2401":{"length":1},"2402":{"length":1},"2403":{"length":1},"2404":{"length":1},"2405":{"length":1},"2406":{"length":1},"2407":{"length":1},"2408":{"length":1},"2409":{"length":1},"2410":{"length":1},"2411":{"length":1},"2412":{"length":1},"2413":{"length":1},"2414":{"length":1},"2415":{"length":1},"2416":{"length":1},"2417":{"length":1},"2418":{"length":1},"2419":{"length":1},"2420":{"length":1},"2421":{"length":1},"2422":{"length":1},"2423":{"length":1},"2424":{"onrestore":{"__isSmartRef__":true,"id":2425},"renderTimeline":{"__isSmartRef__":true,"id":2433},"renderCell":{"__isSmartRef__":true,"id":2437},"renderZoomedOutTimeline":{"__isSmartRef__":true,"id":2441},"renderNormalTimeline":{"__isSmartRef__":true,"id":2445},"toggleZoom":{"__isSmartRef__":true,"id":2449},"normalCellWidth":{"__isSmartRef__":true,"id":2453},"normalVariableCellWidth":{"__isSmartRef__":true,"id":2457},"highlightColumn":{"__isSmartRef__":true,"id":2461},"zoomedOutCellWidth":{"__isSmartRef__":true,"id":2465},"zoomedOutVariableCellWidth":{"__isSmartRef__":true,"id":2469},"cellWidth":{"__isSmartRef__":true,"id":2473},"variableCellWidth":{"__isSmartRef__":true,"id":2477},"cellBorderWidth":{"__isSmartRef__":true,"id":2481},"setColumnNumber":{"__isSmartRef__":true,"id":2485},"toggleActivate":{"__isSmartRef__":true,"id":2489}},"2425":{"varMapping":{"__isSmartRef__":true,"id":2426},"source":"function onrestore() {\n this.zoomedOut = false;\n this.currentColumnNumber = 0;\n this.previousColumnNumber = 0;\n this.activated = false;\n}","funcProperties":{"__isSmartRef__":true,"id":2431},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2426":{"this":{"__isSmartRef__":true,"id":558},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2427}},"2427":{"$super":{"__isSmartRef__":true,"id":2428}},"2428":{"varMapping":{"__isSmartRef__":true,"id":2429},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":2430},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2429":{"obj":{"__isSmartRef__":true,"id":558},"name":"onrestore"},"2430":{},"2431":{"timestamp":{"__isSmartRef__":true,"id":2432},"user":"erp","tags":[]},"2432":{"isSerializedDate":true,"string":"Sun Jan 06 2013 21:57:44 GMT+0100 (CET)"},"2433":{"varMapping":{"__isSmartRef__":true,"id":2434},"source":"function renderTimeline() {\n if(this.activated) {\n if(this.zoomedOut) {\n this.renderZoomedOutTimeline();\n this.owner.get(\"zoomOut\").setLabel(\"Zoom in\");\n } else {\n this.renderNormalTimeline();\n this.owner.get(\"zoomOut\").setLabel(\"Zoom out\");\n }\n }\n\n}","funcProperties":{"__isSmartRef__":true,"id":2435},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2434":{"this":{"__isSmartRef__":true,"id":558}},"2435":{"timestamp":{"__isSmartRef__":true,"id":2436},"user":"erp","tags":[]},"2436":{"isSerializedDate":true,"string":"Sun Jan 06 2013 21:57:34 GMT+0100 (CET)"},"2437":{"varMapping":{"__isSmartRef__":true,"id":2438},"source":"function renderCell() {\n var cell = jQuery(\"\");\n cell.css(\"border\", \"1px solid lightgrey\");\n cell.css(\"overflow\", \"hidden\");\n cell.css(\"text-align\",\"center\");\n cell.css(\"font-size\", \"14px\");\n cell.height(\"40px\");\n return cell; \n}","funcProperties":{"__isSmartRef__":true,"id":2439},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2438":{"this":{"__isSmartRef__":true,"id":558}},"2439":{"timestamp":{"__isSmartRef__":true,"id":2440},"user":"erp","tags":[]},"2440":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:38:23 GMT+0100 (CET)"},"2441":{"varMapping":{"__isSmartRef__":true,"id":2442},"source":"function renderZoomedOutTimeline() {\n var parent = this.get(\"SeeTheState\");\n\n this.timelineColumns = [];\n this.submorphs.invoke('remove');\n\n var table = jQuery(\"
\");\n table.css(\"table-layout\",\"fixed\");\n table.css(\"border-collapse\",\"collapse\");\n table.css(\"width\", \"100%\");\n table.css(\"height\", \"100%\");\n for(var variableName in parent.timeline) {\n var rowData = parent.timeline[variableName];\n var rowMax = rowData.max();\n var rowMin = rowData.min();\n var tableRow = jQuery(\"\");\n tableRow.appendTo(table);\n for(var i = 0; i < rowData.length; i++) {\n var fillLevel;\n this.timelineColumns[i] = this.timelineColumns[i] || [];\n var cell = this.renderCell();\n cell.css(\"width\", this.zoomedOutCellWidth() + \"px\");\n cell.css(\"padding\", \"0px\");\n cell.css(\"vertical-align\", \"bottom\");\n cell.attr(\"class\", \"timelineColumn\" + String(i));\n\n cell.appendTo(tableRow);\n var cellText = \"\";\n if(rowData[i] == undefined) {\n fillLevel = jQuery(\"
\");\n cell.append(fillLevel);\n fillLevel.css(\"background-color\", \"red\");\n fillLevel.css(\"height\", \"100%\");\n fillLevel.css(\"width\", \"10px\");\n }\n else if(typeof(rowData[i]) == \"number\" || Object.isArray(rowData[i])) {\n var fill = rowData[i];\n if(Object.isArray(rowData[i])) {\n fill = rowData[i].length;\n };\n fillLevel = jQuery(\"
\");\n cell.append(fillLevel);\n fillLevel.css(\"background-color\", \"black\");\n var height = Math.round(((fill - 0.9*rowMin) / rowMax) * 40);\n fillLevel.css(\"height\", String(height) + \"px\");\n fillLevel.css(\"width\", \"10px\");\n }\n else {\n cellText = String(rowData[i]);\n cell.text(cellText);\n }\n\n this.timelineColumns[i].push(cell);\n }\n\n cell = this.renderCell();\n cell.css(\"width\", \"40px\");\n cell.text(variableName);\n cell.prependTo(tableRow);\n };\n\n var grid = new lively.morphic.HtmlWrapperMorph(pt(200,200));\n grid.setFill(Color.white);\n grid.asJQuery().append(table);\n this.addMorph(grid);\n parent.timelineGrid = grid.asJQuery();\n parent.timelineTable = table;\n\n}","funcProperties":{"__isSmartRef__":true,"id":2443},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2442":{"this":{"__isSmartRef__":true,"id":558}},"2443":{"timestamp":{"__isSmartRef__":true,"id":2444},"user":"erp","tags":[]},"2444":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:37:41 GMT+0100 (CET)"},"2445":{"varMapping":{"__isSmartRef__":true,"id":2446},"source":"function renderNormalTimeline() {\n var parent = this.get(\"SeeTheState\");\n\n this.timelineColumns = [];\n this.submorphs.invoke('remove');\n\n var table = jQuery(\"
\");\n table.css(\"table-layout\",\"fixed\");\n table.css(\"border-collapse\",\"collapse\");\n table.css(\"width\", \"100%\");\n table.css(\"height\", \"100%\");\n for(var variableName in parent.timeline) {\n var rowData = parent.timeline[variableName];\n var tableRow = jQuery(\"\");\n tableRow.appendTo(table);\n for(var i = 0; i < rowData.length; i++) {\n this.timelineColumns[i] = this.timelineColumns[i] || [];\n var cell = this.renderCell();\n cell.css(\"width\", this.normalCellWidth() + \"px\");\n cell.attr(\"class\", \"timelineColumn\" + String(i));\n cell.appendTo(tableRow);\n var cellText = \"\";\n if(rowData[i] == undefined) {\n cellText = \"∅\";\n }\n else if(Object.isArray(rowData[i])) {\n cellText = String(\"Array \" + String(rowData[i].length));\n }\n else {\n rowData[i].getName = rowData[i].getName || function() {return \"\";};\n cellText = String(rowData[i]);\n }\n cell.text(cellText);\n\n this.timelineColumns[i].push(cell);\n }\n\n cell = this.renderCell();\n cell.css(\"width\", this.normalVariableCellWidth() + \"px\");\n cell.text(variableName);\n cell.prependTo(tableRow);\n };\n\n var grid = new lively.morphic.HtmlWrapperMorph(pt(200,200));\n grid.setFill(Color.white);\n grid.asJQuery().append(table);\n this.addMorph(grid);\n parent.timelineGrid = grid.asJQuery();\n parent.timelineTable = table;\n\n}","funcProperties":{"__isSmartRef__":true,"id":2447},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2446":{"this":{"__isSmartRef__":true,"id":558}},"2447":{"timestamp":{"__isSmartRef__":true,"id":2448},"user":"erp","tags":[]},"2448":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:42:54 GMT+0100 (CET)"},"2449":{"varMapping":{"__isSmartRef__":true,"id":2450},"source":"function toggleZoom() {\n this.zoomedOut = !this.zoomedOut;\n this.renderTimeline();\n this.highlightColumn();\n}","funcProperties":{"__isSmartRef__":true,"id":2451},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2450":{"this":{"__isSmartRef__":true,"id":558}},"2451":{"timestamp":{"__isSmartRef__":true,"id":2452},"user":"erp","tags":[]},"2452":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:52:00 GMT+0100 (CET)"},"2453":{"varMapping":{"__isSmartRef__":true,"id":2454},"source":"function normalCellWidth() {\n return 50;\n}","funcProperties":{"__isSmartRef__":true,"id":2455},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2454":{"this":{"__isSmartRef__":true,"id":558}},"2455":{"timestamp":{"__isSmartRef__":true,"id":2456},"user":"erp","tags":[]},"2456":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:43:08 GMT+0100 (CET)"},"2457":{"varMapping":{"__isSmartRef__":true,"id":2458},"source":"function normalVariableCellWidth() {\n return 60;\n}","funcProperties":{"__isSmartRef__":true,"id":2459},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2458":{"this":{"__isSmartRef__":true,"id":558}},"2459":{"timestamp":{"__isSmartRef__":true,"id":2460},"user":"erp","tags":[]},"2460":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:41:46 GMT+0100 (CET)"},"2461":{"varMapping":{"__isSmartRef__":true,"id":2462},"source":"function highlightColumn() {\n \n if(this.currentColumnNumber >= 0 && this.activated) {\n this.timelineColumns[this.previousColumnNumber].each(function(columnCell) {\n jQuery(columnCell).css(\"background-color\", \"white\")\n .css(\"color\", \"black\");\n })\n this.timelineColumns[this.currentColumnNumber].each(function(columnCell) {\n jQuery(columnCell).css(\"background-color\", \"blue\")\n .css(\"color\", \"white\");\n \n })\n \n if(this.currentColumnNumber > 0) {\n var leftOfCell = this.currentColumnNumber*(this.cellWidth() + this.cellBorderWidth()) \n + (this.variableCellWidth() + 1)\n - 500;\n this.setAccumulatedScroll(leftOfCell, 0);\n } else if (this.currentColumnNumber == 0) {\n this.setAccumulatedScroll(0, 0);\n }\n }\n\n}","funcProperties":{"__isSmartRef__":true,"id":2463},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2462":{"this":{"__isSmartRef__":true,"id":558}},"2463":{"timestamp":{"__isSmartRef__":true,"id":2464},"user":"erp","tags":[]},"2464":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:36:58 GMT+0100 (CET)"},"2465":{"varMapping":{"__isSmartRef__":true,"id":2466},"source":"function zoomedOutCellWidth() {\n return 1;\n}","funcProperties":{"__isSmartRef__":true,"id":2467},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2466":{"this":{"__isSmartRef__":true,"id":558}},"2467":{"timestamp":{"__isSmartRef__":true,"id":2468},"user":"erp","tags":[]},"2468":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:35:03 GMT+0100 (CET)"},"2469":{"varMapping":{"__isSmartRef__":true,"id":2470},"source":"function zoomedOutVariableCellWidth() {\n return 60;\n}","funcProperties":{"__isSmartRef__":true,"id":2471},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2470":{"this":{"__isSmartRef__":true,"id":558}},"2471":{"timestamp":{"__isSmartRef__":true,"id":2472},"user":"erp","tags":[]},"2472":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:41:41 GMT+0100 (CET)"},"2473":{"varMapping":{"__isSmartRef__":true,"id":2474},"source":"function cellWidth() {\n if(this.zoomedOut) {\n return this.zoomedOutCellWidth();\n } else {\n return this.normalCellWidth();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":2475},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2474":{"this":{"__isSmartRef__":true,"id":558}},"2475":{"timestamp":{"__isSmartRef__":true,"id":2476},"user":"erp","tags":[]},"2476":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:36:03 GMT+0100 (CET)"},"2477":{"varMapping":{"__isSmartRef__":true,"id":2478},"source":"function variableCellWidth() {\n if(this.zoomedOut) {\n return this.zoomedOutVariableCellWidth();\n } else {\n return this.normalVariableCellWidth();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":2479},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2478":{"this":{"__isSmartRef__":true,"id":558}},"2479":{"timestamp":{"__isSmartRef__":true,"id":2480},"user":"erp","tags":[]},"2480":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:36:16 GMT+0100 (CET)"},"2481":{"varMapping":{"__isSmartRef__":true,"id":2482},"source":"function cellBorderWidth() {\n // Determined by magic number dice\n // and try and error\n if(this.zoomedOut) {\n return 1;\n } else {\n return 3;\n };\n}","funcProperties":{"__isSmartRef__":true,"id":2483},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2482":{"this":{"__isSmartRef__":true,"id":558}},"2483":{"timestamp":{"__isSmartRef__":true,"id":2484},"user":"erp","tags":[]},"2484":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:39:28 GMT+0100 (CET)"},"2485":{"varMapping":{"__isSmartRef__":true,"id":2486},"source":"function setColumnNumber(newColumnNumber) {\n this.previousColumnNumber = this.currentColumnNumber;\n this.currentColumnNumber = newColumnNumber;\n}","funcProperties":{"__isSmartRef__":true,"id":2487},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2486":{"this":{"__isSmartRef__":true,"id":558}},"2487":{"timestamp":{"__isSmartRef__":true,"id":2488},"user":"erp","tags":[]},"2488":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:50:45 GMT+0100 (CET)"},"2489":{"varMapping":{"__isSmartRef__":true,"id":2490},"source":"function toggleActivate() {\n this.activated = !this.activated;\n if(this.activated) {\n $morph(\"activateTimeline\").setLabel(\"Deactivate TL\");\n } else {\n $morph(\"activateTimeline\").setLabel(\"Activate TL\");\n }\n}","funcProperties":{"__isSmartRef__":true,"id":2491},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2490":{"this":{"__isSmartRef__":true,"id":558}},"2491":{"timestamp":{"__isSmartRef__":true,"id":2492},"user":"erp","tags":[]},"2492":{"isSerializedDate":true,"string":"Sun Jan 06 2013 22:02:29 GMT+0100 (CET)"},"2493":{"source":{"__isSmartRef__":true,"id":523},"target":{"__isSmartRef__":true,"id":558}},"2494":{"morph":{"__isSmartRef__":true,"id":523},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2495":{"doAction":{"__isSmartRef__":true,"id":2496}},"2496":{"varMapping":{"__isSmartRef__":true,"id":2497},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":2498},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2497":{"this":{"__isSmartRef__":true,"id":523}},"2498":{"timestamp":{"__isSmartRef__":true,"id":2499},"user":"robertkrahn","tags":[]},"2499":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"2500":{"submorphs":[{"__isSmartRef__":true,"id":2501}],"scripts":[],"id":"0115DBC4-EE47-4C7E-9240-98CF5C32D908","shape":{"__isSmartRef__":true,"id":2506},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":2512},"lighterFill":{"__isSmartRef__":true,"id":2517},"label":{"__isSmartRef__":true,"id":2501},"name":"activateTimeline","showsHalos":false,"partsBinMetaInfo":{"__isSmartRef__":true,"id":2522},"attributeConnections":[{"__isSmartRef__":true,"id":2533},{"__isSmartRef__":true,"id":2534}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"eventHandler":{"__isSmartRef__":true,"id":2536},"derivationIds":[7251,"3F26258D-0EE1-4A94-8419-5EE2BB6065A6","B624295D-42E3-4E0A-B370-844C2B43F4F0","F5D160C8-1C2F-47D9-9BE1-2FD26C53BFB3","7D4A1972-76E5-4369-9964-2F6ACB87C81F","3597FFA9-12FB-4025-8DFD-9303B28004C6","2962F335-F931-47D8-8A19-40E58684C4DB","15178EFF-3BAB-4DAF-B314-ADF4528B23C3","6D3EDF33-7D1B-4AA5-B391-1EF44601E54B","BF48BE10-AB38-4EA0-9760-BBFD45010B34","9DBDAF8C-C384-4629-B814-E523A53AF804","5173748B-B39F-419B-8261-9F29F997FC0C","F8DAE1FD-2C25-439A-9DC6-00F11D124E32","B134D37C-9714-4527-8844-5BF9789D7A6E","84D1C738-1E31-4034-8869-DEF29FDCF1CD"],"_ClipMode":"visible","isPressed":false,"moved":true,"isLockOwner":false,"#startLetters":"set","owner":{"__isSmartRef__":true,"id":1},"_Rotation":0,"_Scale":1,"__serializedExpressions__":["_Position","distanceToDragEvent"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2537},"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(1395.1,260.2)","distanceToDragEvent":"lively.pt(74.9,-17.2)"},"2501":{"submorphs":[],"scripts":[],"id":"AD108564-CE2C-403C-A460-27EC5164B610","shape":{"__isSmartRef__":true,"id":2502},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_MaxTextWidth":100,"_MaxTextHeight":null,"textStyle":null,"owner":{"__isSmartRef__":true,"id":2500},"isLabel":true,"eventsAreIgnored":true,"_ClipMode":"hidden","textChunks":[{"__isSmartRef__":true,"id":2503}],"_Align":"center","eventHandler":{"__isSmartRef__":true,"id":2505},"_HandStyle":"default","_PointerEvents":"none","derivationIds":[7252,"4881773E-A824-4992-B814-33C8D37580C6","EE955AA4-D648-4DFC-8E2D-08881D605170","7EC413DD-D34D-449D-B448-2F3904B04FA5","7939AA82-2A96-4559-9090-DD58B7C8868A","951C1A71-B1FC-4ED0-8BD4-DF9603C49044","3367CA85-84EA-4BD6-B103-0C6B9D59AF69","2713B2FF-71FF-4E0B-8CC0-A6AA480B0E3A","D7E0A0EA-AD7B-4457-9BB8-5E87814C426E","7D379649-9B57-4882-8867-1B43082948D1","65C13E7E-4EFA-4990-A411-7674F4AAD914","36C1C87C-C1A2-49B0-B52C-D5096EEDE385","ABC65A10-C29B-4418-88C3-64E2EC98D12F","10149A92-08F8-44BB-9968-ED33BCBE0B81","E7D41E61-9122-4F32-ABD0-1C9709D84AF4"],"_MinTextWidth":100,"_MinTextHeight":null,"_FontSize":10,"isLockOwner":false,"_WordBreak":"break-all","__serializedExpressions__":["_Position","padding","_Padding","_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_Position":"lively.pt(0.0,0.0)","padding":"lively.rect(5,5,0,0)","_Padding":"lively.rect(0,0,0,0)","_TextColor":"Color.rgb(0,0,0)"},"2502":{"_BorderWidth":0,"_Fill":null,"_ClipMode":"hidden","__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(0,0,0)","_Padding":"lively.rect(0,3,0,0)"},"2503":{"style":{"__isSmartRef__":true,"id":2504},"chunkOwner":{"__isSmartRef__":true,"id":2501},"_id":"_16563","storedString":"Deactivate TL","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2504":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2505":{"morph":{"__isSmartRef__":true,"id":2501},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2506":{"_BorderWidth":1.1840000000000002,"_Fill":{"__isSmartRef__":true,"id":2507},"_BorderRadius":5.2,"_ClipMode":"visible","_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(100.0,22.0)","_BorderColor":"Color.rgb(214,214,214)","_Padding":"lively.rect(0,0,0,0)"},"2507":{"stops":[{"__isSmartRef__":true,"id":2508},{"__isSmartRef__":true,"id":2509},{"__isSmartRef__":true,"id":2510},{"__isSmartRef__":true,"id":2511}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2508":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2509":{"offset":0.3,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2510":{"offset":0.7,"__serializedExpressions__":["color"],"color":"Color.rgb(221,221,221)"},"2511":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(204,204,204)"},"2512":{"stops":[{"__isSmartRef__":true,"id":2513},{"__isSmartRef__":true,"id":2514},{"__isSmartRef__":true,"id":2515},{"__isSmartRef__":true,"id":2516}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2513":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(245,245,245)"},"2514":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2515":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(209,209,209)"},"2516":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(240,240,240)"},"2517":{"stops":[{"__isSmartRef__":true,"id":2518},{"__isSmartRef__":true,"id":2519},{"__isSmartRef__":true,"id":2520},{"__isSmartRef__":true,"id":2521}],"__serializedExpressions__":["vector"],"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes","vector":"lively.rect(0,0,0,1)"},"2518":{"offset":0,"__serializedExpressions__":["color"],"color":"Color.rgb(250,250,250)"},"2519":{"offset":0.4,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2520":{"offset":0.6,"__serializedExpressions__":["color"],"color":"Color.rgb(232,232,232)"},"2521":{"offset":1,"__serializedExpressions__":["color"],"color":"Color.rgb(248,248,248)"},"2522":{"partsSpaceName":"PartsBin/Inputs/","migrationLevel":4,"partName":"Button","comment":"Has a script that is called on button press","changes":[{"__isSmartRef__":true,"id":2523},{"__isSmartRef__":true,"id":2525},{"__isSmartRef__":true,"id":2527},{"__isSmartRef__":true,"id":2529},{"__isSmartRef__":true,"id":2531}],"revisionOnLoad":171940,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2523":{"date":{"__isSmartRef__":true,"id":2524},"author":"bgnauk","message":"no comment","id":"FA43C1A3-19A9-4ED6-A014-82C74689A5C3"},"2524":{"isSerializedDate":true,"string":"Tue Jun 19 2012 23:39:23 GMT+0200 (CEST)"},"2525":{"date":{"__isSmartRef__":true,"id":2526},"author":"robertkrahn","message":"no comment","id":"DDE22D44-9A6D-4485-80F3-262D5DA0CC07"},"2526":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:03:19 GMT+0200 (CEST)"},"2527":{"date":{"__isSmartRef__":true,"id":2528},"author":"robertkrahn","message":"no comment","id":"97D17254-EAC6-4494-8330-A347909590D6"},"2528":{"isSerializedDate":true,"string":"Sat Apr 21 2012 14:08:58 GMT+0200 (CEST)"},"2529":{"date":{"__isSmartRef__":true,"id":2530},"author":"sstamm","message":"reverted button","id":"9B7AA90A-42FC-4DE8-A4DE-51AB903A740E"},"2530":{"isSerializedDate":true,"string":"Mon Apr 16 2012 10:36:21 GMT+0200 (CEST)"},"2531":{"date":{"__isSmartRef__":true,"id":2532},"author":"undefined","message":"","id":"7074B413-6CF0-4892-9D18-52009A2A2E03"},"2532":{"isSerializedDate":true,"string":"Fri Apr 13 2012 21:04:01 GMT+0200 (CEST)"},"2533":{"sourceObj":{"__isSmartRef__":true,"id":2500},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":2500},"targetMethodName":"doAction","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2534":{"sourceObj":{"__isSmartRef__":true,"id":2500},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":558},"targetMethodName":"toggleActivate","varMapping":{"__isSmartRef__":true,"id":2535},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"2535":{"source":{"__isSmartRef__":true,"id":2500},"target":{"__isSmartRef__":true,"id":558}},"2536":{"morph":{"__isSmartRef__":true,"id":2500},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2537":{"doAction":{"__isSmartRef__":true,"id":2538}},"2538":{"varMapping":{"__isSmartRef__":true,"id":2539},"source":"function doAction() {\n \n}","funcProperties":{"__isSmartRef__":true,"id":2540},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2539":{"this":{"__isSmartRef__":true,"id":2500}},"2540":{"timestamp":{"__isSmartRef__":true,"id":2541},"user":"robertkrahn","tags":[]},"2541":{"isSerializedDate":true,"string":"Tue Jun 05 2012 14:02:40 GMT+0200 (CEST)"},"2542":{"_BorderWidth":1,"_ClipMode":"visible","_BorderRadius":13.695000000000002,"_Opacity":1,"_BorderStyle":"solid","_AppearanceStylingMode":false,"_BorderStylingMode":false,"__serializedExpressions__":["position","_Extent","_BorderColor","_Fill","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(1637.0,897.0)","_BorderColor":"Color.rgb(167,167,167)","_Fill":"Color.rgb(246,244,241)","_Padding":"lively.rect(0,0,0,0)"},"2543":{"partsSpaceName":"PartsBin/sd1213/","comment":"An example application implementing Bret Victors idea of \"See the state\"","migrationLevel":4,"partName":"SeeTheState","changes":[{"__isSmartRef__":true,"id":2544},{"__isSmartRef__":true,"id":2546},{"__isSmartRef__":true,"id":2548},{"__isSmartRef__":true,"id":2550},{"__isSmartRef__":true,"id":2552},{"__isSmartRef__":true,"id":2554},{"__isSmartRef__":true,"id":2556},{"__isSmartRef__":true,"id":2558},{"__isSmartRef__":true,"id":2560},{"__isSmartRef__":true,"id":2562},{"__isSmartRef__":true,"id":2564},{"__isSmartRef__":true,"id":2566},{"__isSmartRef__":true,"id":2568},{"__isSmartRef__":true,"id":2570},{"__isSmartRef__":true,"id":2572},{"__isSmartRef__":true,"id":2574},{"__isSmartRef__":true,"id":2576},{"__isSmartRef__":true,"id":2578}],"revisionOnLoad":188500,"lastModifiedDate":{"__isSmartRef__":true,"id":2580},"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"2544":{"date":{"__isSmartRef__":true,"id":2545},"author":"erp","message":"stepping activates object graph and stuff","id":"04C23D79-9FF9-42C0-91C3-92CDFBFE5184"},"2545":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:23:56 GMT+0100 (CET)"},"2546":{"date":{"__isSmartRef__":true,"id":2547},"author":"erp","message":"fixed further bugs with the deepCopy procedure","id":"D6F5E60C-1ABF-4E90-8744-2E9BF0B3DA27"},"2547":{"isSerializedDate":true,"string":"Sun Jan 06 2013 20:49:07 GMT+0100 (CET)"},"2548":{"date":{"__isSmartRef__":true,"id":2549},"author":"erp","message":"prepared for object graph","id":"19869128-BB06-4236-AA49-648A7F0CF9B2"},"2549":{"isSerializedDate":true,"string":"Sat Jan 05 2013 15:08:33 GMT+0100 (CET)"},"2550":{"date":{"__isSmartRef__":true,"id":2551},"author":"undefined","message":"whoopsie","id":"3F17A2D2-3C24-424B-B0FA-E43112267D23"},"2551":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:36 GMT+0200 (CEST)"},"2552":{"date":{"__isSmartRef__":true,"id":2553},"author":"undefined","message":"whoopsie","id":"CEA5DCD5-2DB7-40AD-A776-262A7A0666FC"},"2553":{"isSerializedDate":true,"string":"Thu May 03 2012 15:51:30 GMT+0200 (CEST)"},"2554":{"date":{"__isSmartRef__":true,"id":2555},"author":"undefined","message":"sorry","id":"44B56D2E-9B59-4C67-A305-49A6E10E66C2"},"2555":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:53:45 GMT+0100 (CET)"},"2556":{"date":{"__isSmartRef__":true,"id":2557},"author":"fbo","message":"","id":"BD1C654D-9100-4B66-BC62-B15FF2498B2B"},"2557":{"isSerializedDate":true,"string":"Sat Feb 25 2012 02:59:09 GMT+0100 (CET)"},"2558":{"date":{"__isSmartRef__":true,"id":2559},"author":"undefined","message":"css transitions","id":"1004E0FC-D96B-4F40-B3E0-F514A3FCFFD7"},"2559":{"isSerializedDate":true,"string":"Wed Mar 14 2012 10:42:26 GMT+0100 (CET)"},"2560":{"date":{"__isSmartRef__":true,"id":2561},"author":"undefined","message":"suddenly, the rectangle became a CarDemo","id":"B5083AA8-9BAE-48DD-A6B4-FD7DB3998350"},"2561":{"isSerializedDate":true,"string":"Mon Apr 09 2012 13:42:07 GMT+0200 (CEST)"},"2562":{"date":{"__isSmartRef__":true,"id":2563},"author":"bgnauk","message":"no comment","id":"0124E570-50B7-4CE3-83A1-6E7BA89B5CD8"},"2563":{"isSerializedDate":true,"string":"Mon Jun 18 2012 19:35:08 GMT+0200 (CEST)"},"2564":{"date":{"__isSmartRef__":true,"id":2565},"author":"jenslincke","message":"no comment","id":"34EAD84A-4849-4B51-9D1C-9202D5322FD1"},"2565":{"isSerializedDate":true,"string":"Thu Oct 18 2012 17:07:04 GMT+0200 (CEST)"},"2566":{"date":{"__isSmartRef__":true,"id":2567},"author":"erp","message":"first version","id":"9153AE0C-1FB5-4B33-B45F-790F947FFF8E"},"2567":{"isSerializedDate":true,"string":"Thu Jan 03 2013 17:14:30 GMT+0100 (CET)"},"2568":{"date":{"__isSmartRef__":true,"id":2569},"author":"erp","message":"adjusted the name as it contained to many trailing whitespaces","id":"0304F420-554A-4A16-B228-726C6DD16FE2"},"2569":{"isSerializedDate":true,"string":"Thu Jan 03 2013 17:26:27 GMT+0100 (CET)"},"2570":{"date":{"__isSmartRef__":true,"id":2571},"author":"erp","message":"added the first version of the timeline and improved the slider experience","id":"A861111B-C45E-49F2-97C9-EC95D8E27073"},"2571":{"isSerializedDate":true,"string":"Fri Jan 04 2013 16:28:43 GMT+0100 (CET)"},"2572":{"date":{"__isSmartRef__":true,"id":2573},"author":"erp","message":"Added zoom to timeline and fixed some bugs with the sliders","id":"FB5345A5-E618-4918-8F95-E67E5ED950F9"},"2573":{"isSerializedDate":true,"string":"Sat Jan 05 2013 13:11:33 GMT+0100 (CET)"},"2574":{"date":{"__isSmartRef__":true,"id":2575},"author":"erp","message":"Changed deep copy to lively integrated correct version.","id":"1412772A-7A7B-4631-AE3C-B328353CA554"},"2575":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:17:23 GMT+0100 (CET)"},"2576":{"date":{"__isSmartRef__":true,"id":2577},"author":"erp","message":"cache fixes and new value copy","id":"01F6AD68-75DE-4F4F-926B-145962C769E1"},"2577":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:16:28 GMT+0100 (CET)"},"2578":{"date":{"__isSmartRef__":true,"id":2579},"author":"erp","message":"stepsSlider fix","id":"DF909BF8-6371-4D2D-8EFF-4BB3BB2C721B"},"2579":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:34:29 GMT+0100 (CET)"},"2580":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:22:12 GMT+0100 (CET)"},"2581":{"morph":{"__isSmartRef__":true,"id":1},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2582":{"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":2583}},"2583":{"test01IsMorph":{"__isSmartRef__":true,"id":2584}},"2584":{"varMapping":{"__isSmartRef__":true,"id":2585},"source":"function test01IsMorph(aPart) {\n this.assert(aPart.isMorph, 'rectangle should be a morph');\n}","funcProperties":{"__isSmartRef__":true,"id":2586},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"2585":{"this":{"__isSmartRef__":true,"id":2582}},"2586":{},"2587":{"target":{"__isSmartRef__":true,"id":1},"selector":"runStep","args":[],"stopped":true,"tickTime":100,"suspended":true,"__LivelyClassName__":"lively.morphic.TargetScript","__SourceModuleName__":"Global.lively.morphic.Core"},"2588":{"[object Object]":true},"2589":{"submorphs":[{"__isSmartRef__":true,"id":2590},{"__isSmartRef__":true,"id":2593},{"__isSmartRef__":true,"id":2596},{"__isSmartRef__":true,"id":2599},{"__isSmartRef__":true,"id":2602},{"__isSmartRef__":true,"id":2605},{"__isSmartRef__":true,"id":2608},{"__isSmartRef__":true,"id":2611},{"__isSmartRef__":true,"id":2614},{"__isSmartRef__":true,"id":2617},{"__isSmartRef__":true,"id":2620},{"__isSmartRef__":true,"id":2623},{"__isSmartRef__":true,"id":2626},{"__isSmartRef__":true,"id":2629},{"__isSmartRef__":true,"id":2632},{"__isSmartRef__":true,"id":2635},{"__isSmartRef__":true,"id":2638},{"__isSmartRef__":true,"id":2641},{"__isSmartRef__":true,"id":2644},{"__isSmartRef__":true,"id":2647},{"__isSmartRef__":true,"id":2650},{"__isSmartRef__":true,"id":2653},{"__isSmartRef__":true,"id":2656},{"__isSmartRef__":true,"id":2659},{"__isSmartRef__":true,"id":2662},{"__isSmartRef__":true,"id":2665},{"__isSmartRef__":true,"id":2668},{"__isSmartRef__":true,"id":2671},{"__isSmartRef__":true,"id":2674},{"__isSmartRef__":true,"id":2677}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2680},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2681}],"eventHandler":{"__isSmartRef__":true,"id":2683},"_ClipMode":"visible","derivationIds":[],"id":"E22E4581-A73B-445A-AA7E-1D484A813767","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"__serializedExpressions__":["_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"2590":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2591},"eventHandler":{"__isSmartRef__":true,"id":2592},"_ClipMode":"visible","derivationIds":[],"id":"06E3793F-35BD-4502-B17E-CEC438EC7669","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2591":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2592":{"morph":{"__isSmartRef__":true,"id":2590},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2593":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2594},"eventHandler":{"__isSmartRef__":true,"id":2595},"_ClipMode":"visible","derivationIds":[],"id":"6442CEB8-3807-4686-A6D3-5084CFEA3653","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2594":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2595":{"morph":{"__isSmartRef__":true,"id":2593},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2596":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2597},"eventHandler":{"__isSmartRef__":true,"id":2598},"_ClipMode":"visible","derivationIds":[],"id":"70BC9563-1EE4-46F3-AE98-3CBA19E6AA69","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2597":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2598":{"morph":{"__isSmartRef__":true,"id":2596},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2599":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2600},"eventHandler":{"__isSmartRef__":true,"id":2601},"_ClipMode":"visible","derivationIds":[],"id":"877178A2-0147-4E6A-80FF-FDD6C06CA7BA","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2600":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2601":{"morph":{"__isSmartRef__":true,"id":2599},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2602":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2603},"eventHandler":{"__isSmartRef__":true,"id":2604},"_ClipMode":"visible","derivationIds":[],"id":"49FBFA78-344D-4D9E-B197-A31A15331397","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2603":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2604":{"morph":{"__isSmartRef__":true,"id":2602},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2605":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2606},"eventHandler":{"__isSmartRef__":true,"id":2607},"_ClipMode":"visible","derivationIds":[],"id":"07D42DE6-0664-47D1-A4A6-F2F0F674B4FF","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2606":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2607":{"morph":{"__isSmartRef__":true,"id":2605},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2608":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2609},"eventHandler":{"__isSmartRef__":true,"id":2610},"_ClipMode":"visible","derivationIds":[],"id":"9970261E-2E6F-4E9B-9FDD-41D4C10E5FF5","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2609":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2610":{"morph":{"__isSmartRef__":true,"id":2608},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2611":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2612},"eventHandler":{"__isSmartRef__":true,"id":2613},"_ClipMode":"visible","derivationIds":[],"id":"B2DCCD68-6927-475A-8848-F7814DCEB2C3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2612":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2613":{"morph":{"__isSmartRef__":true,"id":2611},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2614":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2615},"eventHandler":{"__isSmartRef__":true,"id":2616},"_ClipMode":"visible","derivationIds":[],"id":"38A6AC55-02D2-4A3D-85DD-40D901AA1127","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2615":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2616":{"morph":{"__isSmartRef__":true,"id":2614},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2617":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2618},"eventHandler":{"__isSmartRef__":true,"id":2619},"_ClipMode":"visible","derivationIds":[],"id":"4E59B15B-CFA0-40CD-980D-A2B0B78A4666","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2618":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2619":{"morph":{"__isSmartRef__":true,"id":2617},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2620":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2621},"eventHandler":{"__isSmartRef__":true,"id":2622},"_ClipMode":"visible","derivationIds":[],"id":"64EB0C78-B8A0-4729-AF95-61B58E7364BA","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2621":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2622":{"morph":{"__isSmartRef__":true,"id":2620},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2623":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2624},"eventHandler":{"__isSmartRef__":true,"id":2625},"_ClipMode":"visible","derivationIds":[],"id":"B58C2202-57CC-4299-9F8C-AAC4272E9F3E","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2624":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2625":{"morph":{"__isSmartRef__":true,"id":2623},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2626":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2627},"eventHandler":{"__isSmartRef__":true,"id":2628},"_ClipMode":"visible","derivationIds":[],"id":"5D3637A4-6C4B-4E28-9B4D-F4939B3E8B99","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2627":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2628":{"morph":{"__isSmartRef__":true,"id":2626},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2629":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2630},"eventHandler":{"__isSmartRef__":true,"id":2631},"_ClipMode":"visible","derivationIds":[],"id":"CD98BE56-02C7-403A-AA8E-DCC71E8B6ECB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2630":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2631":{"morph":{"__isSmartRef__":true,"id":2629},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2632":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2633},"eventHandler":{"__isSmartRef__":true,"id":2634},"_ClipMode":"visible","derivationIds":[],"id":"1A1C08C0-CD4C-49AA-9DAD-C57B17029279","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2633":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2634":{"morph":{"__isSmartRef__":true,"id":2632},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2635":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2636},"eventHandler":{"__isSmartRef__":true,"id":2637},"_ClipMode":"visible","derivationIds":[],"id":"BF10E794-86C1-48F0-901C-3FDE1707D17A","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2636":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2637":{"morph":{"__isSmartRef__":true,"id":2635},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2638":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2639},"eventHandler":{"__isSmartRef__":true,"id":2640},"_ClipMode":"visible","derivationIds":[],"id":"3CAD8FB1-F3A4-41B6-9ADF-D4C50309678D","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2639":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2640":{"morph":{"__isSmartRef__":true,"id":2638},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2641":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2642},"eventHandler":{"__isSmartRef__":true,"id":2643},"_ClipMode":"visible","derivationIds":[],"id":"AA369548-4CA0-4549-8ED7-7C48421583FD","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2642":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2643":{"morph":{"__isSmartRef__":true,"id":2641},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2644":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2645},"eventHandler":{"__isSmartRef__":true,"id":2646},"_ClipMode":"visible","derivationIds":[],"id":"FC0ED7B7-2372-4894-A28A-56BA5F8B9579","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2645":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2646":{"morph":{"__isSmartRef__":true,"id":2644},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2647":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2648},"eventHandler":{"__isSmartRef__":true,"id":2649},"_ClipMode":"visible","derivationIds":[],"id":"310893B9-EAF3-4BD3-BA3D-4C328268EA9B","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2648":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2649":{"morph":{"__isSmartRef__":true,"id":2647},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2650":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2651},"eventHandler":{"__isSmartRef__":true,"id":2652},"_ClipMode":"visible","derivationIds":[],"id":"74CB2F00-3D2D-4921-8B4F-19CD9A6A8725","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2651":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2652":{"morph":{"__isSmartRef__":true,"id":2650},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2653":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2654},"eventHandler":{"__isSmartRef__":true,"id":2655},"_ClipMode":"visible","derivationIds":[],"id":"A40FCCFC-2B05-4758-A86B-A34BA7576DE5","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2654":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2655":{"morph":{"__isSmartRef__":true,"id":2653},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2656":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2657},"eventHandler":{"__isSmartRef__":true,"id":2658},"_ClipMode":"visible","derivationIds":[],"id":"456E5BD1-1CB0-410C-BA42-65B7D9DD11B3","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2657":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2658":{"morph":{"__isSmartRef__":true,"id":2656},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2659":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2660},"eventHandler":{"__isSmartRef__":true,"id":2661},"_ClipMode":"visible","derivationIds":[],"id":"D0AC2218-28C5-436A-A9F8-C5C1B05A46D6","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2660":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2661":{"morph":{"__isSmartRef__":true,"id":2659},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2662":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2663},"eventHandler":{"__isSmartRef__":true,"id":2664},"_ClipMode":"visible","derivationIds":[],"id":"24F5274E-4E42-4456-94E5-9F69E750C9F3","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2663":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2664":{"morph":{"__isSmartRef__":true,"id":2662},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2665":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2666},"eventHandler":{"__isSmartRef__":true,"id":2667},"_ClipMode":"visible","derivationIds":[],"id":"67F1601F-6E7C-4ABE-A728-F3A3F1919FC7","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2666":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2667":{"morph":{"__isSmartRef__":true,"id":2665},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2668":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2669},"eventHandler":{"__isSmartRef__":true,"id":2670},"_ClipMode":"visible","derivationIds":[],"id":"FC12BF42-E793-48EA-982D-490AF7E5697D","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2669":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(297,0,0)"},"2670":{"morph":{"__isSmartRef__":true,"id":2668},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2671":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2672},"eventHandler":{"__isSmartRef__":true,"id":2673},"_ClipMode":"visible","derivationIds":[],"id":"81BB8A66-1C40-4A18-B0D1-E29C2E711575","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2672":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(307,0,0)"},"2673":{"morph":{"__isSmartRef__":true,"id":2671},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2674":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2675},"eventHandler":{"__isSmartRef__":true,"id":2676},"_ClipMode":"visible","derivationIds":[],"id":"0561FEFC-8FF4-4EED-9CF2-FFC74F2E4C12","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2675":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(317,0,0)"},"2676":{"morph":{"__isSmartRef__":true,"id":2674},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2677":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2678},"eventHandler":{"__isSmartRef__":true,"id":2679},"_ClipMode":"visible","derivationIds":[],"id":"B7E72FA4-00F9-48D2-BBA6-3550EB5AE77C","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2589},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2678":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(327,0,0)"},"2679":{"morph":{"__isSmartRef__":true,"id":2677},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2680":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2681":{"style":{"__isSmartRef__":true,"id":2682},"chunkOwner":{"__isSmartRef__":true,"id":2589},"_id":"_65852","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2682":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2683":{"morph":{"__isSmartRef__":true,"id":2589},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2684":{"submorphs":[{"__isSmartRef__":true,"id":2685},{"__isSmartRef__":true,"id":2688},{"__isSmartRef__":true,"id":2691},{"__isSmartRef__":true,"id":2694},{"__isSmartRef__":true,"id":2697},{"__isSmartRef__":true,"id":2700},{"__isSmartRef__":true,"id":2703},{"__isSmartRef__":true,"id":2706},{"__isSmartRef__":true,"id":2709},{"__isSmartRef__":true,"id":2712},{"__isSmartRef__":true,"id":2715},{"__isSmartRef__":true,"id":2718},{"__isSmartRef__":true,"id":2721},{"__isSmartRef__":true,"id":2724},{"__isSmartRef__":true,"id":2727},{"__isSmartRef__":true,"id":2730},{"__isSmartRef__":true,"id":2733},{"__isSmartRef__":true,"id":2736},{"__isSmartRef__":true,"id":2739},{"__isSmartRef__":true,"id":2742},{"__isSmartRef__":true,"id":2745},{"__isSmartRef__":true,"id":2748},{"__isSmartRef__":true,"id":2751},{"__isSmartRef__":true,"id":2754},{"__isSmartRef__":true,"id":2757},{"__isSmartRef__":true,"id":2760},{"__isSmartRef__":true,"id":2763},{"__isSmartRef__":true,"id":2766},{"__isSmartRef__":true,"id":2769},{"__isSmartRef__":true,"id":2772},{"__isSmartRef__":true,"id":2775},{"__isSmartRef__":true,"id":2778},{"__isSmartRef__":true,"id":2781},{"__isSmartRef__":true,"id":2784},{"__isSmartRef__":true,"id":2787},{"__isSmartRef__":true,"id":2790},{"__isSmartRef__":true,"id":2793},{"__isSmartRef__":true,"id":2796},{"__isSmartRef__":true,"id":2799},{"__isSmartRef__":true,"id":2802},{"__isSmartRef__":true,"id":2805},{"__isSmartRef__":true,"id":2808},{"__isSmartRef__":true,"id":2811},{"__isSmartRef__":true,"id":2814},{"__isSmartRef__":true,"id":2817},{"__isSmartRef__":true,"id":2820},{"__isSmartRef__":true,"id":2823},{"__isSmartRef__":true,"id":2826},{"__isSmartRef__":true,"id":2829},{"__isSmartRef__":true,"id":2832},{"__isSmartRef__":true,"id":2835},{"__isSmartRef__":true,"id":2838},{"__isSmartRef__":true,"id":2841},{"__isSmartRef__":true,"id":2844},{"__isSmartRef__":true,"id":2847},{"__isSmartRef__":true,"id":2850},{"__isSmartRef__":true,"id":2853},{"__isSmartRef__":true,"id":2856},{"__isSmartRef__":true,"id":2859},{"__isSmartRef__":true,"id":2862}],"scripts":[],"shape":{"__isSmartRef__":true,"id":2865},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":2866}],"eventHandler":{"__isSmartRef__":true,"id":2868},"_ClipMode":"visible","derivationIds":[],"id":"5BB73528-720F-439C-812A-4DE72BA5246A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"_InputAllowed":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"__serializedExpressions__":["_TextColor"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"2685":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2686},"eventHandler":{"__isSmartRef__":true,"id":2687},"_ClipMode":"visible","derivationIds":[],"id":"9F39309F-FA11-428E-A94B-33A7A627DADE","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2686":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2687":{"morph":{"__isSmartRef__":true,"id":2685},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2688":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2689},"eventHandler":{"__isSmartRef__":true,"id":2690},"_ClipMode":"visible","derivationIds":[],"id":"E5BF504B-11BB-440F-B5B1-657CE85E40B8","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2689":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2690":{"morph":{"__isSmartRef__":true,"id":2688},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2691":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2692},"eventHandler":{"__isSmartRef__":true,"id":2693},"_ClipMode":"visible","derivationIds":[],"id":"D4A2E634-4221-4716-9A2E-5323C94E76E3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2692":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2693":{"morph":{"__isSmartRef__":true,"id":2691},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2694":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2695},"eventHandler":{"__isSmartRef__":true,"id":2696},"_ClipMode":"visible","derivationIds":[],"id":"D4E364EF-6284-4427-9F0E-0C0BE745F344","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2695":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2696":{"morph":{"__isSmartRef__":true,"id":2694},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2697":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2698},"eventHandler":{"__isSmartRef__":true,"id":2699},"_ClipMode":"visible","derivationIds":[],"id":"9343E5F4-B5C7-483F-8088-76BC78C194C6","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2698":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2699":{"morph":{"__isSmartRef__":true,"id":2697},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2700":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2701},"eventHandler":{"__isSmartRef__":true,"id":2702},"_ClipMode":"visible","derivationIds":[],"id":"1A83F064-6E77-4DF3-A0B4-39CB0A21915C","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2701":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2702":{"morph":{"__isSmartRef__":true,"id":2700},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2703":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2704},"eventHandler":{"__isSmartRef__":true,"id":2705},"_ClipMode":"visible","derivationIds":[],"id":"88650F07-D72D-4175-B632-B58CB39377B4","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2704":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2705":{"morph":{"__isSmartRef__":true,"id":2703},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2706":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2707},"eventHandler":{"__isSmartRef__":true,"id":2708},"_ClipMode":"visible","derivationIds":[],"id":"D6F027DB-9919-4D91-94D9-0FF015A7223E","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2707":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2708":{"morph":{"__isSmartRef__":true,"id":2706},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2709":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2710},"eventHandler":{"__isSmartRef__":true,"id":2711},"_ClipMode":"visible","derivationIds":[],"id":"4C0C4CAC-2ECC-4CDD-AF8B-E940D5FDC2AB","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2710":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2711":{"morph":{"__isSmartRef__":true,"id":2709},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2712":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2713},"eventHandler":{"__isSmartRef__":true,"id":2714},"_ClipMode":"visible","derivationIds":[],"id":"9C48885E-474A-4902-87C6-E3498FAFD0A1","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2713":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2714":{"morph":{"__isSmartRef__":true,"id":2712},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2715":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2716},"eventHandler":{"__isSmartRef__":true,"id":2717},"_ClipMode":"visible","derivationIds":[],"id":"6FEFBF48-90BB-44D4-A2DD-A4E8F4F9B2CD","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2716":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2717":{"morph":{"__isSmartRef__":true,"id":2715},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2718":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2719},"eventHandler":{"__isSmartRef__":true,"id":2720},"_ClipMode":"visible","derivationIds":[],"id":"643E6E22-4DBD-4F61-BEEF-21FF1218EECB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2719":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2720":{"morph":{"__isSmartRef__":true,"id":2718},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2721":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2722},"eventHandler":{"__isSmartRef__":true,"id":2723},"_ClipMode":"visible","derivationIds":[],"id":"FCD37027-F627-475C-AB10-03EE794D41A0","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2722":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2723":{"morph":{"__isSmartRef__":true,"id":2721},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2724":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2725},"eventHandler":{"__isSmartRef__":true,"id":2726},"_ClipMode":"visible","derivationIds":[],"id":"F21654FA-A41E-49B4-9F4E-C79FA6F9C2F9","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2725":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2726":{"morph":{"__isSmartRef__":true,"id":2724},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2727":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2728},"eventHandler":{"__isSmartRef__":true,"id":2729},"_ClipMode":"visible","derivationIds":[],"id":"8039F135-8D08-453C-8C79-2ADC7F9545E2","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2728":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2729":{"morph":{"__isSmartRef__":true,"id":2727},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2730":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2731},"eventHandler":{"__isSmartRef__":true,"id":2732},"_ClipMode":"visible","derivationIds":[],"id":"029BABEE-FB96-43D6-AE5A-EB1E78BB8C26","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2731":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2732":{"morph":{"__isSmartRef__":true,"id":2730},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2733":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2734},"eventHandler":{"__isSmartRef__":true,"id":2735},"_ClipMode":"visible","derivationIds":[],"id":"902C78BE-A86D-4ACE-8EBD-5A4E07AA19BB","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2734":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2735":{"morph":{"__isSmartRef__":true,"id":2733},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2736":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2737},"eventHandler":{"__isSmartRef__":true,"id":2738},"_ClipMode":"visible","derivationIds":[],"id":"7370F2A0-10E7-49EA-9FCC-7A51FE6AF146","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2737":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2738":{"morph":{"__isSmartRef__":true,"id":2736},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2739":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2740},"eventHandler":{"__isSmartRef__":true,"id":2741},"_ClipMode":"visible","derivationIds":[],"id":"0B7C8D0D-E8AC-4CFA-B37C-F3051DC1F4A8","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2740":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2741":{"morph":{"__isSmartRef__":true,"id":2739},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2742":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2743},"eventHandler":{"__isSmartRef__":true,"id":2744},"_ClipMode":"visible","derivationIds":[],"id":"02D461C0-002D-4E30-BBC6-7C307308233D","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2743":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2744":{"morph":{"__isSmartRef__":true,"id":2742},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2745":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2746},"eventHandler":{"__isSmartRef__":true,"id":2747},"_ClipMode":"visible","derivationIds":[],"id":"8F2AD191-5255-4C44-8EBD-604C4356B24B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2746":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2747":{"morph":{"__isSmartRef__":true,"id":2745},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2748":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2749},"eventHandler":{"__isSmartRef__":true,"id":2750},"_ClipMode":"visible","derivationIds":[],"id":"2A2F474B-5D56-4333-B6F9-54B07E20413D","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2749":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2750":{"morph":{"__isSmartRef__":true,"id":2748},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2751":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2752},"eventHandler":{"__isSmartRef__":true,"id":2753},"_ClipMode":"visible","derivationIds":[],"id":"F316171F-01B1-4134-9647-E3F0991EC70E","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2752":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2753":{"morph":{"__isSmartRef__":true,"id":2751},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2754":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2755},"eventHandler":{"__isSmartRef__":true,"id":2756},"_ClipMode":"visible","derivationIds":[],"id":"FA4F30DB-A272-4DAD-909F-44E0F3498C4F","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2755":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2756":{"morph":{"__isSmartRef__":true,"id":2754},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2757":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2758},"eventHandler":{"__isSmartRef__":true,"id":2759},"_ClipMode":"visible","derivationIds":[],"id":"CC6FDBEA-1CC1-46CE-AE08-9CC1AAB08D13","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2758":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2759":{"morph":{"__isSmartRef__":true,"id":2757},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2760":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2761},"eventHandler":{"__isSmartRef__":true,"id":2762},"_ClipMode":"visible","derivationIds":[],"id":"BEC849F6-B7C0-43DA-9136-2967CE33FA78","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2761":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2762":{"morph":{"__isSmartRef__":true,"id":2760},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2763":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2764},"eventHandler":{"__isSmartRef__":true,"id":2765},"_ClipMode":"visible","derivationIds":[],"id":"5B7D3C66-F338-46F5-AD54-7A07DF7252DB","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2764":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(297,0,0)"},"2765":{"morph":{"__isSmartRef__":true,"id":2763},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2766":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2767},"eventHandler":{"__isSmartRef__":true,"id":2768},"_ClipMode":"visible","derivationIds":[],"id":"A3373BC8-81B2-4D13-A9CF-632A96784F0B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2767":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(307,0,0)"},"2768":{"morph":{"__isSmartRef__":true,"id":2766},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2769":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2770},"eventHandler":{"__isSmartRef__":true,"id":2771},"_ClipMode":"visible","derivationIds":[],"id":"5103A408-D06E-4363-BBB7-9F2BA6787D74","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2770":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(317,0,0)"},"2771":{"morph":{"__isSmartRef__":true,"id":2769},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2772":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2773},"eventHandler":{"__isSmartRef__":true,"id":2774},"_ClipMode":"visible","derivationIds":[],"id":"7C91A679-E629-46FB-B0AD-E025857CD3D2","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2773":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(327,0,0)"},"2774":{"morph":{"__isSmartRef__":true,"id":2772},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2775":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2776},"eventHandler":{"__isSmartRef__":true,"id":2777},"_ClipMode":"visible","derivationIds":[],"id":"FA85A337-1419-4C8E-82F4-901B0A31451D","droppingEnabled":true,"halosEnabled":true,"_Rotation":0,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2776":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(0,0,0)"},"2777":{"morph":{"__isSmartRef__":true,"id":2775},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2778":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2779},"eventHandler":{"__isSmartRef__":true,"id":2780},"_ClipMode":"visible","derivationIds":[],"id":"6C23A5C4-B173-4FFF-A919-6F28CDA81BBC","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2779":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(10,0,0)"},"2780":{"morph":{"__isSmartRef__":true,"id":2778},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2781":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2782},"eventHandler":{"__isSmartRef__":true,"id":2783},"_ClipMode":"visible","derivationIds":[],"id":"94316613-D253-498B-BD64-50CF5739D085","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2782":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(20,0,0)"},"2783":{"morph":{"__isSmartRef__":true,"id":2781},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2784":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2785},"eventHandler":{"__isSmartRef__":true,"id":2786},"_ClipMode":"visible","derivationIds":[],"id":"04C9C136-D49C-4DC5-9DD1-67ABE71474A9","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.30000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2785":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(30,0,0)"},"2786":{"morph":{"__isSmartRef__":true,"id":2784},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2787":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2788},"eventHandler":{"__isSmartRef__":true,"id":2789},"_ClipMode":"visible","derivationIds":[],"id":"34A900F2-B9F8-413D-818A-6278ACEB8C9A","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.4,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2788":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(40,0,0)"},"2789":{"morph":{"__isSmartRef__":true,"id":2787},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2790":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2791},"eventHandler":{"__isSmartRef__":true,"id":2792},"_ClipMode":"visible","derivationIds":[],"id":"2C3B6F62-F351-4927-8403-5D1C26AB137F","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2791":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(50,0,0)"},"2792":{"morph":{"__isSmartRef__":true,"id":2790},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2793":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2794},"eventHandler":{"__isSmartRef__":true,"id":2795},"_ClipMode":"visible","derivationIds":[],"id":"CDB3C1EF-84F3-497E-BB25-EF73F7031073","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.6000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2794":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(60,0,0)"},"2795":{"morph":{"__isSmartRef__":true,"id":2793},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2796":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2797},"eventHandler":{"__isSmartRef__":true,"id":2798},"_ClipMode":"visible","derivationIds":[],"id":"A7D181B9-18DB-4E8D-A126-0F151F2111C1","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.7000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2797":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(70,0,0)"},"2798":{"morph":{"__isSmartRef__":true,"id":2796},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2799":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2800},"eventHandler":{"__isSmartRef__":true,"id":2801},"_ClipMode":"visible","derivationIds":[],"id":"BA189E4F-32BA-4602-A11E-25B5022AA9A3","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2800":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(80,0,0)"},"2801":{"morph":{"__isSmartRef__":true,"id":2799},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2802":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2803},"eventHandler":{"__isSmartRef__":true,"id":2804},"_ClipMode":"visible","derivationIds":[],"id":"E9E95913-C1CA-42B8-8F61-A62EF572AA87","droppingEnabled":true,"halosEnabled":true,"_Rotation":0.9,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2803":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(90,0,0)"},"2804":{"morph":{"__isSmartRef__":true,"id":2802},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2805":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2806},"eventHandler":{"__isSmartRef__":true,"id":2807},"_ClipMode":"visible","derivationIds":[],"id":"D786CBEE-80A2-475F-8A40-D188EBA193B5","droppingEnabled":true,"halosEnabled":true,"_Rotation":1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2806":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(100,0,0)"},"2807":{"morph":{"__isSmartRef__":true,"id":2805},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2808":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2809},"eventHandler":{"__isSmartRef__":true,"id":2810},"_ClipMode":"visible","derivationIds":[],"id":"18B41BFE-C374-4EFE-A831-3BB8CA11BDB6","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2809":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(110,0,0)"},"2810":{"morph":{"__isSmartRef__":true,"id":2808},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2811":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2812},"eventHandler":{"__isSmartRef__":true,"id":2813},"_ClipMode":"visible","derivationIds":[],"id":"7148A694-C5E7-4DF3-86FB-362AF1535BA1","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.2000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2812":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(120,0,0)"},"2813":{"morph":{"__isSmartRef__":true,"id":2811},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2814":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2815},"eventHandler":{"__isSmartRef__":true,"id":2816},"_ClipMode":"visible","derivationIds":[],"id":"AE39682A-F427-4A0B-A779-5D10F58FAD85","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.3,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2815":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(130,0,0)"},"2816":{"morph":{"__isSmartRef__":true,"id":2814},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2817":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2818},"eventHandler":{"__isSmartRef__":true,"id":2819},"_ClipMode":"visible","derivationIds":[],"id":"CAE21E22-DA1B-438A-9151-AFEA80EB1F88","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.4000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2818":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(140,0,0)"},"2819":{"morph":{"__isSmartRef__":true,"id":2817},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2820":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2821},"eventHandler":{"__isSmartRef__":true,"id":2822},"_ClipMode":"visible","derivationIds":[],"id":"33E0F3A2-50FA-4E1D-ACE6-3B73D308B979","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2821":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(150,0,0)"},"2822":{"morph":{"__isSmartRef__":true,"id":2820},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2823":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2824},"eventHandler":{"__isSmartRef__":true,"id":2825},"_ClipMode":"visible","derivationIds":[],"id":"347C53A1-7BA4-462F-8CB7-00CA297CBFDF","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2824":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(160,0,0)"},"2825":{"morph":{"__isSmartRef__":true,"id":2823},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2826":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2827},"eventHandler":{"__isSmartRef__":true,"id":2828},"_ClipMode":"visible","derivationIds":[],"id":"7D2AD34C-85C9-41C9-82F0-2A3A992C5EDD","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.7000000000000002,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2827":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(170,0,0)"},"2828":{"morph":{"__isSmartRef__":true,"id":2826},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2829":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2830},"eventHandler":{"__isSmartRef__":true,"id":2831},"_ClipMode":"visible","derivationIds":[],"id":"F6C8F483-0D9F-496B-9E9F-6FB39ECBC72C","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.8,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2830":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(180,0,0)"},"2831":{"morph":{"__isSmartRef__":true,"id":2829},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2832":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2833},"eventHandler":{"__isSmartRef__":true,"id":2834},"_ClipMode":"visible","derivationIds":[],"id":"7EE7734A-6A4A-44AB-9EB5-B4C6A0658179","droppingEnabled":true,"halosEnabled":true,"_Rotation":1.9000000000000001,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2833":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(190,0,0)"},"2834":{"morph":{"__isSmartRef__":true,"id":2832},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2835":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2836},"eventHandler":{"__isSmartRef__":true,"id":2837},"_ClipMode":"visible","derivationIds":[],"id":"61691AD7-A112-4E1A-8087-AF87961CE45B","droppingEnabled":true,"halosEnabled":true,"_Rotation":2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2836":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(200,0,0)"},"2837":{"morph":{"__isSmartRef__":true,"id":2835},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2838":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2839},"eventHandler":{"__isSmartRef__":true,"id":2840},"_ClipMode":"visible","derivationIds":[],"id":"243CCDA0-E3CC-41DD-B869-4BFD2A687A83","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.1,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2839":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(210,0,0)"},"2840":{"morph":{"__isSmartRef__":true,"id":2838},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2841":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2842},"eventHandler":{"__isSmartRef__":true,"id":2843},"_ClipMode":"visible","derivationIds":[],"id":"0AA7CBA3-C665-497E-AE6E-1FFBA9AB5FF1","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.2,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2842":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(220,0,0)"},"2843":{"morph":{"__isSmartRef__":true,"id":2841},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2844":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2845},"eventHandler":{"__isSmartRef__":true,"id":2846},"_ClipMode":"visible","derivationIds":[],"id":"A20C7029-C741-41C4-ABCA-5C107F6C59A8","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.3000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2845":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(230,0,0)"},"2846":{"morph":{"__isSmartRef__":true,"id":2844},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2847":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2848},"eventHandler":{"__isSmartRef__":true,"id":2849},"_ClipMode":"visible","derivationIds":[],"id":"9A2411A4-7D41-450E-AADB-7AC82455419D","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.4000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2848":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(240,0,0)"},"2849":{"morph":{"__isSmartRef__":true,"id":2847},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2850":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2851},"eventHandler":{"__isSmartRef__":true,"id":2852},"_ClipMode":"visible","derivationIds":[],"id":"39E9EA95-5398-450E-98F0-C02FF16D30B2","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.5,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2851":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(250,0,0)"},"2852":{"morph":{"__isSmartRef__":true,"id":2850},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2853":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2854},"eventHandler":{"__isSmartRef__":true,"id":2855},"_ClipMode":"visible","derivationIds":[],"id":"C7BD63CC-A9EF-416A-87CD-8880132CB007","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.6,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2854":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(297,0,0)"},"2855":{"morph":{"__isSmartRef__":true,"id":2853},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2856":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2857},"eventHandler":{"__isSmartRef__":true,"id":2858},"_ClipMode":"visible","derivationIds":[],"id":"EDC07858-B1CC-47C8-B173-BAA3D42D19F1","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.7,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2857":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(307,0,0)"},"2858":{"morph":{"__isSmartRef__":true,"id":2856},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2859":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2860},"eventHandler":{"__isSmartRef__":true,"id":2861},"_ClipMode":"visible","derivationIds":[],"id":"99240844-397C-4C36-9BAD-2FE851FDFBA5","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.8000000000000003,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2860":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(317,0,0)"},"2861":{"morph":{"__isSmartRef__":true,"id":2859},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2862":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":2863},"eventHandler":{"__isSmartRef__":true,"id":2864},"_ClipMode":"visible","derivationIds":[],"id":"443F1778-691D-44CE-9259-FC02281B09C7","droppingEnabled":true,"halosEnabled":true,"_Rotation":2.9000000000000004,"owner":{"__isSmartRef__":true,"id":2684},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(70.0,70.0)"},"2863":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(10.0,50.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(327,0,0)"},"2864":{"morph":{"__isSmartRef__":true,"id":2862},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2865":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"2866":{"style":{"__isSmartRef__":true,"id":2867},"chunkOwner":{"__isSmartRef__":true,"id":2684},"_id":"_395","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2867":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"2868":{"morph":{"__isSmartRef__":true,"id":2684},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"2869":{"values":{"__isSmartRef__":true,"id":2870},"pc":{"__isSmartRef__":true,"id":2871},"mapping":{"__isSmartRef__":true,"id":3175}},"2870":{},"2871":{"pos":[25,80],"name":"first","val":{"__isSmartRef__":true,"id":2872},"_parent":{"__isSmartRef__":true,"id":2879},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2872":{"pos":[33,80],"properties":[{"__isSmartRef__":true,"id":2873},{"__isSmartRef__":true,"id":2875},{"__isSmartRef__":true,"id":2877}],"_parent":{"__isSmartRef__":true,"id":2871},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2873":{"pos":[35,51],"name":"type","property":{"__isSmartRef__":true,"id":2874},"_parent":{"__isSmartRef__":true,"id":2872},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2874":{"pos":[43,51],"value":"assign","_parent":{"__isSmartRef__":true,"id":2873},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2875":{"pos":[52,66],"name":"varName","property":{"__isSmartRef__":true,"id":2876},"_parent":{"__isSmartRef__":true,"id":2872},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2876":{"pos":[63,66],"value":"a","_parent":{"__isSmartRef__":true,"id":2875},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2877":{"pos":[67,78],"name":"value","property":{"__isSmartRef__":true,"id":2878},"_parent":{"__isSmartRef__":true,"id":2872},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2878":{"pos":[76,78],"value":10,"_parent":{"__isSmartRef__":true,"id":2877},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2879":{"pos":[25,80],"children":[{"__isSmartRef__":true,"id":2871}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2880":{"pos":[21,1178],"children":[{"__isSmartRef__":true,"id":2879},{"__isSmartRef__":true,"id":2881},{"__isSmartRef__":true,"id":2890},{"__isSmartRef__":true,"id":2907},{"__isSmartRef__":true,"id":2917},{"__isSmartRef__":true,"id":3028},{"__isSmartRef__":true,"id":3163},{"__isSmartRef__":true,"id":3164},{"__isSmartRef__":true,"id":3171}],"_parent":{"__isSmartRef__":true,"id":3172},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2881":{"pos":[85,141],"children":[{"__isSmartRef__":true,"id":2882}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2882":{"pos":[85,141],"name":"second","val":{"__isSmartRef__":true,"id":2883},"_parent":{"__isSmartRef__":true,"id":2881},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2883":{"pos":[94,141],"properties":[{"__isSmartRef__":true,"id":2884},{"__isSmartRef__":true,"id":2886},{"__isSmartRef__":true,"id":2888}],"_parent":{"__isSmartRef__":true,"id":2882},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2884":{"pos":[96,112],"name":"type","property":{"__isSmartRef__":true,"id":2885},"_parent":{"__isSmartRef__":true,"id":2883},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2885":{"pos":[104,112],"value":"assign","_parent":{"__isSmartRef__":true,"id":2884},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2886":{"pos":[113,127],"name":"varName","property":{"__isSmartRef__":true,"id":2887},"_parent":{"__isSmartRef__":true,"id":2883},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2887":{"pos":[124,127],"value":"b","_parent":{"__isSmartRef__":true,"id":2886},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2888":{"pos":[128,138],"name":"value","property":{"__isSmartRef__":true,"id":2889},"_parent":{"__isSmartRef__":true,"id":2883},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2889":{"pos":[137,138],"value":5,"_parent":{"__isSmartRef__":true,"id":2888},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2890":{"pos":[146,272],"children":[{"__isSmartRef__":true,"id":2891}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2891":{"pos":[146,272],"name":"third","val":{"__isSmartRef__":true,"id":2892},"_parent":{"__isSmartRef__":true,"id":2890},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2892":{"pos":[154,272],"properties":[{"__isSmartRef__":true,"id":2893},{"__isSmartRef__":true,"id":2895},{"__isSmartRef__":true,"id":2901}],"_parent":{"__isSmartRef__":true,"id":2891},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2893":{"pos":[156,174],"name":"type","property":{"__isSmartRef__":true,"id":2894},"_parent":{"__isSmartRef__":true,"id":2892},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2894":{"pos":[164,174],"value":"addition","_parent":{"__isSmartRef__":true,"id":2893},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2895":{"pos":[175,223],"name":"summand1","property":{"__isSmartRef__":true,"id":2896},"_parent":{"__isSmartRef__":true,"id":2892},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2896":{"pos":[186,223],"properties":[{"__isSmartRef__":true,"id":2897},{"__isSmartRef__":true,"id":2899}],"_parent":{"__isSmartRef__":true,"id":2895},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2897":{"pos":[188,206],"name":"type","property":{"__isSmartRef__":true,"id":2898},"_parent":{"__isSmartRef__":true,"id":2896},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2898":{"pos":[196,206],"value":"variable","_parent":{"__isSmartRef__":true,"id":2897},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2899":{"pos":[207,221],"name":"varName","property":{"__isSmartRef__":true,"id":2900},"_parent":{"__isSmartRef__":true,"id":2896},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2900":{"pos":[218,221],"value":"a","_parent":{"__isSmartRef__":true,"id":2899},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2901":{"pos":[224,270],"name":"summand2","property":{"__isSmartRef__":true,"id":2902},"_parent":{"__isSmartRef__":true,"id":2892},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2902":{"pos":[235,270],"properties":[{"__isSmartRef__":true,"id":2903},{"__isSmartRef__":true,"id":2905}],"_parent":{"__isSmartRef__":true,"id":2901},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2903":{"pos":[237,254],"name":"type","property":{"__isSmartRef__":true,"id":2904},"_parent":{"__isSmartRef__":true,"id":2902},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2904":{"pos":[244,254],"value":"variable","_parent":{"__isSmartRef__":true,"id":2903},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2905":{"pos":[255,269],"name":"varName","property":{"__isSmartRef__":true,"id":2906},"_parent":{"__isSmartRef__":true,"id":2902},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2906":{"pos":[266,269],"value":"b","_parent":{"__isSmartRef__":true,"id":2905},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2907":{"pos":[278,347],"children":[{"__isSmartRef__":true,"id":2908}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2908":{"pos":[278,347],"name":"program","val":{"__isSmartRef__":true,"id":2909},"_parent":{"__isSmartRef__":true,"id":2907},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2909":{"pos":[288,347],"properties":[{"__isSmartRef__":true,"id":2910},{"__isSmartRef__":true,"id":2912}],"_parent":{"__isSmartRef__":true,"id":2908},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2910":{"pos":[290,308],"name":"type","property":{"__isSmartRef__":true,"id":2911},"_parent":{"__isSmartRef__":true,"id":2909},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2911":{"pos":[298,308],"value":"sequence","_parent":{"__isSmartRef__":true,"id":2910},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2912":{"pos":[309,345],"name":"statements","property":{"__isSmartRef__":true,"id":2913},"_parent":{"__isSmartRef__":true,"id":2909},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2913":{"pos":[323,345],"elements":[{"__isSmartRef__":true,"id":2914},{"__isSmartRef__":true,"id":2915},{"__isSmartRef__":true,"id":2916}],"_parent":{"__isSmartRef__":true,"id":2912},"__LivelyClassName__":"lively.ast.ArrayLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2914":{"pos":[324,329],"name":"first","_parent":{"__isSmartRef__":true,"id":2913},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2915":{"pos":[331,337],"name":"second","_parent":{"__isSmartRef__":true,"id":2913},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2916":{"pos":[339,344],"name":"third","_parent":{"__isSmartRef__":true,"id":2913},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2917":{"pos":[353,670],"children":[{"__isSmartRef__":true,"id":2918}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2918":{"pos":[353,670],"name":"visitor","val":{"__isSmartRef__":true,"id":2919},"_parent":{"__isSmartRef__":true,"id":2917},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2919":{"pos":[363,670],"properties":[{"__isSmartRef__":true,"id":2920},{"__isSmartRef__":true,"id":2922},{"__isSmartRef__":true,"id":2924},{"__isSmartRef__":true,"id":3147}],"_parent":{"__isSmartRef__":true,"id":2918},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2920":{"pos":[365,384],"name":"variables","property":{"__isSmartRef__":true,"id":2921},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2921":{"pos":[382,384],"elements":[],"_parent":{"__isSmartRef__":true,"id":2920},"__LivelyClassName__":"lively.ast.ArrayLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2922":{"pos":[385,400],"name":"stack","property":{"__isSmartRef__":true,"id":2923},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2923":{"pos":[398,400],"elements":[],"_parent":{"__isSmartRef__":true,"id":2922},"__LivelyClassName__":"lively.ast.ArrayLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2924":{"pos":[401,516],"name":"visit","property":{"__isSmartRef__":true,"id":2925},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2925":{"pos":[422,516],"body":{"__isSmartRef__":true,"id":2926},"args":[{"__isSmartRef__":true,"id":2942}],"_parent":{"__isSmartRef__":true,"id":2924},"prototype":{"__isSmartRef__":true,"id":2943},"lexicalScope":{"__isSmartRef__":true,"id":2944},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2926":{"pos":[430,510],"children":[{"__isSmartRef__":true,"id":2927},{"__isSmartRef__":true,"id":2932}],"_parent":{"__isSmartRef__":true,"id":2925},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2927":{"pos":[432,452],"left":{"__isSmartRef__":true,"id":2928},"right":{"__isSmartRef__":true,"id":2931},"_parent":{"__isSmartRef__":true,"id":2926},"__LivelyClassName__":"lively.ast.Set","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2928":{"pos":[432,445],"slotName":{"__isSmartRef__":true,"id":2929},"obj":{"__isSmartRef__":true,"id":2930},"_parent":{"__isSmartRef__":true,"id":2927},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2929":{"pos":[437,445],"value":"lastNode","_parent":{"__isSmartRef__":true,"id":2928},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2930":{"pos":[432,436],"_parent":{"__isSmartRef__":true,"id":2928},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2931":{"pos":[448,452],"name":"node","_parent":{"__isSmartRef__":true,"id":2927},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2932":{"pos":[462,510],"expr":{"__isSmartRef__":true,"id":2933},"_parent":{"__isSmartRef__":true,"id":2926},"__LivelyClassName__":"lively.ast.Return","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2933":{"pos":[468,509],"property":{"__isSmartRef__":true,"id":2934},"recv":{"__isSmartRef__":true,"id":2937},"args":[{"__isSmartRef__":true,"id":2940},{"__isSmartRef__":true,"id":2941}],"_parent":{"__isSmartRef__":true,"id":2932},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2934":{"pos":[487,496],"slotName":{"__isSmartRef__":true,"id":2935},"obj":{"__isSmartRef__":true,"id":2936},"_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2935":{"pos":[492,496],"value":"type","_parent":{"__isSmartRef__":true,"id":2934},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2936":{"pos":[487,491],"name":"node","_parent":{"__isSmartRef__":true,"id":2934},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2937":{"pos":[468,486],"slotName":{"__isSmartRef__":true,"id":2938},"obj":{"__isSmartRef__":true,"id":2939},"_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2938":{"pos":[474,486],"value":"visitActions","_parent":{"__isSmartRef__":true,"id":2937},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2939":{"pos":[469,473],"_parent":{"__isSmartRef__":true,"id":2937},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2940":{"pos":[498,502],"_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.This","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2941":{"pos":[504,508],"name":"node","_parent":{"__isSmartRef__":true,"id":2933},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2942":{"pos":[423,427],"name":"node","_parent":{"__isSmartRef__":true,"id":2925},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2943":{},"2944":{"mapping":{"__isSmartRef__":true,"id":2945},"returnTriggered":false,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":{"__isSmartRef__":true,"id":2955},"bp":null,"values":{"__isSmartRef__":true,"id":3041},"containingScope":{"__isSmartRef__":true,"id":3107},"arguments":[],"callee":{"__isSmartRef__":true,"id":3109},"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"2945":{"_contextSubmorphs":[],"_contextSubmorphsPos":{"__isSmartRef__":true,"id":2946},"this":{"__isSmartRef__":true,"id":417},"first":{"__isSmartRef__":true,"id":2947},"second":{"__isSmartRef__":true,"id":2948},"third":{"__isSmartRef__":true,"id":2949},"program":{"__isSmartRef__":true,"id":2952},"visitor":{"__isSmartRef__":true,"id":2953},"i":2,"node":{"__isSmartRef__":true,"id":2949},"summand1":10},"2946":{},"2947":{"type":"assign","varName":"a","value":10},"2948":{"type":"assign","varName":"b","value":5},"2949":{"type":"addition","summand1":{"__isSmartRef__":true,"id":2950},"summand2":{"__isSmartRef__":true,"id":2951}},"2950":{"type":"variable","varName":"a"},"2951":{"type":"variable","varName":"b"},"2952":{"type":"sequence","statements":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"2953":{"variables":[],"stack":[],"visitActions":{"__isSmartRef__":true,"id":2954},"lastNode":{"__isSmartRef__":true,"id":2950}},"2954":{},"2955":{"pos":[876,904],"property":{"__isSmartRef__":true,"id":2956},"recv":{"__isSmartRef__":true,"id":2957},"args":[{"__isSmartRef__":true,"id":2958}],"_parent":{"__isSmartRef__":true,"id":2961},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2956":{"pos":[884,889],"value":"visit","_parent":{"__isSmartRef__":true,"id":2955},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2957":{"pos":[876,883],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2955},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2958":{"pos":[890,903],"slotName":{"__isSmartRef__":true,"id":2959},"obj":{"__isSmartRef__":true,"id":2960},"_parent":{"__isSmartRef__":true,"id":2955},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2959":{"pos":[895,903],"value":"summand2","_parent":{"__isSmartRef__":true,"id":2958},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2960":{"pos":[890,894],"name":"node","_parent":{"__isSmartRef__":true,"id":2958},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2961":{"pos":[793,1010],"children":[{"__isSmartRef__":true,"id":2962},{"__isSmartRef__":true,"id":2968},{"__isSmartRef__":true,"id":2955},{"__isSmartRef__":true,"id":2975},{"__isSmartRef__":true,"id":2982}],"_parent":{"__isSmartRef__":true,"id":2990},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2962":{"pos":[796,824],"property":{"__isSmartRef__":true,"id":2963},"recv":{"__isSmartRef__":true,"id":2964},"args":[{"__isSmartRef__":true,"id":2965}],"_parent":{"__isSmartRef__":true,"id":2961},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2963":{"pos":[804,809],"value":"visit","_parent":{"__isSmartRef__":true,"id":2962},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2964":{"pos":[796,803],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2962},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2965":{"pos":[810,823],"slotName":{"__isSmartRef__":true,"id":2966},"obj":{"__isSmartRef__":true,"id":2967},"_parent":{"__isSmartRef__":true,"id":2962},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2966":{"pos":[815,823],"value":"summand1","_parent":{"__isSmartRef__":true,"id":2965},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2967":{"pos":[810,814],"name":"node","_parent":{"__isSmartRef__":true,"id":2965},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2968":{"pos":[836,867],"children":[{"__isSmartRef__":true,"id":2969}],"_parent":{"__isSmartRef__":true,"id":2961},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2969":{"pos":[836,867],"name":"summand1","val":{"__isSmartRef__":true,"id":2970},"_parent":{"__isSmartRef__":true,"id":2968},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2970":{"pos":[847,867],"property":{"__isSmartRef__":true,"id":2971},"recv":{"__isSmartRef__":true,"id":2972},"args":[],"_parent":{"__isSmartRef__":true,"id":2969},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2971":{"pos":[862,865],"value":"pop","_parent":{"__isSmartRef__":true,"id":2970},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2972":{"pos":[847,861],"slotName":{"__isSmartRef__":true,"id":2973},"obj":{"__isSmartRef__":true,"id":2974},"_parent":{"__isSmartRef__":true,"id":2970},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2973":{"pos":[856,861],"value":"stack","_parent":{"__isSmartRef__":true,"id":2972},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2974":{"pos":[848,855],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2972},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2975":{"pos":[923,954],"children":[{"__isSmartRef__":true,"id":2976}],"_parent":{"__isSmartRef__":true,"id":2961},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2976":{"pos":[923,954],"name":"summand2","val":{"__isSmartRef__":true,"id":2977},"_parent":{"__isSmartRef__":true,"id":2975},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2977":{"pos":[934,954],"property":{"__isSmartRef__":true,"id":2978},"recv":{"__isSmartRef__":true,"id":2979},"args":[],"_parent":{"__isSmartRef__":true,"id":2976},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2978":{"pos":[949,952],"value":"pop","_parent":{"__isSmartRef__":true,"id":2977},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2979":{"pos":[934,948],"slotName":{"__isSmartRef__":true,"id":2980},"obj":{"__isSmartRef__":true,"id":2981},"_parent":{"__isSmartRef__":true,"id":2977},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2980":{"pos":[943,948],"value":"stack","_parent":{"__isSmartRef__":true,"id":2979},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2981":{"pos":[935,942],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2979},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2982":{"pos":[970,1009],"property":{"__isSmartRef__":true,"id":2983},"recv":{"__isSmartRef__":true,"id":2984},"args":[{"__isSmartRef__":true,"id":2987}],"_parent":{"__isSmartRef__":true,"id":2961},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2983":{"pos":[984,988],"value":"push","_parent":{"__isSmartRef__":true,"id":2982},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2984":{"pos":[970,983],"slotName":{"__isSmartRef__":true,"id":2985},"obj":{"__isSmartRef__":true,"id":2986},"_parent":{"__isSmartRef__":true,"id":2982},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2985":{"pos":[978,983],"value":"stack","_parent":{"__isSmartRef__":true,"id":2984},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2986":{"pos":[970,977],"name":"visitor","_parent":{"__isSmartRef__":true,"id":2984},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2987":{"pos":[989,1008],"name":"+","left":{"__isSmartRef__":true,"id":2988},"right":{"__isSmartRef__":true,"id":2989},"_parent":{"__isSmartRef__":true,"id":2982},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2988":{"pos":[989,997],"name":"summand1","_parent":{"__isSmartRef__":true,"id":2987},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2989":{"pos":[1000,1008],"name":"summand2","_parent":{"__isSmartRef__":true,"id":2987},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2990":{"pos":[764,1132],"condExpr":{"__isSmartRef__":true,"id":2991},"trueExpr":{"__isSmartRef__":true,"id":2961},"falseExpr":{"__isSmartRef__":true,"id":2996},"_parent":{"__isSmartRef__":true,"id":3020},"__LivelyClassName__":"lively.ast.If","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2991":{"pos":[767,790],"name":"==","left":{"__isSmartRef__":true,"id":2992},"right":{"__isSmartRef__":true,"id":2995},"_parent":{"__isSmartRef__":true,"id":2990},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2992":{"pos":[767,776],"slotName":{"__isSmartRef__":true,"id":2993},"obj":{"__isSmartRef__":true,"id":2994},"_parent":{"__isSmartRef__":true,"id":2991},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2993":{"pos":[772,776],"value":"type","_parent":{"__isSmartRef__":true,"id":2992},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2994":{"pos":[767,771],"name":"node","_parent":{"__isSmartRef__":true,"id":2992},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2995":{"pos":[780,790],"value":"addition","_parent":{"__isSmartRef__":true,"id":2991},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2996":{"pos":[793,1010],"children":[{"__isSmartRef__":true,"id":2997}],"_parent":{"__isSmartRef__":true,"id":2990},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2997":{"pos":[1019,1131],"condExpr":{"__isSmartRef__":true,"id":2998},"trueExpr":{"__isSmartRef__":true,"id":3003},"falseExpr":{"__isSmartRef__":true,"id":3015},"_parent":{"__isSmartRef__":true,"id":2996},"__LivelyClassName__":"lively.ast.If","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2998":{"pos":[1022,1043],"name":"==","left":{"__isSmartRef__":true,"id":2999},"right":{"__isSmartRef__":true,"id":3002},"_parent":{"__isSmartRef__":true,"id":2997},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"2999":{"pos":[1022,1031],"slotName":{"__isSmartRef__":true,"id":3000},"obj":{"__isSmartRef__":true,"id":3001},"_parent":{"__isSmartRef__":true,"id":2998},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3000":{"pos":[1027,1031],"value":"type","_parent":{"__isSmartRef__":true,"id":2999},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3001":{"pos":[1022,1026],"name":"node","_parent":{"__isSmartRef__":true,"id":2999},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3002":{"pos":[1035,1043],"value":"assign","_parent":{"__isSmartRef__":true,"id":2998},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3003":{"pos":[1046,1094],"children":[{"__isSmartRef__":true,"id":3004}],"_parent":{"__isSmartRef__":true,"id":2997},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3004":{"pos":[1049,1093],"left":{"__isSmartRef__":true,"id":3005},"right":{"__isSmartRef__":true,"id":3012},"_parent":{"__isSmartRef__":true,"id":3003},"__LivelyClassName__":"lively.ast.Set","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3005":{"pos":[1049,1080],"slotName":{"__isSmartRef__":true,"id":3006},"obj":{"__isSmartRef__":true,"id":3009},"_parent":{"__isSmartRef__":true,"id":3004},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3006":{"pos":[1067,1079],"slotName":{"__isSmartRef__":true,"id":3007},"obj":{"__isSmartRef__":true,"id":3008},"_parent":{"__isSmartRef__":true,"id":3005},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3007":{"pos":[1072,1079],"value":"varName","_parent":{"__isSmartRef__":true,"id":3006},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3008":{"pos":[1067,1071],"name":"node","_parent":{"__isSmartRef__":true,"id":3006},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3009":{"pos":[1049,1066],"slotName":{"__isSmartRef__":true,"id":3010},"obj":{"__isSmartRef__":true,"id":3011},"_parent":{"__isSmartRef__":true,"id":3005},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3010":{"pos":[1057,1066],"value":"variables","_parent":{"__isSmartRef__":true,"id":3009},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3011":{"pos":[1049,1056],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3009},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3012":{"pos":[1082,1093],"slotName":{"__isSmartRef__":true,"id":3013},"obj":{"__isSmartRef__":true,"id":3014},"_parent":{"__isSmartRef__":true,"id":3004},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3013":{"pos":[1088,1093],"value":"value","_parent":{"__isSmartRef__":true,"id":3012},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3014":{"pos":[1083,1087],"name":"node","_parent":{"__isSmartRef__":true,"id":3012},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3015":{"pos":[1104,1127],"children":[{"__isSmartRef__":true,"id":3016}],"_parent":{"__isSmartRef__":true,"id":2997},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3016":{"pos":[1107,1126],"property":{"__isSmartRef__":true,"id":3017},"recv":{"__isSmartRef__":true,"id":3018},"args":[{"__isSmartRef__":true,"id":3019}],"_parent":{"__isSmartRef__":true,"id":3015},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3017":{"pos":[1115,1120],"value":"visit","_parent":{"__isSmartRef__":true,"id":3016},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3018":{"pos":[1107,1114],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3016},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3019":{"pos":[1121,1125],"name":"node","_parent":{"__isSmartRef__":true,"id":3016},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3020":{"pos":[725,1132],"children":[{"__isSmartRef__":true,"id":3021},{"__isSmartRef__":true,"id":2990}],"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3021":{"pos":[730,759],"children":[{"__isSmartRef__":true,"id":3022}],"_parent":{"__isSmartRef__":true,"id":3020},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3022":{"pos":[730,759],"name":"node","val":{"__isSmartRef__":true,"id":3023},"_parent":{"__isSmartRef__":true,"id":3021},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3023":{"pos":[737,759],"slotName":{"__isSmartRef__":true,"id":3024},"obj":{"__isSmartRef__":true,"id":3025},"_parent":{"__isSmartRef__":true,"id":3022},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3024":{"pos":[757,758],"name":"i","_parent":{"__isSmartRef__":true,"id":3023},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3025":{"pos":[737,756],"slotName":{"__isSmartRef__":true,"id":3026},"obj":{"__isSmartRef__":true,"id":3027},"_parent":{"__isSmartRef__":true,"id":3023},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3026":{"pos":[746,756],"value":"statements","_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3027":{"pos":[738,745],"name":"program","_parent":{"__isSmartRef__":true,"id":3025},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3028":{"pos":[673,1135],"init":{"__isSmartRef__":true,"id":3029},"condExpr":{"__isSmartRef__":true,"id":3032},"body":{"__isSmartRef__":true,"id":3020},"upd":{"__isSmartRef__":true,"id":3039},"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.For","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3029":{"pos":[680,686],"children":[{"__isSmartRef__":true,"id":3030}],"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3030":{"pos":[680,686],"name":"i","val":{"__isSmartRef__":true,"id":3031},"_parent":{"__isSmartRef__":true,"id":3029},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3031":{"pos":[685,686],"value":0,"_parent":{"__isSmartRef__":true,"id":3030},"__LivelyClassName__":"lively.ast.Number","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3032":{"pos":[687,717],"name":"<","left":{"__isSmartRef__":true,"id":3033},"right":{"__isSmartRef__":true,"id":3034},"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.BinaryOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3033":{"pos":[688,689],"name":"i","_parent":{"__isSmartRef__":true,"id":3032},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3034":{"pos":[691,717],"slotName":{"__isSmartRef__":true,"id":3035},"obj":{"__isSmartRef__":true,"id":3036},"_parent":{"__isSmartRef__":true,"id":3032},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3035":{"pos":[711,717],"value":"length","_parent":{"__isSmartRef__":true,"id":3034},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3036":{"pos":[691,710],"slotName":{"__isSmartRef__":true,"id":3037},"obj":{"__isSmartRef__":true,"id":3038},"_parent":{"__isSmartRef__":true,"id":3034},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3037":{"pos":[700,710],"value":"statements","_parent":{"__isSmartRef__":true,"id":3036},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3038":{"pos":[692,699],"name":"program","_parent":{"__isSmartRef__":true,"id":3036},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3039":{"pos":[718,722],"name":"++","expr":{"__isSmartRef__":true,"id":3040},"_parent":{"__isSmartRef__":true,"id":3028},"__LivelyClassName__":"lively.ast.PostOp","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3040":{"pos":[719,720],"name":"i","_parent":{"__isSmartRef__":true,"id":3039},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3041":{"43-51":{"__isSmartRef__":true,"id":3042},"63-66":{"__isSmartRef__":true,"id":3043},"76-78":{"__isSmartRef__":true,"id":3044},"33-80":{"__isSmartRef__":true,"id":3045},"25-80":{"__isSmartRef__":true,"id":3046},"104-112":{"__isSmartRef__":true,"id":3047},"124-127":{"__isSmartRef__":true,"id":3048},"137-138":{"__isSmartRef__":true,"id":3049},"94-141":{"__isSmartRef__":true,"id":3050},"85-141":{"__isSmartRef__":true,"id":3051},"164-174":{"__isSmartRef__":true,"id":3052},"196-206":{"__isSmartRef__":true,"id":3053},"218-221":{"__isSmartRef__":true,"id":3054},"186-223":{"__isSmartRef__":true,"id":3055},"244-254":{"__isSmartRef__":true,"id":3056},"266-269":{"__isSmartRef__":true,"id":3057},"235-270":{"__isSmartRef__":true,"id":3058},"154-272":{"__isSmartRef__":true,"id":3059},"146-272":{"__isSmartRef__":true,"id":3060},"298-308":{"__isSmartRef__":true,"id":3061},"324-329":{"__isSmartRef__":true,"id":3062},"331-337":{"__isSmartRef__":true,"id":3063},"339-344":{"__isSmartRef__":true,"id":3064},"323-345":{"__isSmartRef__":true,"id":3065},"288-347":{"__isSmartRef__":true,"id":3066},"278-347":{"__isSmartRef__":true,"id":3067},"382-384":{"__isSmartRef__":true,"id":3068},"398-400":{"__isSmartRef__":true,"id":3069},"422-516":{"__isSmartRef__":true,"id":3070},"568-661":{"__isSmartRef__":true,"id":3071},"536-668":{"__isSmartRef__":true,"id":3072},"363-670":{"__isSmartRef__":true,"id":3073},"353-670":{"__isSmartRef__":true,"id":3074},"685-686":{"__isSmartRef__":true,"id":3075},"680-686":{"__isSmartRef__":true,"id":3076},"688-689":{"__isSmartRef__":true,"id":3077},"692-699":{"__isSmartRef__":true,"id":3078},"700-710":{"__isSmartRef__":true,"id":3079},"691-710":{"__isSmartRef__":true,"id":3080},"711-717":{"__isSmartRef__":true,"id":3081},"691-717":{"__isSmartRef__":true,"id":3082},"687-717":{"__isSmartRef__":true,"id":3083},"738-745":{"__isSmartRef__":true,"id":3084},"746-756":{"__isSmartRef__":true,"id":3085},"737-756":{"__isSmartRef__":true,"id":3086},"757-758":{"__isSmartRef__":true,"id":3087},"737-759":{"__isSmartRef__":true,"id":3088},"730-759":{"__isSmartRef__":true,"id":3089},"767-771":{"__isSmartRef__":true,"id":3090},"772-776":{"__isSmartRef__":true,"id":3091},"767-776":{"__isSmartRef__":true,"id":3092},"780-790":{"__isSmartRef__":true,"id":3093},"767-790":{"__isSmartRef__":true,"id":3094},"796-803":{"__isSmartRef__":true,"id":3095},"804-809":{"__isSmartRef__":true,"id":3096},"810-814":{"__isSmartRef__":true,"id":3097},"815-823":{"__isSmartRef__":true,"id":3098},"810-823":{"__isSmartRef__":true,"id":3099},"796-824":{"__isSmartRef__":true,"id":3100},"848-855":{"__isSmartRef__":true,"id":3101},"856-861":{"__isSmartRef__":true,"id":3102},"847-861":{"__isSmartRef__":true,"id":3103},"862-865":{"__isSmartRef__":true,"id":3104},"847-867":{"__isSmartRef__":true,"id":3105},"836-867":{"__isSmartRef__":true,"id":3106}},"3042":{"val":"assign"},"3043":{"val":"a"},"3044":{"val":10},"3045":{"val":{"__isSmartRef__":true,"id":2947}},"3046":{"val":{"__isSmartRef__":true,"id":2947}},"3047":{"val":"assign"},"3048":{"val":"b"},"3049":{"val":5},"3050":{"val":{"__isSmartRef__":true,"id":2948}},"3051":{"val":{"__isSmartRef__":true,"id":2948}},"3052":{"val":"addition"},"3053":{"val":"variable"},"3054":{"val":"a"},"3055":{"val":{"__isSmartRef__":true,"id":2950}},"3056":{"val":"variable"},"3057":{"val":"b"},"3058":{"val":{"__isSmartRef__":true,"id":2951}},"3059":{"val":{"__isSmartRef__":true,"id":2949}},"3060":{"val":{"__isSmartRef__":true,"id":2949}},"3061":{"val":"sequence"},"3062":{"val":{"__isSmartRef__":true,"id":2947}},"3063":{"val":{"__isSmartRef__":true,"id":2948}},"3064":{"val":{"__isSmartRef__":true,"id":2949}},"3065":{"val":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"3066":{"val":{"__isSmartRef__":true,"id":2952}},"3067":{"val":{"__isSmartRef__":true,"id":2952}},"3068":{"val":[]},"3069":{"val":[]},"3070":{},"3071":{},"3072":{"val":{"__isSmartRef__":true,"id":2954}},"3073":{"val":{"__isSmartRef__":true,"id":2953}},"3074":{"val":{"__isSmartRef__":true,"id":2953}},"3075":{"val":0},"3076":{"val":0},"3077":{"val":2},"3078":{"val":{"__isSmartRef__":true,"id":2952}},"3079":{"val":"statements"},"3080":{"val":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"3081":{"val":"length"},"3082":{"val":3},"3083":{"val":true},"3084":{"val":{"__isSmartRef__":true,"id":2952}},"3085":{"val":"statements"},"3086":{"val":[{"__isSmartRef__":true,"id":2947},{"__isSmartRef__":true,"id":2948},{"__isSmartRef__":true,"id":2949}]},"3087":{"val":2},"3088":{"val":{"__isSmartRef__":true,"id":2949}},"3089":{"val":{"__isSmartRef__":true,"id":2949}},"3090":{"val":{"__isSmartRef__":true,"id":2949}},"3091":{"val":"type"},"3092":{"val":"addition"},"3093":{"val":"addition"},"3094":{"val":true},"3095":{"val":{"__isSmartRef__":true,"id":2953}},"3096":{"val":"visit"},"3097":{"val":{"__isSmartRef__":true,"id":2949}},"3098":{"val":"summand1"},"3099":{"val":{"__isSmartRef__":true,"id":2950}},"3100":{"val":1},"3101":{"val":{"__isSmartRef__":true,"id":2953}},"3102":{"val":"stack"},"3103":{"val":[]},"3104":{"val":"pop"},"3105":{"val":10},"3106":{"val":10},"3107":{"func":null,"returnTriggered":false,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":null,"bp":null,"values":{"__isSmartRef__":true,"id":3108},"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"3108":{},"3109":{"mapping":{"__isSmartRef__":true,"id":3110},"returnTriggered":true,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":{"__isSmartRef__":true,"id":2933},"bp":null,"values":{"__isSmartRef__":true,"id":3111},"containingScope":{"__isSmartRef__":true,"id":2944},"arguments":[{"__isSmartRef__":true,"id":2950}],"caller":{"__isSmartRef__":true,"id":2944},"callee":{"__isSmartRef__":true,"id":3127},"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"3110":{"this":{"__isSmartRef__":true,"id":2953},"node":{"__isSmartRef__":true,"id":2950}},"3111":{"448-452":{"__isSmartRef__":true,"id":3112},"432-436":{"__isSmartRef__":true,"id":3113},"437-445":{"__isSmartRef__":true,"id":3114},"432-452":{"__isSmartRef__":true,"id":3115},"469-473":{"__isSmartRef__":true,"id":3116},"474-486":{"__isSmartRef__":true,"id":3117},"468-486":{"__isSmartRef__":true,"id":3118},"487-491":{"__isSmartRef__":true,"id":3119},"492-496":{"__isSmartRef__":true,"id":3120},"487-496":{"__isSmartRef__":true,"id":3121},"498-502":{"__isSmartRef__":true,"id":3122},"504-508":{"__isSmartRef__":true,"id":3123},"468-509":{"__isSmartRef__":true,"id":3124},"462-510":{"__isSmartRef__":true,"id":3125},"430-510":{"__isSmartRef__":true,"id":3126}},"3112":{"val":{"__isSmartRef__":true,"id":2950}},"3113":{"val":{"__isSmartRef__":true,"id":2953}},"3114":{"val":"lastNode"},"3115":{"val":{"__isSmartRef__":true,"id":2950}},"3116":{"val":{"__isSmartRef__":true,"id":2953}},"3117":{"val":"visitActions"},"3118":{"val":{"__isSmartRef__":true,"id":2954}},"3119":{"val":{"__isSmartRef__":true,"id":2950}},"3120":{"val":"type"},"3121":{"val":"variable"},"3122":{"val":{"__isSmartRef__":true,"id":2953}},"3123":{"val":{"__isSmartRef__":true,"id":2950}},"3124":{"val":1},"3125":{"val":1},"3126":{"val":1},"3127":{"mapping":{"__isSmartRef__":true,"id":3128},"returnTriggered":false,"breakTriggered":false,"continueTriggered":false,"findSetterMode":false,"breakAtCalls":false,"pc":{"__isSmartRef__":true,"id":3129},"bp":null,"values":{"__isSmartRef__":true,"id":3149},"containingScope":{"__isSmartRef__":true,"id":2944},"arguments":[{"__isSmartRef__":true,"id":2953},{"__isSmartRef__":true,"id":2950}],"caller":{"__isSmartRef__":true,"id":3109},"__LivelyClassName__":"lively.ast.Interpreter.Frame","__SourceModuleName__":"Global.lively.ast.Interpreter"},"3128":{"this":{"__isSmartRef__":true,"id":2954},"visitor":{"__isSmartRef__":true,"id":2953},"node":{"__isSmartRef__":true,"id":2950}},"3129":{"pos":[598,649],"property":{"__isSmartRef__":true,"id":3130},"recv":{"__isSmartRef__":true,"id":3131},"args":[{"__isSmartRef__":true,"id":3134}],"_parent":{"__isSmartRef__":true,"id":3141},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3130":{"pos":[612,616],"value":"push","_parent":{"__isSmartRef__":true,"id":3129},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3131":{"pos":[598,611],"slotName":{"__isSmartRef__":true,"id":3132},"obj":{"__isSmartRef__":true,"id":3133},"_parent":{"__isSmartRef__":true,"id":3129},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3132":{"pos":[606,611],"value":"stack","_parent":{"__isSmartRef__":true,"id":3131},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3133":{"pos":[598,605],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3131},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3134":{"pos":[617,648],"slotName":{"__isSmartRef__":true,"id":3135},"obj":{"__isSmartRef__":true,"id":3138},"_parent":{"__isSmartRef__":true,"id":3129},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3135":{"pos":[635,647],"slotName":{"__isSmartRef__":true,"id":3136},"obj":{"__isSmartRef__":true,"id":3137},"_parent":{"__isSmartRef__":true,"id":3134},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3136":{"pos":[640,647],"value":"varName","_parent":{"__isSmartRef__":true,"id":3135},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3137":{"pos":[635,639],"name":"node","_parent":{"__isSmartRef__":true,"id":3135},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3138":{"pos":[617,634],"slotName":{"__isSmartRef__":true,"id":3139},"obj":{"__isSmartRef__":true,"id":3140},"_parent":{"__isSmartRef__":true,"id":3134},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3139":{"pos":[625,634],"value":"variables","_parent":{"__isSmartRef__":true,"id":3138},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3140":{"pos":[617,624],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3138},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3141":{"pos":[585,650],"children":[{"__isSmartRef__":true,"id":3129}],"_parent":{"__isSmartRef__":true,"id":3142},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3142":{"pos":[568,661],"body":{"__isSmartRef__":true,"id":3141},"args":[{"__isSmartRef__":true,"id":3143},{"__isSmartRef__":true,"id":3144}],"_parent":{"__isSmartRef__":true,"id":3145},"prototype":{"__isSmartRef__":true,"id":3148},"lexicalScope":{"__isSmartRef__":true,"id":2944},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3143":{"pos":[569,576],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3142},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3144":{"pos":[578,582],"name":"node","_parent":{"__isSmartRef__":true,"id":3142},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3145":{"pos":[538,661],"name":"variable","property":{"__isSmartRef__":true,"id":3142},"_parent":{"__isSmartRef__":true,"id":3146},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3146":{"pos":[536,668],"properties":[{"__isSmartRef__":true,"id":3145}],"_parent":{"__isSmartRef__":true,"id":3147},"__LivelyClassName__":"lively.ast.ObjectLiteral","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3147":{"pos":[517,668],"name":"visitActions","property":{"__isSmartRef__":true,"id":3146},"_parent":{"__isSmartRef__":true,"id":2919},"__LivelyClassName__":"lively.ast.ObjProperty","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3148":{},"3149":{"598-605":{"__isSmartRef__":true,"id":3150},"606-611":{"__isSmartRef__":true,"id":3151},"598-611":{"__isSmartRef__":true,"id":3152},"612-616":{"__isSmartRef__":true,"id":3153},"617-624":{"__isSmartRef__":true,"id":3154},"625-634":{"__isSmartRef__":true,"id":3155},"617-634":{"__isSmartRef__":true,"id":3156},"635-639":{"__isSmartRef__":true,"id":3157},"640-647":{"__isSmartRef__":true,"id":3158},"635-647":{"__isSmartRef__":true,"id":3159},"617-648":{"__isSmartRef__":true,"id":3160},"598-649":{"__isSmartRef__":true,"id":3161},"585-650":{"__isSmartRef__":true,"id":3162}},"3150":{"val":{"__isSmartRef__":true,"id":2953}},"3151":{"val":"stack"},"3152":{"val":[]},"3153":{"val":"push"},"3154":{"val":{"__isSmartRef__":true,"id":2953}},"3155":{"val":"variables"},"3156":{"val":[]},"3157":{"val":{"__isSmartRef__":true,"id":2950}},"3158":{"val":"varName"},"3159":{"val":"a"},"3160":{"val":10},"3161":{"val":1},"3162":{"val":1},"3163":{"pos":[1135,1136],"name":"undefined","_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3164":{"pos":[1140,1169],"children":[{"__isSmartRef__":true,"id":3165}],"_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3165":{"pos":[1140,1169],"name":"result","val":{"__isSmartRef__":true,"id":3166},"_parent":{"__isSmartRef__":true,"id":3164},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3166":{"pos":[1149,1169],"property":{"__isSmartRef__":true,"id":3167},"recv":{"__isSmartRef__":true,"id":3168},"args":[],"_parent":{"__isSmartRef__":true,"id":3165},"__LivelyClassName__":"lively.ast.Send","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3167":{"pos":[1164,1167],"value":"pop","_parent":{"__isSmartRef__":true,"id":3166},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3168":{"pos":[1149,1163],"slotName":{"__isSmartRef__":true,"id":3169},"obj":{"__isSmartRef__":true,"id":3170},"_parent":{"__isSmartRef__":true,"id":3166},"__LivelyClassName__":"lively.ast.GetSlot","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3169":{"pos":[1158,1163],"value":"stack","_parent":{"__isSmartRef__":true,"id":3168},"__LivelyClassName__":"lively.ast.String","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3170":{"pos":[1150,1157],"name":"visitor","_parent":{"__isSmartRef__":true,"id":3168},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3171":{"pos":[1171,1177],"name":"result","_parent":{"__isSmartRef__":true,"id":2880},"__LivelyClassName__":"lively.ast.Variable","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3172":{"pos":[18,1181],"body":{"__isSmartRef__":true,"id":2880},"args":[],"_parent":{"__isSmartRef__":true,"id":3173},"__LivelyClassName__":"lively.ast.Function","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3173":{"pos":[0,1181],"name":"anonymous","val":{"__isSmartRef__":true,"id":3172},"_parent":{"__isSmartRef__":true,"id":3174},"__LivelyClassName__":"lively.ast.VarDeclaration","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3174":{"pos":[0,1181],"children":[{"__isSmartRef__":true,"id":3173}],"source":"function anonymous(){\nvar first = { type : \"assign\", varName : \"a\", value : 10 };\nvar second = { type : \"assign\", varName : \"b\", value : 5 };\nvar third = { type : \"addition\", summand1 : { type : \"variable\", varName : \"a\" }, summand2 : { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvar result = visitor.stack.pop();\nresult;\n\n}","__LivelyClassName__":"lively.ast.Sequence","__SourceModuleName__":"Global.lively.ast.generated.Nodes"},"3175":{"_contextSubmorphs":[],"_contextSubmorphsPos":{"__isSmartRef__":true,"id":3176},"this":{"__isSmartRef__":true,"id":3177}},"3176":{},"3177":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3178},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3179}],"eventHandler":{"__isSmartRef__":true,"id":3181},"_ClipMode":"visible","derivationIds":[],"id":"1EB692B3-8343-4421-AC13-A82A71EA5BB4","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"__serializedExpressions__":["_TextColor"],"evalEnabled":false,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)"},"3178":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":1,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(200.0,100.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(243,243,243)"},"3179":{"style":{"__isSmartRef__":true,"id":3180},"chunkOwner":{"__isSmartRef__":true,"id":3177},"_id":"_709","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3180":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3181":{"morph":{"__isSmartRef__":true,"id":3177},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3182":{"first":[null,{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183}],"second":[null,null,{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184}],"third":[null,null,null,{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185}],"program":[null,null,null,null,{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188},{"__isSmartRef__":true,"id":3188}],"visitor":[null,null,null,null,null,{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189},{"__isSmartRef__":true,"id":3189}],"i":[null,null,null,null,null,null,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,3,3],"node":[null,null,null,null,null,null,null,null,{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185},{"__isSmartRef__":true,"id":3185}],"summand1":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,10,10,10,10,10,10,10,10],"summand2":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,5,5,5,5,5,5],"result":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,15]},"3183":{"type":"assign","varName":"a","value":10},"3184":{"type":"assign","varName":"b","value":5},"3185":{"type":"addition","summand1":{"__isSmartRef__":true,"id":3186},"summand2":{"__isSmartRef__":true,"id":3187}},"3186":{"type":"variable","varName":"a"},"3187":{"type":"variable","varName":"b"},"3188":{"type":"sequence","statements":[{"__isSmartRef__":true,"id":3183},{"__isSmartRef__":true,"id":3184},{"__isSmartRef__":true,"id":3185}]},"3189":{"variables":[],"stack":[],"visitActions":{"__isSmartRef__":true,"id":3190},"lastNode":{"__isSmartRef__":true,"id":3187}},"3190":{},"3191":{"length":1},"3192":{"length":1},"3193":{"onrestore":{"__isSmartRef__":true,"id":3194},"reset":{"__isSmartRef__":true,"id":3202},"onPrepare":{"__isSmartRef__":true,"id":3206},"onRun":{"__isSmartRef__":true,"id":3210},"setFrame":{"__isSmartRef__":true,"id":3214},"valueCopy":{"__isSmartRef__":true,"id":3218},"cachePeriodLength":{"__isSmartRef__":true,"id":3222},"showItems":{"__isSmartRef__":true,"id":3226},"highlightPosition":{"__isSmartRef__":true,"id":3230},"writeCache":{"__isSmartRef__":true,"id":3234},"readCacheInto":{"__isSmartRef__":true,"id":3238},"writeTimeline":{"__isSmartRef__":true,"id":3242},"onSliderMove":{"__isSmartRef__":true,"id":3246},"onSmallSliderMove":{"__isSmartRef__":true,"id":3250},"renderObjectGraph":{"__isSmartRef__":true,"id":3254},"onStep":{"__isSmartRef__":true,"id":3258}},"3194":{"varMapping":{"__isSmartRef__":true,"id":3195},"source":"function onrestore() {\n module('lively.ast.Morphic').load(true)\n \n var self = this;\n cop.createLayer('LiveInterpreterLayer').refineObject(Global.lively.ast, {\n halt: function(frame) {\n self.setFrame(frame);\n return true\n }\n });\n\n cop.createLayer('IntelligentSlider').refineClass(lively.morphic.Slider, {\n onMouseUp : function(proceed, evt) {\n this.isBeingDragged = false;\n proceed(evt);\n },\n onMouseDown : function(proceed, evt) {\n this.isBeingDragged = true; \n proceed(evt); \n }\n });\n\n}","funcProperties":{"__isSmartRef__":true,"id":3200},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3195":{"this":{"__isSmartRef__":true,"id":1},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3196}},"3196":{"$super":{"__isSmartRef__":true,"id":3197}},"3197":{"varMapping":{"__isSmartRef__":true,"id":3198},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3199},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3198":{"obj":{"__isSmartRef__":true,"id":1},"name":"onrestore"},"3199":{},"3200":{"timestamp":{"__isSmartRef__":true,"id":3201},"user":"erp","tags":[]},"3201":{"isSerializedDate":true,"string":"Wed Oct 31 2012 12:48:27 GMT+0100 (CET)"},"3202":{"varMapping":{"__isSmartRef__":true,"id":3203},"source":"function reset() {\n this.doNotSerialize = ['lastFrame', 'environmentCache'];\n}","funcProperties":{"__isSmartRef__":true,"id":3204},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3203":{"this":{"__isSmartRef__":true,"id":1}},"3204":{"timestamp":{"__isSmartRef__":true,"id":3205},"user":"erp","tags":[]},"3205":{"isSerializedDate":true,"string":"Wed Oct 31 2012 16:08:45 GMT+0100 (CET)"},"3206":{"varMapping":{"__isSmartRef__":true,"id":3207},"source":"function onPrepare() {\n\n this.sliderStep = 3;\n this.maximumSteps = 0;\n this.environmentCache = [];\n this.timeline = {};\n this.oldStepsToRun = this.stepsToRun + 1; //resets the next steps leap length\n\n this.functionSource = \"function(){\\n\"\n + this.get(\"functionEditor\").textString\n + \"\\n}\";\n this.functionToDisplay = Function.fromString(this.functionSource)\n .forInterpretation();\n\n var context = new lively.morphic.Text(pt(0,0).extent(pt(200,100)),\"\");\n\n var self = this;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n this.writeCache(0, context, this.lastFrame);\n\n while(self.lastFrame.hasNextStatement()) {\n this.maximumSteps += 1;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.lastFrame.stepToNextStatement();\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n this.writeTimeline(this.maximumSteps, this.lastFrame);\n if(this.maximumSteps % this.cachePeriodLength() == 0) {\n this.writeCache(this.maximumSteps / this.cachePeriodLength(),\n context,\n this.lastFrame);\n }\n };\n\n\n\n // Restart the whole thing\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n this.get(\"timeline2\").renderTimeline();\n\n //To display immediate effect.\n this.onRun();\n\n}","funcProperties":{"__isSmartRef__":true,"id":3208},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3207":{"this":{"__isSmartRef__":true,"id":1}},"3208":{"timestamp":{"__isSmartRef__":true,"id":3209},"user":"erp","tags":[]},"3209":{"isSerializedDate":true,"string":"Fri Jan 04 2013 15:17:22 GMT+0100 (CET)"},"3210":{"varMapping":{"__isSmartRef__":true,"id":3211},"source":"function onRun() {\n var self = this;\n var context = this.get('contextOfFunction');\n\n this.get(\"timeline2\").setColumnNumber(this.stepsToRun);\n this.get(\"timeline2\").highlightColumn();\n\n // Code to optimize cache usage by minimizing cache usage\n var stepDifference = this.stepsToRun - this.oldStepsToRun;\n if(stepDifference < 0 || stepDifference > this.cachePeriodLength) {\n // We are going backwards so we have to restart the interpretation,\n // or we have made such a huge step, that it is probably faster\n // to load content from cache instead of recalculating it.\n context.submorphs.invoke('remove');\n\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n self.functionToDisplay.startHalted().apply(context, []);\n self.lastFrame.setThis(context);\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n\n var executionPhase = Math.round((this.stepsToRun / this.cachePeriodLength()) - 0.5);\n this.readCacheInto(executionPhase, this.lastFrame, context);\n self.steps = executionPhase * this.cachePeriodLength();\n } else {\n // We only made a small leap forward and can just continue\n // running the interpretation.\n self.steps = self.oldStepsToRun;\n };\n\n\n while(this.steps < this.stepsToRun) {\n this.steps += 1;\n cop.withLayers([LiveInterpreterLayer], function() {\n try {\n lively.ast.doWithHalt(function() {\n self.lastFrame.stepToNextStatement();\n });\n } catch(e) {\n if (e.isUnwindException) {}\n };\n })\n };\n\n // To enable this you have to add a textbox with\n // the name used in showItems\n // this.showItems();\n\n if(this.lastFrame) {\n this.highlightPosition(this.lastFrame.pc.pos);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":3212},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3211":{"this":{"__isSmartRef__":true,"id":1}},"3212":{"timestamp":{"__isSmartRef__":true,"id":3213},"user":"erp","tags":[]},"3213":{"isSerializedDate":true,"string":"Sat Jan 05 2013 11:51:39 GMT+0100 (CET)"},"3214":{"varMapping":{"__isSmartRef__":true,"id":3215},"source":"function setFrame(frame) {\n this.lastFrame = frame;\n}","funcProperties":{"__isSmartRef__":true,"id":3216},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3215":{"this":{"__isSmartRef__":true,"id":1}},"3216":{"timestamp":{"__isSmartRef__":true,"id":3217},"user":"erp","tags":[]},"3217":{"isSerializedDate":true,"string":"Wed Oct 31 2012 12:46:51 GMT+0100 (CET)"},"3218":{"varMapping":{"__isSmartRef__":true,"id":3219},"source":"function valueCopy(obj) {\n /* if(obj == null || typeof(obj) != 'object') {\n return obj;\n }\n\n if(obj.submorphs != undefined) {\n return obj.copy();\n }\n\n var temp = obj.constructor();\n if(temp == undefined) {\n temp = {};\n }\n \n for(var key in obj) {\n temp[key] = this.valueCopy(obj[key]);\n }\n \n return temp; */\n var copyTarget = {};\n var tempVariables = {};\n for(var key in obj) {\n if(key != \"self\" && key != \"this\" && obj[key] != undefined) {\n copyTarget[key] = obj[key];\n } else {\n tempVariables[key] = obj[key];\n }\n };\n \n /*var serializer = ObjectGraphLinearizer.forNewLivelyCopy();\n var json = serializer.serialize(copyTarget);\n var result = serializer.deserialize(JSON.parse(json));\n for(var key in tempVariables) {\n result[key] = tempVariables[key];\n };\n return result;*/\n \n var tmpMorph = new Morph();\n tmpMorph.xxx = copyTarget;\n var result = tmpMorph.copy().xxx;\n\n for(var key in tempVariables) {\n result[key] = tempVariables[key];\n };\n return result;\n \n \n}","funcProperties":{"__isSmartRef__":true,"id":3220},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3219":{"this":{"__isSmartRef__":true,"id":1}},"3220":{"timestamp":{"__isSmartRef__":true,"id":3221},"user":"erp","tags":[]},"3221":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:24:46 GMT+0100 (CET)"},"3222":{"varMapping":{"__isSmartRef__":true,"id":3223},"source":"function cachePeriodLength() {\n return 150;\n}","funcProperties":{"__isSmartRef__":true,"id":3224},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3223":{"this":{"__isSmartRef__":true,"id":1}},"3224":{"timestamp":{"__isSmartRef__":true,"id":3225},"user":"erp","tags":[]},"3225":{"isSerializedDate":true,"string":"Wed Jan 02 2013 16:26:29 GMT+0100 (CET)"},"3226":{"varMapping":{"__isSmartRef__":true,"id":3227},"source":"function showItems() {\n this.get('FlowIntrospection').setTextString(\n this.lastFrame.listItemsForIntrospection().inject(\n \"\",\n function(string, frameElement) {\n return string \n + (frameElement.string || String(\"moo\")) \n + \"\\n\";\n }\n )\n );\n}","funcProperties":{"__isSmartRef__":true,"id":3228},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3227":{"this":{"__isSmartRef__":true,"id":1}},"3228":{"timestamp":{"__isSmartRef__":true,"id":3229},"user":"erp","tags":[]},"3229":{"isSerializedDate":true,"string":"Wed Jan 02 2013 16:24:43 GMT+0100 (CET)"},"3230":{"varMapping":{"__isSmartRef__":true,"id":3231},"source":"function highlightPosition(position) {\n var style = { backgroundColor: Color.rgb(255,255,255) };\n this.get(\"functionEditor\").emphasizeAll(style);\n\n style = { backgroundColor: Color.rgb(255,255,127) };\n \n // We substract -22 from the beginning and the end to count for the\n // added function(){\\n part in onPrepare\n this.get(\"functionEditor\").emphasize(style, position[0]-22, position[1]-22);\n}","funcProperties":{"__isSmartRef__":true,"id":3232},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3231":{"this":{"__isSmartRef__":true,"id":1}},"3232":{"timestamp":{"__isSmartRef__":true,"id":3233},"user":"erp","tags":[]},"3233":{"isSerializedDate":true,"string":"Thu Jan 03 2013 17:11:33 GMT+0100 (CET)"},"3234":{"varMapping":{"__isSmartRef__":true,"id":3235},"source":"function writeCache(step, context, frame) {\n \n var newMapping = frame.mapping;\n newMapping[\"_contextSubmorphs\"] = [];\n newMapping[\"_contextSubmorphsPos\"] = {};\n var ctx = context.submorphs.each(function(each) {\n newMapping[\"_contextSubmorphs\"].push(each);\n newMapping[\"_contextSubmorphsPos\"][each] = each._Position;\n });\n newMapping = this.valueCopy(frame.mapping);\n // add extra mapping variable for submorphs\n // copy everything in one pass\n // during reading call addMorph\n\n this.environmentCache[step] = {\n values : this.valueCopy(frame.values),\n context : ctx,\n pc : frame.pc,\n mapping : newMapping\n };\n\n}","funcProperties":{"__isSmartRef__":true,"id":3236},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3235":{"this":{"__isSmartRef__":true,"id":1}},"3236":{"timestamp":{"__isSmartRef__":true,"id":3237},"user":"erp","tags":[]},"3237":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:14:33 GMT+0100 (CET)"},"3238":{"varMapping":{"__isSmartRef__":true,"id":3239},"source":"function readCacheInto(step, frame, context) {\n if(step < 0) {\n step = 0;\n }\n var env = this.environmentCache[step];\n frame.setPC(env[\"pc\"]);\n frame.values = this.valueCopy(env[\"values\"]);\n frame.mapping = this.valueCopy(env[\"mapping\"]);\n frame.mapping[\"this\"] = context;\n \n frame.mapping[\"_contextSubmorphs\"].each(function(each) {\n context.addMorph(each);\n each.setPosition(env[\"mapping\"][\"_contextSubmorphsPos\"][each]);\n });\n\n}","funcProperties":{"__isSmartRef__":true,"id":3240},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3239":{"this":{"__isSmartRef__":true,"id":1}},"3240":{"timestamp":{"__isSmartRef__":true,"id":3241},"user":"erp","tags":[]},"3241":{"isSerializedDate":true,"string":"Mon Jan 07 2013 15:14:44 GMT+0100 (CET)"},"3242":{"varMapping":{"__isSmartRef__":true,"id":3243},"source":"function writeTimeline(step, frame) {\n\n for(var each in frame.mapping) {\n if(typeof(frame.mapping[each]) != \"function\" && each != \"this\"\n && each != \"_contextSubmorphs\" && each != \"_contextSubmorphsPos\") {\n this.timeline[each] = this.timeline[each] || [];\n this.timeline[each][step] = frame.mapping[each];\n }\n };\n\n}","funcProperties":{"__isSmartRef__":true,"id":3244},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3243":{"this":{"__isSmartRef__":true,"id":1}},"3244":{"timestamp":{"__isSmartRef__":true,"id":3245},"user":"erp","tags":[]},"3245":{"isSerializedDate":true,"string":"Mon Jan 07 2013 16:39:53 GMT+0100 (CET)"},"3246":{"varMapping":{"__isSmartRef__":true,"id":3247},"source":"function onSliderMove(position) {\n this.sliderStep -= 1;\n this.sliderObjectGraphStep -= 1;\n var stepsSlider = this.get(\"stepsSlider\");\n if(!stepsSlider.isBeingDragged && this.sliderStep <= 0) {\n this.oldStepsToRun = this.stepsToRun;\n this.stepsToRun = Math.round(this.maximumSteps * position);\n this.sliderStep = 2;\n \n this.smallSliderBaseStep = this.stepsToRun;\n this.get(\"smallStepsSlider\").value = 0.5;\n this.onRun();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3248},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3247":{"this":{"__isSmartRef__":true,"id":1}},"3248":{"timestamp":{"__isSmartRef__":true,"id":3249},"user":"erp","tags":[]},"3249":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:16:39 GMT+0100 (CET)"},"3250":{"varMapping":{"__isSmartRef__":true,"id":3251},"source":"function onSmallSliderMove(position) {\n this.sliderStep -= 1;\n this.sliderObjectGraphStep -= 1;\n\n var stepsSlider = this.get(\"smallStepsSlider\");\n if(!stepsSlider.isBeingDragged && this.sliderStep <= 0) {\n this.oldStepsToRun = this.stepsToRun;\n this.stepsToRun = this.smallSliderBaseStep\n + Math.round(50 * (position - 0.5));\n this.stepsToRun = this.stepsToRun < 0 ? 0 : this.stepsToRun;\n this.sliderStep = 2;\n this.onRun();\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3252},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3251":{"this":{"__isSmartRef__":true,"id":1}},"3252":{"timestamp":{"__isSmartRef__":true,"id":3253},"user":"erp","tags":[]},"3253":{"isSerializedDate":true,"string":"Sun Jan 06 2013 11:16:35 GMT+0100 (CET)"},"3254":{"varMapping":{"__isSmartRef__":true,"id":3255},"source":"function renderObjectGraph() {\n var variables = {};\n for(var k in this.lastFrame.mapping) {\n if(k != \"this\" && k != \"self\" && k != \"_contextSubmorphs\"\n && k != \"_contextSubmorphsPos\") {\n variables[k] = this.lastFrame.mapping[k];\n }\n };\n \n var sto = $morph(\"SeeTheObjects\");\n if(sto) {\n sto.renderVariables(variables);\n };\n}","funcProperties":{"__isSmartRef__":true,"id":3256},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3255":{"this":{"__isSmartRef__":true,"id":1}},"3256":{"timestamp":{"__isSmartRef__":true,"id":3257},"user":"erp","tags":[]},"3257":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:15:45 GMT+0100 (CET)"},"3258":{"varMapping":{"__isSmartRef__":true,"id":3259},"source":"function onStep() {\n this.stepsToRun += 1;\n this.onRun();\n this.renderObjectGraph();\n}","funcProperties":{"__isSmartRef__":true,"id":3260},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3259":{"this":{"__isSmartRef__":true,"id":1}},"3260":{"timestamp":{"__isSmartRef__":true,"id":3261},"user":"erp","tags":[]},"3261":{"isSerializedDate":true,"string":"Mon Jan 07 2013 20:23:28 GMT+0100 (CET)"},"3262":{"submorphs":[{"__isSmartRef__":true,"id":3263},{"__isSmartRef__":true,"id":3533},{"__isSmartRef__":true,"id":3558},{"__isSmartRef__":true,"id":3583},{"__isSmartRef__":true,"id":3631}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3656},"eventHandler":{"__isSmartRef__":true,"id":3657},"_ClipMode":"visible","derivationIds":[],"id":"515EED1D-5027-4679-9DC3-E353AF0AED76","droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":3658},"LK2":true,"targetMorph":{"__isSmartRef__":true,"id":3263},"reframeHandle":{"__isSmartRef__":true,"id":3631},"bottomReframeHandle":{"__isSmartRef__":true,"id":3533},"rightReframeHandle":{"__isSmartRef__":true,"id":3558},"titleBar":{"__isSmartRef__":true,"id":3583},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":0},"highlighted":false,"isBeingDragged":false,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(1379.0,1086.0)","contentOffset":"lively.pt(4.0,22.0)","prevDragPos":"lively.pt(1127.0,927.0)"},"3263":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3264},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3265},{"__isSmartRef__":true,"id":3267},{"__isSmartRef__":true,"id":3269},{"__isSmartRef__":true,"id":3271},{"__isSmartRef__":true,"id":3273},{"__isSmartRef__":true,"id":3275},{"__isSmartRef__":true,"id":3277},{"__isSmartRef__":true,"id":3279},{"__isSmartRef__":true,"id":3281},{"__isSmartRef__":true,"id":3283},{"__isSmartRef__":true,"id":3285},{"__isSmartRef__":true,"id":3287},{"__isSmartRef__":true,"id":3289},{"__isSmartRef__":true,"id":3291},{"__isSmartRef__":true,"id":3293},{"__isSmartRef__":true,"id":3295},{"__isSmartRef__":true,"id":3297},{"__isSmartRef__":true,"id":3299},{"__isSmartRef__":true,"id":3301},{"__isSmartRef__":true,"id":3303},{"__isSmartRef__":true,"id":3305},{"__isSmartRef__":true,"id":3307},{"__isSmartRef__":true,"id":3309},{"__isSmartRef__":true,"id":3311},{"__isSmartRef__":true,"id":3313},{"__isSmartRef__":true,"id":3315},{"__isSmartRef__":true,"id":3317},{"__isSmartRef__":true,"id":3319},{"__isSmartRef__":true,"id":3321},{"__isSmartRef__":true,"id":3323},{"__isSmartRef__":true,"id":3325},{"__isSmartRef__":true,"id":3327},{"__isSmartRef__":true,"id":3329},{"__isSmartRef__":true,"id":3331},{"__isSmartRef__":true,"id":3333},{"__isSmartRef__":true,"id":3335},{"__isSmartRef__":true,"id":3337},{"__isSmartRef__":true,"id":3339},{"__isSmartRef__":true,"id":3341},{"__isSmartRef__":true,"id":3343},{"__isSmartRef__":true,"id":3345},{"__isSmartRef__":true,"id":3347},{"__isSmartRef__":true,"id":3349},{"__isSmartRef__":true,"id":3351},{"__isSmartRef__":true,"id":3353},{"__isSmartRef__":true,"id":3355},{"__isSmartRef__":true,"id":3357},{"__isSmartRef__":true,"id":3359},{"__isSmartRef__":true,"id":3361},{"__isSmartRef__":true,"id":3363},{"__isSmartRef__":true,"id":3365},{"__isSmartRef__":true,"id":3367},{"__isSmartRef__":true,"id":3369},{"__isSmartRef__":true,"id":3371},{"__isSmartRef__":true,"id":3373},{"__isSmartRef__":true,"id":3375},{"__isSmartRef__":true,"id":3377},{"__isSmartRef__":true,"id":3379},{"__isSmartRef__":true,"id":3381},{"__isSmartRef__":true,"id":3383},{"__isSmartRef__":true,"id":3385},{"__isSmartRef__":true,"id":3387},{"__isSmartRef__":true,"id":3389},{"__isSmartRef__":true,"id":3391},{"__isSmartRef__":true,"id":3393},{"__isSmartRef__":true,"id":3395},{"__isSmartRef__":true,"id":3397},{"__isSmartRef__":true,"id":3399},{"__isSmartRef__":true,"id":3401},{"__isSmartRef__":true,"id":3403},{"__isSmartRef__":true,"id":3405},{"__isSmartRef__":true,"id":3407},{"__isSmartRef__":true,"id":3409},{"__isSmartRef__":true,"id":3411},{"__isSmartRef__":true,"id":3413},{"__isSmartRef__":true,"id":3415},{"__isSmartRef__":true,"id":3417},{"__isSmartRef__":true,"id":3419},{"__isSmartRef__":true,"id":3421},{"__isSmartRef__":true,"id":3423},{"__isSmartRef__":true,"id":3425},{"__isSmartRef__":true,"id":3427},{"__isSmartRef__":true,"id":3429},{"__isSmartRef__":true,"id":3431},{"__isSmartRef__":true,"id":3433},{"__isSmartRef__":true,"id":3435},{"__isSmartRef__":true,"id":3437},{"__isSmartRef__":true,"id":3439},{"__isSmartRef__":true,"id":3441},{"__isSmartRef__":true,"id":3443},{"__isSmartRef__":true,"id":3445},{"__isSmartRef__":true,"id":3447},{"__isSmartRef__":true,"id":3449},{"__isSmartRef__":true,"id":3451},{"__isSmartRef__":true,"id":3453},{"__isSmartRef__":true,"id":3455},{"__isSmartRef__":true,"id":3457},{"__isSmartRef__":true,"id":3459},{"__isSmartRef__":true,"id":3461},{"__isSmartRef__":true,"id":3463},{"__isSmartRef__":true,"id":3465},{"__isSmartRef__":true,"id":3467},{"__isSmartRef__":true,"id":3469},{"__isSmartRef__":true,"id":3471},{"__isSmartRef__":true,"id":3473},{"__isSmartRef__":true,"id":3475},{"__isSmartRef__":true,"id":3477},{"__isSmartRef__":true,"id":3479},{"__isSmartRef__":true,"id":3481},{"__isSmartRef__":true,"id":3483},{"__isSmartRef__":true,"id":3485},{"__isSmartRef__":true,"id":3487},{"__isSmartRef__":true,"id":3489},{"__isSmartRef__":true,"id":3491},{"__isSmartRef__":true,"id":3493},{"__isSmartRef__":true,"id":3495},{"__isSmartRef__":true,"id":3497},{"__isSmartRef__":true,"id":3499},{"__isSmartRef__":true,"id":3501},{"__isSmartRef__":true,"id":3503},{"__isSmartRef__":true,"id":3505},{"__isSmartRef__":true,"id":3507},{"__isSmartRef__":true,"id":3509},{"__isSmartRef__":true,"id":3511},{"__isSmartRef__":true,"id":3513},{"__isSmartRef__":true,"id":3515},{"__isSmartRef__":true,"id":3517},{"__isSmartRef__":true,"id":3519},{"__isSmartRef__":true,"id":3521},{"__isSmartRef__":true,"id":3523},{"__isSmartRef__":true,"id":3525},{"__isSmartRef__":true,"id":3527}],"eventHandler":{"__isSmartRef__":true,"id":3529},"_ClipMode":"auto","derivationIds":[],"id":"B1916196-B1CB-41A7-85BC-0F51A593B56C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3262},"layout":{"__isSmartRef__":true,"id":3530},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":3531}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"accessibleInInactiveWindow":true,"parseErrors":null,"_lastSyntaxHighlightTime":111,"previousSelection":[0,1136],"charsReplaced":"var first = { type : \"assign\", varName : \"a\", value : 10 };\nvar second = { type : \"assign\", varName : \"b\", value : 5 };\nvar third = { type : \"addition\", summand1 : { type : \"variable\", varName : \"a\" }, summand2 : { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : []\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvisitor.stack.pop();\n","lastFindLoc":1136,"isBeingDragged":false,"__serializedExpressions__":["_TextColor","_Position"],"textString":"var first = { type : \"assign\", varName : \"a\", value : 10 };\nvar second = { type : \"assign\", varName : \"b\", value : 5 };\nvar third = { type : \"addition\", summand1 : { type : \"variable\", varName : \"a\" }, summand2 : { type: \"variable\", varName : \"b\"} };\n\nvar program = { type : \"sequence\", statements : [first, second, third] };\n\nvar visitor = {\n variables : [],\n stack : [],\n visit : function(node) {\n\tthis.lastNode = node;\n return this.visitActions[node.type](this, node);\n },\n visitActions : {\n \"variable\" : function(visitor, node) {\n visitor.stack.push(visitor.variables[node.varName]);\n }\n\n }\n};\n\nfor(var i = 0; i < program.statements.length; i++) {\n\tvar node = program.statements[i];\n\t\n\tif(node.type == \"addition\") {\n\t\tvisitor.visit(node.summand1);\n\t \tvar summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \tvar summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t} else if(node.type == \"assign\") {\n\t\tvisitor.variables[node.varName] = node.value;\n\t} else {\n\t\tvisitor.visit(node);\n\t};\n\t\n};\nvisitor.stack.pop();\n","__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(4.0,22.0)"},"3264":{"_BorderWidth":1,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(500.0,200.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(95,94,95)","_Fill":"Color.rgb(243,243,243)"},"3265":{"style":{"__isSmartRef__":true,"id":3266},"chunkOwner":{"__isSmartRef__":true,"id":3263},"_id":"_6","storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3266":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3267":{"_id":"_174","style":{"__isSmartRef__":true,"id":3268},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" first = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3268":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3269":{"_id":"_175","style":{"__isSmartRef__":true,"id":3270},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3270":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3271":{"_id":"_176","style":{"__isSmartRef__":true,"id":3272},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3272":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3273":{"_id":"_177","style":{"__isSmartRef__":true,"id":3274},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3274":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3275":{"_id":"_178","style":{"__isSmartRef__":true,"id":3276},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3276":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3277":{"_id":"_179","style":{"__isSmartRef__":true,"id":3278},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3278":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3279":{"_id":"_180","style":{"__isSmartRef__":true,"id":3280},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3280":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3281":{"_id":"_181","style":{"__isSmartRef__":true,"id":3282},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"10","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3282":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"3283":{"_id":"_182","style":{"__isSmartRef__":true,"id":3284},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3284":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3285":{"_id":"_183","style":{"__isSmartRef__":true,"id":3286},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3286":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3287":{"_id":"_184","style":{"__isSmartRef__":true,"id":3288},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3288":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3289":{"_id":"_185","style":{"__isSmartRef__":true,"id":3290},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3290":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3291":{"_id":"_186","style":{"__isSmartRef__":true,"id":3292},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" second = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3292":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3293":{"_id":"_187","style":{"__isSmartRef__":true,"id":3294},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3294":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3295":{"_id":"_188","style":{"__isSmartRef__":true,"id":3296},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3296":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3297":{"_id":"_189","style":{"__isSmartRef__":true,"id":3298},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3298":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3299":{"_id":"_190","style":{"__isSmartRef__":true,"id":3300},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3300":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3301":{"_id":"_191","style":{"__isSmartRef__":true,"id":3302},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3302":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3303":{"_id":"_192","style":{"__isSmartRef__":true,"id":3304},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", value : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3304":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3305":{"_id":"_193","style":{"__isSmartRef__":true,"id":3306},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"5","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3306":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"3307":{"_id":"_194","style":{"__isSmartRef__":true,"id":3308},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3308":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3309":{"_id":"_195","style":{"__isSmartRef__":true,"id":3310},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3310":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3311":{"_id":"_196","style":{"__isSmartRef__":true,"id":3312},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3312":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3313":{"_id":"_197","style":{"__isSmartRef__":true,"id":3314},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3314":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3315":{"_id":"_198","style":{"__isSmartRef__":true,"id":3316},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" third = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3316":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3317":{"_id":"_199","style":{"__isSmartRef__":true,"id":3318},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3318":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3319":{"_id":"_200","style":{"__isSmartRef__":true,"id":3320},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3320":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3321":{"_id":"_201","style":{"__isSmartRef__":true,"id":3322},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3322":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3323":{"_id":"_202","style":{"__isSmartRef__":true,"id":3324},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", summand1 : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3324":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3325":{"_id":"_203","style":{"__isSmartRef__":true,"id":3326},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3326":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3327":{"_id":"_204","style":{"__isSmartRef__":true,"id":3328},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3328":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3329":{"_id":"_205","style":{"__isSmartRef__":true,"id":3330},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3330":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3331":{"_id":"_206","style":{"__isSmartRef__":true,"id":3332},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3332":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3333":{"_id":"_207","style":{"__isSmartRef__":true,"id":3334},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"a\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3334":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3335":{"_id":"_208","style":{"__isSmartRef__":true,"id":3336},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3336":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3337":{"_id":"_209","style":{"__isSmartRef__":true,"id":3338},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3338":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3339":{"_id":"_210","style":{"__isSmartRef__":true,"id":3340},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", summand2 : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3340":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3341":{"_id":"_211","style":{"__isSmartRef__":true,"id":3342},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3342":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3343":{"_id":"_212","style":{"__isSmartRef__":true,"id":3344},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3344":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3345":{"_id":"_213","style":{"__isSmartRef__":true,"id":3346},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"type:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3346":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(139,0,0)"},"3347":{"_id":"_214","style":{"__isSmartRef__":true,"id":3348},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3348":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3349":{"_id":"_215","style":{"__isSmartRef__":true,"id":3350},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3350":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3351":{"_id":"_216","style":{"__isSmartRef__":true,"id":3352},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", varName : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3352":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3353":{"_id":"_217","style":{"__isSmartRef__":true,"id":3354},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"b\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3354":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3355":{"_id":"_218","style":{"__isSmartRef__":true,"id":3356},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3356":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3357":{"_id":"_219","style":{"__isSmartRef__":true,"id":3358},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3358":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3359":{"_id":"_220","style":{"__isSmartRef__":true,"id":3360},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3360":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3361":{"_id":"_221","style":{"__isSmartRef__":true,"id":3362},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3362":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3363":{"_id":"_222","style":{"__isSmartRef__":true,"id":3364},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3364":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3365":{"_id":"_223","style":{"__isSmartRef__":true,"id":3366},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" program = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3366":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3367":{"_id":"_224","style":{"__isSmartRef__":true,"id":3368},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3368":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3369":{"_id":"_225","style":{"__isSmartRef__":true,"id":3370},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" type : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3370":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3371":{"_id":"_226","style":{"__isSmartRef__":true,"id":3372},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"sequence\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3372":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3373":{"_id":"_227","style":{"__isSmartRef__":true,"id":3374},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", statements : [first, second, third] ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3374":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3375":{"_id":"_228","style":{"__isSmartRef__":true,"id":3376},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3376":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3377":{"_id":"_229","style":{"__isSmartRef__":true,"id":3378},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3378":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3379":{"_id":"_230","style":{"__isSmartRef__":true,"id":3380},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3380":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3381":{"_id":"_231","style":{"__isSmartRef__":true,"id":3382},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" visitor = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3382":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3383":{"_id":"_232","style":{"__isSmartRef__":true,"id":3384},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3384":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3385":{"_id":"_233","style":{"__isSmartRef__":true,"id":3386},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n variables : [],\n stack : [],\n visit : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3386":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3387":{"_id":"_234","style":{"__isSmartRef__":true,"id":3388},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3388":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3389":{"_id":"_235","style":{"__isSmartRef__":true,"id":3390},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"(node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3390":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3391":{"_id":"_236","style":{"__isSmartRef__":true,"id":3392},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3392":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3393":{"_id":"_237","style":{"__isSmartRef__":true,"id":3394},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3394":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3395":{"_id":"_238","style":{"__isSmartRef__":true,"id":3396},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3396":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3397":{"_id":"_239","style":{"__isSmartRef__":true,"id":3398},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":".lastNode = node;\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3398":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3399":{"_id":"_240","style":{"__isSmartRef__":true,"id":3400},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3400":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3401":{"_id":"_241","style":{"__isSmartRef__":true,"id":3402},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3402":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3403":{"_id":"_242","style":{"__isSmartRef__":true,"id":3404},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3404":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3405":{"_id":"_243","style":{"__isSmartRef__":true,"id":3406},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":".visitActions[node.type](","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3406":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3407":{"_id":"_244","style":{"__isSmartRef__":true,"id":3408},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3408":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3409":{"_id":"_245","style":{"__isSmartRef__":true,"id":3410},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":", node);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3410":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3411":{"_id":"_246","style":{"__isSmartRef__":true,"id":3412},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3412":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3413":{"_id":"_247","style":{"__isSmartRef__":true,"id":3414},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":",\n visitActions : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3414":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3415":{"_id":"_248","style":{"__isSmartRef__":true,"id":3416},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3416":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3417":{"_id":"_249","style":{"__isSmartRef__":true,"id":3418},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3418":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3419":{"_id":"_250","style":{"__isSmartRef__":true,"id":3420},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"variable\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3420":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3421":{"_id":"_251","style":{"__isSmartRef__":true,"id":3422},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" : ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3422":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3423":{"_id":"_252","style":{"__isSmartRef__":true,"id":3424},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3424":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,139)"},"3425":{"_id":"_253","style":{"__isSmartRef__":true,"id":3426},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"(visitor, node) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3426":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3427":{"_id":"_254","style":{"__isSmartRef__":true,"id":3428},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3428":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3429":{"_id":"_255","style":{"__isSmartRef__":true,"id":3430},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n visitor.stack.push(visitor.variables[node.varName]);\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3430":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3431":{"_id":"_256","style":{"__isSmartRef__":true,"id":3432},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3432":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3433":{"_id":"_257","style":{"__isSmartRef__":true,"id":3434},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n\n ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3434":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3435":{"_id":"_258","style":{"__isSmartRef__":true,"id":3436},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3436":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3437":{"_id":"_259","style":{"__isSmartRef__":true,"id":3438},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3438":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3439":{"_id":"_260","style":{"__isSmartRef__":true,"id":3440},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3440":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3441":{"_id":"_261","style":{"__isSmartRef__":true,"id":3442},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":";\n\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3442":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3443":{"_id":"_262","style":{"__isSmartRef__":true,"id":3444},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"for","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3444":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3445":{"_id":"_263","style":{"__isSmartRef__":true,"id":3446},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3446":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3447":{"_id":"_264","style":{"__isSmartRef__":true,"id":3448},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3448":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3449":{"_id":"_265","style":{"__isSmartRef__":true,"id":3450},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" i = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3450":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3451":{"_id":"_266","style":{"__isSmartRef__":true,"id":3452},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"0","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3452":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,255)"},"3453":{"_id":"_267","style":{"__isSmartRef__":true,"id":3454},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"; i < program.statements.length; i++) ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3454":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3455":{"_id":"_268","style":{"__isSmartRef__":true,"id":3456},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3456":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3457":{"_id":"_269","style":{"__isSmartRef__":true,"id":3458},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3458":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3459":{"_id":"_270","style":{"__isSmartRef__":true,"id":3460},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3460":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3461":{"_id":"_271","style":{"__isSmartRef__":true,"id":3462},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" node = program.statements[i];\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3462":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3463":{"_id":"_272","style":{"__isSmartRef__":true,"id":3464},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3464":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"3465":{"_id":"_273","style":{"__isSmartRef__":true,"id":3466},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3466":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3467":{"_id":"_274","style":{"__isSmartRef__":true,"id":3468},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3468":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3469":{"_id":"_275","style":{"__isSmartRef__":true,"id":3470},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3470":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3471":{"_id":"_276","style":{"__isSmartRef__":true,"id":3472},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"addition\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3472":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3473":{"_id":"_277","style":{"__isSmartRef__":true,"id":3474},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3474":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3475":{"_id":"_278","style":{"__isSmartRef__":true,"id":3476},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3476":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3477":{"_id":"_279","style":{"__isSmartRef__":true,"id":3478},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n\t\tvisitor.visit(node.summand1);\n\t \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3478":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3479":{"_id":"_280","style":{"__isSmartRef__":true,"id":3480},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3480":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3481":{"_id":"_281","style":{"__isSmartRef__":true,"id":3482},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" summand1 = visitor.stack.pop();\n\t \tvisitor.visit(node.summand2);\n \t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3482":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3483":{"_id":"_282","style":{"__isSmartRef__":true,"id":3484},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"var","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3484":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3485":{"_id":"_283","style":{"__isSmartRef__":true,"id":3486},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" summand2 = visitor.stack.pop();\n \tvisitor.stack.push(summand1 + summand2);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3486":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3487":{"_id":"_284","style":{"__isSmartRef__":true,"id":3488},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3488":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3489":{"_id":"_285","style":{"__isSmartRef__":true,"id":3490},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3490":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3491":{"_id":"_286","style":{"__isSmartRef__":true,"id":3492},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3492":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3493":{"_id":"_287","style":{"__isSmartRef__":true,"id":3494},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3494":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3495":{"_id":"_288","style":{"__isSmartRef__":true,"id":3496},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"if","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3496":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3497":{"_id":"_289","style":{"__isSmartRef__":true,"id":3498},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"(node.type == ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3498":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3499":{"_id":"_290","style":{"__isSmartRef__":true,"id":3500},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\"assign\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3500":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,128)"},"3501":{"_id":"_291","style":{"__isSmartRef__":true,"id":3502},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":") ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3502":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3503":{"_id":"_292","style":{"__isSmartRef__":true,"id":3504},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3504":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3505":{"_id":"_293","style":{"__isSmartRef__":true,"id":3506},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n\t\tvisitor.variables[node.varName] = node.value;\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3506":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3507":{"_id":"_294","style":{"__isSmartRef__":true,"id":3508},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3508":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3509":{"_id":"_295","style":{"__isSmartRef__":true,"id":3510},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3510":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3511":{"_id":"_296","style":{"__isSmartRef__":true,"id":3512},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"else","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3512":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,128)"},"3513":{"_id":"_297","style":{"__isSmartRef__":true,"id":3514},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3514":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3515":{"_id":"_298","style":{"__isSmartRef__":true,"id":3516},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3516":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3517":{"_id":"_299","style":{"__isSmartRef__":true,"id":3518},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\n\t\tvisitor.visit(node);\n\t","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3518":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3519":{"_id":"_300","style":{"__isSmartRef__":true,"id":3520},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3520":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3521":{"_id":"_301","style":{"__isSmartRef__":true,"id":3522},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":";\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3522":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3523":{"_id":"_302","style":{"__isSmartRef__":true,"id":3524},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"\t\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3524":{"__serializedExpressions__":["backgroundColor"],"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","backgroundColor":"Color.rgba(204,204,0,0.4)"},"3525":{"_id":"_303","style":{"__isSmartRef__":true,"id":3526},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3526":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,128,0)"},"3527":{"_id":"_304","style":{"__isSmartRef__":true,"id":3528},"chunkOwner":{"__isSmartRef__":true,"id":3263},"storedString":";\nvisitor.stack.pop();\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3528":{"__serializedExpressions__":["color"],"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore","color":"Color.rgb(0,0,0)"},"3529":{"morph":{"__isSmartRef__":true,"id":3263},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3530":{"resizeWidth":true,"resizeHeight":true},"3531":{"sourceObj":{"__isSmartRef__":true,"id":3263},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":3263},"targetMethodName":"highlightSyntaxDebounced","varMapping":{"__isSmartRef__":true,"id":3532},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3532":{"source":{"__isSmartRef__":true,"id":3263},"target":{"__isSmartRef__":true,"id":3263}},"3533":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3534},"eventHandler":{"__isSmartRef__":true,"id":3535},"_ClipMode":"visible","derivationIds":[],"id":"1F21CD84-97E9-42D6-97EE-ECE32E544FDF","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle bottom"],"owner":{"__isSmartRef__":true,"id":3262},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3536},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,222.0)"},"3534":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(494.0,4.0)","_Padding":"lively.rect(0,0,0,0)"},"3535":{"morph":{"__isSmartRef__":true,"id":3533},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3536":{"onDragStart":{"__isSmartRef__":true,"id":3537},"onDrag":{"__isSmartRef__":true,"id":3544},"onDragEnd":{"__isSmartRef__":true,"id":3551}},"3537":{"varMapping":{"__isSmartRef__":true,"id":3538},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3543},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3538":{"this":{"__isSmartRef__":true,"id":3533},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3539}},"3539":{"$super":{"__isSmartRef__":true,"id":3540}},"3540":{"varMapping":{"__isSmartRef__":true,"id":3541},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3542},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3541":{"obj":{"__isSmartRef__":true,"id":3533},"name":"onDragStart"},"3542":{},"3543":{},"3544":{"varMapping":{"__isSmartRef__":true,"id":3545},"source":"function onDrag(evt) {\n var moveDelta = pt(0,evt.mousePoint.subPt(this.dragStartPoint).y);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n\n this.align(this.bounds().bottomLeft(), pt(0,this.owner.getExtent().y));\n }","funcProperties":{"__isSmartRef__":true,"id":3550},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3545":{"this":{"__isSmartRef__":true,"id":3533},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3546}},"3546":{"$super":{"__isSmartRef__":true,"id":3547}},"3547":{"varMapping":{"__isSmartRef__":true,"id":3548},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3549},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3548":{"obj":{"__isSmartRef__":true,"id":3533},"name":"onDrag"},"3549":{},"3550":{},"3551":{"varMapping":{"__isSmartRef__":true,"id":3552},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3557},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3552":{"this":{"__isSmartRef__":true,"id":3533},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3553}},"3553":{"$super":{"__isSmartRef__":true,"id":3554}},"3554":{"varMapping":{"__isSmartRef__":true,"id":3555},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3556},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3555":{"obj":{"__isSmartRef__":true,"id":3533},"name":"onDragEnd"},"3556":{},"3557":{},"3558":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3559},"eventHandler":{"__isSmartRef__":true,"id":3560},"_ClipMode":"visible","derivationIds":[],"id":"BAEC51BE-0140-4E96-9DE6-B95C19D50831","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle right"],"owner":{"__isSmartRef__":true,"id":3262},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3561},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(504.0,0.0)"},"3559":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(4.0,212.0)","_Padding":"lively.rect(0,0,0,0)"},"3560":{"morph":{"__isSmartRef__":true,"id":3558},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3561":{"onDragStart":{"__isSmartRef__":true,"id":3562},"onDrag":{"__isSmartRef__":true,"id":3569},"onDragEnd":{"__isSmartRef__":true,"id":3576}},"3562":{"varMapping":{"__isSmartRef__":true,"id":3563},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3568},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3563":{"this":{"__isSmartRef__":true,"id":3558},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3564}},"3564":{"$super":{"__isSmartRef__":true,"id":3565}},"3565":{"varMapping":{"__isSmartRef__":true,"id":3566},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3567},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3566":{"obj":{"__isSmartRef__":true,"id":3558},"name":"onDragStart"},"3567":{},"3568":{},"3569":{"varMapping":{"__isSmartRef__":true,"id":3570},"source":"function onDrag(evt) {\n var moveDelta = pt(evt.mousePoint.subPt(this.dragStartPoint).x,0);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n\n this.owner.setExtent(newExtent);\n this.align(this.bounds().topRight(), pt(this.owner.getExtent().x,0));\n }","funcProperties":{"__isSmartRef__":true,"id":3575},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3570":{"this":{"__isSmartRef__":true,"id":3558},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3571}},"3571":{"$super":{"__isSmartRef__":true,"id":3572}},"3572":{"varMapping":{"__isSmartRef__":true,"id":3573},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3574},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3573":{"obj":{"__isSmartRef__":true,"id":3558},"name":"onDrag"},"3574":{},"3575":{},"3576":{"varMapping":{"__isSmartRef__":true,"id":3577},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignBottomReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3582},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3577":{"this":{"__isSmartRef__":true,"id":3558},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3578}},"3578":{"$super":{"__isSmartRef__":true,"id":3579}},"3579":{"varMapping":{"__isSmartRef__":true,"id":3580},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3581},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3580":{"obj":{"__isSmartRef__":true,"id":3558},"name":"onDragEnd"},"3581":{},"3582":{},"3583":{"submorphs":[{"__isSmartRef__":true,"id":3584},{"__isSmartRef__":true,"id":3590},{"__isSmartRef__":true,"id":3603},{"__isSmartRef__":true,"id":3615}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3628},"eventHandler":{"__isSmartRef__":true,"id":3629},"_ClipMode":"visible","derivationIds":[],"id":"E6F05D48-8606-4A63-B26A-9CD3CB2209CE","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3630},"windowMorph":{"__isSmartRef__":true,"id":3262},"label":{"__isSmartRef__":true,"id":3584},"closeButton":{"__isSmartRef__":true,"id":3590},"menuButton":{"__isSmartRef__":true,"id":3603},"collapseButton":{"__isSmartRef__":true,"id":3615},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3262},"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"3584":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3585},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3586}],"eventHandler":{"__isSmartRef__":true,"id":3588},"_ClipMode":"hidden","derivationIds":[],"id":"26131E05-A27F-4C8B-8BCA-448F8806CC33","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"layout":{"__isSmartRef__":true,"id":3589},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3583},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(20.0,3.0)"},"3585":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(449.0,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3586":{"style":{"__isSmartRef__":true,"id":3587},"chunkOwner":{"__isSmartRef__":true,"id":3584},"_id":"_209","storedString":"Workspace","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3587":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3588":{"morph":{"__isSmartRef__":true,"id":3584},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3589":{"resizeWidth":true},"3590":{"submorphs":[{"__isSmartRef__":true,"id":3591}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3596},"eventHandler":{"__isSmartRef__":true,"id":3597},"_ClipMode":"visible","derivationIds":[],"id":"8AFC1D04-E004-4993-B2C5-57889529E6C9","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3591},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3583},"layout":{"__isSmartRef__":true,"id":3598},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":3599},{"__isSmartRef__":true,"id":3601}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(488.0,3.0)"},"3591":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3592},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3593}],"eventHandler":{"__isSmartRef__":true,"id":3595},"_ClipMode":"hidden","derivationIds":[],"id":"A98D9E1A-4FF1-4A22-A3E7-CC754EF69946","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3590},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,-1.0)"},"3592":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3593":{"style":{"__isSmartRef__":true,"id":3594},"chunkOwner":{"__isSmartRef__":true,"id":3591},"_id":"_211","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3594":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3595":{"morph":{"__isSmartRef__":true,"id":3591},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3596":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3597":{"morph":{"__isSmartRef__":true,"id":3590},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3598":{"moveHorizontal":true},"3599":{"sourceObj":{"__isSmartRef__":true,"id":3590},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3262},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":3600},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3600":{"source":{"__isSmartRef__":true,"id":3590},"target":{"__isSmartRef__":true,"id":3262}},"3601":{"sourceObj":{"__isSmartRef__":true,"id":3590},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3262},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":3602},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3602":{"source":{"__isSmartRef__":true,"id":3590},"target":{"__isSmartRef__":true,"id":3262}},"3603":{"submorphs":[{"__isSmartRef__":true,"id":3604}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3609},"eventHandler":{"__isSmartRef__":true,"id":3610},"_ClipMode":"visible","derivationIds":[],"id":"C6FEE5C4-9CFC-474B-ADA7-E658A4DBE18C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3604},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3583},"attributeConnections":[{"__isSmartRef__":true,"id":3611},{"__isSmartRef__":true,"id":3613}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"3604":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3605},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3606}],"eventHandler":{"__isSmartRef__":true,"id":3608},"_ClipMode":"hidden","derivationIds":[],"id":"A54D0228-9DB7-4D32-A22C-96621060C383","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3603},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"3605":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(18.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3606":{"style":{"__isSmartRef__":true,"id":3607},"chunkOwner":{"__isSmartRef__":true,"id":3604},"_id":"_213","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3607":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3608":{"morph":{"__isSmartRef__":true,"id":3604},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3609":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3610":{"morph":{"__isSmartRef__":true,"id":3603},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3611":{"sourceObj":{"__isSmartRef__":true,"id":3603},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3262},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":3612},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3612":{"source":{"__isSmartRef__":true,"id":3603},"target":{"__isSmartRef__":true,"id":3262}},"3613":{"sourceObj":{"__isSmartRef__":true,"id":3603},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3262},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":3614},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3614":{"source":{"__isSmartRef__":true,"id":3603},"target":{"__isSmartRef__":true,"id":3262}},"3615":{"submorphs":[{"__isSmartRef__":true,"id":3616}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3621},"eventHandler":{"__isSmartRef__":true,"id":3622},"_ClipMode":"visible","derivationIds":[],"id":"D795E034-919D-4DA6-BDA4-4AC07F856CF0","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3616},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3583},"layout":{"__isSmartRef__":true,"id":3623},"attributeConnections":[{"__isSmartRef__":true,"id":3624},{"__isSmartRef__":true,"id":3626}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(469.0,3.0)"},"3616":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3617},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3618}],"eventHandler":{"__isSmartRef__":true,"id":3620},"_ClipMode":"hidden","derivationIds":[],"id":"C571E2FA-294A-49D4-A1A2-43D20E329E8D","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3615},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,1.0)"},"3617":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3618":{"style":{"__isSmartRef__":true,"id":3619},"chunkOwner":{"__isSmartRef__":true,"id":3616},"_id":"_215","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3619":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3620":{"morph":{"__isSmartRef__":true,"id":3616},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3621":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3622":{"morph":{"__isSmartRef__":true,"id":3615},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3623":{"moveHorizontal":true},"3624":{"sourceObj":{"__isSmartRef__":true,"id":3615},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3262},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":3625},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3625":{"source":{"__isSmartRef__":true,"id":3615},"target":{"__isSmartRef__":true,"id":3262}},"3626":{"sourceObj":{"__isSmartRef__":true,"id":3615},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3262},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":3627},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3627":{"source":{"__isSmartRef__":true,"id":3615},"target":{"__isSmartRef__":true,"id":3262}},"3628":{"_AppearanceStylingMode":true,"_BorderStylingMode":true,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(508.0,22.0)","_Padding":"lively.rect(0,0,0,0)"},"3629":{"morph":{"__isSmartRef__":true,"id":3583},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3630":{"resizeWidth":true,"adjustForNewBounds":true},"3631":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3632},"eventHandler":{"__isSmartRef__":true,"id":3633},"_ClipMode":"visible","derivationIds":[],"id":"AC0172B6-5EED-458E-BF54-1D8FF10140BB","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle corner"],"owner":{"__isSmartRef__":true,"id":3262},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3634},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(494.0,212.0)"},"3632":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(14.0,14.0)","_Padding":"lively.rect(0,0,0,0)"},"3633":{"morph":{"__isSmartRef__":true,"id":3631},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3634":{"onDragStart":{"__isSmartRef__":true,"id":3635},"onDrag":{"__isSmartRef__":true,"id":3642},"onDragEnd":{"__isSmartRef__":true,"id":3649}},"3635":{"varMapping":{"__isSmartRef__":true,"id":3636},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3641},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3636":{"this":{"__isSmartRef__":true,"id":3631},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3637}},"3637":{"$super":{"__isSmartRef__":true,"id":3638}},"3638":{"varMapping":{"__isSmartRef__":true,"id":3639},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3640},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3639":{"obj":{"__isSmartRef__":true,"id":3631},"name":"onDragStart"},"3640":{},"3641":{},"3642":{"varMapping":{"__isSmartRef__":true,"id":3643},"source":"function onDrag(evt) {\n var moveDelta = evt.mousePoint.subPt(this.dragStartPoint)\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n //console.log(\"WindowExtent: \"+this.owner.getExtent().x+\" , \"+this.owner.getExtent().y);\n this.align(this.bounds().bottomRight(), this.owner.getExtent());\n }","funcProperties":{"__isSmartRef__":true,"id":3648},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3643":{"this":{"__isSmartRef__":true,"id":3631},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3644}},"3644":{"$super":{"__isSmartRef__":true,"id":3645}},"3645":{"varMapping":{"__isSmartRef__":true,"id":3646},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3647},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3646":{"obj":{"__isSmartRef__":true,"id":3631},"name":"onDrag"},"3647":{},"3648":{},"3649":{"varMapping":{"__isSmartRef__":true,"id":3650},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignBottomReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3655},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3650":{"this":{"__isSmartRef__":true,"id":3631},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3651}},"3651":{"$super":{"__isSmartRef__":true,"id":3652}},"3652":{"varMapping":{"__isSmartRef__":true,"id":3653},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3654},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3653":{"obj":{"__isSmartRef__":true,"id":3631},"name":"onDragEnd"},"3654":{},"3655":{},"3656":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Padding","_Extent"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Padding":"lively.rect(0,0,0,0)","_Extent":"lively.pt(508.0,226.0)"},"3657":{"morph":{"__isSmartRef__":true,"id":3262},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3658":{"adjustForNewBounds":true},"3659":{"submorphs":[{"__isSmartRef__":true,"id":3660},{"__isSmartRef__":true,"id":3685},{"__isSmartRef__":true,"id":3710},{"__isSmartRef__":true,"id":3758},{"__isSmartRef__":true,"id":4208}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4233},"eventHandler":{"__isSmartRef__":true,"id":4234},"_ClipMode":"visible","derivationIds":[],"id":"8887B22F-F079-424A-A630-9ADBED69DCE2","droppingEnabled":false,"halosEnabled":true,"draggingEnabled":true,"layout":{"__isSmartRef__":true,"id":4235},"LK2":true,"targetMorph":{"__isSmartRef__":true,"id":3758},"reframeHandle":{"__isSmartRef__":true,"id":4208},"bottomReframeHandle":{"__isSmartRef__":true,"id":3660},"rightReframeHandle":{"__isSmartRef__":true,"id":3685},"titleBar":{"__isSmartRef__":true,"id":3710},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":0},"highlighted":false,"prevScroll":[0,0],"isBeingDragged":false,"__serializedExpressions__":["_Position","contentOffset","prevDragPos"],"__LivelyClassName__":"lively.morphic.Window","__SourceModuleName__":"Global.lively.morphic.Widgets","withoutLayers":["Global.lively.morphic.GrabbingLayer"],"_Position":"lively.pt(173.5,1721.5)","contentOffset":"lively.pt(4.0,22.0)","prevDragPos":"lively.pt(90.0,2079.0)"},"3660":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3661},"eventHandler":{"__isSmartRef__":true,"id":3662},"_ClipMode":"visible","derivationIds":[],"id":"EC7B2BB2-1EF6-4698-A89A-A4A4274C3776","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle bottom"],"owner":{"__isSmartRef__":true,"id":3659},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3663},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(0.0,572.0)"},"3661":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(814.0,4.0)","_Padding":"lively.rect(0,0,0,0)"},"3662":{"morph":{"__isSmartRef__":true,"id":3660},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3663":{"onDragStart":{"__isSmartRef__":true,"id":3664},"onDrag":{"__isSmartRef__":true,"id":3671},"onDragEnd":{"__isSmartRef__":true,"id":3678}},"3664":{"varMapping":{"__isSmartRef__":true,"id":3665},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3670},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3665":{"this":{"__isSmartRef__":true,"id":3660},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3666}},"3666":{"$super":{"__isSmartRef__":true,"id":3667}},"3667":{"varMapping":{"__isSmartRef__":true,"id":3668},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3669},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3668":{"obj":{"__isSmartRef__":true,"id":3660},"name":"onDragStart"},"3669":{},"3670":{},"3671":{"varMapping":{"__isSmartRef__":true,"id":3672},"source":"function onDrag(evt) {\n var moveDelta = pt(0,evt.mousePoint.subPt(this.dragStartPoint).y);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.y < this.owner.minHeight) newExtent.y = this.owner.minHeight;\n this.owner.setExtent(newExtent);\n\n this.align(this.bounds().bottomLeft(), pt(0,this.owner.getExtent().y));\n }","funcProperties":{"__isSmartRef__":true,"id":3677},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3672":{"this":{"__isSmartRef__":true,"id":3660},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3673}},"3673":{"$super":{"__isSmartRef__":true,"id":3674}},"3674":{"varMapping":{"__isSmartRef__":true,"id":3675},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3676},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3675":{"obj":{"__isSmartRef__":true,"id":3660},"name":"onDrag"},"3676":{},"3677":{},"3678":{"varMapping":{"__isSmartRef__":true,"id":3679},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignRightReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3684},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3679":{"this":{"__isSmartRef__":true,"id":3660},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3680}},"3680":{"$super":{"__isSmartRef__":true,"id":3681}},"3681":{"varMapping":{"__isSmartRef__":true,"id":3682},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3683},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3682":{"obj":{"__isSmartRef__":true,"id":3660},"name":"onDragEnd"},"3683":{},"3684":{},"3685":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3686},"eventHandler":{"__isSmartRef__":true,"id":3687},"_ClipMode":"visible","derivationIds":[],"id":"68BB168D-304C-45D8-819C-A48820DEC048","droppingEnabled":true,"halosEnabled":true,"_StyleClassNames":["reframe-handle right"],"owner":{"__isSmartRef__":true,"id":3659},"__serializedExpressions__":["_Position"],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3688},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","_Position":"lively.pt(824.0,0.0)"},"3686":{"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(4.0,562.0)","_Padding":"lively.rect(0,0,0,0)"},"3687":{"morph":{"__isSmartRef__":true,"id":3685},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3688":{"onDragStart":{"__isSmartRef__":true,"id":3689},"onDrag":{"__isSmartRef__":true,"id":3696},"onDragEnd":{"__isSmartRef__":true,"id":3703}},"3689":{"varMapping":{"__isSmartRef__":true,"id":3690},"source":"function onDragStart(evt) {\n this.dragStartPoint = evt.mousePoint;\n this.originalTargetExtent = this.owner.getExtent();\n }","funcProperties":{"__isSmartRef__":true,"id":3695},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3690":{"this":{"__isSmartRef__":true,"id":3685},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3691}},"3691":{"$super":{"__isSmartRef__":true,"id":3692}},"3692":{"varMapping":{"__isSmartRef__":true,"id":3693},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3694},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3693":{"obj":{"__isSmartRef__":true,"id":3685},"name":"onDragStart"},"3694":{},"3695":{},"3696":{"varMapping":{"__isSmartRef__":true,"id":3697},"source":"function onDrag(evt) {\n var moveDelta = pt(evt.mousePoint.subPt(this.dragStartPoint).x,0);\n var newExtent = this.originalTargetExtent.addPt(moveDelta);\n if (newExtent.x < this.owner.minWidth) newExtent.x = this.owner.minWidth;\n\n this.owner.setExtent(newExtent);\n this.align(this.bounds().topRight(), pt(this.owner.getExtent().x,0));\n }","funcProperties":{"__isSmartRef__":true,"id":3702},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3697":{"this":{"__isSmartRef__":true,"id":3685},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3698}},"3698":{"$super":{"__isSmartRef__":true,"id":3699}},"3699":{"varMapping":{"__isSmartRef__":true,"id":3700},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3701},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3700":{"obj":{"__isSmartRef__":true,"id":3685},"name":"onDrag"},"3701":{},"3702":{},"3703":{"varMapping":{"__isSmartRef__":true,"id":3704},"source":"function onDragEnd(evt) {\n this.dragStartPoint = null;\n this.originalTargetExtent = null;\n this.owner.alignReframeHandle();\n this.owner.alignBottomReframeHandle();\n }","funcProperties":{"__isSmartRef__":true,"id":3709},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3704":{"this":{"__isSmartRef__":true,"id":3685},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":3705}},"3705":{"$super":{"__isSmartRef__":true,"id":3706}},"3706":{"varMapping":{"__isSmartRef__":true,"id":3707},"source":"function () {\n try {\n return obj.constructor.prototype[name].apply(obj, arguments)\n } catch (e) {\n if ($world)\n $world.logError(e, 'Error in $super call')\n else\n alert('Error in $super call: ' + e + '\\n' + e.stack);\n return null;\n }\n }","funcProperties":{"__isSmartRef__":true,"id":3708},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"3707":{"obj":{"__isSmartRef__":true,"id":3685},"name":"onDragEnd"},"3708":{},"3709":{},"3710":{"submorphs":[{"__isSmartRef__":true,"id":3711},{"__isSmartRef__":true,"id":3717},{"__isSmartRef__":true,"id":3730},{"__isSmartRef__":true,"id":3742}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3755},"eventHandler":{"__isSmartRef__":true,"id":3756},"_ClipMode":"visible","derivationIds":[],"id":"550EDF84-5C8E-4D8B-97B6-3024C36F3600","droppingEnabled":false,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":3757},"windowMorph":{"__isSmartRef__":true,"id":3659},"label":{"__isSmartRef__":true,"id":3711},"closeButton":{"__isSmartRef__":true,"id":3717},"menuButton":{"__isSmartRef__":true,"id":3730},"collapseButton":{"__isSmartRef__":true,"id":3742},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3659},"prevScroll":[0,0],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.TitleBar","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(0.0,0.0)"},"3711":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3712},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3713}],"eventHandler":{"__isSmartRef__":true,"id":3715},"_ClipMode":"hidden","derivationIds":[],"id":"6FE18CF8-6ECE-43E2-A10F-70D9AD914DAB","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"isLabel":true,"layout":{"__isSmartRef__":true,"id":3716},"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":3710},"_StyleClassNames":["window-title"],"_TextStylingMode":true,"prevScroll":[0,0],"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(21.0,3.0)"},"3712":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(768.0,18.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3713":{"style":{"__isSmartRef__":true,"id":3714},"chunkOwner":{"__isSmartRef__":true,"id":3711},"_id":"_749","storedString":"ObjectGrapher.js:apps.ObjectGrapher.Grapher:-- all --","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3714":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3715":{"morph":{"__isSmartRef__":true,"id":3711},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3716":{"resizeWidth":true},"3717":{"submorphs":[{"__isSmartRef__":true,"id":3718}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3723},"eventHandler":{"__isSmartRef__":true,"id":3724},"_ClipMode":"visible","derivationIds":[],"id":"3C4843DD-065A-410F-AB8C-2FF802F7945C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3718},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3710},"layout":{"__isSmartRef__":true,"id":3725},"_StyleClassNames":["close"],"attributeConnections":[{"__isSmartRef__":true,"id":3726},{"__isSmartRef__":true,"id":3728}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"isPressed":false,"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(808.0,3.0)"},"3718":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3719},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3720}],"eventHandler":{"__isSmartRef__":true,"id":3722},"_ClipMode":"hidden","derivationIds":[],"id":"03DFEBA7-C6AA-4A0B-961B-09352E6C330B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3717},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,-1.0)"},"3719":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3720":{"style":{"__isSmartRef__":true,"id":3721},"chunkOwner":{"__isSmartRef__":true,"id":3718},"_id":"_1150","storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3721":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3722":{"morph":{"__isSmartRef__":true,"id":3718},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3723":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3724":{"morph":{"__isSmartRef__":true,"id":3717},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3725":{"moveHorizontal":true},"3726":{"sourceObj":{"__isSmartRef__":true,"id":3717},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3659},"targetMethodName":"getCloseHelp","varMapping":{"__isSmartRef__":true,"id":3727},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3727":{"source":{"__isSmartRef__":true,"id":3717},"target":{"__isSmartRef__":true,"id":3659}},"3728":{"sourceObj":{"__isSmartRef__":true,"id":3717},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3659},"targetMethodName":"initiateShutdown","varMapping":{"__isSmartRef__":true,"id":3729},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3729":{"source":{"__isSmartRef__":true,"id":3717},"target":{"__isSmartRef__":true,"id":3659}},"3730":{"submorphs":[{"__isSmartRef__":true,"id":3731}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3736},"eventHandler":{"__isSmartRef__":true,"id":3737},"_ClipMode":"visible","derivationIds":[],"id":"433CADCC-0236-43F5-9D6E-4ACAAF3C6C30","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3731},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3710},"attributeConnections":[{"__isSmartRef__":true,"id":3738},{"__isSmartRef__":true,"id":3740}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(3.0,3.0)"},"3731":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3732},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3733}],"eventHandler":{"__isSmartRef__":true,"id":3735},"_ClipMode":"hidden","derivationIds":[],"id":"85A7002D-335E-4D2C-84F7-B5CF02C22B4B","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3730},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,0.0)"},"3732":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(18.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3733":{"style":{"__isSmartRef__":true,"id":3734},"chunkOwner":{"__isSmartRef__":true,"id":3731},"_id":"_1152","storedString":"M","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3734":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3735":{"morph":{"__isSmartRef__":true,"id":3731},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3736":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3737":{"morph":{"__isSmartRef__":true,"id":3730},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3738":{"sourceObj":{"__isSmartRef__":true,"id":3730},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3659},"targetMethodName":"getMenuHelp","varMapping":{"__isSmartRef__":true,"id":3739},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3739":{"source":{"__isSmartRef__":true,"id":3730},"target":{"__isSmartRef__":true,"id":3659}},"3740":{"sourceObj":{"__isSmartRef__":true,"id":3730},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3659},"targetMethodName":"showTargetMorphMenu","varMapping":{"__isSmartRef__":true,"id":3741},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3741":{"source":{"__isSmartRef__":true,"id":3730},"target":{"__isSmartRef__":true,"id":3659}},"3742":{"submorphs":[{"__isSmartRef__":true,"id":3743}],"scripts":[],"shape":{"__isSmartRef__":true,"id":3748},"eventHandler":{"__isSmartRef__":true,"id":3749},"_ClipMode":"visible","derivationIds":[],"id":"56B3AD1E-1676-467C-BF28-34120597AD4C","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"accessibleInInactiveWindow":true,"value":false,"toggle":false,"isActive":true,"label":{"__isSmartRef__":true,"id":3743},"_PreviousBorderWidth":0,"owner":{"__isSmartRef__":true,"id":3710},"layout":{"__isSmartRef__":true,"id":3750},"attributeConnections":[{"__isSmartRef__":true,"id":3751},{"__isSmartRef__":true,"id":3753}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"__serializedExpressions__":["_Position"],"__LivelyClassName__":"lively.morphic.WindowControl","__SourceModuleName__":"Global.lively.morphic.Widgets","_Position":"lively.pt(789.0,3.0)"},"3743":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3744},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3745}],"eventHandler":{"__isSmartRef__":true,"id":3747},"_ClipMode":"hidden","derivationIds":[],"id":"DEC7EA9A-3D42-4126-9886-B96F6D05910A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":false,"_HandStyle":"default","allowInput":false,"_FontFamily":"Helvetica","_FontSize":8,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3742},"isLabel":true,"eventsAreIgnored":true,"_TextStylingMode":true,"__serializedExpressions__":["_TextColor","_Position"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(64,64,64)","_Position":"lively.pt(0.0,1.0)"},"3744":{"_BorderWidth":0,"_Fill":null,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(4,2,0,0)","_BorderColor":"Color.rgb(0,0,0)"},"3745":{"style":{"__isSmartRef__":true,"id":3746},"chunkOwner":{"__isSmartRef__":true,"id":3743},"_id":"_1154","storedString":"–","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3746":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3747":{"morph":{"__isSmartRef__":true,"id":3743},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3748":{"_BorderWidth":1,"_StrokeOpacity":0,"_BorderRadius":5,"_AppearanceStylingMode":true,"_BorderStylingMode":true,"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(17.0,17.0)","_Padding":"lively.rect(0,0,0,0)","_BorderColor":"Color.rgb(189,190,192)"},"3749":{"morph":{"__isSmartRef__":true,"id":3742},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3750":{"moveHorizontal":true},"3751":{"sourceObj":{"__isSmartRef__":true,"id":3742},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":3659},"targetMethodName":"getCollapseHelp","varMapping":{"__isSmartRef__":true,"id":3752},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3752":{"source":{"__isSmartRef__":true,"id":3742},"target":{"__isSmartRef__":true,"id":3659}},"3753":{"sourceObj":{"__isSmartRef__":true,"id":3742},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":3659},"targetMethodName":"toggleCollapse","varMapping":{"__isSmartRef__":true,"id":3754},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3754":{"source":{"__isSmartRef__":true,"id":3742},"target":{"__isSmartRef__":true,"id":3659}},"3755":{"_AppearanceStylingMode":true,"_BorderStylingMode":true,"_BorderWidth":0,"__serializedExpressions__":["_Position","_Extent","_Padding"],"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(828.0,22.0)","_Padding":"lively.rect(0,0,0,0)"},"3756":{"morph":{"__isSmartRef__":true,"id":3710},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3757":{"resizeWidth":true,"adjustForNewBounds":true},"3758":{"submorphs":[{"__isSmartRef__":true,"id":3759},{"__isSmartRef__":true,"id":4175},{"__isSmartRef__":true,"id":4186},{"__isSmartRef__":true,"id":3873},{"__isSmartRef__":true,"id":4036},{"__isSmartRef__":true,"id":4068},{"__isSmartRef__":true,"id":4105},{"__isSmartRef__":true,"id":4197},{"__isSmartRef__":true,"id":4156},{"__isSmartRef__":true,"id":3768},{"__isSmartRef__":true,"id":3782},{"__isSmartRef__":true,"id":3796},{"__isSmartRef__":true,"id":3810},{"__isSmartRef__":true,"id":3824},{"__isSmartRef__":true,"id":3838},{"__isSmartRef__":true,"id":3852}],"scripts":[],"shape":{"__isSmartRef__":true,"id":4205},"eventHandler":{"__isSmartRef__":true,"id":4206},"_ClipMode":"visible","derivationIds":[],"id":"E7CFDCC2-956E-4C0B-99CB-A9731EE3834B","droppingEnabled":true,"halosEnabled":true,"layout":{"__isSmartRef__":true,"id":4207},"__serializedExpressions__":["_Position"],"locationPane":{"__isSmartRef__":true,"id":3759},"codeBaseDirBtn":{"__isSmartRef__":true,"id":4175},"localDirBtn":{"__isSmartRef__":true,"id":4186},"Pane1":{"__isSmartRef__":true,"id":3873},"Pane2":{"__isSmartRef__":true,"id":4036},"Pane3":{"__isSmartRef__":true,"id":4068},"Pane4":{"__isSmartRef__":true,"id":4105},"midResizer":{"__isSmartRef__":true,"id":4197},"sourcePane":{"__isSmartRef__":true,"id":4156},"ownerWidget":{"__isSmartRef__":true,"id":3766},"owner":{"__isSmartRef__":true,"id":3659},"targetURL":{"__isSmartRef__":true,"id":3871},"prevScroll":[0,0],"__LivelyClassName__":"lively.ide.BrowserPanel","__SourceModuleName__":"Global.lively.ide.BrowserFramework","_Position":"lively.pt(4.0,22.0)"},"3759":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":3760},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":3761}],"eventHandler":{"__isSmartRef__":true,"id":3763},"_ClipMode":"hidden","derivationIds":[],"id":"46D0F87B-14DC-43B5-B2C7-C8619FDA0F8A","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WordBreak":"break-all","fixedHeight":true,"_InputAllowed":true,"_HandStyle":null,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":8,"__serializedExpressions__":["_TextColor","_Position"],"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":3758},"isInputLine":true,"layout":{"__isSmartRef__":true,"id":3764},"noEval":true,"styleClass":["Browser_locationInput"],"attributeConnections":[{"__isSmartRef__":true,"id":3765}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore","_TextColor":"Color.rgb(102,102,102)","_Position":"lively.pt(0.0,0.0)"},"3760":{"__serializedExpressions__":["_Position","_Extent","_Padding","_BorderColor","_Fill"],"_BorderWidth":0,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":"lively.pt(0.0,0.0)","_Extent":"lively.pt(656.0,16.5)","_Padding":"lively.rect(1,1,0,0)","_BorderColor":"Color.rgb(0,0,0)","_Fill":"Color.rgb(255,255,255)"},"3761":{"style":{"__isSmartRef__":true,"id":3762},"chunkOwner":{"__isSmartRef__":true,"id":3759},"_id":"_730","storedString":"http://lively-kernel.org/repository/webwerkstatt/core/apps/","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3762":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"3763":{"morph":{"__isSmartRef__":true,"id":3759},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"3764":{"scaleVertical":true,"scaleHorizontal":true},"3765":{"sourceObj":{"__isSmartRef__":true,"id":3759},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":3766},"targetMethodName":"setTargetURL","varMapping":{"__isSmartRef__":true,"id":4174},"converterString":"function (value) { return new URL(value) }","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings.Core"},"3766":{"buttonCommands":[{"__isSmartRef__":true,"id":3767},{"__isSmartRef__":true,"id":3781},{"__isSmartRef__":true,"id":3795},{"__isSmartRef__":true,"id":3809},{"__isSmartRef__":true,"id":3823},{"__isSmartRef__":true,"id":3837},{"__isSmartRef__":true,"id":3851}],"RootFilters":[{"__isSmartRef__":true,"id":3865}],"Pane1Filters":[{"__isSmartRef__":true,"id":3866},{"__isSmartRef__":true,"id":3867}],"Pane2Filters":[{"__isSmartRef__":true,"id":3868}],"Pane3Filters":[{"__isSmartRef__":true,"id":3869}],"Pane4Filters":[{"__isSmartRef__":true,"id":3870}],"evaluate":true,"targetURL":{"__isSmartRef__":true,"id":3871},"panel":{"__isSmartRef__":true,"id":3758},"attributeConnections":[{"__isSmartRef__":true,"id":3872},{"__isSmartRef__":true,"id":4035},{"__isSmartRef__":true,"id":4067},{"__isSmartRef__":true,"id":4104},{"__isSmartRef__":true,"id":4155},{"__isSmartRef__":true,"id":4167}],"SourceString":"Object.subclass('apps.ObjectGrapher.Grapher',\n\n'initialization', {\n initialize: function(traverseArray) {\n this.traverseArray = traverseArray;\n this.nodes = [];\n this.edges = [];\n }\n},\n'accessing', {\n getNodes: function() {\n return this.nodes;\n },\n getEdges: function() {\n return this.edges;\n }\n},\n'traversing', {\n traverseVars: function(vars, depth) {\n for(var v in vars) {\n var found = false;\n for(var i=0; i= maxDepth || this.nodes[obj_idx].name == \"this\") {\n return;\n }\n if(this.needsSpecialTreatment(this.nodes[obj_idx].value)) {\n this.specialTreatment(this.nodes[obj_idx].value);\n } else {\n var obj = this.crunch(this.nodes[obj_idx].value);\n for(var v in obj) {\n //check wether we already have traversed the referenced object\n var found = false;\n for(var i=0; i -1) {\n crunchedObj[k] = obj[k];\n }\n }\n } else {\n for(var v in obj){\n if(this.isStandardProperty(obj, v)){\n crunchedObj[v] = obj[v];\n }\n }\n }\n return crunchedObj;\n },\n specialTreatment: function(obj) {\n var node;\n if(obj == undefined) {\n node = this.nodes.pop();\n this.nodes.push({repr: \"X\", color: 5, radius: 5, id: undefined, type: \"special\", name: node.name});\n \n } else {\n var type = obj.constructor.name;\n node = this.nodes.pop()\n if(node.varname){\n this.nodes.push(node);\n this.edges.push({name: \"\",\n source: this.nodes.length - 1,\n target: this.nodes.length,\n weight: 1,\n type: \"label\"});\n }\n this.nodes.push(this.specialDispatcher()[type](node));\n }\n },\n needsSpecialTreatment: function(obj) {\n if(obj == undefined) {\n return true;\n }\n return (obj.constructor.name in this.specialDispatcher());\n },\n\n specialDispatcher: function() {\n self = this;\n var disp = {\n \"String\" : function(n) {\n var s = n.value;\n if(s.length > 10){\n s = s.slice(0, 10) + \"...\";\n }\n return {name: n.name, color: 2, radius: 5, id: n.value, type: \"special\", repr: s};\n },\n \"Number\" : function(n) {\n return {name: n.name, color: 4, radius: 5, id: n.value, type: \"special\", repr: n.value};\n },\n \"Boolean\" : function(n) {\n return {name: n.name, color: 5, radius: 5, id: n.value, type: \"special\", repr: n.value};\n }\n };\n \n if(!this.traverseArray) {\n disp[\"Array\"] = function(n) {\n var s = '[';\n for(var i = 0; i= maxDepth || this.nodes[obj_idx].name == \"this\") {\n return;\n }\n if(this.needsSpecialTreatment(this.nodes[obj_idx].value)) {\n this.specialTreatment(this.nodes[obj_idx].value);\n } else {\n var obj = this.crunch(this.nodes[obj_idx].value);\n for(var v in obj) {\n //check wether we already have traversed the referenced object\n var found = false;\n for(var i=0; i -1) {\n crunchedObj[k] = obj[k];\n }\n }\n } else {\n for(var v in obj){\n if(this.isStandardProperty(obj, v)){\n crunchedObj[v] = obj[v];\n }\n }\n }\n return crunchedObj;\n },\n specialTreatment: function(obj) {\n var node;\n if(obj == undefined) {\n node = this.nodes.pop();\n this.nodes.push({repr: \"X\", color: 5, radius: 5, id: undefined, type: \"special\", name: node.name});\n \n } else {\n var type = obj.constructor.name;\n node = this.nodes.pop()\n if(node.varname){\n this.nodes.push(node);\n this.edges.push({name: \"\",\n source: this.nodes.length - 1,\n target: this.nodes.length,\n weight: 1,\n type: \"label\"});\n }\n this.nodes.push(this.specialDispatcher()[type](node));\n }\n },\n needsSpecialTreatment: function(obj) {\n if(obj == undefined) {\n return true;\n }\n return (obj.constructor.name in this.specialDispatcher());\n },\n\n specialDispatcher: function() {\n self = this;\n var disp = {\n \"String\" : function(n) {\n var s = n.value;\n if(s.length > 10){\n s = s.slice(0, 10) + \"...\";\n }\n return {name: n.name, color: 2, radius: 5, id: n.value, type: \"special\", repr: s};\n },\n \"Number\" : function(n) {\n return {name: n.name, color: 4, radius: 5, id: n.value, type: \"special\", repr: n.value};\n },\n \"Boolean\" : function(n) {\n return {name: n.name, color: 5, radius: 5, id: n.value, type: \"special\", repr: n.value};\n }\n };\n \n if(!this.traverseArray) {\n disp[\"Array\"] = function(n) {\n var s = '[';\n for(var i = 0; i= maxDepth || this.nodes[obj_idx].name == \"this\") {\n return;\n }\n if(this.needsSpecialTreatment(this.nodes[obj_idx].value)) {\n this.specialTreatment(this.nodes[obj_idx].value);\n } else {\n var obj = this.crunch(this.nodes[obj_idx].value);\n for(var v in obj) {\n //check wether we already have traversed the referenced object\n var found = false;\n for(var i=0; i -1) {\n crunchedObj[k] = obj[k];\n }\n }\n } else {\n for(var v in obj){\n if(this.isStandardProperty(obj, v)){\n crunchedObj[v] = obj[v];\n }\n }\n }\n return crunchedObj;\n },\n specialTreatment: function(obj) {\n var node;\n if(obj == undefined) {\n node = this.nodes.pop();\n this.nodes.push({repr: \"X\", color: 5, radius: 5, id: undefined, type: \"special\", name: node.name});\n \n } else {\n var type = obj.constructor.name;\n node = this.nodes.pop()\n if(node.varname){\n this.nodes.push(node);\n this.edges.push({name: \"\",\n source: this.nodes.length - 1,\n target: this.nodes.length,\n weight: 1,\n type: \"label\"});\n }\n this.nodes.push(this.specialDispatcher()[type](node));\n }\n },\n needsSpecialTreatment: function(obj) {\n if(obj == undefined) {\n return true;\n }\n return (obj.constructor.name in this.specialDispatcher());\n },\n\n specialDispatcher: function() {\n self = this;\n var disp = {\n \"String\" : function(n) {\n var s = n.value;\n if(s.length > 10){\n s = s.slice(0, 10) + \"...\";\n }\n return {name: n.name, color: 2, radius: 5, id: n.value, type: \"special\", repr: s};\n },\n \"Number\" : function(n) {\n return {name: n.name, color: 4, radius: 5, id: n.value, type: \"special\", repr: n.value};\n },\n \"Boolean\" : function(n) {\n return {name: n.name, color: 5, radius: 5, id: n.value, type: \"special\", repr: n.value};\n }\n };\n \n if(!this.traverseArray) {\n disp[\"Array\"] = function(n) {\n var s = '[';\n for(var i = 0; i= maxDepth || this.nodes[obj_idx].name == \"this\") {\n return;\n }\n if(this.needsSpecialTreatment(this.nodes[obj_idx].value)) {\n this.specialTreatment(this.nodes[obj_idx].value);\n } else {\n var obj = this.crunch(this.nodes[obj_idx].value);\n for(var v in obj) {\n //check wether we already have traversed the referenced object\n var found = false;\n for(var i=0; i -1) {\n crunchedObj[k] = obj[k];\n }\n }\n } else {\n for(var v in obj){\n if(this.isStandardProperty(obj, v)){\n crunchedObj[v] = obj[v];\n }\n }\n }\n return crunchedObj;\n },\n specialTreatment: function(obj) {\n var node;\n if(obj == undefined) {\n node = this.nodes.pop();\n this.nodes.push({repr: \"X\", color: 5, radius: 5, id: undefined, type: \"special\", name: node.name});\n \n } else {\n var type = obj.constructor.name;\n node = this.nodes.pop()\n if(node.varname){\n this.nodes.push(node);\n this.edges.push({name: \"\",\n source: this.nodes.length - 1,\n target: this.nodes.length,\n weight: 1,\n type: \"label\"});\n }\n this.nodes.push(this.specialDispatcher()[type](node));\n }\n },\n needsSpecialTreatment: function(obj) {\n if(obj == undefined) {\n return true;\n }\n return (obj.constructor.name in this.specialDispatcher());\n },\n\n specialDispatcher: function() {\n self = this;\n var disp = {\n \"String\" : function(n) {\n var s = n.value;\n if(s.length > 10){\n s = s.slice(0, 10) + \"...\";\n }\n return {name: n.name, color: 2, radius: 5, id: n.value, type: \"special\", repr: s};\n },\n \"Number\" : function(n) {\n return {name: n.name, color: 4, radius: 5, id: n.value, type: \"special\", repr: n.value};\n },\n \"Boolean\" : function(n) {\n return {name: n.name, color: 5, radius: 5, id: n.value, type: \"special\", repr: n.value};\n }\n };\n \n if(!this.traverseArray) {\n disp[\"Array\"] = function(n) {\n var s = '[';\n for(var i = 0; i= maxDepth || this.nodes[obj_idx].name == \"this\") {\n return;\n }\n if(this.needsSpecialTreatment(this.nodes[obj_idx].value)) {\n this.specialTreatment(this.nodes[obj_idx].value);\n } else {\n var obj = this.crunch(this.nodes[obj_idx].value);\n for(var v in obj) {\n //check wether we already have traversed the referenced object\n var found = false;\n for(var i=0; i -1) {\n crunchedObj[k] = obj[k];\n }\n }\n } else {\n for(var v in obj){\n if(this.isStandardProperty(obj, v)){\n crunchedObj[v] = obj[v];\n }\n }\n }\n return crunchedObj;\n },\n specialTreatment: function(obj) {\n var node;\n if(obj == undefined) {\n node = this.nodes.pop();\n this.nodes.push({repr: \"X\", color: 5, radius: 5, id: undefined, type: \"special\", name: node.name});\n \n } else {\n var type = obj.constructor.name;\n node = this.nodes.pop()\n if(node.varname){\n this.nodes.push(node);\n this.edges.push({name: \"\",\n source: this.nodes.length - 1,\n target: this.nodes.length,\n weight: 1,\n type: \"label\"});\n }\n this.nodes.push(this.specialDispatcher()[type](node));\n }\n },\n needsSpecialTreatment: function(obj) {\n if(obj == undefined) {\n return true;\n }\n return (obj.constructor.name in this.specialDispatcher());\n },\n\n specialDispatcher: function() {\n self = this;\n var disp = {\n \"String\" : function(n) {\n var s = n.value;\n if(s.length > 10){\n s = s.slice(0, 10) + \"...\";\n }\n return {name: n.name, color: 2, radius: 5, id: n.value, type: \"special\", repr: s};\n },\n \"Number\" : function(n) {\n return {name: n.name, color: 4, radius: 5, id: n.value, type: \"special\", repr: n.value};\n },\n \"Boolean\" : function(n) {\n return {name: n.name, color: 5, radius: 5, id: n.value, type: \"special\", repr: n.value};\n }\n };\n \n if(!this.traverseArray) {\n disp[\"Array\"] = function(n) {\n var s = '[';\n for(var i = 0; i