","extent":{"__isSmartRef__":true,"id":122},"__LivelyClassName__":"lively.morphic.Shapes.External","__SourceModuleName__":"Global.lively.morphic.Shapes"},"117":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","getExtent":"getExtentHTML","initFromStringifiedShapeNode":"initFromStringifiedShapeNodeHTML"},"118":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"119":{"x":988,"y":628,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"120":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"121":{"r":0.7843137254901961,"g":0.7843137254901961,"b":0.7843137254901961,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"122":{"x":988,"y":628,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"123":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"124":{"morph":{"__isSmartRef__":true,"id":115},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"125":{"lineJoin":"miter","font":"10px sans-serif","textAlign":"start","shadowOffsetX":0,"fillStyle":"#000000","textBaseline":"alphabetic","shadowBlur":0,"strokeStyle":"#000000","shadowColor":"rgba(0, 0, 0, 0)","globalAlpha":1,"shadowOffsetY":0,"lineCap":"butt","miterLimit":10,"lineWidth":1,"globalCompositeOperation":"source-over","width":988,"height":628},"126":{"x":100,"y":170,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"127":{"initCanvas":{"__isSmartRef__":true,"id":128},"drawImageElement":{"__isSmartRef__":true,"id":131},"onMouseMove":{"__isSmartRef__":true,"id":134},"putColorAt":{"__isSmartRef__":true,"id":141}},"128":{"varMapping":{"__isSmartRef__":true,"id":129},"source":"function initCanvas() {\n\t\t // create HTML5 canvas element and it's 2d render object\n\t\t var domInterface = this.renderContext().domInterface,\n\t\t shapeNode = this.renderContext().shapeNode,\n\t\t canvasEl = domInterface.htmlCanvas();\n\t\t shapeNode.appendChild(canvasEl);\n\t\t this.canvas = canvasEl.getContext(\"2d\");\n\t\t this.canvas.width = this.getExtent().x;\n\t\t this.canvas.height = this.getExtent().y;\n this.canvas.canvas.width = this.getExtent().x;\n this.canvas.canvas.height = this.getExtent().y;\n\n //this.canvas.color = Color.red;\n\t }","funcProperties":{"__isSmartRef__":true,"id":130},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"129":{"this":{"__isSmartRef__":true,"id":115}},"130":{},"131":{"varMapping":{"__isSmartRef__":true,"id":132},"source":"function drawImageElement(imgEl) {\n\t\t // drawImage can rescale image\n\t\t this.canvas.drawImage(\n\t\t\timgEl, 0,0, this.getExtent().x, this.getExtent().y);\n\t }","funcProperties":{"__isSmartRef__":true,"id":133},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"132":{"this":{"__isSmartRef__":true,"id":115}},"133":{},"134":{"varMapping":{"__isSmartRef__":true,"id":135},"source":"function onMouseMove(evt) {\n\t\t // when click on me that I draw funny pixels inside the image\n\t\t if (this.world().clickedOnMorph !== this) {\n\t\t\treturn $super(evt);\n\t\t }\n\t\t var localPos = this.localize(evt.hand.getPosition());\n\t\t // fun with colors :)\n\t\t //this.color = (this.color || Color.random()).mixedWith(Color.random(), 0.6);\n this.color = Color.red;\n\t\t this.putColorAt(this.color, localPos, 3);\n\t\t return true;\n\t }","funcProperties":{"__isSmartRef__":true,"id":140},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"135":{"this":{"__isSmartRef__":true,"id":115},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":136}},"136":{"$super":{"__isSmartRef__":true,"id":137}},"137":{"varMapping":{"__isSmartRef__":true,"id":138},"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":139},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"138":{"obj":{"__isSmartRef__":true,"id":115},"name":"onMouseMove"},"139":{},"140":{},"141":{"varMapping":{"__isSmartRef__":true,"id":142},"source":"function putColorAt(color, pos, thickness) {\n\t\t thickness = thickness || 1;\n\t\t var ctx = this.canvas;\n\t\t ctx.fillStyle = color.toString();\n\t\t ctx.beginPath();\n\t\t ctx.arc(pos.x, pos.y, thickness, 0, Math.PI*4, false); \n\t\t ctx.closePath();\n\t\t ctx.fill();\n\t }","funcProperties":{"__isSmartRef__":true,"id":143},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"142":{"this":{"__isSmartRef__":true,"id":115}},"143":{},"144":{"submorphs":[{"__isSmartRef__":true,"id":145},{"__isSmartRef__":true,"id":160}],"scripts":[],"id":"1D7672F5-217A-48F7-B7A1-E551CB1475E0","shape":{"__isSmartRef__":true,"id":173},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":180},"showsHalos":false,"name":"CommentPinGood","partsBinMetaInfo":{"__isSmartRef__":true,"id":181},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":192},"eventHandler":{"__isSmartRef__":true,"id":193},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"layout":{"__isSmartRef__":true,"id":194},"priorExtent":{"__isSmartRef__":true,"id":196},"distanceToDragEvent":{"__isSmartRef__":true,"id":197},"isBeingDragged":false,"prevScroll":[0,0],"annotation":{"__isSmartRef__":true,"id":198},"isCopyMorphRef":true,"morphRefId":1,"derivationIds":[176,"44607EBD-584F-400A-BD2A-F81EE6544163","268B09D4-A30B-423B-A91C-F4E2264FF19A","4BA45879-B420-4C90-8982-44E8B4E7A8F7","2D8E7682-6008-472A-AE2A-5E04942D2464","E12724D2-0D4C-4A62-BEFB-173A674AF159","8891AAE3-B702-4F90-9809-E67DC40E762E"],"moved":true,"isLockOwner":true,"isInLayoutCycle":false,"grabbingEnabled":false,"_Rotation":0,"_Scale":1.008036120330794,"_ClipMode":"visible","owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":583},"__LivelyClassName__":"lively.morphic.Box","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"145":{"submorphs":[],"scripts":[],"id":"06DD1808-5054-4907-99A4-18065AB50ECB","shape":{"__isSmartRef__":true,"id":146},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":152},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":149},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"AuthorLabel","partsBinMetaInfo":{"__isSmartRef__":true,"id":153},"textChunks":[{"__isSmartRef__":true,"id":154}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[0,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":156},"isLabel":true,"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","allowInput":false,"eventsAreIgnored":true,"renderContextTable":{"__isSmartRef__":true,"id":157},"eventHandler":{"__isSmartRef__":true,"id":158},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":144},"_MinTextWidth":null,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":159},"previousSelection":[0,3],"_HandStyle":"default","_PointerEvents":"none","derivationIds":[177,"1725C2ED-61D5-48E0-A17B-8E4011BC1417","FFB5671F-5A9F-4EA7-BE98-C7275AC8BC4B","A4BCE33D-3A9C-46B1-9564-244CD149DFBF","6465D258-195E-43AC-8ECE-89E7475B8562","4A9B5DF0-EB27-42D3-A24A-22127E4BC398","C6849F5C-5730-49F5-9111-00F09162A357"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"146":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":147},"_Extent":{"__isSmartRef__":true,"id":148},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":149},"_Fill":null,"renderContextTable":{"__isSmartRef__":true,"id":150},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":151},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"147":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"148":{"x":0,"y":19,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"149":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"150":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"151":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"152":{"x":64.52010528063111,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"153":{"partsSpaceName":"PartsBin/Forms/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"partName":"Label","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"154":{"style":{"__isSmartRef__":true,"id":155},"chunkOwner":{"__isSmartRef__":true,"id":145},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"155":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"156":{"x":0,"y":19,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"157":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"158":{"morph":{"__isSmartRef__":true,"id":145},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"159":{"x":37.00399799999991,"y":-17.996002000001113,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"160":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":161},"derivationIds":[null,"0C53996B-F2BB-4016-B370-993CE41548A7","E46E421D-E422-4854-92B0-FCFA11E79813","3B54E6FB-C83B-4DCD-862F-2E236150037B"],"id":"B1A36F96-375A-46FE-A973-9A8865BC65C2","renderContextTable":{"__isSmartRef__":true,"id":168},"eventHandler":{"__isSmartRef__":true,"id":169},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":170},"name":"push_pin.jpg1","priorExtent":{"__isSmartRef__":true,"id":171},"showsHalos":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":172},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","owner":{"__isSmartRef__":true,"id":144},"_Rotation":0,"_Scale":0.9880657804942092,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Image"},"161":{"_Position":{"__isSmartRef__":true,"id":162},"renderContextTable":{"__isSmartRef__":true,"id":163},"_Extent":{"__isSmartRef__":true,"id":164},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":165},"_ImageURL":"data:image/jpeg;base64,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ACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDiviprf9jeD7sI+2a8xbrz2P3v/AB0H86APz/8AiZeaj4p1vS/CPhkeZrGt3K2kC9lLHlj7KMk+woA/Qz4b+BdM+GngbQ/CmgqfsWl24iDsPmlY8u7e7MWY+5oA6mgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA+dP2jPFK290lkJAIrKDewz0duef+AhfzoA8+/Y5+Hz+I9f1r4ra3CrQ7n07RN4zhQSJ5h6ZI2A9cB+xoA+zKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgBk80dvDJNMwWKNS7MewAyTQB8BfFa51b4oeN7Lwp4cZxqviS9Me/G/wCyxE5eRuR8saAn/gOB1oA+6PCnhrT/AAb4a0nw9okXladpdslrAp5O1FABJ7k4yT3JoA2KACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDgvjD4iTw94HvnLhZLoeQufQ8t+gI/GgDx79lTwK99caz8TNbgP2jUi1lpIkTBjtlb55BkZ/eOMf7qA/xUAfT1ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAfNfx9S9+IvjfQPh5oUro9yf9LmjODbQnDTSdCMhAAM8bmA70AfQ2jaXZaHpNjpekWsdrp9jClvbwRjCxooAVR7ACgC9QAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUARXNxFZ201xcuEhhQyO56KoGSaAPJvgtoj6pca18Q9Wj/0/wAQyMtnu6xWat8uPZ2G7jqoT0oA9eoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDH8U6K/iPRbjSluPs8N3iOeQZ3eVn51XBHLDK57ZzzjBANS3t4rSCK3tYkigiUJHGgwqKBgADsAKAJKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAP/9k=","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"hidden","_Fill":{"__isSmartRef__":true,"id":166},"_BorderColor":{"__isSmartRef__":true,"id":167},"__LivelyClassName__":"lively.morphic.Shapes.Image"},"162":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"163":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setImageURL":"setImageURLHTML","getNativeExtent":"getNativeExtentHTML"},"164":{"x":44.03010528063112,"y":36.04816844900994,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"165":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"166":{"r":0.930847180948886,"g":1,"b":0.9799634139672412,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"167":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"168":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"169":{"morph":{"__isSmartRef__":true,"id":160},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"170":{"x":2.0059850199855873,"y":2.077805259805018,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"171":{"x":44.03010528063112,"y":36.04816844900994,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"172":{"x":36.981936831620715,"y":-14.090315841893783,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"173":{"position":{"__isSmartRef__":true,"id":174},"_Extent":{"__isSmartRef__":true,"id":175},"_BorderWidth":2.924,"_BorderColor":{"__isSmartRef__":true,"id":176},"_Fill":{"__isSmartRef__":true,"id":177},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":178},"_ClipMode":"visible","_BorderRadius":20.35,"_Opacity":1,"_BorderStyle":"hidden","_Padding":{"__isSmartRef__":true,"id":179},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"174":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"175":{"x":61.62892876092962,"y":39.760599200599756,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"176":{"r":0.372,"g":0.369,"b":0.372,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"177":{"r":0.9641805142822193,"g":1,"b":0.9923768786805749,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"178":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"179":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"180":{"x":1300,"y":170,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"181":{"partsSpaceName":"PartsBin/Tests","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple comment annotation pin","migrationLevel":4,"partName":"CommentPinGood","changes":[{"__isSmartRef__":true,"id":182},{"__isSmartRef__":true,"id":184},{"__isSmartRef__":true,"id":186},{"__isSmartRef__":true,"id":188},{"__isSmartRef__":true,"id":190}],"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"182":{"date":{"__isSmartRef__":true,"id":183},"author":"aniljose","message":"","id":"840C4B3C-EA8D-414D-9EFD-346EEC6FFC44"},"183":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:23:02 GMT-0400 (Eastern Daylight Time)"},"184":{"date":{"__isSmartRef__":true,"id":185},"author":"aniljose","message":"","id":"551B54D5-9809-400A-98A3-6450DED81EE0"},"185":{"isSerializedDate":true,"string":"Thu Apr 12 2012 21:36:13 GMT-0400 (Eastern Daylight Time)"},"186":{"date":{"__isSmartRef__":true,"id":187},"author":"aniljose","message":"","id":"ECB4B427-F32C-4B8D-854E-A3B8E253743A"},"187":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:25:35 GMT-0400 (Eastern Daylight Time)"},"188":{"date":{"__isSmartRef__":true,"id":189},"author":"aniljose","message":"","id":"638C2B6C-BA0F-4575-976F-7613C34E9B7F"},"189":{"isSerializedDate":true,"string":"Thu Apr 12 2012 14:06:56 GMT-0400 (Eastern Daylight Time)"},"190":{"date":{"__isSmartRef__":true,"id":191},"author":"undefined","message":"","id":"FC0A9FA8-FD70-49EB-81A8-89E21535AF1A"},"191":{"isSerializedDate":true,"string":"Fri Apr 13 2012 15:59:40 GMT-0400 (Eastern Daylight Time)"},"192":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"193":{"morph":{"__isSmartRef__":true,"id":144},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"194":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":false,"moveVertical":false,"moveHorizontal":false,"centeredHorizontal":false,"centeredVertical":false,"extentWithoutPlaceholder":{"__isSmartRef__":true,"id":195}},"195":{"x":31.53527094086636,"y":39,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"196":{"x":62.62294374094461,"y":39.760599200599756,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"197":{"x":453.0000000000002,"y":-11.000000000000057,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"198":{"submorphs":[{"__isSmartRef__":true,"id":199},{"__isSmartRef__":true,"id":249},{"__isSmartRef__":true,"id":334},{"__isSmartRef__":true,"id":389},{"__isSmartRef__":true,"id":443},{"__isSmartRef__":true,"id":500}],"scripts":[],"id":"4AC0C354-A418-4CBD-A811-FE86A01D408C","shape":{"__isSmartRef__":true,"id":519},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":526},"showsHalos":false,"name":"Annotation","partsBinMetaInfo":{"__isSmartRef__":true,"id":527},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":528},"eventHandler":{"__isSmartRef__":true,"id":529},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":null,"layout":{"__isSmartRef__":true,"id":530},"priorExtent":{"__isSmartRef__":true,"id":531},"_Visible":true,"distanceToDragEvent":{"__isSmartRef__":true,"id":532},"isBeingDragged":false,"visibilityIsTemporary":false,"annotation":{"__isSmartRef__":true,"id":533},"annotationPin":{"__isSmartRef__":true,"id":144},"isCopyMorphRef":true,"morphRefId":1,"eventsAreIgnored":false,"grabbingEnabled":false,"prevScroll":[0,0],"derivationIds":[232,"EC72AF23-3094-49D2-AED6-9CC7D8F3B432","46EE9BA6-C82A-4523-BD74-57D692971FD2","E28C8DBB-184F-43E2-BB9C-6665990A43BE"],"isLockOwner":true,"_Rotation":0,"_Scale":1.006021056126275,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":534},"__LivelyClassName__":"lively.morphic.Box","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"199":{"submorphs":[{"__isSmartRef__":true,"id":200}],"scripts":[],"id":"C6A9311D-DDA5-4DB5-98B8-D622C3A9517B","shape":{"__isSmartRef__":true,"id":215},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":231},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":219},"lighterFill":{"__isSmartRef__":true,"id":232},"label":{"__isSmartRef__":true,"id":200},"showsHalos":false,"name":"CloseButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":241},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":242}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":244},"renderContextTable":{"__isSmartRef__":true,"id":245},"eventHandler":{"__isSmartRef__":true,"id":246},"owner":{"__isSmartRef__":true,"id":198},"isCopyMorphRef":true,"morphRefId":1,"isBeingDragged":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":247},"layout":{"__isSmartRef__":true,"id":248},"derivationIds":[236,"424FB96C-FAD9-4C32-AC77-CBC3A6CB3236","FC77B165-5895-4933-9FEE-38A75D9081D9","611EEB20-5E7C-4F3E-9919-D9B876F9BDCE"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Button"},"200":{"submorphs":[],"scripts":[],"id":"8A682193-7D5F-4E81-A959-5B66D9C5483D","shape":{"__isSmartRef__":true,"id":201},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":207},"_MaxTextWidth":18,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":208},"_Padding":{"__isSmartRef__":true,"id":209},"owner":{"__isSmartRef__":true,"id":199},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":210},"textChunks":[{"__isSmartRef__":true,"id":211}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":213},"eventHandler":{"__isSmartRef__":true,"id":214},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":18,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[237,"AFD4B46E-37EE-4DD8-B5E9-8062241D34B5","2A4A20BD-E821-418E-AC80-972935B01658","8FE51F75-5707-4835-B418-24E2E692A048"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"201":{"position":{"__isSmartRef__":true,"id":202},"_Extent":{"__isSmartRef__":true,"id":203},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":204},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":205},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":206},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"202":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"203":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"204":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"205":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"206":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"207":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"208":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"209":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"210":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"211":{"style":{"__isSmartRef__":true,"id":212},"morph":{"__isSmartRef__":true,"id":200},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":200},"storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"212":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"213":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"214":{"morph":{"__isSmartRef__":true,"id":200},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"215":{"position":{"__isSmartRef__":true,"id":216},"_Extent":{"__isSmartRef__":true,"id":217},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":218},"_Fill":{"__isSmartRef__":true,"id":219},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":229},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":230},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"216":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"217":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"218":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"219":{"stops":[{"__isSmartRef__":true,"id":220},{"__isSmartRef__":true,"id":222},{"__isSmartRef__":true,"id":224},{"__isSmartRef__":true,"id":226}],"vector":{"__isSmartRef__":true,"id":228},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"220":{"offset":0,"color":{"__isSmartRef__":true,"id":221}},"221":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"222":{"offset":0.4,"color":{"__isSmartRef__":true,"id":223}},"223":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"224":{"offset":0.6,"color":{"__isSmartRef__":true,"id":225}},"225":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"226":{"offset":1,"color":{"__isSmartRef__":true,"id":227}},"227":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"228":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"229":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"230":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"231":{"x":621.8577005621215,"y":3.4655939310212034,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"232":{"stops":[{"__isSmartRef__":true,"id":233},{"__isSmartRef__":true,"id":235},{"__isSmartRef__":true,"id":237},{"__isSmartRef__":true,"id":239}],"vector":{"__isSmartRef__":true,"id":228},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"233":{"offset":0,"color":{"__isSmartRef__":true,"id":234}},"234":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"235":{"offset":0.4,"color":{"__isSmartRef__":true,"id":236}},"236":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"237":{"offset":0.6,"color":{"__isSmartRef__":true,"id":238}},"238":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"239":{"offset":1,"color":{"__isSmartRef__":true,"id":240}},"240":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"241":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"242":{"sourceObj":{"__isSmartRef__":true,"id":199},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":198},"targetMethodName":"close","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":243},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"243":{"source":{"__isSmartRef__":true,"id":199},"target":{"__isSmartRef__":true,"id":198}},"244":{"x":19,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"245":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"246":{"morph":{"__isSmartRef__":true,"id":199},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"247":{"x":32.95333351377553,"y":-13.988874579543392,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"248":{"moveHorizontal":true},"249":{"submorphs":[{"__isSmartRef__":true,"id":250},{"__isSmartRef__":true,"id":269}],"scripts":[],"id":"07853DE1-C742-43FA-AAAC-558C5321E66F","shape":{"__isSmartRef__":true,"id":319},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":326},"showsHalos":false,"name":"AnnotationVBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":327},"__SourceModuleName__":"Global.lively.morphic.Core","priorExtent":{"__isSmartRef__":true,"id":328},"layout":{"__isSmartRef__":true,"id":329},"attributeConnections":[],"renderContextTable":{"__isSmartRef__":true,"id":331},"eventHandler":{"__isSmartRef__":true,"id":332},"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":198},"distanceToDragEvent":{"__isSmartRef__":true,"id":333},"isInLayoutCycle":false,"prevScroll":[0,0],"isBeingDragged":false,"derivationIds":[7260,"24A6EA3A-390F-4DDD-B55E-15A910E16550","F5C83D69-97C6-4401-9F8F-C02BF1FC5907","6C1DA55D-7D8C-40AC-B5C0-AC6DFFAE8C42"],"isLockOwner":false,"_Rotation":0,"_Scale":1.002003004005006,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Box","withLayers":["Global.lively.morphic.GrabbingLayer"]},"250":{"submorphs":[],"scripts":[],"id":"B6DFB181-FEB4-429E-9055-29D2DF11755E","shape":{"__isSmartRef__":true,"id":251},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":258},"_MaxTextWidth":268.53332813092516,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":259},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Comment","partsBinMetaInfo":{"__isSmartRef__":true,"id":260},"textChunks":[{"__isSmartRef__":true,"id":261}],"charsReplaced":"Your comment goes here.","lastFindLoc":23,"priorSelectionRange":[3,3],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":263},"renderContextTable":{"__isSmartRef__":true,"id":264},"eventHandler":{"__isSmartRef__":true,"id":265},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":266},"_MinTextWidth":268.53332813092516,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":267},"owner":{"__isSmartRef__":true,"id":249},"layout":{"__isSmartRef__":true,"id":268},"previousSelection":[0,0],"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"auto","derivationIds":[240,"075F605E-A020-4077-8CAE-73346ED6CA08","90AE1A69-D426-42A5-9C38-8BF8F3ED4A21","981F52D8-A31E-46C9-ADAC-94135B959FA1"],"isLockOwner":false,"isBeingDragged":false,"_Rotation":0,"_Scale":0.998001,"__LivelyClassName__":"lively.morphic.Text"},"251":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":252},"_Extent":{"__isSmartRef__":true,"id":253},"_BorderWidth":1.036,"_BorderColor":{"__isSmartRef__":true,"id":254},"renderContextTable":{"__isSmartRef__":true,"id":255},"_ClipMode":"auto","_BorderRadius":4.8100000000000005,"_Opacity":1,"_BorderStyle":"solid","_Padding":{"__isSmartRef__":true,"id":256},"_Fill":{"__isSmartRef__":true,"id":257},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"252":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"253":{"x":270.60532813092516,"y":314.66614152023885,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"254":{"r":0.572,"g":0.572,"b":0.572,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"255":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"256":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"257":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"258":{"x":350.10390422366766,"y":16.999999999999396,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"259":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"260":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"261":{"style":{"__isSmartRef__":true,"id":262},"chunkOwner":{"__isSmartRef__":true,"id":250},"storedString":"Test Comment","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"262":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"263":{"x":270.60532813092516,"y":314.66614152023885,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"264":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"265":{"morph":{"__isSmartRef__":true,"id":250},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"266":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"267":{"x":150.22856470859324,"y":-13.744825056852278,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"268":{"resizeWidth":true,"resizeHeight":true},"269":{"submorphs":[{"__isSmartRef__":true,"id":270}],"scripts":[],"id":"AE28D507-01C1-42C6-AF34-4538964634A1","shape":{"__isSmartRef__":true,"id":285},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":301},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":289},"lighterFill":{"__isSmartRef__":true,"id":302},"label":{"__isSmartRef__":true,"id":270},"showsHalos":false,"name":"CancelButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":311},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":312}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":314},"renderContextTable":{"__isSmartRef__":true,"id":315},"eventHandler":{"__isSmartRef__":true,"id":316},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":317},"layout":{"__isSmartRef__":true,"id":318},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","B9FAB98F-8B65-4277-94B0-E252BD02F6D7","3A01EEBA-175A-476C-89F4-BACFE5D2E39A","D0965275-9890-40BA-8729-6B09D2F18E17"],"owner":{"__isSmartRef__":true,"id":249},"isLockOwner":false,"close":false,"_Rotation":0,"_Scale":0.992027944069942,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Button"},"270":{"submorphs":[],"scripts":[],"id":"AA2E7372-FCAE-4BF8-8160-0132D803FA1C","shape":{"__isSmartRef__":true,"id":271},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":277},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":278},"_Padding":{"__isSmartRef__":true,"id":279},"owner":{"__isSmartRef__":true,"id":269},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":280},"textChunks":[{"__isSmartRef__":true,"id":281}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":283},"eventHandler":{"__isSmartRef__":true,"id":284},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","75C5A849-22BC-4A8D-A9DC-5BDE6A4C4007","BD5E4899-2C72-4C26-B166-7A8373106C5A","B876ECBB-EC75-42A2-ADB1-AE20407D9349"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"271":{"position":{"__isSmartRef__":true,"id":272},"_Extent":{"__isSmartRef__":true,"id":273},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":274},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":275},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":276},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"272":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"273":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"274":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"275":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"276":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"277":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"278":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"279":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"280":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"281":{"style":{"__isSmartRef__":true,"id":282},"chunkOwner":{"__isSmartRef__":true,"id":270},"storedString":"Cancel","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"282":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"283":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"284":{"morph":{"__isSmartRef__":true,"id":270},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"285":{"position":{"__isSmartRef__":true,"id":286},"_Extent":{"__isSmartRef__":true,"id":287},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":288},"_Fill":{"__isSmartRef__":true,"id":289},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":299},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":300},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"286":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"287":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"288":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"289":{"stops":[{"__isSmartRef__":true,"id":290},{"__isSmartRef__":true,"id":292},{"__isSmartRef__":true,"id":294},{"__isSmartRef__":true,"id":296}],"vector":{"__isSmartRef__":true,"id":298},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"290":{"offset":0,"color":{"__isSmartRef__":true,"id":291}},"291":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"292":{"offset":0.4,"color":{"__isSmartRef__":true,"id":293}},"293":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"294":{"offset":0.6,"color":{"__isSmartRef__":true,"id":295}},"295":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"296":{"offset":1,"color":{"__isSmartRef__":true,"id":297}},"297":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"298":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"299":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"300":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"301":{"x":557.4193971644545,"y":336.98780708595353,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"302":{"stops":[{"__isSmartRef__":true,"id":303},{"__isSmartRef__":true,"id":305},{"__isSmartRef__":true,"id":307},{"__isSmartRef__":true,"id":309}],"vector":{"__isSmartRef__":true,"id":298},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"303":{"offset":0,"color":{"__isSmartRef__":true,"id":304}},"304":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"305":{"offset":0.4,"color":{"__isSmartRef__":true,"id":306}},"306":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"307":{"offset":0.6,"color":{"__isSmartRef__":true,"id":308}},"308":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"309":{"offset":1,"color":{"__isSmartRef__":true,"id":310}},"310":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"311":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"312":{"sourceObj":{"__isSmartRef__":true,"id":269},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":198},"targetMethodName":"close","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":313},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"313":{"source":{"__isSmartRef__":true,"id":269},"target":{"__isSmartRef__":true,"id":198}},"314":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"315":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"316":{"morph":{"__isSmartRef__":true,"id":269},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"317":{"x":44.98877014800337,"y":-14.246240119254253,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"318":{"moveVertical":true,"moveHorizontal":true},"319":{"position":{"__isSmartRef__":true,"id":320},"_Extent":{"__isSmartRef__":true,"id":321},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":322},"_Fill":{"__isSmartRef__":true,"id":323},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":324},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":325},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"320":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"321":{"x":602.2282623764735,"y":323.57200033199587,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"322":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"323":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"324":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"325":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"326":{"x":12.458222518260243,"y":5.320348263502126,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"327":{"partsSpaceName":"PartsBin/Layout/","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph","migrationLevel":2,"partName":"VBox","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"328":{"x":602.2282623764735,"y":322.5739993319959,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"329":{"layouter":{"__isSmartRef__":true,"id":330}},"330":{"__SourceModuleName__":"Global.lively.morphic.Layout","borderSize":10,"spacing":15,"__LivelyClassName__":"lively.morphic.Layout.VerticalLayout"},"331":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"332":{"morph":{"__isSmartRef__":true,"id":249},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"333":{"x":414.270881395786,"y":-12.505030496246263,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"334":{"submorphs":[{"__isSmartRef__":true,"id":335}],"scripts":[],"id":"5D74275E-A5DE-495A-B145-FE93BBAB94AC","shape":{"__isSmartRef__":true,"id":350},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":366},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":354},"lighterFill":{"__isSmartRef__":true,"id":367},"label":{"__isSmartRef__":true,"id":335},"showsHalos":false,"name":"ClearAll","partsBinMetaInfo":{"__isSmartRef__":true,"id":376},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":377}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":379},"renderContextTable":{"__isSmartRef__":true,"id":380},"eventHandler":{"__isSmartRef__":true,"id":381},"isCopyMorphRef":true,"morphRefId":1,"owner":{"__isSmartRef__":true,"id":198},"distanceToDragEvent":{"__isSmartRef__":true,"id":382},"layout":{"__isSmartRef__":true,"id":383},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","2FA06619-30E2-4AEB-A695-3C2E7E7F5C25"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":384},"__LivelyClassName__":"lively.morphic.Button"},"335":{"submorphs":[],"scripts":[],"id":"92916FC6-9D3B-4F3E-B43F-0BB138D729C1","shape":{"__isSmartRef__":true,"id":336},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":342},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":343},"_Padding":{"__isSmartRef__":true,"id":344},"owner":{"__isSmartRef__":true,"id":334},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":345},"textChunks":[{"__isSmartRef__":true,"id":346}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":348},"eventHandler":{"__isSmartRef__":true,"id":349},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","ADB2BD78-AEF4-412E-B9C3-017506E0258B"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"336":{"position":{"__isSmartRef__":true,"id":337},"_Extent":{"__isSmartRef__":true,"id":338},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":339},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":340},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":341},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"337":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"338":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"339":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"340":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"341":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"342":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"343":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"344":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"345":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"346":{"style":{"__isSmartRef__":true,"id":347},"chunkOwner":{"__isSmartRef__":true,"id":335},"storedString":"Reset","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"347":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"348":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"349":{"morph":{"__isSmartRef__":true,"id":335},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"350":{"position":{"__isSmartRef__":true,"id":351},"_Extent":{"__isSmartRef__":true,"id":352},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":353},"_Fill":{"__isSmartRef__":true,"id":354},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":364},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":365},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"351":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"352":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"353":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"354":{"stops":[{"__isSmartRef__":true,"id":355},{"__isSmartRef__":true,"id":357},{"__isSmartRef__":true,"id":359},{"__isSmartRef__":true,"id":361}],"vector":{"__isSmartRef__":true,"id":363},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"355":{"offset":0,"color":{"__isSmartRef__":true,"id":356}},"356":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"357":{"offset":0.4,"color":{"__isSmartRef__":true,"id":358}},"358":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"359":{"offset":0.6,"color":{"__isSmartRef__":true,"id":360}},"360":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"361":{"offset":1,"color":{"__isSmartRef__":true,"id":362}},"362":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"363":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"364":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"365":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"366":{"x":446.76633072385846,"y":342.56538329736134,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"367":{"stops":[{"__isSmartRef__":true,"id":368},{"__isSmartRef__":true,"id":370},{"__isSmartRef__":true,"id":372},{"__isSmartRef__":true,"id":374}],"vector":{"__isSmartRef__":true,"id":363},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"368":{"offset":0,"color":{"__isSmartRef__":true,"id":369}},"369":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"370":{"offset":0.4,"color":{"__isSmartRef__":true,"id":371}},"371":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"372":{"offset":0.6,"color":{"__isSmartRef__":true,"id":373}},"373":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"374":{"offset":1,"color":{"__isSmartRef__":true,"id":375}},"375":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"376":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"377":{"sourceObj":{"__isSmartRef__":true,"id":334},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":334},"targetMethodName":"clear","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":378},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"378":{"source":{"__isSmartRef__":true,"id":334},"target":{"__isSmartRef__":true,"id":334}},"379":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"380":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"381":{"morph":{"__isSmartRef__":true,"id":334},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"382":{"x":45.7170411763866,"y":-12.823434282261701,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"383":{"moveVertical":true,"moveHorizontal":true},"384":{"clear":{"__isSmartRef__":true,"id":385}},"385":{"varMapping":{"__isSmartRef__":true,"id":386},"source":"function clear() {\n var annotation = this.get(\"Annotation\");\n annotation.reset();\n annotation.clearComment();\n}","funcProperties":{"__isSmartRef__":true,"id":387},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"386":{"this":{"__isSmartRef__":true,"id":334}},"387":{"timestamp":{"__isSmartRef__":true,"id":388},"user":"aniljose","tags":[]},"388":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:21:22 GMT-0400 (Eastern Daylight Time)"},"389":{"submorphs":[{"__isSmartRef__":true,"id":390}],"scripts":[],"id":"0D4672DC-76EA-4D52-AF19-13E6AE6F019A","shape":{"__isSmartRef__":true,"id":405},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":421},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":409},"lighterFill":{"__isSmartRef__":true,"id":422},"label":{"__isSmartRef__":true,"id":390},"showsHalos":false,"name":"SaveButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":431},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":432}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":433},"renderContextTable":{"__isSmartRef__":true,"id":434},"eventHandler":{"__isSmartRef__":true,"id":435},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":436},"layout":{"__isSmartRef__":true,"id":437},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","C46AAED7-B4B7-4FFE-88AD-1914964500A3","BE719DA3-0A96-4A78-AED6-5F33939D1954"],"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":198},"prevScroll":[0,0],"_Rotation":0,"_Scale":0.9880657804941866,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":438},"__LivelyClassName__":"lively.morphic.Button"},"390":{"submorphs":[],"scripts":[],"id":"90AB6B73-1898-4CD2-9391-8375A4D3C176","shape":{"__isSmartRef__":true,"id":391},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":397},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":398},"_Padding":{"__isSmartRef__":true,"id":399},"owner":{"__isSmartRef__":true,"id":389},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":400},"textChunks":[{"__isSmartRef__":true,"id":401}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":403},"eventHandler":{"__isSmartRef__":true,"id":404},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","E97F2028-93F1-471E-878F-E307CD701D3A","8FE1DC14-9139-45B8-84FA-83D17DE603F3"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"391":{"position":{"__isSmartRef__":true,"id":392},"_Extent":{"__isSmartRef__":true,"id":393},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":394},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":395},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":396},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"392":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"393":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"394":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"395":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"396":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"397":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"398":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"399":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"400":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"401":{"style":{"__isSmartRef__":true,"id":402},"chunkOwner":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Save","__LivelyClassName__":"lively.morphic.TextChunk"},"402":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"403":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"404":{"morph":{"__isSmartRef__":true,"id":390},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"405":{"position":{"__isSmartRef__":true,"id":406},"_Extent":{"__isSmartRef__":true,"id":407},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":408},"_Fill":{"__isSmartRef__":true,"id":409},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":419},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":420},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"406":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"407":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"408":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"409":{"stops":[{"__isSmartRef__":true,"id":410},{"__isSmartRef__":true,"id":412},{"__isSmartRef__":true,"id":414},{"__isSmartRef__":true,"id":416}],"vector":{"__isSmartRef__":true,"id":418},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"410":{"offset":0,"color":{"__isSmartRef__":true,"id":411}},"411":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"412":{"offset":0.4,"color":{"__isSmartRef__":true,"id":413}},"413":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"414":{"offset":0.6,"color":{"__isSmartRef__":true,"id":415}},"415":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"416":{"offset":1,"color":{"__isSmartRef__":true,"id":417}},"417":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"418":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"419":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"420":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"421":{"x":384.08855465053364,"y":342.7563308094581,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"422":{"stops":[{"__isSmartRef__":true,"id":423},{"__isSmartRef__":true,"id":425},{"__isSmartRef__":true,"id":427},{"__isSmartRef__":true,"id":429}],"vector":{"__isSmartRef__":true,"id":418},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"423":{"offset":0,"color":{"__isSmartRef__":true,"id":424}},"424":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"425":{"offset":0.4,"color":{"__isSmartRef__":true,"id":426}},"426":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"427":{"offset":0.6,"color":{"__isSmartRef__":true,"id":428}},"428":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"429":{"offset":1,"color":{"__isSmartRef__":true,"id":430}},"430":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"431":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"432":{"sourceObj":{"__isSmartRef__":true,"id":389},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":389},"targetMethodName":"closeOwner","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"433":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"434":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"435":{"morph":{"__isSmartRef__":true,"id":389},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"436":{"x":47.151862329666756,"y":-16.016688128175986,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"437":{"moveVertical":true,"moveHorizontal":true},"438":{"closeOwner":{"__isSmartRef__":true,"id":439}},"439":{"varMapping":{"__isSmartRef__":true,"id":440},"source":"function closeOwner() {\n var annotation = this.get(\"Annotation\");\n //annotation.remove();\n //annotation.visibilityIsTemporary = true;\n annotation.saveChanges();\n}","funcProperties":{"__isSmartRef__":true,"id":441},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"440":{"this":{"__isSmartRef__":true,"id":389}},"441":{"timestamp":{"__isSmartRef__":true,"id":442},"user":"aniljose","tags":[]},"442":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:19:45 GMT-0400 (Eastern Daylight Time)"},"443":{"submorphs":[{"__isSmartRef__":true,"id":444}],"scripts":[],"id":"38DA5262-9154-4491-98FB-A62BA818A1EC","shape":{"__isSmartRef__":true,"id":459},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":475},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":463},"lighterFill":{"__isSmartRef__":true,"id":476},"label":{"__isSmartRef__":true,"id":444},"showsHalos":false,"name":"ClearCmt","partsBinMetaInfo":{"__isSmartRef__":true,"id":485},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":486},{"__isSmartRef__":true,"id":488}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":490},"renderContextTable":{"__isSmartRef__":true,"id":491},"eventHandler":{"__isSmartRef__":true,"id":492},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":493},"layout":{"__isSmartRef__":true,"id":494},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","A9F67AC8-24EA-42F2-8E17-2C6285845F51","8F69EE1F-B015-42AA-B64F-E3DB71BD3A8B"],"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":198},"clear":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":0.9880657804941866,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":495},"__LivelyClassName__":"lively.morphic.Button"},"444":{"submorphs":[],"scripts":[],"id":"16AEA8F7-5B7E-4982-8C2F-9CD46ACE93CA","shape":{"__isSmartRef__":true,"id":445},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":451},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":452},"_Padding":{"__isSmartRef__":true,"id":453},"owner":{"__isSmartRef__":true,"id":443},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":454},"textChunks":[{"__isSmartRef__":true,"id":455}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":457},"eventHandler":{"__isSmartRef__":true,"id":458},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","E3512FBC-D6CC-4849-9261-B03CA9C10058","C1AA6AB7-251B-4675-A5F3-62604AA9D97A"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"445":{"position":{"__isSmartRef__":true,"id":446},"_Extent":{"__isSmartRef__":true,"id":447},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":448},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":449},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":450},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"446":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"447":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"448":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"449":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"450":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"451":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"452":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"453":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"454":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"455":{"style":{"__isSmartRef__":true,"id":456},"chunkOwner":{"__isSmartRef__":true,"id":444},"storedString":"Clear","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"456":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"457":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"458":{"morph":{"__isSmartRef__":true,"id":444},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"459":{"position":{"__isSmartRef__":true,"id":460},"_Extent":{"__isSmartRef__":true,"id":461},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":462},"_Fill":{"__isSmartRef__":true,"id":463},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":473},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":474},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"460":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"461":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"462":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"463":{"stops":[{"__isSmartRef__":true,"id":464},{"__isSmartRef__":true,"id":466},{"__isSmartRef__":true,"id":468},{"__isSmartRef__":true,"id":470}],"vector":{"__isSmartRef__":true,"id":472},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"464":{"offset":0,"color":{"__isSmartRef__":true,"id":465}},"465":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"466":{"offset":0.4,"color":{"__isSmartRef__":true,"id":467}},"467":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"468":{"offset":0.6,"color":{"__isSmartRef__":true,"id":469}},"469":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"470":{"offset":1,"color":{"__isSmartRef__":true,"id":471}},"471":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"472":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"473":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"474":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"475":{"x":509.72805362686177,"y":342.8160019069867,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"476":{"stops":[{"__isSmartRef__":true,"id":477},{"__isSmartRef__":true,"id":479},{"__isSmartRef__":true,"id":481},{"__isSmartRef__":true,"id":483}],"vector":{"__isSmartRef__":true,"id":472},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"477":{"offset":0,"color":{"__isSmartRef__":true,"id":478}},"478":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"479":{"offset":0.4,"color":{"__isSmartRef__":true,"id":480}},"480":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"481":{"offset":0.6,"color":{"__isSmartRef__":true,"id":482}},"482":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"483":{"offset":1,"color":{"__isSmartRef__":true,"id":484}},"484":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"485":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"486":{"sourceObj":{"__isSmartRef__":true,"id":443},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":443},"targetMethodName":"clear","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":487},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"487":{"source":{"__isSmartRef__":true,"id":443},"target":{"__isSmartRef__":true,"id":443}},"488":{"sourceObj":{"__isSmartRef__":true,"id":443},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":443},"targetMethodName":"cleardata","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":489},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"489":{"source":{"__isSmartRef__":true,"id":443},"target":{"__isSmartRef__":true,"id":443}},"490":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"491":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"492":{"morph":{"__isSmartRef__":true,"id":443},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"493":{"x":37.994843579873304,"y":-12.077079955022498,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"494":{"moveVertical":true,"moveHorizontal":true},"495":{"cleardata":{"__isSmartRef__":true,"id":496}},"496":{"varMapping":{"__isSmartRef__":true,"id":497},"source":"function cleardata() {\n var annotation = this.get(\"Annotation\");\n annotation.clearComment();\n}","funcProperties":{"__isSmartRef__":true,"id":498},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"497":{"this":{"__isSmartRef__":true,"id":443}},"498":{"timestamp":{"__isSmartRef__":true,"id":499},"user":"aniljose","tags":[]},"499":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:37:55 GMT-0400 (Eastern Daylight Time)"},"500":{"submorphs":[],"scripts":[],"id":"CB514576-29B8-4EAB-A381-D8AE066FE092","shape":{"__isSmartRef__":true,"id":501},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":508},"_MaxTextWidth":328.891015394333,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":504},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text12","partsBinMetaInfo":{"__isSmartRef__":true,"id":509},"textChunks":[{"__isSmartRef__":true,"id":512}],"charsReplaced":"s","lastFindLoc":6,"priorSelectionRange":[4,4],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":514},"renderContextTable":{"__isSmartRef__":true,"id":515},"eventHandler":{"__isSmartRef__":true,"id":516},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":517},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","5050DFC3-DC71-4FFC-B728-D0FA31630535","34A623BF-9697-40D0-9A58-DD8FAE39B280"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":328.891015394333,"_MinTextHeight":null,"previousSelection":[6,6],"owner":{"__isSmartRef__":true,"id":198},"distanceToDragEvent":{"__isSmartRef__":true,"id":518},"_Rotation":0,"_Scale":0.9920279440699217,"__LivelyClassName__":"lively.morphic.Text"},"501":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":502},"_Extent":{"__isSmartRef__":true,"id":503},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":504},"renderContextTable":{"__isSmartRef__":true,"id":505},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":506},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_Fill":{"__isSmartRef__":true,"id":507},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"502":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"503":{"x":336.891015394333,"y":35,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"504":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"505":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"506":{"x":4,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"507":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"508":{"x":15.761673814531264,"y":24.463318326880838,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"509":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","changes":[{"__isSmartRef__":true,"id":510}],"revisionOnLoad":148789,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"510":{"date":{"__isSmartRef__":true,"id":511},"author":"undefined","message":"Set the inset as: this.setPadding(Rectangle.inset(4,2)). This gives it a more pleasing appearance with a border, and also makes it easier to select near the bounds.","id":"BD5B0E4C-4830-4863-A013-35BB66D5AD6F"},"511":{"isSerializedDate":true,"string":"Mon Feb 27 2012 00:20:38 GMT-0500 (Eastern Standard Time)"},"512":{"style":{"__isSmartRef__":true,"id":513},"chunkOwner":{"__isSmartRef__":true,"id":500},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"513":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"514":{"x":336.891015394333,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"515":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"516":{"morph":{"__isSmartRef__":true,"id":500},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"517":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"518":{"x":255.92752980777846,"y":-14.879216346306123,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"519":{"position":{"__isSmartRef__":true,"id":520},"_Extent":{"__isSmartRef__":true,"id":521},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":522},"_Fill":{"__isSmartRef__":true,"id":523},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":524},"_ClipMode":"visible","_BorderRadius":7.03,"_Opacity":1,"_BorderStyle":"solid","_Padding":{"__isSmartRef__":true,"id":525},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"520":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"521":{"x":644.2498164508953,"y":373.61299768767066,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"522":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"523":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"524":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"525":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"526":{"x":20,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"527":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph. A really blue one. Its amazing what you can build out of simple boxes.... Who needs stars when you got blue rectangles!","migrationLevel":2,"partName":"Rectangle","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"528":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"529":{"morph":{"__isSmartRef__":true,"id":198},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"530":{"adjustForNewBounds":true},"531":{"x":644.2498164508953,"y":373.61299768767066,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"532":{"x":340,"y":-15,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"533":{"comment":"Test Comment"},"534":{"show":{"__isSmartRef__":true,"id":535},"saveChanges":{"__isSmartRef__":true,"id":539},"restoreAnnotation":{"__isSmartRef__":true,"id":543},"close":{"__isSmartRef__":true,"id":547},"setComment":{"__isSmartRef__":true,"id":551},"getCalendarDate":{"__isSmartRef__":true,"id":555},"reset":{"__isSmartRef__":true,"id":559},"clearComment":{"__isSmartRef__":true,"id":563},"getURL":{"__isSmartRef__":true,"id":567},"onSubmit":{"__isSmartRef__":true,"id":571},"onUpate":{"__isSmartRef__":true,"id":575},"updateList":{"__isSmartRef__":true,"id":579}},"535":{"varMapping":{"__isSmartRef__":true,"id":536},"source":"function show() {\n this.setPosition(pt(20, 20));\n this.annotationPin.addMorph(this);\n}","funcProperties":{"__isSmartRef__":true,"id":537},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"536":{"this":{"__isSmartRef__":true,"id":198}},"537":{"timestamp":{"__isSmartRef__":true,"id":538},"user":"aniljose","tags":[]},"538":{"isSerializedDate":true,"string":"Mon Oct 17 2011 18:43:09 GMT-0400 (Eastern Daylight Time)"},"539":{"varMapping":{"__isSmartRef__":true,"id":540},"source":"function saveChanges() {\n // gather annotation informations\n var timestamp = this.getCalendarDate();\n var comment = this.get(\"Comment\").getTextString();\n var user; \n if (this.annotationPin.world() && this.annotationPin.world().getUserName && \n this.annotationPin.world().getUserName()) {\n user = this.annotationPin.world().getUserName();\n } \n\n lines = comment.split('\\n'),\n firstLine = lines[0] + '\\n' + user + ' on ' + timestamp;\n //listItem = {\n // isListItem: true,\n // string: firstLine,\n // value: {commentText: comment}\n //};\n //this.get('List1').addItem(listItem);\n\n var olddata = this.get(\"Text12\").getTextString() + '\\n';\n this.get(\"Text12\").setTextString(olddata + firstLine);\n\n // reset the annotation object\n this.annotation = {\n comment : comment\n };\n \n // update the annotation morph\n this.restoreAnnotation();\n}","funcProperties":{"__isSmartRef__":true,"id":541},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"540":{"this":{"__isSmartRef__":true,"id":198}},"541":{"timestamp":{"__isSmartRef__":true,"id":542},"user":"aniljose","tags":[]},"542":{"isSerializedDate":true,"string":"Fri Apr 13 2012 09:33:26 GMT-0400 (Eastern Daylight Time)"},"543":{"varMapping":{"__isSmartRef__":true,"id":544},"source":"function restoreAnnotation() {\n this.get(\"Comment\").setTextString(this.annotation.comment); \n}","funcProperties":{"__isSmartRef__":true,"id":545},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"544":{"this":{"__isSmartRef__":true,"id":198}},"545":{"timestamp":{"__isSmartRef__":true,"id":546},"user":"aniljose","tags":[]},"546":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:17:27 GMT-0400 (Eastern Daylight Time)"},"547":{"varMapping":{"__isSmartRef__":true,"id":548},"source":"function close() {\n this.restoreAnnotation(); \n this.remove();\n this.visibilityIsTemporary = true;\n}","funcProperties":{"__isSmartRef__":true,"id":549},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"548":{"this":{"__isSmartRef__":true,"id":198}},"549":{"timestamp":{"__isSmartRef__":true,"id":550},"user":"aniljose","tags":[]},"550":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:16:46 GMT-0400 (Eastern Daylight Time)"},"551":{"varMapping":{"__isSmartRef__":true,"id":552},"source":"function setComment(comment) {\n this.annotation.comment = comment; \n this.get(\"Comment\").setTextString(this.annotation.comment);\n}","funcProperties":{"__isSmartRef__":true,"id":553},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"552":{"this":{"__isSmartRef__":true,"id":198}},"553":{"timestamp":{"__isSmartRef__":true,"id":554},"user":"aniljose","tags":[]},"554":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:17:00 GMT-0400 (Eastern Daylight Time)"},"555":{"varMapping":{"__isSmartRef__":true,"id":556},"source":"function getCalendarDate() {\n var months = new Array(13);\n months[0] = \"January\";\n months[1] = \"February\";\n months[2] = \"March\";\n months[3] = \"April\";\n months[4] = \"May\";\n months[5] = \"June\";\n months[6] = \"July\";\n months[7] = \"August\";\n months[8] = \"September\";\n months[9] = \"October\";\n months[10] = \"November\";\n months[11] = \"December\";\n var now = new Date();\n var monthnumber = now.getMonth();\n var monthname = months[monthnumber];\n var monthday = now.getDate();\n var year = now.getYear();\n if(year < 2000) { year = year + 1900; }\n var dateString = monthname +\n ' ' +\n monthday +\n ', ' +\n year;\n return dateString;\n}","funcProperties":{"__isSmartRef__":true,"id":557},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"556":{"this":{"__isSmartRef__":true,"id":198}},"557":{"timestamp":{"__isSmartRef__":true,"id":558},"user":"aniljose","tags":[]},"558":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:02:31 GMT-0400 (Eastern Daylight Time)"},"559":{"varMapping":{"__isSmartRef__":true,"id":560},"source":"function reset() {\n //this.get(\"List1\").setList([]);\n this.get(\"Text12\").setTextString(\"\");\n}","funcProperties":{"__isSmartRef__":true,"id":561},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"560":{"this":{"__isSmartRef__":true,"id":198}},"561":{"timestamp":{"__isSmartRef__":true,"id":562},"user":"aniljose","tags":[]},"562":{"isSerializedDate":true,"string":"Fri Apr 13 2012 09:32:20 GMT-0400 (Eastern Daylight Time)"},"563":{"varMapping":{"__isSmartRef__":true,"id":564},"source":"function clearComment() {\n this.get(\"Comment\").setTextString(\"\");\n}","funcProperties":{"__isSmartRef__":true,"id":565},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"564":{"this":{"__isSmartRef__":true,"id":198}},"565":{"timestamp":{"__isSmartRef__":true,"id":566},"user":"aniljose","tags":[]},"566":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:37:34 GMT-0400 (Eastern Daylight Time)"},"567":{"varMapping":{"__isSmartRef__":true,"id":568},"source":"function getURL() {\n return new URL(\"http://lively-kernel.org/repository/webwerkstatt/users/aniljose/data.json\") \n}","funcProperties":{"__isSmartRef__":true,"id":569},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"568":{"this":{"__isSmartRef__":true,"id":198}},"569":{"timestamp":{"__isSmartRef__":true,"id":570},"user":"aniljose","tags":[]},"570":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:26:59 GMT-0400 (Eastern Daylight Time)"},"571":{"varMapping":{"__isSmartRef__":true,"id":572},"source":"function onSubmit() {\n this.highscores.push({\n name: this.world().getUserName(),\n comment: this.get('Comment').textString\n })\n\n var wr = new WebResource(this.getURL())\n var json = JSON.serialize(this.highscores);\n wr.put(json)\n this.updateList()\n}","funcProperties":{"__isSmartRef__":true,"id":573},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"572":{"this":{"__isSmartRef__":true,"id":198}},"573":{"timestamp":{"__isSmartRef__":true,"id":574},"user":"aniljose","tags":[]},"574":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:22 GMT-0400 (Eastern Daylight Time)"},"575":{"varMapping":{"__isSmartRef__":true,"id":576},"source":"function onUpate() {\nalert(\"f\");\n $.ajax({\n type: \"GET\",\n\turl: \"http://lively-kernel.org/repository/webwerkstatt/users/aniljose/data.json\",\n\tsuccess: function(result) \n {\n alert(result);\n var obj = eval(result);\n l = $morph('List');\n l.setList(obj);\t}\n}); \n}","funcProperties":{"__isSmartRef__":true,"id":577},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"576":{"this":{"__isSmartRef__":true,"id":198}},"577":{"timestamp":{"__isSmartRef__":true,"id":578},"user":"aniljose","tags":[]},"578":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:38 GMT-0400 (Eastern Daylight Time)"},"579":{"varMapping":{"__isSmartRef__":true,"id":580},"source":"function updateList() {\n this.get('List').setList(this.highscores\n .sortBy(function(ea) { return ea.comment})\n .reverse()\n .collect(function(ea, index) {\n return (index + 1) + \". \" + ea.name + \" \" + ea.comment\n })\n )\n}","funcProperties":{"__isSmartRef__":true,"id":581},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"580":{"this":{"__isSmartRef__":true,"id":198}},"581":{"timestamp":{"__isSmartRef__":true,"id":582},"user":"aniljose","tags":[]},"582":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:54 GMT-0400 (Eastern Daylight Time)"},"583":{"onMouseDown":{"__isSmartRef__":true,"id":584},"onMouseOut":{"__isSmartRef__":true,"id":592},"onMouseOver":{"__isSmartRef__":true,"id":600}},"584":{"varMapping":{"__isSmartRef__":true,"id":585},"source":"function onMouseDown(evt) {\n if (evt.isCommandKey() || evt.isRightMouseButtonDown()) return $super(evt);\n this.annotation.show();\n this.annotation.visibilityIsTemporary = false; \n return false;\n}","funcProperties":{"__isSmartRef__":true,"id":590},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"585":{"this":{"__isSmartRef__":true,"id":144},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":586}},"586":{"$super":{"__isSmartRef__":true,"id":587}},"587":{"varMapping":{"__isSmartRef__":true,"id":588},"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":589},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"588":{"obj":{"__isSmartRef__":true,"id":144},"name":"onMouseDown"},"589":{},"590":{"timestamp":{"__isSmartRef__":true,"id":591},"user":"aniljose","tags":[]},"591":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:23:21 GMT-0400 (Eastern Daylight Time)"},"592":{"varMapping":{"__isSmartRef__":true,"id":593},"source":"function onMouseOut(evt) {\n if (this.annotation.visibilityIsTemporary) {\n this.annotation.remove();\n } \n}","funcProperties":{"__isSmartRef__":true,"id":598},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"593":{"this":{"__isSmartRef__":true,"id":144},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":594}},"594":{"$super":{"__isSmartRef__":true,"id":595}},"595":{"varMapping":{"__isSmartRef__":true,"id":596},"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":597},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"596":{"obj":{"__isSmartRef__":true,"id":144},"name":"onMouseOut"},"597":{},"598":{"timestamp":{"__isSmartRef__":true,"id":599},"user":"aniljose","tags":[]},"599":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:23:30 GMT-0400 (Eastern Daylight Time)"},"600":{"varMapping":{"__isSmartRef__":true,"id":601},"source":"function onMouseOver(evt) {\n //this.annotation.show()\n}","funcProperties":{"__isSmartRef__":true,"id":602},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"601":{"this":{"__isSmartRef__":true,"id":144}},"602":{"timestamp":{"__isSmartRef__":true,"id":603},"user":"undefined","tags":[]},"603":{"isSerializedDate":true,"string":"Fri Apr 13 2012 15:59:15 GMT-0400 (Eastern Daylight Time)"},"604":{"submorphs":[{"__isSmartRef__":true,"id":605},{"__isSmartRef__":true,"id":620}],"scripts":[],"id":"4445BD7D-607A-4ADA-9B39-1688B19D446A","shape":{"__isSmartRef__":true,"id":633},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":640},"showsHalos":false,"name":"CommentPinGood1","partsBinMetaInfo":{"__isSmartRef__":true,"id":181},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":641},"eventHandler":{"__isSmartRef__":true,"id":642},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"layout":{"__isSmartRef__":true,"id":643},"priorExtent":{"__isSmartRef__":true,"id":645},"distanceToDragEvent":{"__isSmartRef__":true,"id":646},"isBeingDragged":false,"prevScroll":[0,0],"annotation":{"__isSmartRef__":true,"id":647},"isCopyMorphRef":true,"morphRefId":1,"derivationIds":[176,"44607EBD-584F-400A-BD2A-F81EE6544163","268B09D4-A30B-423B-A91C-F4E2264FF19A","4BA45879-B420-4C90-8982-44E8B4E7A8F7","2D8E7682-6008-472A-AE2A-5E04942D2464","E12724D2-0D4C-4A62-BEFB-173A674AF159","8891AAE3-B702-4F90-9809-E67DC40E762E"],"moved":true,"isLockOwner":true,"isInLayoutCycle":false,"grabbingEnabled":false,"_Rotation":0,"_Scale":1.008036120330794,"_ClipMode":"visible","owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1032},"__LivelyClassName__":"lively.morphic.Box","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"605":{"submorphs":[],"scripts":[],"id":"BE774D1C-9690-41B5-9C16-3FCB2B24962F","shape":{"__isSmartRef__":true,"id":606},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":612},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":609},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"AuthorLabel","partsBinMetaInfo":{"__isSmartRef__":true,"id":613},"textChunks":[{"__isSmartRef__":true,"id":614}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[0,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":616},"isLabel":true,"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","allowInput":false,"eventsAreIgnored":true,"renderContextTable":{"__isSmartRef__":true,"id":617},"eventHandler":{"__isSmartRef__":true,"id":618},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":604},"_MinTextWidth":null,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":619},"previousSelection":[0,3],"_HandStyle":"default","_PointerEvents":"none","derivationIds":[177,"1725C2ED-61D5-48E0-A17B-8E4011BC1417","FFB5671F-5A9F-4EA7-BE98-C7275AC8BC4B","A4BCE33D-3A9C-46B1-9564-244CD149DFBF","6465D258-195E-43AC-8ECE-89E7475B8562","4A9B5DF0-EB27-42D3-A24A-22127E4BC398","C6849F5C-5730-49F5-9111-00F09162A357"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"606":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":607},"_Extent":{"__isSmartRef__":true,"id":608},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":609},"_Fill":null,"renderContextTable":{"__isSmartRef__":true,"id":610},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":611},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"607":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"608":{"x":0,"y":19,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"609":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"610":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"611":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"612":{"x":64.52010528063111,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"613":{"partsSpaceName":"PartsBin/Forms/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"partName":"Label","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"614":{"style":{"__isSmartRef__":true,"id":615},"chunkOwner":{"__isSmartRef__":true,"id":605},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"615":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"616":{"x":0,"y":19,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"617":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"618":{"morph":{"__isSmartRef__":true,"id":605},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"619":{"x":37.00399799999991,"y":-17.996002000001113,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"620":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":621},"derivationIds":[null,"0C53996B-F2BB-4016-B370-993CE41548A7","E46E421D-E422-4854-92B0-FCFA11E79813","3B54E6FB-C83B-4DCD-862F-2E236150037B"],"id":"1DABCC23-1666-40D9-9B50-CA2BD5281488","renderContextTable":{"__isSmartRef__":true,"id":628},"eventHandler":{"__isSmartRef__":true,"id":629},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":630},"name":"push_pin.jpg1","priorExtent":{"__isSmartRef__":true,"id":631},"showsHalos":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":632},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","owner":{"__isSmartRef__":true,"id":604},"_Rotation":0,"_Scale":0.9880657804942092,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Image"},"621":{"_Position":{"__isSmartRef__":true,"id":622},"renderContextTable":{"__isSmartRef__":true,"id":623},"_Extent":{"__isSmartRef__":true,"id":624},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":625},"_ImageURL":"data:image/jpeg;base64,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ACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDiviprf9jeD7sI+2a8xbrz2P3v/AB0H86APz/8AiZeaj4p1vS/CPhkeZrGt3K2kC9lLHlj7KMk+woA/Qz4b+BdM+GngbQ/CmgqfsWl24iDsPmlY8u7e7MWY+5oA6mgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA+dP2jPFK290lkJAIrKDewz0duef+AhfzoA8+/Y5+Hz+I9f1r4ra3CrQ7n07RN4zhQSJ5h6ZI2A9cB+xoA+zKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgBk80dvDJNMwWKNS7MewAyTQB8BfFa51b4oeN7Lwp4cZxqviS9Me/G/wCyxE5eRuR8saAn/gOB1oA+6PCnhrT/AAb4a0nw9okXladpdslrAp5O1FABJ7k4yT3JoA2KACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDgvjD4iTw94HvnLhZLoeQufQ8t+gI/GgDx79lTwK99caz8TNbgP2jUi1lpIkTBjtlb55BkZ/eOMf7qA/xUAfT1ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAfNfx9S9+IvjfQPh5oUro9yf9LmjODbQnDTSdCMhAAM8bmA70AfQ2jaXZaHpNjpekWsdrp9jClvbwRjCxooAVR7ACgC9QAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUARXNxFZ201xcuEhhQyO56KoGSaAPJvgtoj6pca18Q9Wj/0/wAQyMtnu6xWat8uPZ2G7jqoT0oA9eoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDH8U6K/iPRbjSluPs8N3iOeQZ3eVn51XBHLDK57ZzzjBANS3t4rSCK3tYkigiUJHGgwqKBgADsAKAJKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAP/9k=","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"hidden","_Fill":{"__isSmartRef__":true,"id":626},"_BorderColor":{"__isSmartRef__":true,"id":627},"__LivelyClassName__":"lively.morphic.Shapes.Image"},"622":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"623":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setImageURL":"setImageURLHTML","getNativeExtent":"getNativeExtentHTML"},"624":{"x":44.03010528063112,"y":36.04816844900994,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"625":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"626":{"r":0.930847180948886,"g":1,"b":0.9799634139672412,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"627":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"628":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"629":{"morph":{"__isSmartRef__":true,"id":620},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"630":{"x":2.0059850199855873,"y":2.077805259805018,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"631":{"x":44.03010528063112,"y":36.04816844900994,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"632":{"x":36.981936831620715,"y":-14.090315841893783,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"633":{"position":{"__isSmartRef__":true,"id":634},"_Extent":{"__isSmartRef__":true,"id":635},"_BorderWidth":2.924,"_BorderColor":{"__isSmartRef__":true,"id":636},"_Fill":{"__isSmartRef__":true,"id":637},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":638},"_ClipMode":"visible","_BorderRadius":20.35,"_Opacity":1,"_BorderStyle":"hidden","_Padding":{"__isSmartRef__":true,"id":639},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"634":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"635":{"x":61.62892876092962,"y":39.760599200599756,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"636":{"r":0.372,"g":0.369,"b":0.372,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"637":{"r":0.9641805142822193,"g":1,"b":0.9923768786805749,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"638":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"639":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"640":{"x":1300,"y":200,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"641":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"642":{"morph":{"__isSmartRef__":true,"id":604},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"643":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":false,"moveVertical":false,"moveHorizontal":false,"centeredHorizontal":false,"centeredVertical":false,"extentWithoutPlaceholder":{"__isSmartRef__":true,"id":644}},"644":{"x":31.53527094086636,"y":39,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"645":{"x":62.62294374094461,"y":39.760599200599756,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"646":{"x":453.0000000000002,"y":-11.000000000000057,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"647":{"submorphs":[{"__isSmartRef__":true,"id":648},{"__isSmartRef__":true,"id":698},{"__isSmartRef__":true,"id":783},{"__isSmartRef__":true,"id":838},{"__isSmartRef__":true,"id":892},{"__isSmartRef__":true,"id":949}],"scripts":[],"id":"8E15F148-8C41-4231-9888-38BCBB06FF20","shape":{"__isSmartRef__":true,"id":968},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":975},"showsHalos":false,"name":"Annotation","partsBinMetaInfo":{"__isSmartRef__":true,"id":976},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":977},"eventHandler":{"__isSmartRef__":true,"id":978},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":null,"layout":{"__isSmartRef__":true,"id":979},"priorExtent":{"__isSmartRef__":true,"id":980},"_Visible":true,"distanceToDragEvent":{"__isSmartRef__":true,"id":981},"isBeingDragged":false,"visibilityIsTemporary":false,"annotation":{"__isSmartRef__":true,"id":982},"annotationPin":{"__isSmartRef__":true,"id":604},"isCopyMorphRef":true,"morphRefId":1,"eventsAreIgnored":false,"grabbingEnabled":false,"prevScroll":[0,0],"derivationIds":[232,"EC72AF23-3094-49D2-AED6-9CC7D8F3B432","46EE9BA6-C82A-4523-BD74-57D692971FD2","E28C8DBB-184F-43E2-BB9C-6665990A43BE"],"isLockOwner":true,"_Rotation":0,"_Scale":1.006021056126275,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":983},"__LivelyClassName__":"lively.morphic.Box","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"648":{"submorphs":[{"__isSmartRef__":true,"id":649}],"scripts":[],"id":"1654A0CB-AC13-485F-AA5F-0863296C2417","shape":{"__isSmartRef__":true,"id":664},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":680},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":668},"lighterFill":{"__isSmartRef__":true,"id":681},"label":{"__isSmartRef__":true,"id":649},"showsHalos":false,"name":"CloseButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":690},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":691}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":693},"renderContextTable":{"__isSmartRef__":true,"id":694},"eventHandler":{"__isSmartRef__":true,"id":695},"owner":{"__isSmartRef__":true,"id":647},"isCopyMorphRef":true,"morphRefId":1,"isBeingDragged":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":696},"layout":{"__isSmartRef__":true,"id":697},"derivationIds":[236,"424FB96C-FAD9-4C32-AC77-CBC3A6CB3236","FC77B165-5895-4933-9FEE-38A75D9081D9","611EEB20-5E7C-4F3E-9919-D9B876F9BDCE"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Button"},"649":{"submorphs":[],"scripts":[],"id":"E1D313CB-F787-4A74-B2FA-A1B30DD1F8E5","shape":{"__isSmartRef__":true,"id":650},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":656},"_MaxTextWidth":18,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":657},"_Padding":{"__isSmartRef__":true,"id":658},"owner":{"__isSmartRef__":true,"id":648},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":659},"textChunks":[{"__isSmartRef__":true,"id":660}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":662},"eventHandler":{"__isSmartRef__":true,"id":663},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":18,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[237,"AFD4B46E-37EE-4DD8-B5E9-8062241D34B5","2A4A20BD-E821-418E-AC80-972935B01658","8FE51F75-5707-4835-B418-24E2E692A048"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"650":{"position":{"__isSmartRef__":true,"id":651},"_Extent":{"__isSmartRef__":true,"id":652},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":653},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":654},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":655},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"651":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"652":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"653":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"654":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"655":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"656":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"657":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"658":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"659":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"660":{"style":{"__isSmartRef__":true,"id":661},"morph":{"__isSmartRef__":true,"id":649},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":649},"storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"661":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"662":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"663":{"morph":{"__isSmartRef__":true,"id":649},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"664":{"position":{"__isSmartRef__":true,"id":665},"_Extent":{"__isSmartRef__":true,"id":666},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":667},"_Fill":{"__isSmartRef__":true,"id":668},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":678},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":679},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"665":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"666":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"667":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"668":{"stops":[{"__isSmartRef__":true,"id":669},{"__isSmartRef__":true,"id":671},{"__isSmartRef__":true,"id":673},{"__isSmartRef__":true,"id":675}],"vector":{"__isSmartRef__":true,"id":677},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"669":{"offset":0,"color":{"__isSmartRef__":true,"id":670}},"670":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"671":{"offset":0.4,"color":{"__isSmartRef__":true,"id":672}},"672":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"673":{"offset":0.6,"color":{"__isSmartRef__":true,"id":674}},"674":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"675":{"offset":1,"color":{"__isSmartRef__":true,"id":676}},"676":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"677":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"678":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"679":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"680":{"x":621.8577005621215,"y":3.4655939310212034,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"681":{"stops":[{"__isSmartRef__":true,"id":682},{"__isSmartRef__":true,"id":684},{"__isSmartRef__":true,"id":686},{"__isSmartRef__":true,"id":688}],"vector":{"__isSmartRef__":true,"id":677},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"682":{"offset":0,"color":{"__isSmartRef__":true,"id":683}},"683":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"684":{"offset":0.4,"color":{"__isSmartRef__":true,"id":685}},"685":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"686":{"offset":0.6,"color":{"__isSmartRef__":true,"id":687}},"687":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"688":{"offset":1,"color":{"__isSmartRef__":true,"id":689}},"689":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"690":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"691":{"sourceObj":{"__isSmartRef__":true,"id":648},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":647},"targetMethodName":"close","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":692},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"692":{"source":{"__isSmartRef__":true,"id":648},"target":{"__isSmartRef__":true,"id":647}},"693":{"x":19,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"694":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"695":{"morph":{"__isSmartRef__":true,"id":648},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"696":{"x":32.95333351377553,"y":-13.988874579543392,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"697":{"moveHorizontal":true},"698":{"submorphs":[{"__isSmartRef__":true,"id":699},{"__isSmartRef__":true,"id":718}],"scripts":[],"id":"78C67274-5F89-44FA-AB53-5ECAE3E5B580","shape":{"__isSmartRef__":true,"id":768},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":775},"showsHalos":false,"name":"AnnotationVBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":776},"__SourceModuleName__":"Global.lively.morphic.Core","priorExtent":{"__isSmartRef__":true,"id":777},"layout":{"__isSmartRef__":true,"id":778},"attributeConnections":[],"renderContextTable":{"__isSmartRef__":true,"id":780},"eventHandler":{"__isSmartRef__":true,"id":781},"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":647},"distanceToDragEvent":{"__isSmartRef__":true,"id":782},"isInLayoutCycle":false,"prevScroll":[0,0],"isBeingDragged":false,"derivationIds":[7260,"24A6EA3A-390F-4DDD-B55E-15A910E16550","F5C83D69-97C6-4401-9F8F-C02BF1FC5907","6C1DA55D-7D8C-40AC-B5C0-AC6DFFAE8C42"],"isLockOwner":false,"_Rotation":0,"_Scale":1.002003004005006,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Box","withLayers":["Global.lively.morphic.GrabbingLayer"]},"699":{"submorphs":[],"scripts":[],"id":"F556F17A-74D9-4C17-ADBB-0B8C2A47E4F0","shape":{"__isSmartRef__":true,"id":700},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":707},"_MaxTextWidth":268.53332813092516,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":708},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Comment","partsBinMetaInfo":{"__isSmartRef__":true,"id":709},"textChunks":[{"__isSmartRef__":true,"id":710}],"charsReplaced":"Your comment goes here.","lastFindLoc":23,"priorSelectionRange":[3,3],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":712},"renderContextTable":{"__isSmartRef__":true,"id":713},"eventHandler":{"__isSmartRef__":true,"id":714},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":715},"_MinTextWidth":268.53332813092516,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":716},"owner":{"__isSmartRef__":true,"id":698},"layout":{"__isSmartRef__":true,"id":717},"previousSelection":[0,0],"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"auto","derivationIds":[240,"075F605E-A020-4077-8CAE-73346ED6CA08","90AE1A69-D426-42A5-9C38-8BF8F3ED4A21","981F52D8-A31E-46C9-ADAC-94135B959FA1"],"isLockOwner":false,"isBeingDragged":false,"_Rotation":0,"_Scale":0.998001,"__LivelyClassName__":"lively.morphic.Text"},"700":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":701},"_Extent":{"__isSmartRef__":true,"id":702},"_BorderWidth":1.036,"_BorderColor":{"__isSmartRef__":true,"id":703},"renderContextTable":{"__isSmartRef__":true,"id":704},"_ClipMode":"auto","_BorderRadius":4.8100000000000005,"_Opacity":1,"_BorderStyle":"solid","_Padding":{"__isSmartRef__":true,"id":705},"_Fill":{"__isSmartRef__":true,"id":706},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"701":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"702":{"x":270.60532813092516,"y":314.66614152023885,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"703":{"r":0.572,"g":0.572,"b":0.572,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"704":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"705":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"706":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"707":{"x":350.10390422366766,"y":16.999999999999396,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"708":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"709":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"710":{"style":{"__isSmartRef__":true,"id":711},"chunkOwner":{"__isSmartRef__":true,"id":699},"storedString":"Test Comment","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"711":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"712":{"x":270.60532813092516,"y":314.66614152023885,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"713":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"714":{"morph":{"__isSmartRef__":true,"id":699},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"715":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"716":{"x":150.22856470859324,"y":-13.744825056852278,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"717":{"resizeWidth":true,"resizeHeight":true},"718":{"submorphs":[{"__isSmartRef__":true,"id":719}],"scripts":[],"id":"836B896F-AE5C-4202-BA01-0BFD051FFB06","shape":{"__isSmartRef__":true,"id":734},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":750},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":738},"lighterFill":{"__isSmartRef__":true,"id":751},"label":{"__isSmartRef__":true,"id":719},"showsHalos":false,"name":"CancelButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":760},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":761}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":763},"renderContextTable":{"__isSmartRef__":true,"id":764},"eventHandler":{"__isSmartRef__":true,"id":765},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":766},"layout":{"__isSmartRef__":true,"id":767},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","B9FAB98F-8B65-4277-94B0-E252BD02F6D7","3A01EEBA-175A-476C-89F4-BACFE5D2E39A","D0965275-9890-40BA-8729-6B09D2F18E17"],"owner":{"__isSmartRef__":true,"id":698},"isLockOwner":false,"close":false,"_Rotation":0,"_Scale":0.992027944069942,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Button"},"719":{"submorphs":[],"scripts":[],"id":"962BEEAF-D050-410A-907E-F30E74101B17","shape":{"__isSmartRef__":true,"id":720},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":726},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":727},"_Padding":{"__isSmartRef__":true,"id":728},"owner":{"__isSmartRef__":true,"id":718},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":729},"textChunks":[{"__isSmartRef__":true,"id":730}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":732},"eventHandler":{"__isSmartRef__":true,"id":733},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","75C5A849-22BC-4A8D-A9DC-5BDE6A4C4007","BD5E4899-2C72-4C26-B166-7A8373106C5A","B876ECBB-EC75-42A2-ADB1-AE20407D9349"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"720":{"position":{"__isSmartRef__":true,"id":721},"_Extent":{"__isSmartRef__":true,"id":722},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":723},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":724},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":725},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"721":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"722":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"723":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"724":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"725":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"726":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"727":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"728":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"729":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"730":{"style":{"__isSmartRef__":true,"id":731},"chunkOwner":{"__isSmartRef__":true,"id":719},"storedString":"Cancel","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"731":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"732":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"733":{"morph":{"__isSmartRef__":true,"id":719},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"734":{"position":{"__isSmartRef__":true,"id":735},"_Extent":{"__isSmartRef__":true,"id":736},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":737},"_Fill":{"__isSmartRef__":true,"id":738},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":748},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":749},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"735":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"736":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"737":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"738":{"stops":[{"__isSmartRef__":true,"id":739},{"__isSmartRef__":true,"id":741},{"__isSmartRef__":true,"id":743},{"__isSmartRef__":true,"id":745}],"vector":{"__isSmartRef__":true,"id":747},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"739":{"offset":0,"color":{"__isSmartRef__":true,"id":740}},"740":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"741":{"offset":0.4,"color":{"__isSmartRef__":true,"id":742}},"742":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"743":{"offset":0.6,"color":{"__isSmartRef__":true,"id":744}},"744":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"745":{"offset":1,"color":{"__isSmartRef__":true,"id":746}},"746":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"747":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"748":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"749":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"750":{"x":557.4193971644545,"y":336.98780708595353,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"751":{"stops":[{"__isSmartRef__":true,"id":752},{"__isSmartRef__":true,"id":754},{"__isSmartRef__":true,"id":756},{"__isSmartRef__":true,"id":758}],"vector":{"__isSmartRef__":true,"id":747},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"752":{"offset":0,"color":{"__isSmartRef__":true,"id":753}},"753":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"754":{"offset":0.4,"color":{"__isSmartRef__":true,"id":755}},"755":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"756":{"offset":0.6,"color":{"__isSmartRef__":true,"id":757}},"757":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"758":{"offset":1,"color":{"__isSmartRef__":true,"id":759}},"759":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"760":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"761":{"sourceObj":{"__isSmartRef__":true,"id":718},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":647},"targetMethodName":"close","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":762},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"762":{"source":{"__isSmartRef__":true,"id":718},"target":{"__isSmartRef__":true,"id":647}},"763":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"764":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"765":{"morph":{"__isSmartRef__":true,"id":718},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"766":{"x":44.98877014800337,"y":-14.246240119254253,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"767":{"moveVertical":true,"moveHorizontal":true},"768":{"position":{"__isSmartRef__":true,"id":769},"_Extent":{"__isSmartRef__":true,"id":770},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":771},"_Fill":{"__isSmartRef__":true,"id":772},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":773},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":774},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"769":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"770":{"x":602.2282623764735,"y":323.57200033199587,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"771":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"772":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"773":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"774":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"775":{"x":12.458222518260243,"y":5.320348263502126,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"776":{"partsSpaceName":"PartsBin/Layout/","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph","migrationLevel":2,"partName":"VBox","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"777":{"x":602.2282623764735,"y":322.5739993319959,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"778":{"layouter":{"__isSmartRef__":true,"id":779}},"779":{"__SourceModuleName__":"Global.lively.morphic.Layout","borderSize":10,"spacing":15,"__LivelyClassName__":"lively.morphic.Layout.VerticalLayout"},"780":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"781":{"morph":{"__isSmartRef__":true,"id":698},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"782":{"x":414.270881395786,"y":-12.505030496246263,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"783":{"submorphs":[{"__isSmartRef__":true,"id":784}],"scripts":[],"id":"FFEBB4B1-BB46-40C9-9936-C4FF7EA3EA25","shape":{"__isSmartRef__":true,"id":799},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":815},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":803},"lighterFill":{"__isSmartRef__":true,"id":816},"label":{"__isSmartRef__":true,"id":784},"showsHalos":false,"name":"ClearAll","partsBinMetaInfo":{"__isSmartRef__":true,"id":825},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":826}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":828},"renderContextTable":{"__isSmartRef__":true,"id":829},"eventHandler":{"__isSmartRef__":true,"id":830},"isCopyMorphRef":true,"morphRefId":1,"owner":{"__isSmartRef__":true,"id":647},"distanceToDragEvent":{"__isSmartRef__":true,"id":831},"layout":{"__isSmartRef__":true,"id":832},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","2FA06619-30E2-4AEB-A695-3C2E7E7F5C25"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":833},"__LivelyClassName__":"lively.morphic.Button"},"784":{"submorphs":[],"scripts":[],"id":"2448DC37-EB85-41CC-9182-1DE159A5459A","shape":{"__isSmartRef__":true,"id":785},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":791},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":792},"_Padding":{"__isSmartRef__":true,"id":793},"owner":{"__isSmartRef__":true,"id":783},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":794},"textChunks":[{"__isSmartRef__":true,"id":795}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":797},"eventHandler":{"__isSmartRef__":true,"id":798},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","ADB2BD78-AEF4-412E-B9C3-017506E0258B"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"785":{"position":{"__isSmartRef__":true,"id":786},"_Extent":{"__isSmartRef__":true,"id":787},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":788},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":789},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":790},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"786":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"787":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"788":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"789":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"790":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"791":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"792":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"793":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"794":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"795":{"style":{"__isSmartRef__":true,"id":796},"chunkOwner":{"__isSmartRef__":true,"id":784},"storedString":"Reset","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"796":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"797":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"798":{"morph":{"__isSmartRef__":true,"id":784},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"799":{"position":{"__isSmartRef__":true,"id":800},"_Extent":{"__isSmartRef__":true,"id":801},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":802},"_Fill":{"__isSmartRef__":true,"id":803},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":813},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":814},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"800":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"801":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"802":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"803":{"stops":[{"__isSmartRef__":true,"id":804},{"__isSmartRef__":true,"id":806},{"__isSmartRef__":true,"id":808},{"__isSmartRef__":true,"id":810}],"vector":{"__isSmartRef__":true,"id":812},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"804":{"offset":0,"color":{"__isSmartRef__":true,"id":805}},"805":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"806":{"offset":0.4,"color":{"__isSmartRef__":true,"id":807}},"807":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"808":{"offset":0.6,"color":{"__isSmartRef__":true,"id":809}},"809":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"810":{"offset":1,"color":{"__isSmartRef__":true,"id":811}},"811":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"812":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"813":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"814":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"815":{"x":446.76633072385846,"y":342.56538329736134,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"816":{"stops":[{"__isSmartRef__":true,"id":817},{"__isSmartRef__":true,"id":819},{"__isSmartRef__":true,"id":821},{"__isSmartRef__":true,"id":823}],"vector":{"__isSmartRef__":true,"id":812},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"817":{"offset":0,"color":{"__isSmartRef__":true,"id":818}},"818":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"819":{"offset":0.4,"color":{"__isSmartRef__":true,"id":820}},"820":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"821":{"offset":0.6,"color":{"__isSmartRef__":true,"id":822}},"822":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"823":{"offset":1,"color":{"__isSmartRef__":true,"id":824}},"824":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"825":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"826":{"sourceObj":{"__isSmartRef__":true,"id":783},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":783},"targetMethodName":"clear","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":827},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"827":{"source":{"__isSmartRef__":true,"id":783},"target":{"__isSmartRef__":true,"id":783}},"828":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"829":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"830":{"morph":{"__isSmartRef__":true,"id":783},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"831":{"x":45.7170411763866,"y":-12.823434282261701,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"832":{"moveVertical":true,"moveHorizontal":true},"833":{"clear":{"__isSmartRef__":true,"id":834}},"834":{"varMapping":{"__isSmartRef__":true,"id":835},"source":"function clear() {\n var annotation = this.get(\"Annotation\");\n annotation.reset();\n annotation.clearComment();\n}","funcProperties":{"__isSmartRef__":true,"id":836},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"835":{"this":{"__isSmartRef__":true,"id":783}},"836":{"timestamp":{"__isSmartRef__":true,"id":837},"user":"aniljose","tags":[]},"837":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:21:22 GMT-0400 (Eastern Daylight Time)"},"838":{"submorphs":[{"__isSmartRef__":true,"id":839}],"scripts":[],"id":"6394FD7D-FF46-404C-90CB-068A7A3AC14B","shape":{"__isSmartRef__":true,"id":854},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":870},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":858},"lighterFill":{"__isSmartRef__":true,"id":871},"label":{"__isSmartRef__":true,"id":839},"showsHalos":false,"name":"SaveButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":880},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":881}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":882},"renderContextTable":{"__isSmartRef__":true,"id":883},"eventHandler":{"__isSmartRef__":true,"id":884},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":885},"layout":{"__isSmartRef__":true,"id":886},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","C46AAED7-B4B7-4FFE-88AD-1914964500A3","BE719DA3-0A96-4A78-AED6-5F33939D1954"],"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":647},"prevScroll":[0,0],"_Rotation":0,"_Scale":0.9880657804941866,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":887},"__LivelyClassName__":"lively.morphic.Button"},"839":{"submorphs":[],"scripts":[],"id":"F283B5B5-EE6B-4322-9D22-701338A3EAE5","shape":{"__isSmartRef__":true,"id":840},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":846},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":847},"_Padding":{"__isSmartRef__":true,"id":848},"owner":{"__isSmartRef__":true,"id":838},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":849},"textChunks":[{"__isSmartRef__":true,"id":850}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":852},"eventHandler":{"__isSmartRef__":true,"id":853},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","E97F2028-93F1-471E-878F-E307CD701D3A","8FE1DC14-9139-45B8-84FA-83D17DE603F3"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"840":{"position":{"__isSmartRef__":true,"id":841},"_Extent":{"__isSmartRef__":true,"id":842},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":843},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":844},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":845},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"841":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"842":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"843":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"844":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"845":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"846":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"847":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"848":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"849":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"850":{"style":{"__isSmartRef__":true,"id":851},"chunkOwner":{"__isSmartRef__":true,"id":839},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Save","__LivelyClassName__":"lively.morphic.TextChunk"},"851":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"852":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"853":{"morph":{"__isSmartRef__":true,"id":839},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"854":{"position":{"__isSmartRef__":true,"id":855},"_Extent":{"__isSmartRef__":true,"id":856},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":857},"_Fill":{"__isSmartRef__":true,"id":858},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":868},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":869},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"855":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"856":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"857":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"858":{"stops":[{"__isSmartRef__":true,"id":859},{"__isSmartRef__":true,"id":861},{"__isSmartRef__":true,"id":863},{"__isSmartRef__":true,"id":865}],"vector":{"__isSmartRef__":true,"id":867},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"859":{"offset":0,"color":{"__isSmartRef__":true,"id":860}},"860":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"861":{"offset":0.4,"color":{"__isSmartRef__":true,"id":862}},"862":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"863":{"offset":0.6,"color":{"__isSmartRef__":true,"id":864}},"864":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"865":{"offset":1,"color":{"__isSmartRef__":true,"id":866}},"866":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"867":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"868":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"869":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"870":{"x":384.08855465053364,"y":342.7563308094581,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"871":{"stops":[{"__isSmartRef__":true,"id":872},{"__isSmartRef__":true,"id":874},{"__isSmartRef__":true,"id":876},{"__isSmartRef__":true,"id":878}],"vector":{"__isSmartRef__":true,"id":867},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"872":{"offset":0,"color":{"__isSmartRef__":true,"id":873}},"873":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"874":{"offset":0.4,"color":{"__isSmartRef__":true,"id":875}},"875":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"876":{"offset":0.6,"color":{"__isSmartRef__":true,"id":877}},"877":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"878":{"offset":1,"color":{"__isSmartRef__":true,"id":879}},"879":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"880":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"881":{"sourceObj":{"__isSmartRef__":true,"id":838},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":838},"targetMethodName":"closeOwner","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"882":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"883":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"884":{"morph":{"__isSmartRef__":true,"id":838},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"885":{"x":47.151862329666756,"y":-16.016688128175986,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"886":{"moveVertical":true,"moveHorizontal":true},"887":{"closeOwner":{"__isSmartRef__":true,"id":888}},"888":{"varMapping":{"__isSmartRef__":true,"id":889},"source":"function closeOwner() {\n var annotation = this.get(\"Annotation\");\n //annotation.remove();\n //annotation.visibilityIsTemporary = true;\n annotation.saveChanges();\n}","funcProperties":{"__isSmartRef__":true,"id":890},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"889":{"this":{"__isSmartRef__":true,"id":838}},"890":{"timestamp":{"__isSmartRef__":true,"id":891},"user":"aniljose","tags":[]},"891":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:19:45 GMT-0400 (Eastern Daylight Time)"},"892":{"submorphs":[{"__isSmartRef__":true,"id":893}],"scripts":[],"id":"BAA60F4E-3A03-4B1C-A3E1-94B28F8935D1","shape":{"__isSmartRef__":true,"id":908},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":924},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":912},"lighterFill":{"__isSmartRef__":true,"id":925},"label":{"__isSmartRef__":true,"id":893},"showsHalos":false,"name":"ClearCmt","partsBinMetaInfo":{"__isSmartRef__":true,"id":934},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":935},{"__isSmartRef__":true,"id":937}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":939},"renderContextTable":{"__isSmartRef__":true,"id":940},"eventHandler":{"__isSmartRef__":true,"id":941},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":942},"layout":{"__isSmartRef__":true,"id":943},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","A9F67AC8-24EA-42F2-8E17-2C6285845F51","8F69EE1F-B015-42AA-B64F-E3DB71BD3A8B"],"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":647},"clear":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":0.9880657804941866,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":944},"__LivelyClassName__":"lively.morphic.Button"},"893":{"submorphs":[],"scripts":[],"id":"3158B9FB-126B-46C0-B9C0-B929481D0D7E","shape":{"__isSmartRef__":true,"id":894},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":900},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":901},"_Padding":{"__isSmartRef__":true,"id":902},"owner":{"__isSmartRef__":true,"id":892},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":903},"textChunks":[{"__isSmartRef__":true,"id":904}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":906},"eventHandler":{"__isSmartRef__":true,"id":907},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","E3512FBC-D6CC-4849-9261-B03CA9C10058","C1AA6AB7-251B-4675-A5F3-62604AA9D97A"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"894":{"position":{"__isSmartRef__":true,"id":895},"_Extent":{"__isSmartRef__":true,"id":896},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":897},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":898},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":899},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"895":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"896":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"897":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"898":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"899":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"900":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"901":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"902":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"903":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"904":{"style":{"__isSmartRef__":true,"id":905},"chunkOwner":{"__isSmartRef__":true,"id":893},"storedString":"Clear","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"905":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"906":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"907":{"morph":{"__isSmartRef__":true,"id":893},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"908":{"position":{"__isSmartRef__":true,"id":909},"_Extent":{"__isSmartRef__":true,"id":910},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":911},"_Fill":{"__isSmartRef__":true,"id":912},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":922},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":923},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"909":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"910":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"911":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"912":{"stops":[{"__isSmartRef__":true,"id":913},{"__isSmartRef__":true,"id":915},{"__isSmartRef__":true,"id":917},{"__isSmartRef__":true,"id":919}],"vector":{"__isSmartRef__":true,"id":921},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"913":{"offset":0,"color":{"__isSmartRef__":true,"id":914}},"914":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"915":{"offset":0.4,"color":{"__isSmartRef__":true,"id":916}},"916":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"917":{"offset":0.6,"color":{"__isSmartRef__":true,"id":918}},"918":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"919":{"offset":1,"color":{"__isSmartRef__":true,"id":920}},"920":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"921":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"922":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"923":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"924":{"x":509.72805362686177,"y":342.8160019069867,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"925":{"stops":[{"__isSmartRef__":true,"id":926},{"__isSmartRef__":true,"id":928},{"__isSmartRef__":true,"id":930},{"__isSmartRef__":true,"id":932}],"vector":{"__isSmartRef__":true,"id":921},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"926":{"offset":0,"color":{"__isSmartRef__":true,"id":927}},"927":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"928":{"offset":0.4,"color":{"__isSmartRef__":true,"id":929}},"929":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"930":{"offset":0.6,"color":{"__isSmartRef__":true,"id":931}},"931":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"932":{"offset":1,"color":{"__isSmartRef__":true,"id":933}},"933":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"934":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"935":{"sourceObj":{"__isSmartRef__":true,"id":892},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":892},"targetMethodName":"clear","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":936},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"936":{"source":{"__isSmartRef__":true,"id":892},"target":{"__isSmartRef__":true,"id":892}},"937":{"sourceObj":{"__isSmartRef__":true,"id":892},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":892},"targetMethodName":"cleardata","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":938},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"938":{"source":{"__isSmartRef__":true,"id":892},"target":{"__isSmartRef__":true,"id":892}},"939":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"940":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"941":{"morph":{"__isSmartRef__":true,"id":892},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"942":{"x":37.994843579873304,"y":-12.077079955022498,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"943":{"moveVertical":true,"moveHorizontal":true},"944":{"cleardata":{"__isSmartRef__":true,"id":945}},"945":{"varMapping":{"__isSmartRef__":true,"id":946},"source":"function cleardata() {\n var annotation = this.get(\"Annotation\");\n annotation.clearComment();\n}","funcProperties":{"__isSmartRef__":true,"id":947},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"946":{"this":{"__isSmartRef__":true,"id":892}},"947":{"timestamp":{"__isSmartRef__":true,"id":948},"user":"aniljose","tags":[]},"948":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:37:55 GMT-0400 (Eastern Daylight Time)"},"949":{"submorphs":[],"scripts":[],"id":"78C5F6F7-3723-4834-98A2-B859ED4775BB","shape":{"__isSmartRef__":true,"id":950},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":957},"_MaxTextWidth":328.891015394333,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":953},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text12","partsBinMetaInfo":{"__isSmartRef__":true,"id":958},"textChunks":[{"__isSmartRef__":true,"id":961}],"charsReplaced":"s","lastFindLoc":6,"priorSelectionRange":[4,4],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":963},"renderContextTable":{"__isSmartRef__":true,"id":964},"eventHandler":{"__isSmartRef__":true,"id":965},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":966},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","5050DFC3-DC71-4FFC-B728-D0FA31630535","34A623BF-9697-40D0-9A58-DD8FAE39B280"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":328.891015394333,"_MinTextHeight":null,"previousSelection":[6,6],"owner":{"__isSmartRef__":true,"id":647},"distanceToDragEvent":{"__isSmartRef__":true,"id":967},"_Rotation":0,"_Scale":0.9920279440699217,"__LivelyClassName__":"lively.morphic.Text"},"950":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":951},"_Extent":{"__isSmartRef__":true,"id":952},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":953},"renderContextTable":{"__isSmartRef__":true,"id":954},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":955},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_Fill":{"__isSmartRef__":true,"id":956},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"951":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"952":{"x":336.891015394333,"y":35,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"953":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"954":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"955":{"x":4,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"956":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"957":{"x":15.761673814531264,"y":24.463318326880838,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"958":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","changes":[{"__isSmartRef__":true,"id":959}],"revisionOnLoad":148789,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"959":{"date":{"__isSmartRef__":true,"id":960},"author":"undefined","message":"Set the inset as: this.setPadding(Rectangle.inset(4,2)). This gives it a more pleasing appearance with a border, and also makes it easier to select near the bounds.","id":"BD5B0E4C-4830-4863-A013-35BB66D5AD6F"},"960":{"isSerializedDate":true,"string":"Mon Feb 27 2012 00:20:38 GMT-0500 (Eastern Standard Time)"},"961":{"style":{"__isSmartRef__":true,"id":962},"chunkOwner":{"__isSmartRef__":true,"id":949},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"962":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"963":{"x":336.891015394333,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"964":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"965":{"morph":{"__isSmartRef__":true,"id":949},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"966":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"967":{"x":255.92752980777846,"y":-14.879216346306123,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"968":{"position":{"__isSmartRef__":true,"id":969},"_Extent":{"__isSmartRef__":true,"id":970},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":971},"_Fill":{"__isSmartRef__":true,"id":972},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":973},"_ClipMode":"visible","_BorderRadius":7.03,"_Opacity":1,"_BorderStyle":"solid","_Padding":{"__isSmartRef__":true,"id":974},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"969":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"970":{"x":644.2498164508953,"y":373.61299768767066,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"971":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"972":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"973":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"974":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"975":{"x":20,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"976":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph. A really blue one. Its amazing what you can build out of simple boxes.... Who needs stars when you got blue rectangles!","migrationLevel":2,"partName":"Rectangle","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"977":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"978":{"morph":{"__isSmartRef__":true,"id":647},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"979":{"adjustForNewBounds":true},"980":{"x":644.2498164508953,"y":373.61299768767066,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"981":{"x":340,"y":-15,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"982":{"comment":"Test Comment"},"983":{"show":{"__isSmartRef__":true,"id":984},"saveChanges":{"__isSmartRef__":true,"id":988},"restoreAnnotation":{"__isSmartRef__":true,"id":992},"close":{"__isSmartRef__":true,"id":996},"setComment":{"__isSmartRef__":true,"id":1000},"getCalendarDate":{"__isSmartRef__":true,"id":1004},"reset":{"__isSmartRef__":true,"id":1008},"clearComment":{"__isSmartRef__":true,"id":1012},"getURL":{"__isSmartRef__":true,"id":1016},"onSubmit":{"__isSmartRef__":true,"id":1020},"onUpate":{"__isSmartRef__":true,"id":1024},"updateList":{"__isSmartRef__":true,"id":1028}},"984":{"varMapping":{"__isSmartRef__":true,"id":985},"source":"function show() {\n this.setPosition(pt(20, 20));\n this.annotationPin.addMorph(this);\n}","funcProperties":{"__isSmartRef__":true,"id":986},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"985":{"this":{"__isSmartRef__":true,"id":647}},"986":{"timestamp":{"__isSmartRef__":true,"id":987},"user":"aniljose","tags":[]},"987":{"isSerializedDate":true,"string":"Mon Oct 17 2011 18:43:09 GMT-0400 (Eastern Daylight Time)"},"988":{"varMapping":{"__isSmartRef__":true,"id":989},"source":"function saveChanges() {\n // gather annotation informations\n var timestamp = this.getCalendarDate();\n var comment = this.get(\"Comment\").getTextString();\n var user; \n if (this.annotationPin.world() && this.annotationPin.world().getUserName && \n this.annotationPin.world().getUserName()) {\n user = this.annotationPin.world().getUserName();\n } \n\n lines = comment.split('\\n'),\n firstLine = lines[0] + '\\n' + user + ' on ' + timestamp;\n //listItem = {\n // isListItem: true,\n // string: firstLine,\n // value: {commentText: comment}\n //};\n //this.get('List1').addItem(listItem);\n\n var olddata = this.get(\"Text12\").getTextString() + '\\n';\n this.get(\"Text12\").setTextString(olddata + firstLine);\n\n // reset the annotation object\n this.annotation = {\n comment : comment\n };\n \n // update the annotation morph\n this.restoreAnnotation();\n}","funcProperties":{"__isSmartRef__":true,"id":990},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"989":{"this":{"__isSmartRef__":true,"id":647}},"990":{"timestamp":{"__isSmartRef__":true,"id":991},"user":"aniljose","tags":[]},"991":{"isSerializedDate":true,"string":"Fri Apr 13 2012 09:33:26 GMT-0400 (Eastern Daylight Time)"},"992":{"varMapping":{"__isSmartRef__":true,"id":993},"source":"function restoreAnnotation() {\n this.get(\"Comment\").setTextString(this.annotation.comment); \n}","funcProperties":{"__isSmartRef__":true,"id":994},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"993":{"this":{"__isSmartRef__":true,"id":647}},"994":{"timestamp":{"__isSmartRef__":true,"id":995},"user":"aniljose","tags":[]},"995":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:17:27 GMT-0400 (Eastern Daylight Time)"},"996":{"varMapping":{"__isSmartRef__":true,"id":997},"source":"function close() {\n this.restoreAnnotation(); \n this.remove();\n this.visibilityIsTemporary = true;\n}","funcProperties":{"__isSmartRef__":true,"id":998},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"997":{"this":{"__isSmartRef__":true,"id":647}},"998":{"timestamp":{"__isSmartRef__":true,"id":999},"user":"aniljose","tags":[]},"999":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:16:46 GMT-0400 (Eastern Daylight Time)"},"1000":{"varMapping":{"__isSmartRef__":true,"id":1001},"source":"function setComment(comment) {\n this.annotation.comment = comment; \n this.get(\"Comment\").setTextString(this.annotation.comment);\n}","funcProperties":{"__isSmartRef__":true,"id":1002},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1001":{"this":{"__isSmartRef__":true,"id":647}},"1002":{"timestamp":{"__isSmartRef__":true,"id":1003},"user":"aniljose","tags":[]},"1003":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:17:00 GMT-0400 (Eastern Daylight Time)"},"1004":{"varMapping":{"__isSmartRef__":true,"id":1005},"source":"function getCalendarDate() {\n var months = new Array(13);\n months[0] = \"January\";\n months[1] = \"February\";\n months[2] = \"March\";\n months[3] = \"April\";\n months[4] = \"May\";\n months[5] = \"June\";\n months[6] = \"July\";\n months[7] = \"August\";\n months[8] = \"September\";\n months[9] = \"October\";\n months[10] = \"November\";\n months[11] = \"December\";\n var now = new Date();\n var monthnumber = now.getMonth();\n var monthname = months[monthnumber];\n var monthday = now.getDate();\n var year = now.getYear();\n if(year < 2000) { year = year + 1900; }\n var dateString = monthname +\n ' ' +\n monthday +\n ', ' +\n year;\n return dateString;\n}","funcProperties":{"__isSmartRef__":true,"id":1006},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1005":{"this":{"__isSmartRef__":true,"id":647}},"1006":{"timestamp":{"__isSmartRef__":true,"id":1007},"user":"aniljose","tags":[]},"1007":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:02:31 GMT-0400 (Eastern Daylight Time)"},"1008":{"varMapping":{"__isSmartRef__":true,"id":1009},"source":"function reset() {\n //this.get(\"List1\").setList([]);\n this.get(\"Text12\").setTextString(\"\");\n}","funcProperties":{"__isSmartRef__":true,"id":1010},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1009":{"this":{"__isSmartRef__":true,"id":647}},"1010":{"timestamp":{"__isSmartRef__":true,"id":1011},"user":"aniljose","tags":[]},"1011":{"isSerializedDate":true,"string":"Fri Apr 13 2012 09:32:20 GMT-0400 (Eastern Daylight Time)"},"1012":{"varMapping":{"__isSmartRef__":true,"id":1013},"source":"function clearComment() {\n this.get(\"Comment\").setTextString(\"\");\n}","funcProperties":{"__isSmartRef__":true,"id":1014},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1013":{"this":{"__isSmartRef__":true,"id":647}},"1014":{"timestamp":{"__isSmartRef__":true,"id":1015},"user":"aniljose","tags":[]},"1015":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:37:34 GMT-0400 (Eastern Daylight Time)"},"1016":{"varMapping":{"__isSmartRef__":true,"id":1017},"source":"function getURL() {\n return new URL(\"http://lively-kernel.org/repository/webwerkstatt/users/aniljose/data.json\") \n}","funcProperties":{"__isSmartRef__":true,"id":1018},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1017":{"this":{"__isSmartRef__":true,"id":647}},"1018":{"timestamp":{"__isSmartRef__":true,"id":1019},"user":"aniljose","tags":[]},"1019":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:26:59 GMT-0400 (Eastern Daylight Time)"},"1020":{"varMapping":{"__isSmartRef__":true,"id":1021},"source":"function onSubmit() {\n this.highscores.push({\n name: this.world().getUserName(),\n comment: this.get('Comment').textString\n })\n\n var wr = new WebResource(this.getURL())\n var json = JSON.serialize(this.highscores);\n wr.put(json)\n this.updateList()\n}","funcProperties":{"__isSmartRef__":true,"id":1022},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1021":{"this":{"__isSmartRef__":true,"id":647}},"1022":{"timestamp":{"__isSmartRef__":true,"id":1023},"user":"aniljose","tags":[]},"1023":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:22 GMT-0400 (Eastern Daylight Time)"},"1024":{"varMapping":{"__isSmartRef__":true,"id":1025},"source":"function onUpate() {\nalert(\"f\");\n $.ajax({\n type: \"GET\",\n\turl: \"http://lively-kernel.org/repository/webwerkstatt/users/aniljose/data.json\",\n\tsuccess: function(result) \n {\n alert(result);\n var obj = eval(result);\n l = $morph('List');\n l.setList(obj);\t}\n}); \n}","funcProperties":{"__isSmartRef__":true,"id":1026},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1025":{"this":{"__isSmartRef__":true,"id":647}},"1026":{"timestamp":{"__isSmartRef__":true,"id":1027},"user":"aniljose","tags":[]},"1027":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:38 GMT-0400 (Eastern Daylight Time)"},"1028":{"varMapping":{"__isSmartRef__":true,"id":1029},"source":"function updateList() {\n this.get('List').setList(this.highscores\n .sortBy(function(ea) { return ea.comment})\n .reverse()\n .collect(function(ea, index) {\n return (index + 1) + \". \" + ea.name + \" \" + ea.comment\n })\n )\n}","funcProperties":{"__isSmartRef__":true,"id":1030},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1029":{"this":{"__isSmartRef__":true,"id":647}},"1030":{"timestamp":{"__isSmartRef__":true,"id":1031},"user":"aniljose","tags":[]},"1031":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:54 GMT-0400 (Eastern Daylight Time)"},"1032":{"onMouseDown":{"__isSmartRef__":true,"id":1033},"onMouseOut":{"__isSmartRef__":true,"id":1041},"onMouseOver":{"__isSmartRef__":true,"id":1049}},"1033":{"varMapping":{"__isSmartRef__":true,"id":1034},"source":"function onMouseDown(evt) {\n if (evt.isCommandKey() || evt.isRightMouseButtonDown()) return $super(evt);\n this.annotation.show();\n this.annotation.visibilityIsTemporary = false; \n return false;\n}","funcProperties":{"__isSmartRef__":true,"id":1039},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1034":{"this":{"__isSmartRef__":true,"id":604},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1035}},"1035":{"$super":{"__isSmartRef__":true,"id":1036}},"1036":{"varMapping":{"__isSmartRef__":true,"id":1037},"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":1038},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1037":{"obj":{"__isSmartRef__":true,"id":604},"name":"onMouseDown"},"1038":{},"1039":{"timestamp":{"__isSmartRef__":true,"id":1040},"user":"aniljose","tags":[]},"1040":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:23:21 GMT-0400 (Eastern Daylight Time)"},"1041":{"varMapping":{"__isSmartRef__":true,"id":1042},"source":"function onMouseOut(evt) {\n if (this.annotation.visibilityIsTemporary) {\n this.annotation.remove();\n } \n}","funcProperties":{"__isSmartRef__":true,"id":1047},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1042":{"this":{"__isSmartRef__":true,"id":604},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1043}},"1043":{"$super":{"__isSmartRef__":true,"id":1044}},"1044":{"varMapping":{"__isSmartRef__":true,"id":1045},"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":1046},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1045":{"obj":{"__isSmartRef__":true,"id":604},"name":"onMouseOut"},"1046":{},"1047":{"timestamp":{"__isSmartRef__":true,"id":1048},"user":"aniljose","tags":[]},"1048":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:23:30 GMT-0400 (Eastern Daylight Time)"},"1049":{"varMapping":{"__isSmartRef__":true,"id":1050},"source":"function onMouseOver(evt) {\n //this.annotation.show()\n}","funcProperties":{"__isSmartRef__":true,"id":1051},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1050":{"this":{"__isSmartRef__":true,"id":604}},"1051":{"timestamp":{"__isSmartRef__":true,"id":1052},"user":"undefined","tags":[]},"1052":{"isSerializedDate":true,"string":"Fri Apr 13 2012 15:59:15 GMT-0400 (Eastern Daylight Time)"},"1053":{"submorphs":[{"__isSmartRef__":true,"id":1054},{"__isSmartRef__":true,"id":1069}],"scripts":[],"id":"9EE93491-23E8-447E-9DC0-7ACBAA61E476","shape":{"__isSmartRef__":true,"id":1082},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1089},"showsHalos":false,"name":"CommentPinGood2","partsBinMetaInfo":{"__isSmartRef__":true,"id":181},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":1090},"eventHandler":{"__isSmartRef__":true,"id":1091},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"layout":{"__isSmartRef__":true,"id":1092},"priorExtent":{"__isSmartRef__":true,"id":1094},"distanceToDragEvent":{"__isSmartRef__":true,"id":1095},"isBeingDragged":false,"prevScroll":[0,0],"annotation":{"__isSmartRef__":true,"id":1096},"isCopyMorphRef":true,"morphRefId":1,"derivationIds":[176,"44607EBD-584F-400A-BD2A-F81EE6544163","268B09D4-A30B-423B-A91C-F4E2264FF19A","4BA45879-B420-4C90-8982-44E8B4E7A8F7","2D8E7682-6008-472A-AE2A-5E04942D2464","E12724D2-0D4C-4A62-BEFB-173A674AF159","8891AAE3-B702-4F90-9809-E67DC40E762E"],"moved":true,"isLockOwner":true,"isInLayoutCycle":false,"grabbingEnabled":false,"_Rotation":0,"_Scale":1.008036120330794,"_ClipMode":"visible","owner":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1481},"__LivelyClassName__":"lively.morphic.Box","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"1054":{"submorphs":[],"scripts":[],"id":"39A2389D-CC95-4557-8179-06DFE6E94DC0","shape":{"__isSmartRef__":true,"id":1055},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1061},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1058},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"AuthorLabel","partsBinMetaInfo":{"__isSmartRef__":true,"id":1062},"textChunks":[{"__isSmartRef__":true,"id":1063}],"charsReplaced":"some text","lastFindLoc":-9,"priorSelectionRange":[0,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":1065},"isLabel":true,"_ClipMode":"visible","_WhiteSpaceHandling":"pre-wrap","allowInput":false,"eventsAreIgnored":true,"renderContextTable":{"__isSmartRef__":true,"id":1066},"eventHandler":{"__isSmartRef__":true,"id":1067},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":1053},"_MinTextWidth":null,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":1068},"previousSelection":[0,3],"_HandStyle":"default","_PointerEvents":"none","derivationIds":[177,"1725C2ED-61D5-48E0-A17B-8E4011BC1417","FFB5671F-5A9F-4EA7-BE98-C7275AC8BC4B","A4BCE33D-3A9C-46B1-9564-244CD149DFBF","6465D258-195E-43AC-8ECE-89E7475B8562","4A9B5DF0-EB27-42D3-A24A-22127E4BC398","C6849F5C-5730-49F5-9111-00F09162A357"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1055":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1056},"_Extent":{"__isSmartRef__":true,"id":1057},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1058},"_Fill":null,"renderContextTable":{"__isSmartRef__":true,"id":1059},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1060},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1056":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1057":{"x":0,"y":19,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1058":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1059":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1060":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1061":{"x":64.52010528063111,"y":10,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1062":{"partsSpaceName":"PartsBin/Forms/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"partName":"Label","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1063":{"style":{"__isSmartRef__":true,"id":1064},"chunkOwner":{"__isSmartRef__":true,"id":1054},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"1064":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1065":{"x":0,"y":19,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1066":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1067":{"morph":{"__isSmartRef__":true,"id":1054},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1068":{"x":37.00399799999991,"y":-17.996002000001113,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1069":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1070},"derivationIds":[null,"0C53996B-F2BB-4016-B370-993CE41548A7","E46E421D-E422-4854-92B0-FCFA11E79813","3B54E6FB-C83B-4DCD-862F-2E236150037B"],"id":"346C9422-C8C5-407E-9316-BC0D92349CCC","renderContextTable":{"__isSmartRef__":true,"id":1077},"eventHandler":{"__isSmartRef__":true,"id":1078},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1079},"name":"push_pin.jpg1","priorExtent":{"__isSmartRef__":true,"id":1080},"showsHalos":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":1081},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isBeingDragged":false,"__SourceModuleName__":"Global.lively.morphic.Widgets","owner":{"__isSmartRef__":true,"id":1053},"_Rotation":0,"_Scale":0.9880657804942092,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Image"},"1070":{"_Position":{"__isSmartRef__":true,"id":1071},"renderContextTable":{"__isSmartRef__":true,"id":1072},"_Extent":{"__isSmartRef__":true,"id":1073},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1074},"_ImageURL":"data:image/jpeg;base64,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ACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDiviprf9jeD7sI+2a8xbrz2P3v/AB0H86APz/8AiZeaj4p1vS/CPhkeZrGt3K2kC9lLHlj7KMk+woA/Qz4b+BdM+GngbQ/CmgqfsWl24iDsPmlY8u7e7MWY+5oA6mgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoA+dP2jPFK290lkJAIrKDewz0duef+AhfzoA8+/Y5+Hz+I9f1r4ra3CrQ7n07RN4zhQSJ5h6ZI2A9cB+xoA+zKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgBk80dvDJNMwWKNS7MewAyTQB8BfFa51b4oeN7Lwp4cZxqviS9Me/G/wCyxE5eRuR8saAn/gOB1oA+6PCnhrT/AAb4a0nw9okXladpdslrAp5O1FABJ7k4yT3JoA2KACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDgvjD4iTw94HvnLhZLoeQufQ8t+gI/GgDx79lTwK99caz8TNbgP2jUi1lpIkTBjtlb55BkZ/eOMf7qA/xUAfT1ABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAfNfx9S9+IvjfQPh5oUro9yf9LmjODbQnDTSdCMhAAM8bmA70AfQ2jaXZaHpNjpekWsdrp9jClvbwRjCxooAVR7ACgC9QAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUAFABQAUARXNxFZ201xcuEhhQyO56KoGSaAPJvgtoj6pca18Q9Wj/0/wAQyMtnu6xWat8uPZ2G7jqoT0oA9eoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgDH8U6K/iPRbjSluPs8N3iOeQZ3eVn51XBHLDK57ZzzjBANS3t4rSCK3tYkigiUJHGgwqKBgADsAKAJKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKACgAoAKAP/9k=","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"hidden","_Fill":{"__isSmartRef__":true,"id":1075},"_BorderColor":{"__isSmartRef__":true,"id":1076},"__LivelyClassName__":"lively.morphic.Shapes.Image"},"1071":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1072":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setImageURL":"setImageURLHTML","getNativeExtent":"getNativeExtentHTML"},"1073":{"x":44.03010528063112,"y":36.04816844900994,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1074":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1075":{"r":0.930847180948886,"g":1,"b":0.9799634139672412,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1076":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1077":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1078":{"morph":{"__isSmartRef__":true,"id":1069},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1079":{"x":2.0059850199855873,"y":2.077805259805018,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1080":{"x":44.03010528063112,"y":36.04816844900994,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1081":{"x":36.981936831620715,"y":-14.090315841893783,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1082":{"position":{"__isSmartRef__":true,"id":1083},"_Extent":{"__isSmartRef__":true,"id":1084},"_BorderWidth":2.924,"_BorderColor":{"__isSmartRef__":true,"id":1085},"_Fill":{"__isSmartRef__":true,"id":1086},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1087},"_ClipMode":"visible","_BorderRadius":20.35,"_Opacity":1,"_BorderStyle":"hidden","_Padding":{"__isSmartRef__":true,"id":1088},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1083":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1084":{"x":61.62892876092962,"y":39.760599200599756,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1085":{"r":0.372,"g":0.369,"b":0.372,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1086":{"r":0.9641805142822193,"g":1,"b":0.9923768786805749,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1087":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1088":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1089":{"x":1300,"y":230,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1090":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1091":{"morph":{"__isSmartRef__":true,"id":1053},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1092":{"resizeWidth":true,"resizeHeight":true,"adjustForNewBounds":false,"moveVertical":false,"moveHorizontal":false,"centeredHorizontal":false,"centeredVertical":false,"extentWithoutPlaceholder":{"__isSmartRef__":true,"id":1093}},"1093":{"x":31.53527094086636,"y":39,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1094":{"x":62.62294374094461,"y":39.760599200599756,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1095":{"x":453.0000000000002,"y":-11.000000000000057,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1096":{"submorphs":[{"__isSmartRef__":true,"id":1097},{"__isSmartRef__":true,"id":1147},{"__isSmartRef__":true,"id":1232},{"__isSmartRef__":true,"id":1287},{"__isSmartRef__":true,"id":1341},{"__isSmartRef__":true,"id":1398}],"scripts":[],"id":"1D47E575-DF64-4840-9649-2B9963775AE1","shape":{"__isSmartRef__":true,"id":1417},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1424},"showsHalos":false,"name":"Annotation","partsBinMetaInfo":{"__isSmartRef__":true,"id":1425},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":1426},"eventHandler":{"__isSmartRef__":true,"id":1427},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":null,"layout":{"__isSmartRef__":true,"id":1428},"priorExtent":{"__isSmartRef__":true,"id":1429},"_Visible":true,"distanceToDragEvent":{"__isSmartRef__":true,"id":1430},"isBeingDragged":false,"visibilityIsTemporary":false,"annotation":{"__isSmartRef__":true,"id":1431},"annotationPin":{"__isSmartRef__":true,"id":1053},"isCopyMorphRef":true,"morphRefId":1,"eventsAreIgnored":false,"grabbingEnabled":false,"prevScroll":[0,0],"derivationIds":[232,"EC72AF23-3094-49D2-AED6-9CC7D8F3B432","46EE9BA6-C82A-4523-BD74-57D692971FD2","E28C8DBB-184F-43E2-BB9C-6665990A43BE"],"isLockOwner":true,"_Rotation":0,"_Scale":1.006021056126275,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1432},"__LivelyClassName__":"lively.morphic.Box","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"1097":{"submorphs":[{"__isSmartRef__":true,"id":1098}],"scripts":[],"id":"0F5E45AB-4E44-40A2-B483-D126CE611A03","shape":{"__isSmartRef__":true,"id":1113},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1129},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1117},"lighterFill":{"__isSmartRef__":true,"id":1130},"label":{"__isSmartRef__":true,"id":1098},"showsHalos":false,"name":"CloseButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1139},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":1140}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":1142},"renderContextTable":{"__isSmartRef__":true,"id":1143},"eventHandler":{"__isSmartRef__":true,"id":1144},"owner":{"__isSmartRef__":true,"id":1096},"isCopyMorphRef":true,"morphRefId":1,"isBeingDragged":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":1145},"layout":{"__isSmartRef__":true,"id":1146},"derivationIds":[236,"424FB96C-FAD9-4C32-AC77-CBC3A6CB3236","FC77B165-5895-4933-9FEE-38A75D9081D9","611EEB20-5E7C-4F3E-9919-D9B876F9BDCE"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Button"},"1098":{"submorphs":[],"scripts":[],"id":"A4601148-062D-49DE-9D96-E42B305F6345","shape":{"__isSmartRef__":true,"id":1099},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1105},"_MaxTextWidth":18,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":1106},"_Padding":{"__isSmartRef__":true,"id":1107},"owner":{"__isSmartRef__":true,"id":1097},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":1108},"textChunks":[{"__isSmartRef__":true,"id":1109}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1111},"eventHandler":{"__isSmartRef__":true,"id":1112},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":18,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[237,"AFD4B46E-37EE-4DD8-B5E9-8062241D34B5","2A4A20BD-E821-418E-AC80-972935B01658","8FE51F75-5707-4835-B418-24E2E692A048"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1099":{"position":{"__isSmartRef__":true,"id":1100},"_Extent":{"__isSmartRef__":true,"id":1101},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1102},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1103},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1104},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1100":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1101":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1102":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1103":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1104":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1105":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1106":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1107":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1108":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1109":{"style":{"__isSmartRef__":true,"id":1110},"morph":{"__isSmartRef__":true,"id":1098},"__SourceModuleName__":"Global.lively.morphic.TextCore","chunkOwner":{"__isSmartRef__":true,"id":1098},"storedString":"X","__LivelyClassName__":"lively.morphic.TextChunk"},"1110":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1111":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1112":{"morph":{"__isSmartRef__":true,"id":1098},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1113":{"position":{"__isSmartRef__":true,"id":1114},"_Extent":{"__isSmartRef__":true,"id":1115},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1116},"_Fill":{"__isSmartRef__":true,"id":1117},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1127},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1128},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1114":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1115":{"x":18,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1116":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1117":{"stops":[{"__isSmartRef__":true,"id":1118},{"__isSmartRef__":true,"id":1120},{"__isSmartRef__":true,"id":1122},{"__isSmartRef__":true,"id":1124}],"vector":{"__isSmartRef__":true,"id":1126},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1118":{"offset":0,"color":{"__isSmartRef__":true,"id":1119}},"1119":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1120":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1121}},"1121":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1122":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1123}},"1123":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1124":{"offset":1,"color":{"__isSmartRef__":true,"id":1125}},"1125":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1126":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1127":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1128":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1129":{"x":621.8577005621215,"y":3.4655939310212034,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1130":{"stops":[{"__isSmartRef__":true,"id":1131},{"__isSmartRef__":true,"id":1133},{"__isSmartRef__":true,"id":1135},{"__isSmartRef__":true,"id":1137}],"vector":{"__isSmartRef__":true,"id":1126},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1131":{"offset":0,"color":{"__isSmartRef__":true,"id":1132}},"1132":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1133":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1134}},"1134":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1135":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1136}},"1136":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1137":{"offset":1,"color":{"__isSmartRef__":true,"id":1138}},"1138":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1139":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1140":{"sourceObj":{"__isSmartRef__":true,"id":1097},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1096},"targetMethodName":"close","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1141},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1141":{"source":{"__isSmartRef__":true,"id":1097},"target":{"__isSmartRef__":true,"id":1096}},"1142":{"x":19,"y":18,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1143":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1144":{"morph":{"__isSmartRef__":true,"id":1097},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1145":{"x":32.95333351377553,"y":-13.988874579543392,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1146":{"moveHorizontal":true},"1147":{"submorphs":[{"__isSmartRef__":true,"id":1148},{"__isSmartRef__":true,"id":1167}],"scripts":[],"id":"5036A82D-7071-48DF-A316-D15E55B45C0B","shape":{"__isSmartRef__":true,"id":1217},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1224},"showsHalos":false,"name":"AnnotationVBox","partsBinMetaInfo":{"__isSmartRef__":true,"id":1225},"__SourceModuleName__":"Global.lively.morphic.Core","priorExtent":{"__isSmartRef__":true,"id":1226},"layout":{"__isSmartRef__":true,"id":1227},"attributeConnections":[],"renderContextTable":{"__isSmartRef__":true,"id":1229},"eventHandler":{"__isSmartRef__":true,"id":1230},"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":1096},"distanceToDragEvent":{"__isSmartRef__":true,"id":1231},"isInLayoutCycle":false,"prevScroll":[0,0],"isBeingDragged":false,"derivationIds":[7260,"24A6EA3A-390F-4DDD-B55E-15A910E16550","F5C83D69-97C6-4401-9F8F-C02BF1FC5907","6C1DA55D-7D8C-40AC-B5C0-AC6DFFAE8C42"],"isLockOwner":false,"_Rotation":0,"_Scale":1.002003004005006,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Box","withLayers":["Global.lively.morphic.GrabbingLayer"]},"1148":{"submorphs":[],"scripts":[],"id":"F3C6F527-7B36-4E28-A66E-488A5C096862","shape":{"__isSmartRef__":true,"id":1149},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1156},"_MaxTextWidth":268.53332813092516,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1157},"showsHalos":false,"_FontSize":12,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Comment","partsBinMetaInfo":{"__isSmartRef__":true,"id":1158},"textChunks":[{"__isSmartRef__":true,"id":1159}],"charsReplaced":"Your comment goes here.","lastFindLoc":23,"priorSelectionRange":[3,3],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":1161},"renderContextTable":{"__isSmartRef__":true,"id":1162},"eventHandler":{"__isSmartRef__":true,"id":1163},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":1164},"_MinTextWidth":268.53332813092516,"_MinTextHeight":null,"distanceToDragEvent":{"__isSmartRef__":true,"id":1165},"owner":{"__isSmartRef__":true,"id":1147},"layout":{"__isSmartRef__":true,"id":1166},"previousSelection":[0,0],"_WhiteSpaceHandling":"pre-wrap","_ClipMode":"auto","derivationIds":[240,"075F605E-A020-4077-8CAE-73346ED6CA08","90AE1A69-D426-42A5-9C38-8BF8F3ED4A21","981F52D8-A31E-46C9-ADAC-94135B959FA1"],"isLockOwner":false,"isBeingDragged":false,"_Rotation":0,"_Scale":0.998001,"__LivelyClassName__":"lively.morphic.Text"},"1149":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1150},"_Extent":{"__isSmartRef__":true,"id":1151},"_BorderWidth":1.036,"_BorderColor":{"__isSmartRef__":true,"id":1152},"renderContextTable":{"__isSmartRef__":true,"id":1153},"_ClipMode":"auto","_BorderRadius":4.8100000000000005,"_Opacity":1,"_BorderStyle":"solid","_Padding":{"__isSmartRef__":true,"id":1154},"_Fill":{"__isSmartRef__":true,"id":1155},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1150":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1151":{"x":270.60532813092516,"y":314.66614152023885,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1152":{"r":0.572,"g":0.572,"b":0.572,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1153":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1154":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1155":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1156":{"x":350.10390422366766,"y":16.999999999999396,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1157":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1158":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1159":{"style":{"__isSmartRef__":true,"id":1160},"chunkOwner":{"__isSmartRef__":true,"id":1148},"storedString":"Test Comment","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"1160":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1161":{"x":270.60532813092516,"y":314.66614152023885,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1162":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1163":{"morph":{"__isSmartRef__":true,"id":1148},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1164":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1165":{"x":150.22856470859324,"y":-13.744825056852278,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1166":{"resizeWidth":true,"resizeHeight":true},"1167":{"submorphs":[{"__isSmartRef__":true,"id":1168}],"scripts":[],"id":"3B31B7A6-6CF4-472B-A460-838C1A1B8FA4","shape":{"__isSmartRef__":true,"id":1183},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1199},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1187},"lighterFill":{"__isSmartRef__":true,"id":1200},"label":{"__isSmartRef__":true,"id":1168},"showsHalos":false,"name":"CancelButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1209},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":1210}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":1212},"renderContextTable":{"__isSmartRef__":true,"id":1213},"eventHandler":{"__isSmartRef__":true,"id":1214},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":1215},"layout":{"__isSmartRef__":true,"id":1216},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","B9FAB98F-8B65-4277-94B0-E252BD02F6D7","3A01EEBA-175A-476C-89F4-BACFE5D2E39A","D0965275-9890-40BA-8729-6B09D2F18E17"],"owner":{"__isSmartRef__":true,"id":1147},"isLockOwner":false,"close":false,"_Rotation":0,"_Scale":0.992027944069942,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Button"},"1168":{"submorphs":[],"scripts":[],"id":"ECF364A1-24DA-43A8-AA54-C112C6736BE9","shape":{"__isSmartRef__":true,"id":1169},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1175},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":1176},"_Padding":{"__isSmartRef__":true,"id":1177},"owner":{"__isSmartRef__":true,"id":1167},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":1178},"textChunks":[{"__isSmartRef__":true,"id":1179}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1181},"eventHandler":{"__isSmartRef__":true,"id":1182},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","75C5A849-22BC-4A8D-A9DC-5BDE6A4C4007","BD5E4899-2C72-4C26-B166-7A8373106C5A","B876ECBB-EC75-42A2-ADB1-AE20407D9349"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1169":{"position":{"__isSmartRef__":true,"id":1170},"_Extent":{"__isSmartRef__":true,"id":1171},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1172},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1173},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1174},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1170":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1171":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1172":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1173":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1174":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1175":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1176":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1177":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1178":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1179":{"style":{"__isSmartRef__":true,"id":1180},"chunkOwner":{"__isSmartRef__":true,"id":1168},"storedString":"Cancel","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"1180":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1181":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1182":{"morph":{"__isSmartRef__":true,"id":1168},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1183":{"position":{"__isSmartRef__":true,"id":1184},"_Extent":{"__isSmartRef__":true,"id":1185},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1186},"_Fill":{"__isSmartRef__":true,"id":1187},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1197},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1198},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1184":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1185":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1186":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1187":{"stops":[{"__isSmartRef__":true,"id":1188},{"__isSmartRef__":true,"id":1190},{"__isSmartRef__":true,"id":1192},{"__isSmartRef__":true,"id":1194}],"vector":{"__isSmartRef__":true,"id":1196},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1188":{"offset":0,"color":{"__isSmartRef__":true,"id":1189}},"1189":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1190":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1191}},"1191":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1192":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1193}},"1193":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1194":{"offset":1,"color":{"__isSmartRef__":true,"id":1195}},"1195":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1196":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1197":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1198":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1199":{"x":557.4193971644545,"y":336.98780708595353,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1200":{"stops":[{"__isSmartRef__":true,"id":1201},{"__isSmartRef__":true,"id":1203},{"__isSmartRef__":true,"id":1205},{"__isSmartRef__":true,"id":1207}],"vector":{"__isSmartRef__":true,"id":1196},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1201":{"offset":0,"color":{"__isSmartRef__":true,"id":1202}},"1202":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1203":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1204}},"1204":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1205":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1206}},"1206":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1207":{"offset":1,"color":{"__isSmartRef__":true,"id":1208}},"1208":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1209":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1210":{"sourceObj":{"__isSmartRef__":true,"id":1167},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1096},"targetMethodName":"close","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1211},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1211":{"source":{"__isSmartRef__":true,"id":1167},"target":{"__isSmartRef__":true,"id":1096}},"1212":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1213":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1214":{"morph":{"__isSmartRef__":true,"id":1167},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1215":{"x":44.98877014800337,"y":-14.246240119254253,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1216":{"moveVertical":true,"moveHorizontal":true},"1217":{"position":{"__isSmartRef__":true,"id":1218},"_Extent":{"__isSmartRef__":true,"id":1219},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1220},"_Fill":{"__isSmartRef__":true,"id":1221},"__SourceModuleName__":"Global.lively.morphic.Shapes","_BorderRadius":0,"renderContextTable":{"__isSmartRef__":true,"id":1222},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1223},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1218":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1219":{"x":602.2282623764735,"y":323.57200033199587,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1220":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1221":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1222":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1223":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1224":{"x":12.458222518260243,"y":5.320348263502126,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1225":{"partsSpaceName":"PartsBin/Layout/","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph","migrationLevel":2,"partName":"VBox","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1226":{"x":602.2282623764735,"y":322.5739993319959,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1227":{"layouter":{"__isSmartRef__":true,"id":1228}},"1228":{"__SourceModuleName__":"Global.lively.morphic.Layout","borderSize":10,"spacing":15,"__LivelyClassName__":"lively.morphic.Layout.VerticalLayout"},"1229":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1230":{"morph":{"__isSmartRef__":true,"id":1147},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1231":{"x":414.270881395786,"y":-12.505030496246263,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1232":{"submorphs":[{"__isSmartRef__":true,"id":1233}],"scripts":[],"id":"139BF074-50E7-4EAD-8CBF-7E5A4FDB6374","shape":{"__isSmartRef__":true,"id":1248},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1264},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1252},"lighterFill":{"__isSmartRef__":true,"id":1265},"label":{"__isSmartRef__":true,"id":1233},"showsHalos":false,"name":"ClearAll","partsBinMetaInfo":{"__isSmartRef__":true,"id":1274},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":1275}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":1277},"renderContextTable":{"__isSmartRef__":true,"id":1278},"eventHandler":{"__isSmartRef__":true,"id":1279},"isCopyMorphRef":true,"morphRefId":1,"owner":{"__isSmartRef__":true,"id":1096},"distanceToDragEvent":{"__isSmartRef__":true,"id":1280},"layout":{"__isSmartRef__":true,"id":1281},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","2FA06619-30E2-4AEB-A695-3C2E7E7F5C25"],"isLockOwner":false,"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1282},"__LivelyClassName__":"lively.morphic.Button"},"1233":{"submorphs":[],"scripts":[],"id":"DDF8C352-1E8E-4872-A555-1F5242F2EC92","shape":{"__isSmartRef__":true,"id":1234},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1240},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":1241},"_Padding":{"__isSmartRef__":true,"id":1242},"owner":{"__isSmartRef__":true,"id":1232},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":1243},"textChunks":[{"__isSmartRef__":true,"id":1244}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1246},"eventHandler":{"__isSmartRef__":true,"id":1247},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","ADB2BD78-AEF4-412E-B9C3-017506E0258B"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1234":{"position":{"__isSmartRef__":true,"id":1235},"_Extent":{"__isSmartRef__":true,"id":1236},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1237},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1238},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1239},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1235":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1236":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1237":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1238":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1239":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1240":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1241":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1242":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1243":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1244":{"style":{"__isSmartRef__":true,"id":1245},"chunkOwner":{"__isSmartRef__":true,"id":1233},"storedString":"Reset","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"1245":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1246":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1247":{"morph":{"__isSmartRef__":true,"id":1233},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1248":{"position":{"__isSmartRef__":true,"id":1249},"_Extent":{"__isSmartRef__":true,"id":1250},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1251},"_Fill":{"__isSmartRef__":true,"id":1252},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1262},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1263},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1249":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1250":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1251":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1252":{"stops":[{"__isSmartRef__":true,"id":1253},{"__isSmartRef__":true,"id":1255},{"__isSmartRef__":true,"id":1257},{"__isSmartRef__":true,"id":1259}],"vector":{"__isSmartRef__":true,"id":1261},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1253":{"offset":0,"color":{"__isSmartRef__":true,"id":1254}},"1254":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1255":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1256}},"1256":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1257":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1258}},"1258":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1259":{"offset":1,"color":{"__isSmartRef__":true,"id":1260}},"1260":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1261":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1262":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1263":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1264":{"x":446.76633072385846,"y":342.56538329736134,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1265":{"stops":[{"__isSmartRef__":true,"id":1266},{"__isSmartRef__":true,"id":1268},{"__isSmartRef__":true,"id":1270},{"__isSmartRef__":true,"id":1272}],"vector":{"__isSmartRef__":true,"id":1261},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1266":{"offset":0,"color":{"__isSmartRef__":true,"id":1267}},"1267":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1268":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1269}},"1269":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1270":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1271}},"1271":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1272":{"offset":1,"color":{"__isSmartRef__":true,"id":1273}},"1273":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1274":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1275":{"sourceObj":{"__isSmartRef__":true,"id":1232},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1232},"targetMethodName":"clear","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1276},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1276":{"source":{"__isSmartRef__":true,"id":1232},"target":{"__isSmartRef__":true,"id":1232}},"1277":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1278":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1279":{"morph":{"__isSmartRef__":true,"id":1232},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1280":{"x":45.7170411763866,"y":-12.823434282261701,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1281":{"moveVertical":true,"moveHorizontal":true},"1282":{"clear":{"__isSmartRef__":true,"id":1283}},"1283":{"varMapping":{"__isSmartRef__":true,"id":1284},"source":"function clear() {\n var annotation = this.get(\"Annotation\");\n annotation.reset();\n annotation.clearComment();\n}","funcProperties":{"__isSmartRef__":true,"id":1285},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1284":{"this":{"__isSmartRef__":true,"id":1232}},"1285":{"timestamp":{"__isSmartRef__":true,"id":1286},"user":"aniljose","tags":[]},"1286":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:21:22 GMT-0400 (Eastern Daylight Time)"},"1287":{"submorphs":[{"__isSmartRef__":true,"id":1288}],"scripts":[],"id":"3B661E12-9C62-4FE2-82F5-4B8629A07932","shape":{"__isSmartRef__":true,"id":1303},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1319},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1307},"lighterFill":{"__isSmartRef__":true,"id":1320},"label":{"__isSmartRef__":true,"id":1288},"showsHalos":false,"name":"SaveButton","partsBinMetaInfo":{"__isSmartRef__":true,"id":1329},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":1330}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":1331},"renderContextTable":{"__isSmartRef__":true,"id":1332},"eventHandler":{"__isSmartRef__":true,"id":1333},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":1334},"layout":{"__isSmartRef__":true,"id":1335},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","C46AAED7-B4B7-4FFE-88AD-1914964500A3","BE719DA3-0A96-4A78-AED6-5F33939D1954"],"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":1096},"prevScroll":[0,0],"_Rotation":0,"_Scale":0.9880657804941866,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1336},"__LivelyClassName__":"lively.morphic.Button"},"1288":{"submorphs":[],"scripts":[],"id":"50DA06B8-6196-4233-AA1D-165DF05B04B1","shape":{"__isSmartRef__":true,"id":1289},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1295},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":1296},"_Padding":{"__isSmartRef__":true,"id":1297},"owner":{"__isSmartRef__":true,"id":1287},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":1298},"textChunks":[{"__isSmartRef__":true,"id":1299}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1301},"eventHandler":{"__isSmartRef__":true,"id":1302},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","E97F2028-93F1-471E-878F-E307CD701D3A","8FE1DC14-9139-45B8-84FA-83D17DE603F3"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1289":{"position":{"__isSmartRef__":true,"id":1290},"_Extent":{"__isSmartRef__":true,"id":1291},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1292},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1293},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1294},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1290":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1291":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1292":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1293":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1294":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1295":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1296":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1297":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1298":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1299":{"style":{"__isSmartRef__":true,"id":1300},"chunkOwner":{"__isSmartRef__":true,"id":1288},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"Save","__LivelyClassName__":"lively.morphic.TextChunk"},"1300":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1301":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1302":{"morph":{"__isSmartRef__":true,"id":1288},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1303":{"position":{"__isSmartRef__":true,"id":1304},"_Extent":{"__isSmartRef__":true,"id":1305},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1306},"_Fill":{"__isSmartRef__":true,"id":1307},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1317},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1318},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1304":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1305":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1306":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1307":{"stops":[{"__isSmartRef__":true,"id":1308},{"__isSmartRef__":true,"id":1310},{"__isSmartRef__":true,"id":1312},{"__isSmartRef__":true,"id":1314}],"vector":{"__isSmartRef__":true,"id":1316},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1308":{"offset":0,"color":{"__isSmartRef__":true,"id":1309}},"1309":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1310":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1311}},"1311":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1312":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1313}},"1313":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1314":{"offset":1,"color":{"__isSmartRef__":true,"id":1315}},"1315":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1316":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1317":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1318":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1319":{"x":384.08855465053364,"y":342.7563308094581,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1320":{"stops":[{"__isSmartRef__":true,"id":1321},{"__isSmartRef__":true,"id":1323},{"__isSmartRef__":true,"id":1325},{"__isSmartRef__":true,"id":1327}],"vector":{"__isSmartRef__":true,"id":1316},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1321":{"offset":0,"color":{"__isSmartRef__":true,"id":1322}},"1322":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1323":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1324}},"1324":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1325":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1326}},"1326":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1327":{"offset":1,"color":{"__isSmartRef__":true,"id":1328}},"1328":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1329":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1330":{"sourceObj":{"__isSmartRef__":true,"id":1287},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1287},"targetMethodName":"closeOwner","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1331":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1332":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1333":{"morph":{"__isSmartRef__":true,"id":1287},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1334":{"x":47.151862329666756,"y":-16.016688128175986,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1335":{"moveVertical":true,"moveHorizontal":true},"1336":{"closeOwner":{"__isSmartRef__":true,"id":1337}},"1337":{"varMapping":{"__isSmartRef__":true,"id":1338},"source":"function closeOwner() {\n var annotation = this.get(\"Annotation\");\n //annotation.remove();\n //annotation.visibilityIsTemporary = true;\n annotation.saveChanges();\n}","funcProperties":{"__isSmartRef__":true,"id":1339},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1338":{"this":{"__isSmartRef__":true,"id":1287}},"1339":{"timestamp":{"__isSmartRef__":true,"id":1340},"user":"aniljose","tags":[]},"1340":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:19:45 GMT-0400 (Eastern Daylight Time)"},"1341":{"submorphs":[{"__isSmartRef__":true,"id":1342}],"scripts":[],"id":"C2A4DD69-E346-41BF-9312-C1A35CC38D6C","shape":{"__isSmartRef__":true,"id":1357},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1373},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1361},"lighterFill":{"__isSmartRef__":true,"id":1374},"label":{"__isSmartRef__":true,"id":1342},"showsHalos":false,"name":"ClearCmt","partsBinMetaInfo":{"__isSmartRef__":true,"id":1383},"__SourceModuleName__":"Global.lively.morphic.Widgets","attributeConnections":[{"__isSmartRef__":true,"id":1384},{"__isSmartRef__":true,"id":1386}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"priorExtent":{"__isSmartRef__":true,"id":1388},"renderContextTable":{"__isSmartRef__":true,"id":1389},"eventHandler":{"__isSmartRef__":true,"id":1390},"isCopyMorphRef":true,"morphRefId":1,"distanceToDragEvent":{"__isSmartRef__":true,"id":1391},"layout":{"__isSmartRef__":true,"id":1392},"derivationIds":[241,"7E950E93-FED9-4DBC-987C-A38A92CB21AD","A32942E7-6E46-4F9A-9AE4-1DFFF28E3B29","A9F67AC8-24EA-42F2-8E17-2C6285845F51","8F69EE1F-B015-42AA-B64F-E3DB71BD3A8B"],"isLockOwner":false,"owner":{"__isSmartRef__":true,"id":1096},"clear":false,"prevScroll":[0,0],"_Rotation":0,"_Scale":0.9880657804941866,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1393},"__LivelyClassName__":"lively.morphic.Button"},"1342":{"submorphs":[],"scripts":[],"id":"C63A118B-76C2-42FE-8C0C-D67346E20DBD","shape":{"__isSmartRef__":true,"id":1343},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"_WhiteSpaceHandling":"pre-wrap","fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1349},"_MaxTextWidth":59,"_MaxTextHeight":null,"padding":{"__isSmartRef__":true,"id":1350},"_Padding":{"__isSmartRef__":true,"id":1351},"owner":{"__isSmartRef__":true,"id":1341},"isLabel":true,"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.TextCore","priorExtent":{"__isSmartRef__":true,"id":1352},"textChunks":[{"__isSmartRef__":true,"id":1353}],"_ClipMode":"hidden","_Align":"center","renderContextTable":{"__isSmartRef__":true,"id":1355},"eventHandler":{"__isSmartRef__":true,"id":1356},"_HandStyle":"default","_PointerEvents":"none","_MinTextWidth":59,"_MinTextHeight":null,"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[242,"E1A013BE-22C1-4AF8-92A8-97ECFB6157A3","263BA2DE-FB39-4C64-844C-897CE5556EEC","E3512FBC-D6CC-4849-9261-B03CA9C10058","C1AA6AB7-251B-4675-A5F3-62604AA9D97A"],"isLockOwner":false,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1343":{"position":{"__isSmartRef__":true,"id":1344},"_Extent":{"__isSmartRef__":true,"id":1345},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1346},"_Fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1347},"_ClipMode":"hidden","_Padding":{"__isSmartRef__":true,"id":1348},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1344":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1345":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1346":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1347":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1348":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1349":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1350":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1351":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1352":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1353":{"style":{"__isSmartRef__":true,"id":1354},"chunkOwner":{"__isSmartRef__":true,"id":1342},"storedString":"Clear","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"1354":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1355":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1356":{"morph":{"__isSmartRef__":true,"id":1342},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1357":{"position":{"__isSmartRef__":true,"id":1358},"_Extent":{"__isSmartRef__":true,"id":1359},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1360},"_Fill":{"__isSmartRef__":true,"id":1361},"_BorderRadius":5,"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1371},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1372},"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1358":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1359":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1360":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1361":{"stops":[{"__isSmartRef__":true,"id":1362},{"__isSmartRef__":true,"id":1364},{"__isSmartRef__":true,"id":1366},{"__isSmartRef__":true,"id":1368}],"vector":{"__isSmartRef__":true,"id":1370},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1362":{"offset":0,"color":{"__isSmartRef__":true,"id":1363}},"1363":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1364":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1365}},"1365":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1366":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1367}},"1367":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1368":{"offset":1,"color":{"__isSmartRef__":true,"id":1369}},"1369":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1370":{"x":0,"y":0,"width":0,"height":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1371":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1372":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1373":{"x":509.72805362686177,"y":342.8160019069867,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1374":{"stops":[{"__isSmartRef__":true,"id":1375},{"__isSmartRef__":true,"id":1377},{"__isSmartRef__":true,"id":1379},{"__isSmartRef__":true,"id":1381}],"vector":{"__isSmartRef__":true,"id":1370},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.LinearGradient"},"1375":{"offset":0,"color":{"__isSmartRef__":true,"id":1376}},"1376":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1377":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1378}},"1378":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1379":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1380}},"1380":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1381":{"offset":1,"color":{"__isSmartRef__":true,"id":1382}},"1382":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1383":{"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":2,"comment":"Requires careful usage.","partName":"CloseButton","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1384":{"sourceObj":{"__isSmartRef__":true,"id":1341},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1341},"targetMethodName":"clear","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1385},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1385":{"source":{"__isSmartRef__":true,"id":1341},"target":{"__isSmartRef__":true,"id":1341}},"1386":{"sourceObj":{"__isSmartRef__":true,"id":1341},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1341},"targetMethodName":"cleardata","converter":null,"converterString":null,"updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1387},"__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"1387":{"source":{"__isSmartRef__":true,"id":1341},"target":{"__isSmartRef__":true,"id":1341}},"1388":{"x":59,"y":21,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1389":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1390":{"morph":{"__isSmartRef__":true,"id":1341},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1391":{"x":37.994843579873304,"y":-12.077079955022498,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1392":{"moveVertical":true,"moveHorizontal":true},"1393":{"cleardata":{"__isSmartRef__":true,"id":1394}},"1394":{"varMapping":{"__isSmartRef__":true,"id":1395},"source":"function cleardata() {\n var annotation = this.get(\"Annotation\");\n annotation.clearComment();\n}","funcProperties":{"__isSmartRef__":true,"id":1396},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1395":{"this":{"__isSmartRef__":true,"id":1341}},"1396":{"timestamp":{"__isSmartRef__":true,"id":1397},"user":"aniljose","tags":[]},"1397":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:37:55 GMT-0400 (Eastern Daylight Time)"},"1398":{"submorphs":[],"scripts":[],"id":"D22F4D2A-8403-4EFC-B630-0DA1CBBCEE4C","shape":{"__isSmartRef__":true,"id":1399},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1406},"_MaxTextWidth":328.891015394333,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1402},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"Text12","partsBinMetaInfo":{"__isSmartRef__":true,"id":1407},"textChunks":[{"__isSmartRef__":true,"id":1410}],"charsReplaced":"s","lastFindLoc":6,"priorSelectionRange":[4,4],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":1412},"renderContextTable":{"__isSmartRef__":true,"id":1413},"eventHandler":{"__isSmartRef__":true,"id":1414},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":1415},"_ClipMode":"visible","derivationIds":[355,"1EB1674F-8BF2-419B-B054-86129ED70335","5050DFC3-DC71-4FFC-B728-D0FA31630535","34A623BF-9697-40D0-9A58-DD8FAE39B280"],"_WhiteSpaceHandling":"pre-wrap","_MinTextWidth":328.891015394333,"_MinTextHeight":null,"previousSelection":[6,6],"owner":{"__isSmartRef__":true,"id":1096},"distanceToDragEvent":{"__isSmartRef__":true,"id":1416},"_Rotation":0,"_Scale":0.9920279440699217,"__LivelyClassName__":"lively.morphic.Text"},"1399":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1400},"_Extent":{"__isSmartRef__":true,"id":1401},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1402},"renderContextTable":{"__isSmartRef__":true,"id":1403},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1404},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","_Fill":{"__isSmartRef__":true,"id":1405},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1400":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1401":{"x":336.891015394333,"y":35,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1402":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1403":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1404":{"x":4,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1405":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1406":{"x":15.761673814531264,"y":24.463318326880838,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1407":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","changes":[{"__isSmartRef__":true,"id":1408}],"revisionOnLoad":148789,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1408":{"date":{"__isSmartRef__":true,"id":1409},"author":"undefined","message":"Set the inset as: this.setPadding(Rectangle.inset(4,2)). This gives it a more pleasing appearance with a border, and also makes it easier to select near the bounds.","id":"BD5B0E4C-4830-4863-A013-35BB66D5AD6F"},"1409":{"isSerializedDate":true,"string":"Mon Feb 27 2012 00:20:38 GMT-0500 (Eastern Standard Time)"},"1410":{"style":{"__isSmartRef__":true,"id":1411},"chunkOwner":{"__isSmartRef__":true,"id":1398},"storedString":"","__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextChunk"},"1411":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1412":{"x":336.891015394333,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1413":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1414":{"morph":{"__isSmartRef__":true,"id":1398},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1415":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1416":{"x":255.92752980777846,"y":-14.879216346306123,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1417":{"position":{"__isSmartRef__":true,"id":1418},"_Extent":{"__isSmartRef__":true,"id":1419},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1420},"_Fill":{"__isSmartRef__":true,"id":1421},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1422},"_ClipMode":"visible","_BorderRadius":7.03,"_Opacity":1,"_BorderStyle":"solid","_Padding":{"__isSmartRef__":true,"id":1423},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1418":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1419":{"x":644.2498164508953,"y":373.61299768767066,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1420":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1421":{"r":0.921,"g":0.921,"b":0.921,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1422":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1423":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1424":{"x":20,"y":20,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1425":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","comment":"A simple box morph. A really blue one. Its amazing what you can build out of simple boxes.... Who needs stars when you got blue rectangles!","migrationLevel":2,"partName":"Rectangle","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1426":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1427":{"morph":{"__isSmartRef__":true,"id":1096},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1428":{"adjustForNewBounds":true},"1429":{"x":644.2498164508953,"y":373.61299768767066,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1430":{"x":340,"y":-15,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1431":{"comment":"Test Comment"},"1432":{"show":{"__isSmartRef__":true,"id":1433},"saveChanges":{"__isSmartRef__":true,"id":1437},"restoreAnnotation":{"__isSmartRef__":true,"id":1441},"close":{"__isSmartRef__":true,"id":1445},"setComment":{"__isSmartRef__":true,"id":1449},"getCalendarDate":{"__isSmartRef__":true,"id":1453},"reset":{"__isSmartRef__":true,"id":1457},"clearComment":{"__isSmartRef__":true,"id":1461},"getURL":{"__isSmartRef__":true,"id":1465},"onSubmit":{"__isSmartRef__":true,"id":1469},"onUpate":{"__isSmartRef__":true,"id":1473},"updateList":{"__isSmartRef__":true,"id":1477}},"1433":{"varMapping":{"__isSmartRef__":true,"id":1434},"source":"function show() {\n this.setPosition(pt(20, 20));\n this.annotationPin.addMorph(this);\n}","funcProperties":{"__isSmartRef__":true,"id":1435},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1434":{"this":{"__isSmartRef__":true,"id":1096}},"1435":{"timestamp":{"__isSmartRef__":true,"id":1436},"user":"aniljose","tags":[]},"1436":{"isSerializedDate":true,"string":"Mon Oct 17 2011 18:43:09 GMT-0400 (Eastern Daylight Time)"},"1437":{"varMapping":{"__isSmartRef__":true,"id":1438},"source":"function saveChanges() {\n // gather annotation informations\n var timestamp = this.getCalendarDate();\n var comment = this.get(\"Comment\").getTextString();\n var user; \n if (this.annotationPin.world() && this.annotationPin.world().getUserName && \n this.annotationPin.world().getUserName()) {\n user = this.annotationPin.world().getUserName();\n } \n\n lines = comment.split('\\n'),\n firstLine = lines[0] + '\\n' + user + ' on ' + timestamp;\n //listItem = {\n // isListItem: true,\n // string: firstLine,\n // value: {commentText: comment}\n //};\n //this.get('List1').addItem(listItem);\n\n var olddata = this.get(\"Text12\").getTextString() + '\\n';\n this.get(\"Text12\").setTextString(olddata + firstLine);\n\n // reset the annotation object\n this.annotation = {\n comment : comment\n };\n \n // update the annotation morph\n this.restoreAnnotation();\n}","funcProperties":{"__isSmartRef__":true,"id":1439},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1438":{"this":{"__isSmartRef__":true,"id":1096}},"1439":{"timestamp":{"__isSmartRef__":true,"id":1440},"user":"aniljose","tags":[]},"1440":{"isSerializedDate":true,"string":"Fri Apr 13 2012 09:33:26 GMT-0400 (Eastern Daylight Time)"},"1441":{"varMapping":{"__isSmartRef__":true,"id":1442},"source":"function restoreAnnotation() {\n this.get(\"Comment\").setTextString(this.annotation.comment); \n}","funcProperties":{"__isSmartRef__":true,"id":1443},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1442":{"this":{"__isSmartRef__":true,"id":1096}},"1443":{"timestamp":{"__isSmartRef__":true,"id":1444},"user":"aniljose","tags":[]},"1444":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:17:27 GMT-0400 (Eastern Daylight Time)"},"1445":{"varMapping":{"__isSmartRef__":true,"id":1446},"source":"function close() {\n this.restoreAnnotation(); \n this.remove();\n this.visibilityIsTemporary = true;\n}","funcProperties":{"__isSmartRef__":true,"id":1447},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1446":{"this":{"__isSmartRef__":true,"id":1096}},"1447":{"timestamp":{"__isSmartRef__":true,"id":1448},"user":"aniljose","tags":[]},"1448":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:16:46 GMT-0400 (Eastern Daylight Time)"},"1449":{"varMapping":{"__isSmartRef__":true,"id":1450},"source":"function setComment(comment) {\n this.annotation.comment = comment; \n this.get(\"Comment\").setTextString(this.annotation.comment);\n}","funcProperties":{"__isSmartRef__":true,"id":1451},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1450":{"this":{"__isSmartRef__":true,"id":1096}},"1451":{"timestamp":{"__isSmartRef__":true,"id":1452},"user":"aniljose","tags":[]},"1452":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:17:00 GMT-0400 (Eastern Daylight Time)"},"1453":{"varMapping":{"__isSmartRef__":true,"id":1454},"source":"function getCalendarDate() {\n var months = new Array(13);\n months[0] = \"January\";\n months[1] = \"February\";\n months[2] = \"March\";\n months[3] = \"April\";\n months[4] = \"May\";\n months[5] = \"June\";\n months[6] = \"July\";\n months[7] = \"August\";\n months[8] = \"September\";\n months[9] = \"October\";\n months[10] = \"November\";\n months[11] = \"December\";\n var now = new Date();\n var monthnumber = now.getMonth();\n var monthname = months[monthnumber];\n var monthday = now.getDate();\n var year = now.getYear();\n if(year < 2000) { year = year + 1900; }\n var dateString = monthname +\n ' ' +\n monthday +\n ', ' +\n year;\n return dateString;\n}","funcProperties":{"__isSmartRef__":true,"id":1455},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1454":{"this":{"__isSmartRef__":true,"id":1096}},"1455":{"timestamp":{"__isSmartRef__":true,"id":1456},"user":"aniljose","tags":[]},"1456":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:02:31 GMT-0400 (Eastern Daylight Time)"},"1457":{"varMapping":{"__isSmartRef__":true,"id":1458},"source":"function reset() {\n //this.get(\"List1\").setList([]);\n this.get(\"Text12\").setTextString(\"\");\n}","funcProperties":{"__isSmartRef__":true,"id":1459},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1458":{"this":{"__isSmartRef__":true,"id":1096}},"1459":{"timestamp":{"__isSmartRef__":true,"id":1460},"user":"aniljose","tags":[]},"1460":{"isSerializedDate":true,"string":"Fri Apr 13 2012 09:32:20 GMT-0400 (Eastern Daylight Time)"},"1461":{"varMapping":{"__isSmartRef__":true,"id":1462},"source":"function clearComment() {\n this.get(\"Comment\").setTextString(\"\");\n}","funcProperties":{"__isSmartRef__":true,"id":1463},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1462":{"this":{"__isSmartRef__":true,"id":1096}},"1463":{"timestamp":{"__isSmartRef__":true,"id":1464},"user":"aniljose","tags":[]},"1464":{"isSerializedDate":true,"string":"Thu Apr 12 2012 20:37:34 GMT-0400 (Eastern Daylight Time)"},"1465":{"varMapping":{"__isSmartRef__":true,"id":1466},"source":"function getURL() {\n return new URL(\"http://lively-kernel.org/repository/webwerkstatt/users/aniljose/data.json\") \n}","funcProperties":{"__isSmartRef__":true,"id":1467},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1466":{"this":{"__isSmartRef__":true,"id":1096}},"1467":{"timestamp":{"__isSmartRef__":true,"id":1468},"user":"aniljose","tags":[]},"1468":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:26:59 GMT-0400 (Eastern Daylight Time)"},"1469":{"varMapping":{"__isSmartRef__":true,"id":1470},"source":"function onSubmit() {\n this.highscores.push({\n name: this.world().getUserName(),\n comment: this.get('Comment').textString\n })\n\n var wr = new WebResource(this.getURL())\n var json = JSON.serialize(this.highscores);\n wr.put(json)\n this.updateList()\n}","funcProperties":{"__isSmartRef__":true,"id":1471},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1470":{"this":{"__isSmartRef__":true,"id":1096}},"1471":{"timestamp":{"__isSmartRef__":true,"id":1472},"user":"aniljose","tags":[]},"1472":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:22 GMT-0400 (Eastern Daylight Time)"},"1473":{"varMapping":{"__isSmartRef__":true,"id":1474},"source":"function onUpate() {\nalert(\"f\");\n $.ajax({\n type: \"GET\",\n\turl: \"http://lively-kernel.org/repository/webwerkstatt/users/aniljose/data.json\",\n\tsuccess: function(result) \n {\n alert(result);\n var obj = eval(result);\n l = $morph('List');\n l.setList(obj);\t}\n}); \n}","funcProperties":{"__isSmartRef__":true,"id":1475},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1474":{"this":{"__isSmartRef__":true,"id":1096}},"1475":{"timestamp":{"__isSmartRef__":true,"id":1476},"user":"aniljose","tags":[]},"1476":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:38 GMT-0400 (Eastern Daylight Time)"},"1477":{"varMapping":{"__isSmartRef__":true,"id":1478},"source":"function updateList() {\n this.get('List').setList(this.highscores\n .sortBy(function(ea) { return ea.comment})\n .reverse()\n .collect(function(ea, index) {\n return (index + 1) + \". \" + ea.name + \" \" + ea.comment\n })\n )\n}","funcProperties":{"__isSmartRef__":true,"id":1479},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1478":{"this":{"__isSmartRef__":true,"id":1096}},"1479":{"timestamp":{"__isSmartRef__":true,"id":1480},"user":"aniljose","tags":[]},"1480":{"isSerializedDate":true,"string":"Fri Apr 13 2012 10:27:54 GMT-0400 (Eastern Daylight Time)"},"1481":{"onMouseDown":{"__isSmartRef__":true,"id":1482},"onMouseOut":{"__isSmartRef__":true,"id":1490},"onMouseOver":{"__isSmartRef__":true,"id":1498}},"1482":{"varMapping":{"__isSmartRef__":true,"id":1483},"source":"function onMouseDown(evt) {\n if (evt.isCommandKey() || evt.isRightMouseButtonDown()) return $super(evt);\n this.annotation.show();\n this.annotation.visibilityIsTemporary = false; \n return false;\n}","funcProperties":{"__isSmartRef__":true,"id":1488},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1483":{"this":{"__isSmartRef__":true,"id":1053},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1484}},"1484":{"$super":{"__isSmartRef__":true,"id":1485}},"1485":{"varMapping":{"__isSmartRef__":true,"id":1486},"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":1487},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1486":{"obj":{"__isSmartRef__":true,"id":1053},"name":"onMouseDown"},"1487":{},"1488":{"timestamp":{"__isSmartRef__":true,"id":1489},"user":"aniljose","tags":[]},"1489":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:23:21 GMT-0400 (Eastern Daylight Time)"},"1490":{"varMapping":{"__isSmartRef__":true,"id":1491},"source":"function onMouseOut(evt) {\n if (this.annotation.visibilityIsTemporary) {\n this.annotation.remove();\n } \n}","funcProperties":{"__isSmartRef__":true,"id":1496},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1491":{"this":{"__isSmartRef__":true,"id":1053},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1492}},"1492":{"$super":{"__isSmartRef__":true,"id":1493}},"1493":{"varMapping":{"__isSmartRef__":true,"id":1494},"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":1495},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1494":{"obj":{"__isSmartRef__":true,"id":1053},"name":"onMouseOut"},"1495":{},"1496":{"timestamp":{"__isSmartRef__":true,"id":1497},"user":"aniljose","tags":[]},"1497":{"isSerializedDate":true,"string":"Thu Apr 12 2012 16:23:30 GMT-0400 (Eastern Daylight Time)"},"1498":{"varMapping":{"__isSmartRef__":true,"id":1499},"source":"function onMouseOver(evt) {\n //this.annotation.show()\n}","funcProperties":{"__isSmartRef__":true,"id":1500},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1499":{"this":{"__isSmartRef__":true,"id":1053}},"1500":{"timestamp":{"__isSmartRef__":true,"id":1501},"user":"undefined","tags":[]},"1501":{"isSerializedDate":true,"string":"Fri Apr 13 2012 15:59:15 GMT-0400 (Eastern Daylight Time)"},"1502":{"submorphs":[],"scripts":[],"id":226,"shape":{"__isSmartRef__":true,"id":1503},"grabbingEnabled":false,"droppingEnabled":false,"showsMorphMenu":false,"halosEnabled":false,"registeredForMouseEvents":true,"_world":{"__isSmartRef__":true,"id":0},"_Position":{"__isSmartRef__":true,"id":1509},"owner":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","carriesGrabbedMorphs":false,"_Scale":1.002003004005006,"renderContextTable":{"__isSmartRef__":true,"id":1510},"eventHandler":{"__isSmartRef__":true,"id":1511},"_Rotation":0,"lastScrollTime":1334346909281,"internalClickedOnMorph":{"__isSmartRef__":true,"id":1512},"scrollFocusMorph":{"__isSmartRef__":true,"id":1523},"prevScroll":[0,0],"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.HandMorph","withLayers":["Global.NoMagnetsLayer"]},"1503":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1504},"_Extent":{"__isSmartRef__":true,"id":1505},"_Fill":{"__isSmartRef__":true,"id":1506},"renderContextTable":{"__isSmartRef__":true,"id":1507},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1508},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1504":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1505":{"x":2,"y":2,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1506":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1507":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1508":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1509":{"x":992,"y":503,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1510":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1511":{"morph":{"__isSmartRef__":true,"id":1502},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1512":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1513},"derivationIds":[null],"id":"72528853-4BA1-4C43-BBEC-9ADBDAECF822","renderContextTable":{"__isSmartRef__":true,"id":1519},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1520}],"eventHandler":{"__isSmartRef__":true,"id":1522},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1523},"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":1518},"_Align":"center","eventsAreIgnored":true,"priorExtent":{"__isSmartRef__":true,"id":1645},"_MaxTextWidth":60,"_MinTextWidth":60,"_MaxTextHeight":null,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1513":{"_Position":{"__isSmartRef__":true,"id":1514},"renderContextTable":{"__isSmartRef__":true,"id":1515},"_Extent":{"__isSmartRef__":true,"id":1516},"_Padding":{"__isSmartRef__":true,"id":1517},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1518},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1514":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1515":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1516":{"x":60,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1517":{"x":0,"y":6,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1518":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1519":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1520":{"style":{"__isSmartRef__":true,"id":1521},"chunkOwner":{"__isSmartRef__":true,"id":1512},"storedString":"OK","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1521":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1522":{"morph":{"__isSmartRef__":true,"id":1512},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1523":{"submorphs":[{"__isSmartRef__":true,"id":1512}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1524},"derivationIds":[null],"id":"D3F8ED20-616D-45EE-8763-B0B7C4AD942A","renderContextTable":{"__isSmartRef__":true,"id":1540},"eventHandler":{"__isSmartRef__":true,"id":1541},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1542},"priorExtent":{"__isSmartRef__":true,"id":1543},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1544},"lighterFill":{"__isSmartRef__":true,"id":1530},"label":{"__isSmartRef__":true,"id":1512},"layout":{"__isSmartRef__":true,"id":1553},"owner":{"__isSmartRef__":true,"id":1554},"attributeConnections":[{"__isSmartRef__":true,"id":1643},{"__isSmartRef__":true,"id":1644}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"1524":{"_Position":{"__isSmartRef__":true,"id":1525},"renderContextTable":{"__isSmartRef__":true,"id":1526},"_Extent":{"__isSmartRef__":true,"id":1527},"_Padding":{"__isSmartRef__":true,"id":1528},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1529},"_Fill":{"__isSmartRef__":true,"id":1530},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1525":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1526":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1527":{"x":60,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1528":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1529":{"r":0.7411764705882353,"g":0.7450980392156863,"b":0.7529411764705882,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1530":{"stops":[{"__isSmartRef__":true,"id":1531},{"__isSmartRef__":true,"id":1533},{"__isSmartRef__":true,"id":1535},{"__isSmartRef__":true,"id":1537}],"vector":{"__isSmartRef__":true,"id":1539},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1531":{"offset":0,"color":{"__isSmartRef__":true,"id":1532}},"1532":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1533":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1534}},"1534":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1535":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1536}},"1536":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1537":{"offset":1,"color":{"__isSmartRef__":true,"id":1538}},"1538":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1539":{"x":0,"y":0,"width":0,"height":1,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1540":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1541":{"morph":{"__isSmartRef__":true,"id":1523},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1542":{"x":172,"y":56,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1543":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1544":{"stops":[{"__isSmartRef__":true,"id":1545},{"__isSmartRef__":true,"id":1547},{"__isSmartRef__":true,"id":1549},{"__isSmartRef__":true,"id":1551}],"vector":{"__isSmartRef__":true,"id":1539},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1545":{"offset":0,"color":{"__isSmartRef__":true,"id":1546}},"1546":{"r":0.9600000000000001,"g":0.9600000000000001,"b":0.9600000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1547":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1548}},"1548":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1549":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1550}},"1550":{"r":0.8200000000000001,"g":0.8200000000000001,"b":0.8200000000000001,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1551":{"offset":1,"color":{"__isSmartRef__":true,"id":1552}},"1552":{"r":0.94,"g":0.94,"b":0.94,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1553":{"moveVertical":true,"moveHorizontal":true},"1554":{"submorphs":[{"__isSmartRef__":true,"id":1555},{"__isSmartRef__":true,"id":1567},{"__isSmartRef__":true,"id":1523},{"__isSmartRef__":true,"id":1601}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1619},"derivationIds":[null],"id":"CB18A063-A582-470E-9057-0100083122B6","renderContextTable":{"__isSmartRef__":true,"id":1626},"eventHandler":{"__isSmartRef__":true,"id":1627},"_ClipMode":"visible","droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1628},"isLockOwner":true,"layout":{"__isSmartRef__":true,"id":1629},"draggingEnabled":false,"grabbingEnabled":false,"attributeConnections":[{"__isSmartRef__":true,"id":1630},{"__isSmartRef__":true,"id":1632},{"__isSmartRef__":true,"id":1634}],"ownerApp":{"__isSmartRef__":true,"id":1599},"owner":null,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1635},"__LivelyClassName__":"lively.morphic.Box","__SourceModuleName__":"Global.lively.morphic.Core","withoutLayers":["Global.lively.morphic.GrabbingLayer"]},"1555":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1556},"derivationIds":[null],"id":"B1109487-DF0D-430A-BA5E-D57383CC4099","renderContextTable":{"__isSmartRef__":true,"id":1562},"_WhiteSpaceHandling":"pre","textChunks":[{"__isSmartRef__":true,"id":1563}],"eventHandler":{"__isSmartRef__":true,"id":1565},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1554},"isLabel":true,"_HandStyle":"default","eventsAreIgnored":true,"draggingEnabled":false,"priorExtent":{"__isSmartRef__":true,"id":1566},"_MaxTextWidth":null,"_MinTextWidth":null,"_MaxTextHeight":null,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1556":{"_Position":{"__isSmartRef__":true,"id":1557},"renderContextTable":{"__isSmartRef__":true,"id":1558},"_Extent":{"__isSmartRef__":true,"id":1559},"_Padding":{"__isSmartRef__":true,"id":1560},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1518},"_Fill":{"__isSmartRef__":true,"id":1561},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1557":{"x":4,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1558":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1559":{"x":225,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1560":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1561":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1562":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1563":{"style":{"__isSmartRef__":true,"id":1564},"chunkOwner":{"__isSmartRef__":true,"id":1555},"storedString":"Please enter a relative or absolute path","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1564":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1565":{"morph":{"__isSmartRef__":true,"id":1555},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1566":{"x":225,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1567":{"submorphs":[{"__isSmartRef__":true,"id":1568}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1579},"derivationIds":[null],"id":"EAA50A46-99ED-44B6-9289-7C86C6C4D888","renderContextTable":{"__isSmartRef__":true,"id":1584},"eventHandler":{"__isSmartRef__":true,"id":1585},"_ClipMode":"visible","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1586},"priorExtent":{"__isSmartRef__":true,"id":1587},"value":false,"toggle":false,"isActive":true,"normalFill":{"__isSmartRef__":true,"id":1544},"lighterFill":{"__isSmartRef__":true,"id":1588},"label":{"__isSmartRef__":true,"id":1568},"layout":{"__isSmartRef__":true,"id":1597},"owner":{"__isSmartRef__":true,"id":1554},"attributeConnections":[{"__isSmartRef__":true,"id":1598},{"__isSmartRef__":true,"id":1617}],"doNotSerialize":["$$fire"],"doNotCopyProperties":["$$fire"],"__LivelyClassName__":"lively.morphic.Button","__SourceModuleName__":"Global.lively.morphic.Widgets"},"1568":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1569},"derivationIds":[null],"id":"337F2B17-43C5-400D-82B7-36A74B52ED75","renderContextTable":{"__isSmartRef__":true,"id":1574},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1575}],"eventHandler":{"__isSmartRef__":true,"id":1577},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowInput":false,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"owner":{"__isSmartRef__":true,"id":1567},"isLabel":true,"_HandStyle":"default","_TextColor":{"__isSmartRef__":true,"id":1518},"_Align":"center","eventsAreIgnored":true,"priorExtent":{"__isSmartRef__":true,"id":1578},"_MaxTextWidth":60,"_MinTextWidth":60,"_MaxTextHeight":null,"_MinTextHeight":null,"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1569":{"_Position":{"__isSmartRef__":true,"id":1570},"renderContextTable":{"__isSmartRef__":true,"id":1571},"_Extent":{"__isSmartRef__":true,"id":1572},"_Padding":{"__isSmartRef__":true,"id":1573},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1518},"_Fill":null,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1570":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1571":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1572":{"x":60,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1573":{"x":0,"y":6,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1574":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1575":{"style":{"__isSmartRef__":true,"id":1576},"chunkOwner":{"__isSmartRef__":true,"id":1568},"storedString":"Cancel","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1576":{"textShadow":"0px 1px 0 rgba(255,255,255,1)","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1577":{"morph":{"__isSmartRef__":true,"id":1568},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1578":{"x":60,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1579":{"_Position":{"__isSmartRef__":true,"id":1580},"renderContextTable":{"__isSmartRef__":true,"id":1581},"_Extent":{"__isSmartRef__":true,"id":1582},"_Padding":{"__isSmartRef__":true,"id":1583},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1529},"_Fill":{"__isSmartRef__":true,"id":1544},"_BorderRadius":5,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1580":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1581":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1582":{"x":60,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1583":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1584":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1585":{"morph":{"__isSmartRef__":true,"id":1567},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1586":{"x":236,"y":56,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1587":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1588":{"stops":[{"__isSmartRef__":true,"id":1589},{"__isSmartRef__":true,"id":1591},{"__isSmartRef__":true,"id":1593},{"__isSmartRef__":true,"id":1595}],"vector":{"__isSmartRef__":true,"id":1539},"__LivelyClassName__":"lively.morphic.LinearGradient","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1589":{"offset":0,"color":{"__isSmartRef__":true,"id":1590}},"1590":{"r":0.98,"g":0.98,"b":0.98,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1591":{"offset":0.4,"color":{"__isSmartRef__":true,"id":1592}},"1592":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1593":{"offset":0.6,"color":{"__isSmartRef__":true,"id":1594}},"1594":{"r":0.91,"g":0.91,"b":0.91,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1595":{"offset":1,"color":{"__isSmartRef__":true,"id":1596}},"1596":{"r":0.97,"g":0.97,"b":0.97,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1597":{"moveVertical":true,"moveHorizontal":true},"1598":{"sourceObj":{"__isSmartRef__":true,"id":1567},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1599},"targetMethodName":"removeTopLevel","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1599":{"result":"redline_img.xhtml","message":"Please enter a relative or absolute path","attributeConnections":[{"__isSmartRef__":true,"id":1600}],"doNotSerialize":["$$result"],"doNotCopyProperties":["$$result"],"defaultInput":"redline.xhtml","panel":{"__isSmartRef__":true,"id":1554},"label":{"__isSmartRef__":true,"id":1555},"cancelButton":{"__isSmartRef__":true,"id":1567},"okButton":{"__isSmartRef__":true,"id":1523},"inputText":{"__isSmartRef__":true,"id":1601},"view":{"__isSmartRef__":true,"id":1554},"__LivelyClassName__":"lively.morphic.PromptDialog","__SourceModuleName__":"Global.lively.morphic.Widgets"},"1600":{"sourceObj":{"__isSmartRef__":true,"id":1599},"sourceAttrName":"result","targetObj":{"__isSmartRef__":true,"id":1599},"targetMethodName":"triggerCallback","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1601":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1602},"derivationIds":[null],"id":"2E090F4B-5143-4BE7-A094-15603BAA3A2B","renderContextTable":{"__isSmartRef__":true,"id":1608},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":1609}],"eventHandler":{"__isSmartRef__":true,"id":1611},"_ClipMode":"hidden","grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowInput":true,"_FontFamily":"Helvetica","_FontSize":10,"evalEnabled":false,"_Position":{"__isSmartRef__":true,"id":1612},"isInputLine":true,"draggingEnabled":false,"attributeConnections":[{"__isSmartRef__":true,"id":1613},{"__isSmartRef__":true,"id":1614}],"doNotSerialize":["$$savedTextString"],"doNotCopyProperties":["$$savedTextString"],"savedTextString":"redline_img.xhtml","owner":{"__isSmartRef__":true,"id":1554},"priorExtent":{"__isSmartRef__":true,"id":1616},"_MaxTextWidth":282,"_MinTextWidth":282,"_MaxTextHeight":null,"_MinTextHeight":null,"priorSelectionRange":[0,13],"previousSelection":[0,13],"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1602":{"_Position":{"__isSmartRef__":true,"id":1603},"renderContextTable":{"__isSmartRef__":true,"id":1604},"_Extent":{"__isSmartRef__":true,"id":1605},"_Padding":{"__isSmartRef__":true,"id":1606},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1518},"_Fill":{"__isSmartRef__":true,"id":1607},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1603":{"x":4,"y":4,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1604":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1605":{"x":292,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1606":{"x":4,"y":2,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1607":{"r":0.9529411764705882,"g":0.9529411764705882,"b":0.9529411764705882,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1608":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1609":{"style":{"__isSmartRef__":true,"id":1610},"chunkOwner":{"__isSmartRef__":true,"id":1601},"storedString":"redline_img.xhtml","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1610":{"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1611":{"morph":{"__isSmartRef__":true,"id":1601},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1612":{"x":4,"y":27,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1613":{"sourceObj":{"__isSmartRef__":true,"id":1601},"sourceAttrName":"savedTextString","targetObj":{"__isSmartRef__":true,"id":1599},"targetMethodName":"result","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1614":{"sourceObj":{"__isSmartRef__":true,"id":1601},"sourceAttrName":"onEscPressed","targetObj":{"__isSmartRef__":true,"id":1599},"targetMethodName":"result","converter":null,"converterString":"function () { return null }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1615},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1615":{"source":{"__isSmartRef__":true,"id":1601},"target":{"__isSmartRef__":true,"id":1599}},"1616":{"x":292,"y":18,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1617":{"sourceObj":{"__isSmartRef__":true,"id":1567},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1599},"targetMethodName":"result","converter":null,"converterString":"function () { return null }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1618},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1618":{"source":{"__isSmartRef__":true,"id":1567},"target":{"__isSmartRef__":true,"id":1599}},"1619":{"_Position":{"__isSmartRef__":true,"id":1620},"renderContextTable":{"__isSmartRef__":true,"id":1621},"_Extent":{"__isSmartRef__":true,"id":1622},"_Padding":{"__isSmartRef__":true,"id":1623},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1624},"_Fill":{"__isSmartRef__":true,"id":1625},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"1620":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1621":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1622":{"x":300,"y":90,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1623":{"x":0,"y":0,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1624":{"r":0.4,"g":0.4,"b":0.4,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1625":{"r":0.8235294117647058,"g":0.8235294117647058,"b":0.8235294117647058,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1626":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1627":{"morph":{"__isSmartRef__":true,"id":1554},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"1628":{"x":801.5,"y":436,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1629":{"adjustForNewBounds":true},"1630":{"sourceObj":{"__isSmartRef__":true,"id":1554},"sourceAttrName":"onEscPressed","targetObj":{"__isSmartRef__":true,"id":1599},"targetMethodName":"result","converter":null,"converterString":"function () { return null}","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1631},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1631":{"source":{"__isSmartRef__":true,"id":1554},"target":{"__isSmartRef__":true,"id":1599}},"1632":{"sourceObj":{"__isSmartRef__":true,"id":1554},"sourceAttrName":"onEnterPressed","targetObj":{"__isSmartRef__":true,"id":1601},"targetMethodName":"doSave","converter":null,"converterString":"function (arg) { return arg }","updater":null,"updaterString":null,"varMapping":{"__isSmartRef__":true,"id":1633},"__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1633":{"source":{"__isSmartRef__":true,"id":1554},"target":{"__isSmartRef__":true,"id":1601}},"1634":{"sourceObj":{"__isSmartRef__":true,"id":1554},"sourceAttrName":"remove","targetMethodName":"remove","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1635":{"$$onEnterPressed":{"__isSmartRef__":true,"id":1636}},"1636":{"varMapping":{"__isSmartRef__":true,"id":1637},"source":"function onEnterPressed(evt) {\n evt.stop();\n }","funcProperties":{"__isSmartRef__":true,"id":1642},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1637":{"this":{"__isSmartRef__":true,"id":1554},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1638}},"1638":{"$super":{"__isSmartRef__":true,"id":1639}},"1639":{"varMapping":{"__isSmartRef__":true,"id":1640},"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":1641},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"1640":{"obj":{"__isSmartRef__":true,"id":1554},"name":"onEnterPressed"},"1641":{},"1642":{},"1643":{"sourceObj":{"__isSmartRef__":true,"id":1523},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1599},"targetMethodName":"removeTopLevel","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1644":{"sourceObj":{"__isSmartRef__":true,"id":1523},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":1601},"targetMethodName":"doSave","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"1645":{"x":60,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1646":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1647},"_Extent":{"__isSmartRef__":true,"id":1648},"_Fill":{"__isSmartRef__":true,"id":1649},"renderContextTable":{"__isSmartRef__":true,"id":1650},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1651},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1647":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1648":{"x":3197.000000000001,"y":2792,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1649":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1650":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1651":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1652":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1653":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"1654":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","setScroll":"setScrollHTML"},"1655":{"morph":{"__isSmartRef__":true,"id":0},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1656":{"x":990,"y":501,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1657":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"savedWorldAsURL","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"visitNewPageAfterSaveAs","converter":null,"converterString":null,"updaterString":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) {\n $upd(v)\n }\n }","varMapping":{"__isSmartRef__":true,"id":1658},"__SourceModuleName__":"Global.lively.bindings","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1659},"__LivelyClassName__":"AttributeConnection"},"1658":{"source":{"__isSmartRef__":true,"id":0},"target":{"__isSmartRef__":true,"id":0}},"1659":{"updater":{"__isSmartRef__":true,"id":1660}},"1660":{"originalFunc":null,"varMapping":{"__isSmartRef__":true,"id":1658},"source":"function ($upd, v) {\n if (v && v.toString() !== URL.source.toString()) {\n $upd(v)\n }\n }","funcProperties":{"__isSmartRef__":true,"id":1661},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1661":{},"1662":{"protocol":"http:","hostname":"lively-kernel.org","pathname":"/repository/webwerkstatt/users/aileenzhou/redline.xhtml","__SourceModuleName__":"Global.lively.Network","__LivelyClassName__":"URL"},"1663":{"submorphs":[{"__isSmartRef__":true,"id":1664}],"scripts":[],"id":"7B91ADAD-4F73-4A74-A09C-3B964254E538","shape":{"__isSmartRef__":true,"id":1693},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1700},"showsHalos":false,"name":"LoadingMorph","partsBinMetaInfo":{"__isSmartRef__":true,"id":1701},"__SourceModuleName__":"Global.lively.morphic.Core","renderContextTable":{"__isSmartRef__":true,"id":1798},"eventHandler":{"__isSmartRef__":true,"id":1799},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"derivationIds":[127,"59692BC3-6C7B-4E23-B820-8699260EA722","486BB935-1313-4103-B2A8-642B19437478","18AFFD44-46CD-489E-B1D6-DED43E2B6B06","2608C892-2204-4981-9A87-8E749F8944AB","5535861F-4EA2-44AB-8A40-0538124E0AAC","16C292B3-86E8-4622-B516-27C48263B8CC","87731A20-D455-44D0-97E5-98A7CFD4E417","A17081E7-E597-47ED-BD32-6E4D206BD7D7","CFB4A44C-BFEA-4584-BCBA-AE2A56739200","76B3DD9B-8D01-42BA-A574-AB99D5F899BB","1EBC5512-8F54-4B24-998C-69A285EC8533","DD1165C7-6C1A-4361-A4AE-FCF6F31152FD","4D6D36E8-48F3-408A-B03C-202E4DC182BD","5F3B3E0F-BBC6-4DDA-BAA0-7EFC05FF2011","E0A6B33B-767A-4532-9021-892414520200","F5F5E2B1-5FF0-4E09-B323-AE88A3920B8D","0C7E832A-A741-430F-B295-8BC181D066FE","472AED3B-CB76-49BD-BF49-354A2D568F86","A7C52F65-D140-4791-880F-F7584C7BB570","3516412B-8B36-4E52-9416-6B7FB358BDC2","1840CACC-078C-4795-AD3F-E9D6F8D557A0","1FEDCA25-0131-46FA-840F-DC5F1B05C6CA","C620CED3-0AE9-4097-9AA7-2706A042F9C9","679A861B-40E0-4DB2-B22F-95B454C6978D","FEF39B3C-E634-4825-BAB8-2D44FE647B03"],"isBeingDragged":false,"priorExtent":{"__isSmartRef__":true,"id":1800},"layout":{"__isSmartRef__":true,"id":1801},"distanceToDragEvent":{"__isSmartRef__":true,"id":1802},"prevScroll":[0,0],"moved":true,"_Rotation":0,"_Scale":1,"headRevision":146469,"_ClipMode":"visible","__serializedLivelyClosures__":{"__isSmartRef__":true,"id":1803},"__LivelyClassName__":"lively.morphic.Box"},"1664":{"submorphs":[{"__isSmartRef__":true,"id":1665}],"scripts":[],"shape":{"__isSmartRef__":true,"id":1681},"id":"7A74241D-2303-4EC0-A494-C9AC10BF4A67","renderContextTable":{"__isSmartRef__":true,"id":1686},"eventHandler":{"__isSmartRef__":true,"id":1687},"droppingEnabled":true,"halosEnabled":true,"_Position":{"__isSmartRef__":true,"id":1688},"name":"ProgressIndicator","priorExtent":{"__isSmartRef__":true,"id":1689},"showsHalos":false,"distanceToDragEvent":{"__isSmartRef__":true,"id":1690},"partsBinMetaInfo":{"__isSmartRef__":true,"id":1691},"__SourceModuleName__":"Global.lively.morphic.Widgets","derivationIds":[520,"071F18BE-FF28-40F5-ACAD-1916E0D25C38","DF185A10-743D-45FC-B9C2-76E12D908BCF","BF125D2C-596A-4C1E-A5F8-DAE4801E9497","3CEE8CFF-B8F1-4B4B-A405-CB583080252A","D0652878-8F9C-4591-8A82-296898AACDB6","31441DDF-2220-43BE-A99F-69E1FEC68030","14A90039-0D3E-46DC-8445-D42B8E02EB42","681EF5DE-A344-4114-B2F3-B96CE3872524","C0381116-5116-4F33-B082-A411D0E4534E","24E9581E-B008-46EE-9CBC-D5190E100D98","C69D1041-2C5E-48FE-B04C-04E66450658A","4830945B-4FFF-4564-9424-34D7995DAE60","8602C233-B3E7-4682-9B0E-D7549761D934","B4E0E11F-2BED-462E-B708-89D63971856E","EE0144C2-D016-4390-8A67-4E7DEF171C83","F44DF6E4-5F27-440E-AB5F-3721C0A10CA6","73FC6648-DAAF-4673-8CF4-7DA219513F22","B78EB1B5-780C-45F7-B0A7-B988B52B1FF1","DFDB8CD1-72F7-40F4-849B-1F9B866277AB","66111105-B1FC-41F7-BF70-D45118C9E09F","02420416-1E35-4831-AABB-91CD0460CA1A","7C6B2EB2-4510-4A8E-BAFF-5CF0040DD7F5","0503F5A1-1732-4610-9A5A-920D658CA766","07C5AE03-36AD-4849-BACD-27D7D9A2CCF2","9FFF9D73-931C-404C-AA4B-5AC2E7C53504"],"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"owner":{"__isSmartRef__":true,"id":1663},"isBeingDragged":false,"layout":{"__isSmartRef__":true,"id":1692},"prevScroll":[0,0],"_Rotation":0,"_Scale":1,"_ClipMode":"visible","__LivelyClassName__":"lively.morphic.Image"},"1665":{"submorphs":[],"scripts":[],"id":"90EB117C-4B1C-4D2A-9C91-8D733986B8C6","shape":{"__isSmartRef__":true,"id":1666},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":false,"allowsInput":true,"_FontFamily":"Arial, sans-serif","registeredForMouseEvents":true,"_Position":{"__isSmartRef__":true,"id":1672},"_MaxTextWidth":257,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":1669},"showsHalos":false,"_FontSize":14,"__SourceModuleName__":"Global.lively.morphic.TextCore","name":"loadedMorphName","partsBinMetaInfo":{"__isSmartRef__":true,"id":1673},"textChunks":[{"__isSmartRef__":true,"id":1674}],"charsReplaced":"MorphName","lastFindLoc":18,"priorSelectionRange":[9,0],"prevScroll":[0,0],"priorExtent":{"__isSmartRef__":true,"id":1676},"renderContextTable":{"__isSmartRef__":true,"id":1677},"eventHandler":{"__isSmartRef__":true,"id":1678},"attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"_Padding":{"__isSmartRef__":true,"id":1679},"_ClipMode":"visible","derivationIds":[355,"023045B3-2D6B-4425-89FB-F4806D527BE0","DC0C2365-868C-41AE-8369-51C31E91493E","C6D9D314-86A1-4015-970B-F6787F535E1A","6AA4552E-2E85-447E-9033-99D5AA1A94BC","D94BE49C-8A3E-4F1F-BF28-FEDD9B40D213","AA8F0470-654C-4AA2-8135-4607F5429AC5","E0BAABCC-FFB2-4EDF-BAE5-C63CC99B6A97","1A86AE17-73AE-442E-AB36-DD90C6DFC8BC","EF750075-E964-4CD3-B6A4-161511E1D058","CED69CBF-FFA5-45E7-B333-FBACE4F278AC","E56978C1-7424-4C10-8168-11FD3237B540","D5AB2532-A4DC-42D6-AF17-99CBBCEAA848","245866CB-598A-4172-A3A0-A06D4D26C6AD","43B0F12E-5793-43AA-80E1-496774E0EBA6","1B776A8C-0413-475F-8EBD-120BBD91D2BB","F84F2C9A-8003-4E81-833A-83F48C92F3B8","3124B389-9FA4-4348-BC5D-0DFF9C59CD1B","1A1BCBAC-D7CC-4BAE-B8C2-7C693F7327A1","1CB201BA-5E0B-4771-821A-139FA2AEFBC2","195520FA-4816-47A4-B0F5-BA890AFD9DF9","0D15F28A-24C9-46B7-89C5-6D2354728AC1","316FE9D3-62EC-4FD6-9B0F-FFA622B79575","739F3743-9BE1-48C8-813D-C0BFB0DCACA6","01877B3B-7DA7-4222-B011-7B5F4E501862","B8FE7DEE-9568-4BE6-BA12-EA674BA79E08"],"_WhiteSpaceHandling":"pre-wrap","owner":{"__isSmartRef__":true,"id":1664},"_MinTextWidth":257,"_MinTextHeight":null,"previousSelection":[6,6],"_Align":"center","distanceToDragEvent":{"__isSmartRef__":true,"id":1680},"isBeingDragged":false,"_Rotation":0,"_Scale":1,"__LivelyClassName__":"lively.morphic.Text"},"1666":{"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":1667},"_Extent":{"__isSmartRef__":true,"id":1668},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":1669},"renderContextTable":{"__isSmartRef__":true,"id":1670},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1671},"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1667":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1668":{"x":257,"y":23,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1669":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1670":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1671":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1672":{"x":-109,"y":38,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1673":{"partsSpaceName":"PartsBin/Basic","__SourceModuleName__":"Global.lively.PartsBin","migrationLevel":4,"comment":"a simple text morph","partName":"Text","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1674":{"style":{"__isSmartRef__":true,"id":1675},"chunkOwner":{"__isSmartRef__":true,"id":1665},"__SourceModuleName__":"Global.lively.morphic.TextCore","storedString":"loading part","__LivelyClassName__":"lively.morphic.TextChunk"},"1675":{"__SourceModuleName__":"Global.lively.morphic.TextCore","__LivelyClassName__":"lively.morphic.TextEmphasis"},"1676":{"x":257,"y":23,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1677":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML","updateText":"updateTextHTML","setTextExtent":"setTextExtentHTML","setMaxTextWidth":"setMaxTextWidthHTML","setMaxTextHeight":"setMaxTextHeightHTML","setMinTextWidth":"setMinTextWidthHTML","setMinTextHeight":"setMinTextHeightHTML","getTextExtent":"getTextExtentHTML","getTextString":"getTextStringHTML","ignoreTextEvents":"ignoreTextEventsHTML","unignoreTextEvents":"unignoreTextEventsHTML","enableTextEvents":"enableTextEventsHTML","setFontFamily":"setFontFamilyHTML","setFontSize":"setFontSizeHTML","setTextColor":"setTextColorHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML"},"1678":{"morph":{"__isSmartRef__":true,"id":1665},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1679":{"x":5,"y":5,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1680":{"x":179,"y":-11,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1681":{"_Position":{"__isSmartRef__":true,"id":1682},"renderContextTable":{"__isSmartRef__":true,"id":1683},"_Extent":{"__isSmartRef__":true,"id":1684},"_ImageURL":"data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==","attributeConnections":[],"doNotSerialize":[],"doNotCopyProperties":[],"isLoaded":true,"__SourceModuleName__":"Global.lively.morphic.Shapes","_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1685},"_BorderWidth":0,"_BorderRadius":0,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Image"},"1682":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1683":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setImageURL":"setImageURLHTML","getNativeExtent":"getNativeExtentHTML"},"1684":{"x":31,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1685":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1686":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1687":{"morph":{"__isSmartRef__":true,"id":1664},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1688":{"x":113.5,"y":81,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1689":{"x":30,"y":31,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1690":{"x":39,"y":-11,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1691":{"partName":"ProgressIndicator","requiredModules":[],"migrationLevel":2,"partsSpaceName":"PartsBin/Widgets/","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1692":{"centeredHorizontal":true,"centeredVertical":true},"1693":{"position":{"__isSmartRef__":true,"id":1694},"_Extent":{"__isSmartRef__":true,"id":1695},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":1696},"_Fill":{"__isSmartRef__":true,"id":1697},"__SourceModuleName__":"Global.lively.morphic.Shapes","renderContextTable":{"__isSmartRef__":true,"id":1698},"_ClipMode":"visible","_Padding":{"__isSmartRef__":true,"id":1699},"_BorderRadius":8.515,"_Opacity":0.8146,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"1694":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1695":{"x":266,"y":223,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1696":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Color"},"1697":{"r":0.839,"g":0.839,"b":0.839,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"1698":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML"},"1699":{"x":0,"y":0,"width":0,"height":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Rectangle"},"1700":{"x":0,"y":0,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1701":{"partsSpaceName":"PartsBin/iPadWidgets","__SourceModuleName__":"Global.lively.PartsBin","comment":"This is a placeholder to indicate that a morph is being loaded. It will be replaced by the morph as soon as the requested morph finished loading.","migrationLevel":4,"partName":"LoadingMorph","changes":[{"__isSmartRef__":true,"id":1702},{"__isSmartRef__":true,"id":1704},{"__isSmartRef__":true,"id":1706},{"__isSmartRef__":true,"id":1708},{"__isSmartRef__":true,"id":1710},{"__isSmartRef__":true,"id":1712},{"__isSmartRef__":true,"id":1714},{"__isSmartRef__":true,"id":1716},{"__isSmartRef__":true,"id":1718},{"__isSmartRef__":true,"id":1720},{"__isSmartRef__":true,"id":1722},{"__isSmartRef__":true,"id":1724},{"__isSmartRef__":true,"id":1726},{"__isSmartRef__":true,"id":1728},{"__isSmartRef__":true,"id":1730},{"__isSmartRef__":true,"id":1732},{"__isSmartRef__":true,"id":1734},{"__isSmartRef__":true,"id":1736},{"__isSmartRef__":true,"id":1738},{"__isSmartRef__":true,"id":1740},{"__isSmartRef__":true,"id":1742},{"__isSmartRef__":true,"id":1744},{"__isSmartRef__":true,"id":1746},{"__isSmartRef__":true,"id":1748},{"__isSmartRef__":true,"id":1750},{"__isSmartRef__":true,"id":1752},{"__isSmartRef__":true,"id":1754},{"__isSmartRef__":true,"id":1756},{"__isSmartRef__":true,"id":1758},{"__isSmartRef__":true,"id":1760},{"__isSmartRef__":true,"id":1762},{"__isSmartRef__":true,"id":1764},{"__isSmartRef__":true,"id":1766},{"__isSmartRef__":true,"id":1768},{"__isSmartRef__":true,"id":1770},{"__isSmartRef__":true,"id":1772},{"__isSmartRef__":true,"id":1774},{"__isSmartRef__":true,"id":1776},{"__isSmartRef__":true,"id":1778},{"__isSmartRef__":true,"id":1780},{"__isSmartRef__":true,"id":1782},{"__isSmartRef__":true,"id":1784},{"__isSmartRef__":true,"id":1786},{"__isSmartRef__":true,"id":1788},{"__isSmartRef__":true,"id":1790},{"__isSmartRef__":true,"id":1792},{"__isSmartRef__":true,"id":1794},{"__isSmartRef__":true,"id":1796}],"revisionOnLoad":151069,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"1702":{"date":{"__isSmartRef__":true,"id":1703},"author":"sstamm","message":"","id":"1C1391AE-5722-4707-BE52-F0094FC56829"},"1703":{"isSerializedDate":true,"string":"Wed Feb 22 2012 08:02:04 GMT-0500 (Eastern Standard Time)"},"1704":{"date":{"__isSmartRef__":true,"id":1705},"author":"sstamm","message":"","id":"663F147A-9084-4AC3-81A7-1E7BA6547F08"},"1705":{"isSerializedDate":true,"string":"Wed Feb 22 2012 06:43:10 GMT-0500 (Eastern Standard Time)"},"1706":{"date":{"__isSmartRef__":true,"id":1707},"author":"sstamm","message":"","id":"F72B746E-B170-4EFB-9074-5E8770640B8A"},"1707":{"isSerializedDate":true,"string":"Wed Feb 22 2012 06:36:14 GMT-0500 (Eastern Standard Time)"},"1708":{"date":{"__isSmartRef__":true,"id":1709},"author":"sstamm","message":"","id":"568D2EFD-C535-43AE-8944-6D8B967129F5"},"1709":{"isSerializedDate":true,"string":"Wed Feb 22 2012 06:23:04 GMT-0500 (Eastern Standard Time)"},"1710":{"date":{"__isSmartRef__":true,"id":1711},"author":"sstamm","message":"","id":"AB2484A6-0707-4E13-845E-F0A5F48BBA3D"},"1711":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:59:45 GMT-0500 (Eastern Standard Time)"},"1712":{"date":{"__isSmartRef__":true,"id":1713},"author":"sstamm","message":"","id":"97D20633-F76C-46A5-A32A-FFE9BC83CAB3"},"1713":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:59:10 GMT-0500 (Eastern Standard Time)"},"1714":{"date":{"__isSmartRef__":true,"id":1715},"author":"sstamm","message":"","id":"8A697DF5-9A45-4A84-B709-9719BF55083E"},"1715":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:56:54 GMT-0500 (Eastern Standard Time)"},"1716":{"date":{"__isSmartRef__":true,"id":1717},"author":"sstamm","message":"","id":"F2157D66-1571-4B9A-B325-6FA96488260F"},"1717":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:51:05 GMT-0500 (Eastern Standard Time)"},"1718":{"date":{"__isSmartRef__":true,"id":1719},"author":"sstamm","message":"","id":"E5E808CA-06AB-47DC-A9C9-CA7967591545"},"1719":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:47:19 GMT-0500 (Eastern Standard Time)"},"1720":{"date":{"__isSmartRef__":true,"id":1721},"author":"sstamm","message":"","id":"009DC4E0-23CA-485A-A796-801AA0F75049"},"1721":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:46:25 GMT-0500 (Eastern Standard Time)"},"1722":{"date":{"__isSmartRef__":true,"id":1723},"author":"sstamm","message":"","id":"C0CE1397-6E2E-4E8C-AEFF-9017E24BB7E4"},"1723":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:45:05 GMT-0500 (Eastern Standard Time)"},"1724":{"date":{"__isSmartRef__":true,"id":1725},"author":"sstamm","message":"","id":"FFE16986-548D-4AC2-A627-CF6416282BC4"},"1725":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:37:15 GMT-0500 (Eastern Standard Time)"},"1726":{"date":{"__isSmartRef__":true,"id":1727},"author":"sstamm","message":"","id":"57213D63-7147-4057-ADC9-30994443B066"},"1727":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:35:29 GMT-0500 (Eastern Standard Time)"},"1728":{"date":{"__isSmartRef__":true,"id":1729},"author":"sstamm","message":"","id":"75A31364-B380-4312-BB5B-F8F2DA1CE824"},"1729":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:31:52 GMT-0500 (Eastern Standard Time)"},"1730":{"date":{"__isSmartRef__":true,"id":1731},"author":"sstamm","message":"","id":"5AA50B7E-7D33-44C4-807B-BF1ABA31D530"},"1731":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:14:10 GMT-0500 (Eastern Standard Time)"},"1732":{"date":{"__isSmartRef__":true,"id":1733},"author":"sstamm","message":"","id":"BCDCC505-534C-45E5-9BB2-5238959A5AD0"},"1733":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:02:56 GMT-0500 (Eastern Standard Time)"},"1734":{"date":{"__isSmartRef__":true,"id":1735},"author":"sstamm","message":"","id":"890D14F4-E89D-4E05-BFB9-875D6AB6C765"},"1735":{"isSerializedDate":true,"string":"Wed Feb 22 2012 05:01:50 GMT-0500 (Eastern Standard Time)"},"1736":{"date":{"__isSmartRef__":true,"id":1737},"author":"sstamm","message":"","id":"B6FE0805-0D24-4267-8238-8B332352617E"},"1737":{"isSerializedDate":true,"string":"Wed Feb 22 2012 04:55:44 GMT-0500 (Eastern Standard Time)"},"1738":{"date":{"__isSmartRef__":true,"id":1739},"author":"sstamm","message":"callbacks are working","id":"9348260A-3B55-4659-BC85-440BFBD98EA4"},"1739":{"isSerializedDate":true,"string":"Fri Feb 10 2012 03:45:55 GMT-0500 (Eastern Standard Time)"},"1740":{"date":{"__isSmartRef__":true,"id":1741},"author":"sstamm","message":"made it more opaque","id":"1B84264C-2822-407F-A58F-19217BCD2762"},"1741":{"isSerializedDate":true,"string":"Wed Feb 08 2012 05:41:50 GMT-0500 (Eastern Standard Time)"},"1742":{"date":{"__isSmartRef__":true,"id":1743},"author":"sstamm","message":"","id":"0FB41D7D-2A52-4782-814B-A66C24FCE569"},"1743":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:13:49 GMT-0500 (Eastern Standard Time)"},"1744":{"date":{"__isSmartRef__":true,"id":1745},"author":"sstamm","message":"","id":"A0C2D7C1-04AF-493A-A7D7-70750F7D3E2F"},"1745":{"isSerializedDate":true,"string":"Thu Feb 02 2012 11:22:07 GMT-0500 (Eastern Standard Time)"},"1746":{"date":{"__isSmartRef__":true,"id":1747},"author":"sstamm","message":"trollolol","id":"F6CFAD78-AC72-4DE2-9F38-79776C2E9462"},"1747":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:55:14 GMT-0500 (Eastern Standard Time)"},"1748":{"date":{"__isSmartRef__":true,"id":1749},"author":"sstamm","message":"should be centered now","id":"EE366B4D-C272-477F-8C28-4EAE5A7EC7CB"},"1749":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:54:35 GMT-0500 (Eastern Standard Time)"},"1750":{"date":{"__isSmartRef__":true,"id":1751},"author":"sstamm","message":"initial commit","id":"8920D925-DD16-4667-B8C7-FB74D78C2424"},"1751":{"isSerializedDate":true,"string":"Thu Feb 02 2012 07:26:01 GMT-0500 (Eastern Standard Time)"},"1752":{"date":{"__isSmartRef__":true,"id":1753},"author":"sstamm","message":"changed text morph name","id":"80E88A3C-5AF3-48F2-A600-710877630997"},"1753":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:04:01 GMT-0500 (Eastern Standard Time)"},"1754":{"date":{"__isSmartRef__":true,"id":1755},"author":"sstamm","message":"added loading script","id":"EE9B8F4D-1F03-4232-82E6-794046974F8F"},"1755":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:28:30 GMT-0500 (Eastern Standard Time)"},"1756":{"date":{"__isSmartRef__":true,"id":1757},"author":"sstamm","message":"added disconnection","id":"11F19267-924E-4087-99ED-998245576BD2"},"1757":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:32:58 GMT-0500 (Eastern Standard Time)"},"1758":{"date":{"__isSmartRef__":true,"id":1759},"author":"sstamm","message":"removed connections before deletion","id":"35A88218-6864-4D52-83A2-BFF7B9A6907C"},"1759":{"isSerializedDate":true,"string":"Thu Feb 02 2012 08:41:00 GMT-0500 (Eastern Standard Time)"},"1760":{"date":{"__isSmartRef__":true,"id":1761},"author":"sstamm","message":"now able to load parts by name and category as well as per partItem","id":"F36A5782-461D-4813-95F8-0207990A261C"},"1761":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:24:30 GMT-0500 (Eastern Standard Time)"},"1762":{"date":{"__isSmartRef__":true,"id":1763},"author":"sstamm","message":"now with round corners","id":"F42C39CB-CC37-467D-BF10-D362241F047E"},"1763":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:26:23 GMT-0500 (Eastern Standard Time)"},"1764":{"date":{"__isSmartRef__":true,"id":1765},"author":"sstamm","message":"loadingMorph is sync now","id":"12ACFFC9-BA53-4A2A-ABD4-894A5ECE1145"},"1765":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:48:04 GMT-0500 (Eastern Standard Time)"},"1766":{"date":{"__isSmartRef__":true,"id":1767},"author":"sstamm","message":"display the loadingMorph in new thread","id":"2BA51E30-F02B-4AF0-B3BE-52DD4ED522CC"},"1767":{"isSerializedDate":true,"string":"Thu Feb 02 2012 09:53:49 GMT-0500 (Eastern Standard Time)"},"1768":{"date":{"__isSmartRef__":true,"id":1769},"author":"sstamm","message":"","id":"DF0AE4EA-1B08-4556-8BBE-E6488F23B8A3"},"1769":{"isSerializedDate":true,"string":"Thu Feb 02 2012 10:49:48 GMT-0500 (Eastern Standard Time)"},"1770":{"date":{"__isSmartRef__":true,"id":1771},"author":"sstamm","message":"","id":"220821B3-C589-41C9-A324-8E7E6D9D6CEB"},"1771":{"isSerializedDate":true,"string":"Thu Feb 02 2012 10:58:43 GMT-0500 (Eastern Standard Time)"},"1772":{"date":{"__isSmartRef__":true,"id":1773},"author":"sstamm","message":"","id":"DEBFACE2-7EC5-4A86-AD46-5A0A88A73707"},"1773":{"isSerializedDate":true,"string":"Thu Feb 02 2012 11:04:28 GMT-0500 (Eastern Standard Time)"},"1774":{"date":{"__isSmartRef__":true,"id":1775},"author":"sstamm","message":"load request in new thread if loading should be async","id":"18282D28-D6D4-48C9-A508-6E3244449BD8"},"1775":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:10:27 GMT-0500 (Eastern Standard Time)"},"1776":{"date":{"__isSmartRef__":true,"id":1777},"author":"sstamm","message":"added benchmarking output","id":"249CFF90-DDF5-4A83-9759-0289E96D7D58"},"1777":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:31:50 GMT-0500 (Eastern Standard Time)"},"1778":{"date":{"__isSmartRef__":true,"id":1779},"author":"sstamm","message":"","id":"882082E1-29B6-418D-9B8B-672729D60619"},"1779":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:38:26 GMT-0500 (Eastern Standard Time)"},"1780":{"date":{"__isSmartRef__":true,"id":1781},"author":"sstamm","message":"","id":"5179AEF9-E19F-4B0C-BBD8-556C5687988A"},"1781":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:44:11 GMT-0500 (Eastern Standard Time)"},"1782":{"date":{"__isSmartRef__":true,"id":1783},"author":"sstamm","message":"","id":"1159C5B4-724E-4124-9D7B-5CD5DC4A8EE3"},"1783":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:48:14 GMT-0500 (Eastern Standard Time)"},"1784":{"date":{"__isSmartRef__":true,"id":1785},"author":"sstamm","message":"","id":"2A718D1F-1036-41D6-999A-336F2B14E65D"},"1785":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:49:47 GMT-0500 (Eastern Standard Time)"},"1786":{"date":{"__isSmartRef__":true,"id":1787},"author":"sstamm","message":"","id":"EB6BDD0C-7EEC-4124-B77F-2F106A601538"},"1787":{"isSerializedDate":true,"string":"Tue Feb 07 2012 05:59:48 GMT-0500 (Eastern Standard Time)"},"1788":{"date":{"__isSmartRef__":true,"id":1789},"author":"sstamm","message":"","id":"63EC8D07-AB6A-450A-BB84-9B4D37E03647"},"1789":{"isSerializedDate":true,"string":"Tue Feb 07 2012 06:02:33 GMT-0500 (Eastern Standard Time)"},"1790":{"date":{"__isSmartRef__":true,"id":1791},"author":"sstamm","message":"","id":"19CE12E4-5AA5-48DC-B1D1-B0EB0EDF1CB9"},"1791":{"isSerializedDate":true,"string":"Tue Feb 07 2012 06:03:42 GMT-0500 (Eastern Standard Time)"},"1792":{"date":{"__isSmartRef__":true,"id":1793},"author":"sstamm","message":"first attempt to introduce callback functions to part loading","id":"22BD0B95-8948-411A-A56E-AD7CBE445F1D"},"1793":{"isSerializedDate":true,"string":"Thu Feb 09 2012 14:20:11 GMT-0500 (Eastern Standard Time)"},"1794":{"date":{"__isSmartRef__":true,"id":1795},"author":"sstamm","message":"","id":"A216DFD2-9D1F-4E62-A22F-6B5472823E1B"},"1795":{"isSerializedDate":true,"string":"Fri Mar 16 2012 10:37:34 GMT-0400 (Eastern Daylight Time)"},"1796":{"date":{"__isSmartRef__":true,"id":1797},"author":"sstamm","message":"","id":"464E723A-08DC-433C-AA5C-CEC850DBAF0B"},"1797":{"isSerializedDate":true,"string":"Fri Mar 16 2012 10:42:29 GMT-0400 (Eastern Daylight Time)"},"1798":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","onRenderFinished":"onRenderFinishedHTML","triggerEvent":"triggerEventHTML","setTransform":"setTransformHTML","setPosition":"setPositionHTML","setRotation":"setRotationHTML","setExtent":"setExtentHTML","setScale":"setScaleHTML","setVisible":"setVisibleHTML","adjustOrigin":"adjustOriginHTML","setPivotPoint":"setPivotPointHTML","setClipMode":"setClipModeHTML","showsVerticalScrollBar":"showsVerticalScrollBarHTML","showsHorizontalScrollBar":"showsHorizontalScrollBarHTML","getScrollBarExtent":"getScrollBarExtentHTML","setHandStyle":"setHandStyleHTML","setPointerEvents":"setPointerEventsHTML","setToolTip":"setToolTipHTML","focus":"focusHTML","blur":"blurHTML","setFocusable":"setFocusableHTML"},"1799":{"morph":{"__isSmartRef__":true,"id":1663},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"1800":{"x":266,"y":223,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1801":{"adjustForNewBounds":true},"1802":{"x":171,"y":-13,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"1803":{"loadPart":{"__isSmartRef__":true,"id":1804},"loadFinished":{"__isSmartRef__":true,"id":1808},"loadPartByName":{"__isSmartRef__":true,"id":1812}},"1804":{"varMapping":{"__isSmartRef__":true,"id":1805},"source":"function loadPart(partItem, isAsync) {\n this.partItem = partItem;\n \n this.openInWorld();\n if(partItem.part) {\n this.setExtent(partItem.part.getExtent());\n }\n this.align(this.bounds().center(), $world.visibleBounds().center());\n \n \n if(typeof isAsync === \"function\") {\n this.callback = isAsync;\n }\n\n connect(partItem, 'part', this, \"loadFinished\");\n\n partItem.loadPart(isAsync);\n\n return partItem.part;\n\n}","funcProperties":{"__isSmartRef__":true,"id":1806},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1805":{"this":{"__isSmartRef__":true,"id":1663}},"1806":{"timestamp":{"__isSmartRef__":true,"id":1807},"user":"sstamm","tags":[]},"1807":{"isSerializedDate":true,"string":"Fri Mar 16 2012 10:42:18 GMT-0400 (Eastern Daylight Time)"},"1808":{"varMapping":{"__isSmartRef__":true,"id":1809},"source":"function loadFinished(part) {\n if(this.owner === $world.firstHand()) {\n $world.firstHand().removeAllMorphs();\n } else {\n this.owner.addMorph(part);\n part.align(part.bounds().center(), this.bounds().center());\n this.remove();\n }\n disconnect(this.partItem, 'part', this, \"loadFinished\");\n if(this.callback) {\n this.callback(part);\n }\n}","funcProperties":{"__isSmartRef__":true,"id":1810},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1809":{"this":{"__isSmartRef__":true,"id":1663}},"1810":{"timestamp":{"__isSmartRef__":true,"id":1811},"user":"sstamm","tags":[]},"1811":{"isSerializedDate":true,"string":"Wed Feb 22 2012 08:01:53 GMT-0500 (Eastern Standard Time)"},"1812":{"varMapping":{"__isSmartRef__":true,"id":1813},"source":"function loadPartByName(partName, optPartsSpaceName, isAsync) {\n var partItem = lively.PartsBin.getPartItem(partName, optPartsSpaceName);\n return this.loadPart(partItem, isAsync);\n}","funcProperties":{"__isSmartRef__":true,"id":1814},"__SourceModuleName__":"Global.lively.lang.Closure","__LivelyClassName__":"lively.Closure"},"1813":{"this":{"__isSmartRef__":true,"id":1663}},"1814":{"timestamp":{"__isSmartRef__":true,"id":1815},"user":"sstamm","tags":[]},"1815":{"isSerializedDate":true,"string":"Thu Feb 02 2012 11:03:18 GMT-0500 (Eastern Standard Time)"},"1816":{"x":3198.000000000001,"y":2792,"__SourceModuleName__":"Global.lively.morphic.Graphics","__LivelyClassName__":"Point"},"isSimplifiedRegistry":true}}]]>