{"id":0,"registry":{"0":{"submorphs":[],"scripts":[],"shape":{"__isSmartRef__":true,"id":1},"derivationIds":[null,"AE21B3D3-406A-4E34-8888-51ED7849C84D","6FEF4024-65C1-4EC4-A025-29F6E47C851B"],"id":"0D66DF29-3CAD-489E-9C56-0C679F40FB90","renderContextTable":{"__isSmartRef__":true,"id":8},"_WhiteSpaceHandling":"pre-wrap","textChunks":[{"__isSmartRef__":true,"id":9},{"__isSmartRef__":true,"id":12},{"__isSmartRef__":true,"id":15},{"__isSmartRef__":true,"id":17},{"__isSmartRef__":true,"id":20},{"__isSmartRef__":true,"id":22},{"__isSmartRef__":true,"id":25},{"__isSmartRef__":true,"id":27},{"__isSmartRef__":true,"id":30},{"__isSmartRef__":true,"id":32},{"__isSmartRef__":true,"id":35},{"__isSmartRef__":true,"id":37},{"__isSmartRef__":true,"id":40},{"__isSmartRef__":true,"id":42},{"__isSmartRef__":true,"id":44},{"__isSmartRef__":true,"id":46},{"__isSmartRef__":true,"id":48},{"__isSmartRef__":true,"id":50},{"__isSmartRef__":true,"id":52},{"__isSmartRef__":true,"id":54},{"__isSmartRef__":true,"id":57},{"__isSmartRef__":true,"id":59},{"__isSmartRef__":true,"id":61},{"__isSmartRef__":true,"id":63},{"__isSmartRef__":true,"id":65},{"__isSmartRef__":true,"id":67},{"__isSmartRef__":true,"id":69},{"__isSmartRef__":true,"id":71},{"__isSmartRef__":true,"id":73},{"__isSmartRef__":true,"id":75},{"__isSmartRef__":true,"id":77},{"__isSmartRef__":true,"id":79},{"__isSmartRef__":true,"id":82},{"__isSmartRef__":true,"id":84},{"__isSmartRef__":true,"id":86},{"__isSmartRef__":true,"id":88},{"__isSmartRef__":true,"id":90},{"__isSmartRef__":true,"id":92},{"__isSmartRef__":true,"id":94},{"__isSmartRef__":true,"id":96},{"__isSmartRef__":true,"id":98},{"__isSmartRef__":true,"id":100},{"__isSmartRef__":true,"id":103},{"__isSmartRef__":true,"id":105},{"__isSmartRef__":true,"id":107},{"__isSmartRef__":true,"id":109},{"__isSmartRef__":true,"id":111}],"eventHandler":{"__isSmartRef__":true,"id":113},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"_ClipMode":"auto","fixedWidth":true,"fixedHeight":true,"allowInput":true,"_FontFamily":"Monaco,monospace","_FontSize":10,"_Position":{"__isSmartRef__":true,"id":114},"_MaxTextWidth":670.0037047075009,"_MinTextWidth":670.0037047075009,"_MaxTextHeight":null,"_MinTextHeight":null,"evalEnabled":false,"layout":{"__isSmartRef__":true,"id":115},"syntaxHighlightingWhileTyping":true,"attributeConnections":[{"__isSmartRef__":true,"id":116}],"doNotSerialize":["$$textString"],"doNotCopyProperties":["$$textString"],"lastSyntaxHighlightTime":1331827901983,"accessibleInInactiveWindow":true,"charsReplaced":"cop.create(\"DevLayer\").refineClass(WorldMorph, {\n    morphMenuItems: function() {\n        var items = cop.proceed();\n        // inspect(items)\n        var prefMenu = items.detect(function(ea) { \n            return ea[0] == \"Preferences\"\n        })\n        if (prefMenu)\n           prefMenu[1].push([\"style\" , function() {\n                $world.openStyleEditorFor($world)\n            }])\n        return items\n    \n    }\n})\nDevLayer.beGlobal()\n\n\n","lastFindLoc":353,"showsHalos":false,"savedTextString":"// jens: taken from http://stackoverflow.com/a/2509865 \nformatXml = this.formatXml = function (xml) {\n    var reg = /(>)(<)(\\/*)/g;\n    var wsexp = / *(.*) +\\n/g;\n    var contexp = /(<.+>)(.+\\n)/g;\n    xml = xml.replace(reg, '$1\\n$2$3').replace(wsexp, '$1\\n').replace(contexp, '$1\\n$2');\n    var pad = 0;\n    var formatted = '';\n    var lines = xml.split('\\n');\n    var indent = 0;\n    var lastType = 'other';\n    // 4 types of tags - single, closing, opening, other (text, doctype, comment) - 4*4 = 16 transitions \n    var transitions = {\n        'single->single'    : 0,\n        'single->closing'   : -1,\n        'single->opening'   : 0,\n        'single->other'     : 0,\n        'closing->single'   : 0,\n        'closing->closing'  : -1,\n        'closing->opening'  : 0,\n        'closing->other'    : 0,\n        'opening->single'   : 1,\n        'opening->closing'  : 0, \n        'opening->opening'  : 1,\n        'opening->other'    : 1,\n        'other->single'     : 0,\n        'other->closing'    : -1,\n        'other->opening'    : 0,\n        'other->other'      : 0\n    };\n\n    for (var i=0; i < lines.length; i++) {\n        var ln = lines[i];\n        var single = Boolean(ln.match(/<.+\\/>/)); // is this line a single tag? ex. <br />\n        var closing = Boolean(ln.match(/<\\/.+>/)); // is this a closing tag? ex. </a>\n        var opening = Boolean(ln.match(/<[^!].*>/)); // is this even a tag (that's not <!something>)\n        var type = single ? 'single' : closing ? 'closing' : opening ? 'opening' : 'other';\n        var fromTo = lastType + '->' + type;\n        lastType = type;\n        var padding = '';\n\n        indent += transitions[fromTo];\n        for (var j = 0; j < indent; j++) {\n            padding += '    ';\n        }\n\n        formatted += padding + ln + '\\n';\n    }\n\n    return formatted;\n};\n","distanceToDragEvent":{"__isSmartRef__":true,"id":117},"name":"ShrinkWhiteSpace","partsBinMetaInfo":{"__isSmartRef__":true,"id":118},"moved":true,"textString":"cop.createLayer(\"ShrinkTextLayer\").refineClass(lively.morphic.Text, {\n\n    shrinkWhitespace: function() {\n        this.textString = this.textString.replace(/( |\\t|\\n)+/g, \" \")\n    },\n    morphMenuItems: function() {\n        return cop.proceed()\n            .concat([[\"shrink whitespace\", this.shrinkWhitespace.bind(this) ]])\n        \n    }\n}).beGlobal()","parseErrors":null,"_lastSyntaxHighlightTime":38,"_Rotation":0,"_Scale":1,"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":125},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.TextCore"},"1":{"_Position":{"__isSmartRef__":true,"id":2},"renderContextTable":{"__isSmartRef__":true,"id":3},"_Extent":{"__isSmartRef__":true,"id":4},"_ClipMode":"auto","_Padding":{"__isSmartRef__":true,"id":5},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":6},"_Fill":{"__isSmartRef__":true,"id":7},"_BorderRadius":6.665,"_Opacity":1,"_BorderStyle":"solid","__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"2":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"3":{"init":"initHTML","appendShape":"renderHTML","setPosition":"setPositionHTML","setExtent":"setExtentHTML","setPadding":"setPaddingHTML","setFill":"setFillHTML","setBorderColor":"setBorderColorHTML","setBorderWidth":"setBorderWidthHTML","setStrokeOpacity":"setStrokeOpacityHTML","setBorderRadius":"setBorderRadiusHTML","setBorderStyle":"setBorderStyleHTML","setOpacity":"setOpacityHTML","setNodeClass":"setNodeClassHTML","setNodeId":"setNodeIdHTML","setStyleSheet":"setStyleSheetHTML","removeStyleSheet":"removeStyleSheetHTML","setAppearanceStylingMode":"setAppearanceStylingModeHTML","setBorderStylingMode":"setBorderStylingModeHTML","getComputedBorderWidth":"getComputedBorderWidthHTML","getComputedExtent":"getComputedExtentHTML"},"4":{"x":680.0037047075009,"y":346.33340899042844,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"5":{"x":4,"y":2,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global.lively.morphic.Graphics"},"6":{"r":1,"g":0.56,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"7":{"r":1,"g":0.9860811439884669,"b":0.8975782293490966,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"8":{"replaceRenderContext":"replaceRenderContextHTML","init":"initHTML","append":"appendHTML","remove":"removeHTML","removeMorph":"removeMorphHTML","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","setStyleSheet":"setStyleSheetHTML","setOriginClass":"setOriginClassHTML","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","setFontWeight":"setFontWeightHTML","setFontStyle":"setFontStyleHTML","setTextDecoration":"setTextDecorationHTML","setPadding":"setPaddingHTML","setAlign":"setAlignHTML","setVerticalAlign":"setVerticalAlignHTML","setDisplay":"setDisplayHTML","setWhiteSpaceHandling":"setWhiteSpaceHandlingHTML","focusMorph":"focusMorphHTML","setInputAllowed":"setInputAllowedHTML"},"9":{"style":{"__isSmartRef__":true,"id":10},"chunkOwner":{"__isSmartRef__":true,"id":0},"_id":"_2849","storedString":"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"10":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"11":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"12":{"_id":"_2913","style":{"__isSmartRef__":true,"id":13},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"cop","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"13":{"color":{"__isSmartRef__":true,"id":14},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"14":{"r":0.8,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"15":{"_id":"_3027","style":{"__isSmartRef__":true,"id":16},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":".createLayer(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"16":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"17":{"_id":"_2926","style":{"__isSmartRef__":true,"id":18},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"\"ShrinkTextLayer\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"18":{"color":{"__isSmartRef__":true,"id":19},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"19":{"r":0,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"20":{"_id":"_2927","style":{"__isSmartRef__":true,"id":21},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":").","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"21":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"22":{"_id":"_2928","style":{"__isSmartRef__":true,"id":23},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"refineClass","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"23":{"color":{"__isSmartRef__":true,"id":24},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"24":{"r":0.5019607843137255,"g":0.5019607843137255,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"25":{"_id":"_2929","style":{"__isSmartRef__":true,"id":26},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"(lively.morphic.Text, ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"26":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"27":{"_id":"_2930","style":{"__isSmartRef__":true,"id":28},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"28":{"color":{"__isSmartRef__":true,"id":29},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"29":{"r":0,"g":0.5019607843137255,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"30":{"_id":"_2931","style":{"__isSmartRef__":true,"id":31},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"\n\n    ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"31":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"32":{"_id":"_2932","style":{"__isSmartRef__":true,"id":33},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"shrinkWhitespace:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"33":{"color":{"__isSmartRef__":true,"id":34},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"34":{"r":0.5450980392156862,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"35":{"_id":"_2933","style":{"__isSmartRef__":true,"id":36},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"36":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"37":{"_id":"_2934","style":{"__isSmartRef__":true,"id":38},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"38":{"color":{"__isSmartRef__":true,"id":39},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"39":{"r":0,"g":0,"b":0.5450980392156862,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"40":{"_id":"_2935","style":{"__isSmartRef__":true,"id":41},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"41":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"42":{"_id":"_2936","style":{"__isSmartRef__":true,"id":43},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"43":{"color":{"__isSmartRef__":true,"id":29},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"44":{"_id":"_2937","style":{"__isSmartRef__":true,"id":45},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"\n        ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"45":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"46":{"_id":"_2938","style":{"__isSmartRef__":true,"id":47},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"47":{"color":{"__isSmartRef__":true,"id":39},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"48":{"_id":"_2939","style":{"__isSmartRef__":true,"id":49},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":".textString = ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"49":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"50":{"_id":"_2940","style":{"__isSmartRef__":true,"id":51},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"51":{"color":{"__isSmartRef__":true,"id":39},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"52":{"_id":"_2941","style":{"__isSmartRef__":true,"id":53},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":".textString.replace(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"53":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"54":{"_id":"_2942","style":{"__isSmartRef__":true,"id":55},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"/( |\\t|\\n)+/g","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"55":{"color":{"__isSmartRef__":true,"id":56},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"56":{"r":0.5019607843137255,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"57":{"_id":"_2943","style":{"__isSmartRef__":true,"id":58},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"58":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"59":{"_id":"_2944","style":{"__isSmartRef__":true,"id":60},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"\" \"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"60":{"color":{"__isSmartRef__":true,"id":19},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"61":{"_id":"_2945","style":{"__isSmartRef__":true,"id":62},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":")\n    ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"62":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"63":{"_id":"_2946","style":{"__isSmartRef__":true,"id":64},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"64":{"color":{"__isSmartRef__":true,"id":29},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"65":{"_id":"_2947","style":{"__isSmartRef__":true,"id":66},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":",\n    ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"66":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"67":{"_id":"_2948","style":{"__isSmartRef__":true,"id":68},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"morphMenuItems:","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"68":{"color":{"__isSmartRef__":true,"id":34},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"69":{"_id":"_2949","style":{"__isSmartRef__":true,"id":70},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"70":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"71":{"_id":"_2950","style":{"__isSmartRef__":true,"id":72},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"function","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"72":{"color":{"__isSmartRef__":true,"id":39},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"73":{"_id":"_2951","style":{"__isSmartRef__":true,"id":74},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"() ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"74":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"75":{"_id":"_2952","style":{"__isSmartRef__":true,"id":76},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"{","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"76":{"color":{"__isSmartRef__":true,"id":29},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"77":{"_id":"_2953","style":{"__isSmartRef__":true,"id":78},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"\n        ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"78":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"79":{"_id":"_2954","style":{"__isSmartRef__":true,"id":80},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"return","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"80":{"color":{"__isSmartRef__":true,"id":81},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"81":{"r":0,"g":0,"b":0.5019607843137255,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"82":{"_id":"_2955","style":{"__isSmartRef__":true,"id":83},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":" ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"83":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"84":{"_id":"_3028","style":{"__isSmartRef__":true,"id":85},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"cop","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"85":{"color":{"__isSmartRef__":true,"id":14},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"86":{"_id":"_3029","style":{"__isSmartRef__":true,"id":87},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":".proceed()\n            .concat([[","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"87":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"88":{"_id":"_2956","style":{"__isSmartRef__":true,"id":89},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"\"shrink whitespace\"","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"89":{"color":{"__isSmartRef__":true,"id":19},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"90":{"_id":"_2957","style":{"__isSmartRef__":true,"id":91},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":", ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"91":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"92":{"_id":"_2958","style":{"__isSmartRef__":true,"id":93},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"93":{"color":{"__isSmartRef__":true,"id":39},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"94":{"_id":"_2959","style":{"__isSmartRef__":true,"id":95},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":".shrinkWhitespace.bind(","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"95":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"96":{"_id":"_2960","style":{"__isSmartRef__":true,"id":97},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"this","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"97":{"color":{"__isSmartRef__":true,"id":39},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"98":{"_id":"_2961","style":{"__isSmartRef__":true,"id":99},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":") ]])\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"99":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"100":{"_id":"_2962","style":{"__isSmartRef__":true,"id":101},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"        \n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"101":{"color":"rgb(64,64,64)","backgroundColor":{"__isSmartRef__":true,"id":102},"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"102":{"r":0.8,"g":0.8,"b":0,"a":0.4,"__LivelyClassName__":"Color","__SourceModuleName__":"Global.lively.morphic.Graphics"},"103":{"_id":"_2963","style":{"__isSmartRef__":true,"id":104},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"    ","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"104":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"105":{"_id":"_2964","style":{"__isSmartRef__":true,"id":106},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"106":{"color":{"__isSmartRef__":true,"id":29},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"107":{"_id":"_2965","style":{"__isSmartRef__":true,"id":108},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"\n","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"108":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"109":{"_id":"_2966","style":{"__isSmartRef__":true,"id":110},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":"}","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"110":{"color":{"__isSmartRef__":true,"id":29},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"111":{"_id":"_2967","style":{"__isSmartRef__":true,"id":112},"chunkOwner":{"__isSmartRef__":true,"id":0},"storedString":").beGlobal()","__LivelyClassName__":"lively.morphic.TextChunk","__SourceModuleName__":"Global.lively.morphic.TextCore"},"112":{"color":{"__isSmartRef__":true,"id":11},"backgroundColor":null,"fontFamily":"Monaco,monospace","fontSize":"13px","fontWeight":"normal","textAlign":"-webkit-auto","__LivelyClassName__":"lively.morphic.TextEmphasis","__SourceModuleName__":"Global.lively.morphic.TextCore"},"113":{"morph":{"__isSmartRef__":true,"id":0},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"114":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"115":{"resizeWidth":true,"resizeHeight":true},"116":{"sourceObj":{"__isSmartRef__":true,"id":0},"sourceAttrName":"textString","targetObj":{"__isSmartRef__":true,"id":0},"targetMethodName":"highlightJavaScriptSyntax","__LivelyClassName__":"AttributeConnection","__SourceModuleName__":"Global.lively.bindings"},"117":{"x":619,"y":-16,"__LivelyClassName__":"Point","__SourceModuleName__":"Global.lively.morphic.Graphics"},"118":{"partName":"ShrinkWhiteSpace","requiredModules":[],"partsSpaceName":"PartsBin/Jens/","comment":"","changes":[{"__isSmartRef__":true,"id":119},{"__isSmartRef__":true,"id":121},{"__isSmartRef__":true,"id":123}],"migrationLevel":4,"revisionOnLoad":146101,"__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo","__SourceModuleName__":"Global.lively.PartsBin"},"119":{"date":{"__isSmartRef__":true,"id":120},"author":"jenslincke","message":"","id":"09C69756-7BC2-46E3-8496-D43BB6368D06"},"120":{"isSerializedDate":true,"string":"Thu Mar 15 2012 17:13:00 GMT+0100 (CET)"},"121":{"date":{"__isSmartRef__":true,"id":122},"author":"undefined","message":"","id":"FF55417E-8753-47D7-AEFB-0DD6E74150AA"},"122":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:21:40 GMT+0100 (CET)"},"123":{"date":{"__isSmartRef__":true,"id":124},"author":"jenslincke","message":"no comment","id":"38FC5FCB-2D7E-4554-8BF5-0C144AAB8D64"},"124":{"isSerializedDate":true,"string":"Tue Aug 21 2012 11:14:21 GMT+0200 (CEST)"},"125":{"onrestore":{"__isSmartRef__":true,"id":126}},"126":{"varMapping":{"__isSmartRef__":true,"id":127},"source":"function onrestore() {\n    $super();\n    this.evalAll()\n}","funcProperties":{"__isSmartRef__":true,"id":132},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"127":{"this":{"__isSmartRef__":true,"id":0},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":128}},"128":{"$super":{"__isSmartRef__":true,"id":129}},"129":{"varMapping":{"__isSmartRef__":true,"id":130},"source":"function () {\n                try {\n                    return obj.constructor.prototype[name].apply(obj, arguments)\n                } catch(e) {\n                    alert('Error in $super call: ' + e + '\\n' + e.stack);\n                    return null;\n                }\n            }","funcProperties":{"__isSmartRef__":true,"id":131},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global.lively.lang.Closure"},"130":{"obj":{"__isSmartRef__":true,"id":0},"name":"onrestore"},"131":{},"132":{"timestamp":{"__isSmartRef__":true,"id":133},"user":"undefined","tags":[]},"133":{"isSerializedDate":true,"string":"Thu Feb 02 2012 16:19:39 GMT+0100 (CET)"},"isSimplifiedRegistry":true}}