Skip to content

Instantly share code, notes, and snippets.

@kietdlam
Created December 11, 2015 02:03
Show Gist options
  • Save kietdlam/de7d4ba45a0b23975586 to your computer and use it in GitHub Desktop.
Save kietdlam/de7d4ba45a0b23975586 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"fast_mpc_controller! (generic function with 1 method)"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"../KinematicMPC.jl\")"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"path_d2c (generic function with 1 method)"
]
},
"execution_count": 34,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"../Utilities.jl\")"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"convert_to_continuous (generic function with 1 method)"
]
},
"execution_count": 35,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"../GraphPlanner.jl\")"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false,
"tags": [
"worksheet-0"
]
},
"outputs": [
{
"data": {
"text/html": [
"<script charset=\"utf-8\">(function ($, undefined) {\n",
"\n",
" function createElem(tag, attr, content) {\n",
"\t// TODO: remove jQuery dependency\n",
"\tvar el = $(\"<\" + tag + \"/>\").attr(attr);\n",
"\tif (content) {\n",
"\t el.append(content);\n",
"\t}\n",
"\treturn el[0];\n",
" }\n",
"\n",
" // A widget must expose an id field which identifies it to the backend,\n",
" // an elem attribute which is will be added to the DOM, and\n",
" // a getState() method which returns the value to be sent to the backend\n",
" // a sendUpdate() method which sends its current value to the backend\n",
" var Widget = {\n",
"\tid: undefined,\n",
"\telem: undefined,\n",
"\tlabel: undefined,\n",
"\tgetState: function () {\n",
"\t return this.elem.value;\n",
"\t},\n",
"\tsendUpdate: undefined\n",
" };\n",
"\n",
" var Slider = function (typ, id, init) {\n",
"\tvar attr = { type: \"range\",\n",
"\t\t value: init.value,\n",
"\t\t min: init.min,\n",
"\t\t max: init.max,\n",
"\t\t step: init.step },\n",
"\t elem = createElem(\"input\", attr),\n",
"\t self = this;\n",
"\n",
"\telem.onchange = function () {\n",
"\t self.sendUpdate();\n",
"\t}\n",
"\n",
"\tthis.id = id;\n",
"\tthis.elem = elem;\n",
"\tthis.label = init.label;\n",
"\n",
"\tInputWidgets.commInitializer(this); // Initialize communication\n",
" }\n",
" Slider.prototype = Widget;\n",
"\n",
" var Checkbox = function (typ, id, init) {\n",
"\tvar attr = { type: \"checkbox\",\n",
"\t\t checked: init.value },\n",
"\t elem = createElem(\"input\", attr),\n",
"\t self = this;\n",
"\n",
"\tthis.getState = function () {\n",
"\t return elem.checked;\n",
"\t}\n",
"\telem.onchange = function () {\n",
"\t self.sendUpdate();\n",
"\t}\n",
"\n",
"\tthis.id = id;\n",
"\tthis.elem = elem;\n",
"\tthis.label = init.label;\n",
"\n",
"\tInputWidgets.commInitializer(this);\n",
" }\n",
" Checkbox.prototype = Widget;\n",
"\n",
" var Button = function (typ, id, init) {\n",
"\tvar attr = { type: \"button\",\n",
"\t\t value: init.label },\n",
"\t elem = createElem(\"input\", attr),\n",
"\t self = this;\n",
"\tthis.getState = function () {\n",
"\t return null;\n",
"\t}\n",
"\telem.onclick = function () {\n",
"\t self.sendUpdate();\n",
"\t}\n",
"\n",
"\tthis.id = id;\n",
"\tthis.elem = elem;\n",
"\tthis.label = init.label;\n",
"\n",
"\tInputWidgets.commInitializer(this);\n",
" }\n",
" Button.prototype = Widget;\n",
"\n",
" var Text = function (typ, id, init) {\n",
"\tvar attr = { type: \"text\",\n",
"\t\t placeholder: init.label,\n",
"\t\t value: init.value },\n",
"\t elem = createElem(\"input\", attr),\n",
"\t self = this;\n",
"\tthis.getState = function () {\n",
"\t return elem.value;\n",
"\t}\n",
"\telem.onkeyup = function () {\n",
"\t self.sendUpdate();\n",
"\t}\n",
"\n",
"\tthis.id = id;\n",
"\tthis.elem = elem;\n",
"\tthis.label = init.label;\n",
"\n",
"\tInputWidgets.commInitializer(this);\n",
" }\n",
" Text.prototype = Widget;\n",
"\n",
" var Textarea = function (typ, id, init) {\n",
"\tvar attr = { placeholder: init.label },\n",
"\t elem = createElem(\"textarea\", attr, init.value),\n",
"\t self = this;\n",
"\tthis.getState = function () {\n",
"\t return elem.value;\n",
"\t}\n",
"\telem.onchange = function () {\n",
"\t self.sendUpdate();\n",
"\t}\n",
"\n",
"\tthis.id = id;\n",
"\tthis.elem = elem;\n",
"\tthis.label = init.label;\n",
"\n",
"\tInputWidgets.commInitializer(this);\n",
" }\n",
" Textarea.prototype = Widget;\n",
"\n",
" // RadioButtons\n",
" // Dropdown\n",
" // HTML\n",
" // Latex\n",
"\n",
" var InputWidgets = {\n",
"\tSlider: Slider,\n",
"\tCheckbox: Checkbox,\n",
"\tButton: Button,\n",
"\tText: Text,\n",
"\tTextarea: Textarea,\n",
"\tdebug: false,\n",
"\tlog: function () {\n",
"\t if (InputWidgets.debug) {\n",
"\t\tconsole.log.apply(console, arguments);\n",
"\t }\n",
"\t},\n",
"\t// a central way to initalize communication\n",
"\t// for widgets.\n",
"\tcommInitializer: function (widget) {\n",
"\t widget.sendUpdate = function () {};\n",
"\t}\n",
" };\n",
"\n",
" window.InputWidgets = InputWidgets;\n",
"\n",
"})(jQuery, undefined);\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<script charset=\"utf-8\">(function (IPython, $, _, MathJax, Widgets) {\n",
" $.event.special.destroyed = {\n",
"\tremove: function(o) {\n",
"\t if (o.handler) {\n",
"\t\to.handler.apply(this, arguments)\n",
"\t }\n",
"\t}\n",
" }\n",
"\n",
" var redrawValue = function (container, type, val) {\n",
"\tvar selector = $(\"<div/>\");\n",
"\tvar oa = new IPython.OutputArea(_.extend(selector, {\n",
"\t selector: selector,\n",
"\t prompt_area: true,\n",
"\t events: IPython.events,\n",
"\t keyboard_manager: IPython.keyboard_manager\n",
"\t})); // Hack to work with IPython 2.1.0\n",
"\n",
"\tswitch (type) {\n",
"\tcase \"image/png\":\n",
" var _src = 'data:' + type + ';base64,' + val;\n",
"\t $(container).find(\"img\").attr('src', _src);\n",
"\t break;\n",
"\tdefault:\n",
"\t var toinsert = IPython.OutputArea.append_map[type].apply(\n",
"\t\toa, [val, {}, selector]\n",
"\t );\n",
"\t $(container).empty().append(toinsert.contents());\n",
"\t selector.remove();\n",
"\t}\n",
"\tif (type === \"text/latex\" && MathJax) {\n",
"\t MathJax.Hub.Queue([\"Typeset\", MathJax.Hub, toinsert.get(0)]);\n",
"\t}\n",
" }\n",
"\n",
"\n",
" $(document).ready(function() {\n",
"\tWidgets.debug = false; // log messages etc in console.\n",
"\tfunction initComm(evt, data) {\n",
"\t var comm_manager = data.kernel.comm_manager;\n",
" //_.extend(comm_manager.targets, require(\"widgets/js/widget\"))\n",
"\t comm_manager.register_target(\"Signal\", function (comm) {\n",
" comm.on_msg(function (msg) {\n",
" //Widgets.log(\"message received\", msg);\n",
" var val = msg.content.data.value;\n",
" $(\".signal-\" + comm.comm_id).each(function() {\n",
" var type = $(this).data(\"type\");\n",
" if (val[type]) {\n",
" redrawValue(this, type, val[type], type);\n",
" }\n",
" });\n",
" delete val;\n",
" delete msg.content.data.value;\n",
" });\n",
"\t });\n",
"\n",
"\t // coordingate with Comm and redraw Signals\n",
"\t // XXX: Test using Reactive here to improve performance\n",
"\t $([IPython.events]).on(\n",
"\t\t'output_appended.OutputArea', function (event, type, value, md, toinsert) {\n",
"\t\t if (md && md.reactive) {\n",
" // console.log(md.comm_id);\n",
" toinsert.addClass(\"signal-\" + md.comm_id);\n",
" toinsert.data(\"type\", type);\n",
" // Signal back indicating the mimetype required\n",
" var comm_manager = IPython.notebook.kernel.comm_manager;\n",
" var comm = comm_manager.comms[md.comm_id];\n",
" comm.then(function (c) {\n",
" c.send({action: \"subscribe_mime\",\n",
" mime: type});\n",
" toinsert.bind(\"destroyed\", function() {\n",
" c.send({action: \"unsubscribe_mime\",\n",
" mime: type});\n",
" });\n",
" })\n",
"\t\t }\n",
"\t });\n",
"\t}\n",
"\n",
"\ttry {\n",
"\t // try to initialize right away. otherwise, wait on the status_started event.\n",
"\t initComm(undefined, IPython.notebook);\n",
"\t} catch (e) {\n",
"\t $([IPython.events]).on('status_started.Kernel', initComm);\n",
"\t}\n",
" });\n",
"})(IPython, jQuery, _, MathJax, InputWidgets);\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"using Gadfly\n",
"using DataStructures\n",
"using Compose\n",
"using Ipopt\n",
"using JuMP\n",
"using Reactive\n",
"using Interact\n",
"using Base.Collections"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false,
"tags": [
"worksheet-0"
]
},
"outputs": [],
"source": [
"set_default_plot_size(10*1inch, 5*1inch)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false,
"tags": [
"worksheet-0"
]
},
"outputs": [
{
"data": {
"text/plain": [
"(anonymous function)"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"second = xs -> xs[2]"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true,
"tags": [
"worksheet-0"
]
},
"source": [
"### A* Path Planner"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true,
"tags": [
"worksheet-0"
]
},
"source": [
"### Case 1: A* + MPC for stationary obstacles"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false,
"tags": [
"worksheet-0"
]
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"start point: PlainPoint(11,8)\n",
"goal point: PlainPoint(20,22)\n"
]
}
],
"source": [
"srand(9474153)\n",
"square_dimension = 15.0\n",
"width = 25\n",
"height = 25\n",
"width_half = round(width/2)\n",
"height_half = round(height/2)\n",
"goal_point = PlainPoint(rand(width_half:width), rand(height_half:height))\n",
"start_point = PlainPoint(rand(1:width_half), rand(1:height_half))\n",
"\n",
"println(\"start point: \", start_point)\n",
"println(\"goal point: \", goal_point)\n",
"\n",
"obstacles = Obstacle[]\n",
"n_obstacles = 15\n",
"ob_width = 3\n",
"ob_height = 3\n",
"\n",
"n_horizon = 8\n",
"\n",
"for n in 1:n_obstacles\n",
" start_x = rand(1:width - ob_width)\n",
" start_y = rand(1:height - ob_height)\n",
" end_x = rand(start_x+1:start_x+rand(2:ob_width))\n",
" end_y = rand(start_y+1:start_y+rand(2:ob_height))\n",
" ob = Obstacle(start_x, end_x, start_y, end_y)\n",
" \n",
" # checks to see if the obstacle is in the start or end position\n",
" if is_legal(width, height, [ob], goal_point) && is_legal(width, height, [ob], start_point)\n",
" push!(obstacles, ob)\n",
" end\n",
"end\n",
"\n",
"node_eval = node -> simple_node_eval(goal_point, node)\n",
"empty_q = PriorityQueue()\n",
"start_node = construct_node(nothing, nothing, start_point, 0)\n",
"\n",
"successor_f = s -> point_successor(obstacles, width, height, s)\n",
"\n",
"res = universal_search(goal_function(goal_point), successor_f, node_eval, start_node, empty_q,\n",
" Set{PlainPoint}())\n",
"\n",
"if size(res, 1) == 0\n",
" println(\"NO RESULT!!!\")\n",
"end\n",
"\n",
"\n",
"# prepend!(res, [start_point])\n",
"\n",
"res_cont = convert_to_continuous(square_dimension, res)\n",
"\n",
"# mm = zeros(width, height)\n",
"# mm[goal_point.x, goal_point.y] = 320\n",
"# pp_to_points!(mm, res)\n",
"# mm[start_point.x, start_point.y] = 3\n",
"\n",
"mm_obstacles = zeros(width, height)\n",
"mm_obstacles[start_point.x, start_point.y] = 3\n",
"mm_obstacles[goal_point.x, goal_point.y] = 1\n",
"\n",
"for obstacle in obstacles\n",
" for j in obstacle.start_y:obstacle.end_y\n",
" for i in obstacle.start_x:obstacle.end_x\n",
" if i > 0 && i < width && j > 0 && j < height\n",
"# mm[i, j] = 2\n",
" mm_obstacles[i, j] = 2\n",
"# else\n",
"# println(\"Obstacle out of bounds!!!: \", obstacle)\n",
" end\n",
" end\n",
" end\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {
"collapsed": false,
"tags": [
"worksheet-0"
]
},
"outputs": [
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAA8AAAAHgCAYAAABq5QSEAAAABmJLR0QA/wD/AP+gvaeTAAAgAElEQVR4nOzde3xcdZ3/8ffne2YmSUspUMrNtpmUUqCxmTPpDRCklQVBQcWlIq6LBRSFFkVl/a267q7roruuipciihfA6wLu6q6ooAIVFVqaZM5JTCm0zUzaWmhLqb3lMjPn+/n9MYkPltW1x6T5TjLv5+OBPpJMTl5Jc875fnNuABERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERER2G7u78SapqXHcQxdHRsfUU1w1EcbS17ZiUy+WPcd1BFMe6ddunbdq0qc51B1EctThG4ECeKIZyWb62YcPuSa47iOIQ0e+6biCKI5kcfKUxcqPrDqI4UqnSRw4dSs5z3UEURy2OETgBJopBVTf395et6w6iePQZ1wVEcUSR7FPVZ113EMVhjGwXsX2uO4jiqb0xgrgOiOM9b3/PibZcusSK7C0lSz++8847SwBw44obLzYwU4ZfV0wVfzD8MSIiIiIiIiJgHB0BXnn1ymlRubxOgYsBnJcqJjd/4NprpwCAQO4A9Lzh/4rFouc4lyaoIOg999FHNeG6gyiOXC6/1HUDURzd3fmT2tsLZ7ruIIojl8v7vHadxptaHCOMm4G88XSZVXn49ru/eB0ArFqxMt0f1V++8uqVP4Igv/qu29/tupEmPhH94Akn7L4SwEHXLUSHz3wUwPmuK4gOV7kMP5FAK4CnXLcQxbBCRO4BkHMdQnT4am+MMG4mwKWyfayuru6XAHDTTTfV2QP25ZHqPxlP5oji2FUrVv5UgV1Q3Hn7Pbc/5rqXJiZV/R6wu+i6gygOEfsd1w1EcajaHsAbdN1BFIcx5uEokp2uO4jiqMUxwri6BhgAblpxw1kq8kWoeWD13av/ftXbVr1CRK9SIx/XSM8UwXeKqVLznXfe+bzrViIiIiIiIqoe42oCvGrFjTcCcjWMrFr99dVtf+g1N61Y+Q0Aa75w9+1ff/H7w7D3B6o6I5k8dE4UHTXZWv0ZgI2+n35r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",
"text/plain": [
"Image{PNGBackend}(IOBuffer(data=Uint8[...], readable=true, writable=true, seekable=true, append=false, size=34978, maxsize=Inf, ptr=34979, mark=-1),CairoSurface(Ptr{Void} @0x0000000000000000,960.0,480.0,#undef),CairoContext(Ptr{Void} @0x0000000000000000,CairoSurface(Ptr{Void} @0x0000000000000000,960.0,480.0,#undef),Ptr{Void} @0x00007f8858d7d430),960.0000000000001,480.00000000000006,AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.0,0.0),0.0),AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.0,0.0),1.0),[],LineCapButt(),LineJoinMiter(),true,[],[],[Property{FillPrimitive}=>nothing],true,false,nothing,true,true,3.7795275590551185,nothing,nothing)"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"draw(PNG(10*1inch, 5*1inch), spy(mm_obstacles, Coord.Cartesian(ymin=1,ymax=width,xmin=1,xmax=height)))"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"collapsed": false,
"scrolled": false,
"tags": [
"worksheet-0"
]
},
"outputs": [
{
"data": {
"image/png": "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",
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\"\n",
" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n",
" xmlns:gadfly=\"http://www.gadflyjl.org/ns\"\n",
" version=\"1.2\"\n",
" width=\"254mm\" height=\"127mm\" viewBox=\"0 0 254 127\"\n",
" stroke=\"none\"\n",
" fill=\"#000000\"\n",
" stroke-width=\"0.3\"\n",
" font-size=\"3.88\"\n",
">\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-1\">\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-2\">\n",
" <text x=\"132.58\" y=\"115.39\" text-anchor=\"middle\" dy=\"0.6em\">x</text>\n",
" </g>\n",
" <g class=\"guide xlabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-3\">\n",
" <text x=\"8.62\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">0</text>\n",
" <text x=\"56.29\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">5</text>\n",
" <text x=\"103.97\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">10</text>\n",
" <text x=\"151.65\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">15</text>\n",
" <text x=\"199.32\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">20</text>\n",
" <text x=\"247\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">25</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-4adbe3743d1d4495a3d93364f0cb58dd-element-5)\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-4\">\n",
" <g pointer-events=\"visible\" opacity=\"1\" fill=\"#000000\" fill-opacity=\"0.000\" stroke=\"#000000\" stroke-opacity=\"0.000\" class=\"guide background\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-6\">\n",
" <rect x=\"16.15\" y=\"5\" width=\"232.85\" height=\"102.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-7\">\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\"/>\n",
" <path fill=\"none\" d=\"M16.15,89.26 L 249 89.26\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\"/>\n",
" <path fill=\"none\" d=\"M16.15,48.13 L 249 48.13\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-8\">\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\"/>\n",
" <path fill=\"none\" d=\"M56.29,5 L 56.29 107.72\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\"/>\n",
" <path fill=\"none\" d=\"M151.65,5 L 151.65 107.72\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-9\">\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-10\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-11\">\n",
" <circle cx=\"223.16\" cy=\"29.62\" r=\"0.9\"/>\n",
" <circle cx=\"223.16\" cy=\"25.51\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-12\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-13\">\n",
" <circle cx=\"213.63\" cy=\"33.74\" r=\"0.9\"/>\n",
" <circle cx=\"223.16\" cy=\"29.62\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-14\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-15\">\n",
" <circle cx=\"213.63\" cy=\"37.85\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"33.74\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-16\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-17\">\n",
" <circle cx=\"213.63\" cy=\"41.96\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"37.85\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-18\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-19\">\n",
" <circle cx=\"213.63\" cy=\"46.07\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"41.96\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-20\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-21\">\n",
" <circle cx=\"204.09\" cy=\"50.19\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"46.07\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-22\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-23\">\n",
" <circle cx=\"194.56\" cy=\"54.3\" r=\"0.9\"/>\n",
" <circle cx=\"204.09\" cy=\"50.19\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-24\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-25\">\n",
" <circle cx=\"185.02\" cy=\"58.41\" r=\"0.9\"/>\n",
" <circle cx=\"194.56\" cy=\"54.3\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-26\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-27\">\n",
" <circle cx=\"175.49\" cy=\"62.53\" r=\"0.9\"/>\n",
" <circle cx=\"185.02\" cy=\"58.41\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-28\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-29\">\n",
" <circle cx=\"175.49\" cy=\"66.64\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"62.53\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-30\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-31\">\n",
" <circle cx=\"175.49\" cy=\"70.75\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"66.64\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-32\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-33\">\n",
" <circle cx=\"175.49\" cy=\"74.87\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"70.75\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-34\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-35\">\n",
" <circle cx=\"165.95\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"74.87\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-36\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-37\">\n",
" <circle cx=\"156.41\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"165.95\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-38\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-39\">\n",
" <circle cx=\"146.88\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"156.41\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-40\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-41\">\n",
" <circle cx=\"137.34\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"146.88\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-42\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-43\">\n",
" <circle cx=\"127.81\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"137.34\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-44\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-45\">\n",
" <circle cx=\"118.27\" cy=\"74.87\" r=\"0.9\"/>\n",
" <circle cx=\"127.81\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-46\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-47\">\n",
" <circle cx=\"108.74\" cy=\"70.75\" r=\"0.9\"/>\n",
" <circle cx=\"118.27\" cy=\"74.87\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-48\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-49\">\n",
" <circle cx=\"99.2\" cy=\"66.64\" r=\"0.9\"/>\n",
" <circle cx=\"108.74\" cy=\"70.75\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g class=\"guide ylabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-50\">\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\">0</text>\n",
" <text x=\"15.15\" y=\"89.26\" text-anchor=\"end\" dy=\"0.35em\">5</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\">10</text>\n",
" <text x=\"15.15\" y=\"48.13\" text-anchor=\"end\" dy=\"0.35em\">15</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\">20</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\">25</text>\n",
" </g>\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-51\">\n",
" <text x=\"8.81\" y=\"56.36\" text-anchor=\"end\" dy=\"0.35em\">y</text>\n",
" </g>\n",
"</g>\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-52\">\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-53\">\n",
" <text x=\"132.58\" y=\"115.39\" text-anchor=\"middle\" dy=\"0.6em\">x</text>\n",
" </g>\n",
" <g class=\"guide xlabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-54\">\n",
" <text x=\"8.62\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">0</text>\n",
" <text x=\"56.29\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">5</text>\n",
" <text x=\"103.97\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">10</text>\n",
" <text x=\"151.65\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">15</text>\n",
" <text x=\"199.32\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">20</text>\n",
" <text x=\"247\" y=\"108.72\" text-anchor=\"middle\" dy=\"0.6em\">25</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-4adbe3743d1d4495a3d93364f0cb58dd-element-56)\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-55\">\n",
" <g pointer-events=\"visible\" opacity=\"1\" fill=\"#000000\" fill-opacity=\"0.000\" stroke=\"#000000\" stroke-opacity=\"0.000\" class=\"guide background\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-57\">\n",
" <rect x=\"16.15\" y=\"5\" width=\"232.85\" height=\"102.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-58\">\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\"/>\n",
" <path fill=\"none\" d=\"M16.15,89.26 L 249 89.26\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\"/>\n",
" <path fill=\"none\" d=\"M16.15,48.13 L 249 48.13\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-59\">\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\"/>\n",
" <path fill=\"none\" d=\"M56.29,5 L 56.29 107.72\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\"/>\n",
" <path fill=\"none\" d=\"M151.65,5 L 151.65 107.72\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-60\">\n",
" <g shape-rendering=\"crispEdges\" class=\"geometry\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-61\">\n",
" <rect x=\"13.38\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"13.38\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"32.46\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"32.46\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"41.99\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"41.99\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"95.38\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"91.27\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#7E273E\"/>\n",
" <rect x=\"80.13\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"95.38\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"91.27\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"21.35\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"21.35\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"21.35\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"103.61\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"103.61\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"54.25\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"50.14\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"46.02\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"54.25\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"50.14\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"46.02\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"165.95\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"165.95\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"175.49\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"175.49\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"175.49\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"204.09\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"204.09\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"58.36\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#004D84\"/>\n",
" <rect x=\"213.63\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"58.36\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"232.7\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"232.7\" y=\"58.36\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g class=\"guide ylabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-62\">\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\">0</text>\n",
" <text x=\"15.15\" y=\"89.26\" text-anchor=\"end\" dy=\"0.35em\">5</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\">10</text>\n",
" <text x=\"15.15\" y=\"48.13\" text-anchor=\"end\" dy=\"0.35em\">15</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\">20</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\">25</text>\n",
" </g>\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-63\">\n",
" <text x=\"8.81\" y=\"56.36\" text-anchor=\"end\" dy=\"0.35em\">y</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-5\">\n",
" <path d=\"M16.15,5 L 249 5 249 107.72 16.15 107.72\" />\n",
"</clipPath\n",
"><clipPath id=\"fig-4adbe3743d1d4495a3d93364f0cb58dd-element-56\">\n",
" <path d=\"M16.15,5 L 249 5 249 107.72 16.15 107.72\" />\n",
"</clipPath\n",
"></defs>\n",
"</svg>\n"
],
"text/html": [
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\"\n",
" xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n",
" xmlns:gadfly=\"http://www.gadflyjl.org/ns\"\n",
" version=\"1.2\"\n",
" width=\"254mm\" height=\"127mm\" viewBox=\"0 0 254 127\"\n",
" stroke=\"none\"\n",
" fill=\"#000000\"\n",
" stroke-width=\"0.3\"\n",
" font-size=\"3.88\"\n",
"\n",
" id=\"fig-83d60fd3231945e4a1423f273aa64a66\">\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-1\">\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-2\">\n",
" <text x=\"132.58\" y=\"115.39\" text-anchor=\"middle\" dy=\"0.6em\">x</text>\n",
" </g>\n",
" <g class=\"guide xlabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-3\">\n",
" <text x=\"-277.44\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-30</text>\n",
" <text x=\"-229.77\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"-182.09\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"-134.41\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"-86.74\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"-39.06\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0</text>\n",
" <text x=\"56.29\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">5</text>\n",
" <text x=\"103.97\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">10</text>\n",
" <text x=\"151.65\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">15</text>\n",
" <text x=\"199.32\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">20</text>\n",
" <text x=\"247\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">25</text>\n",
" <text x=\"294.68\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"342.35\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"390.03\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"437.71\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"533.06\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">55</text>\n",
" <text x=\"-229.77\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"-220.23\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"-210.7\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-23</text>\n",
" <text x=\"-201.16\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"-191.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-21</text>\n",
" <text x=\"-182.09\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"-172.55\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-19</text>\n",
" <text x=\"-163.02\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"-153.48\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-17</text>\n",
" <text x=\"-143.95\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"-134.41\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"-124.88\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"-115.34\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-13</text>\n",
" <text x=\"-105.81\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"-96.27\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-11</text>\n",
" <text x=\"-86.74\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"-77.2\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-9</text>\n",
" <text x=\"-67.67\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"-58.13\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-7</text>\n",
" <text x=\"-48.59\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"-39.06\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"-29.52\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"-19.99\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-3</text>\n",
" <text x=\"-10.45\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"-0.92\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-1</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"18.15\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">1</text>\n",
" <text x=\"27.69\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"37.22\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">3</text>\n",
" <text x=\"46.76\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"56.29\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">5</text>\n",
" <text x=\"65.83\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"75.36\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">7</text>\n",
" <text x=\"84.9\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"94.44\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">9</text>\n",
" <text x=\"103.97\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"113.51\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">11</text>\n",
" <text x=\"123.04\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"132.58\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">13</text>\n",
" <text x=\"142.11\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"151.65\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">15</text>\n",
" <text x=\"161.18\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"170.72\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">17</text>\n",
" <text x=\"180.25\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"189.79\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">19</text>\n",
" <text x=\"199.32\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"208.86\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">21</text>\n",
" <text x=\"218.39\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"227.93\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">23</text>\n",
" <text x=\"237.46\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"247\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">25</text>\n",
" <text x=\"256.54\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"266.07\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">27</text>\n",
" <text x=\"275.61\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"285.14\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">29</text>\n",
" <text x=\"294.68\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"304.21\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">31</text>\n",
" <text x=\"313.75\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"323.28\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">33</text>\n",
" <text x=\"332.82\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"342.35\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"351.89\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"361.42\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">37</text>\n",
" <text x=\"370.96\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"380.49\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">39</text>\n",
" <text x=\"390.03\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"399.57\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">41</text>\n",
" <text x=\"409.1\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"418.64\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">43</text>\n",
" <text x=\"428.17\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"437.71\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"447.24\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"456.78\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">47</text>\n",
" <text x=\"466.31\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"475.85\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">49</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"-229.77\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">-25</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0</text>\n",
" <text x=\"247\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">25</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">50</text>\n",
" <text x=\"-239.3\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-26</text>\n",
" <text x=\"-220.23\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"-201.16\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"-182.09\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"-163.02\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"-143.95\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"-124.88\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"-105.81\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"-86.74\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"-67.67\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"-48.59\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"-29.52\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"-10.45\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"27.69\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"46.76\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"65.83\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"84.9\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"103.97\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"123.04\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"142.11\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"161.18\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"180.25\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"199.32\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"218.39\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"237.46\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"256.54\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"275.61\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"294.68\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"313.75\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"332.82\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"351.89\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"370.96\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"390.03\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"409.1\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"428.17\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"447.24\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"466.31\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">50</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-83d60fd3231945e4a1423f273aa64a66-element-5)\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-4\">\n",
" <g pointer-events=\"visible\" opacity=\"1\" fill=\"#000000\" fill-opacity=\"0.000\" stroke=\"#000000\" stroke-opacity=\"0.000\" class=\"guide background\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-6\">\n",
" <rect x=\"16.15\" y=\"5\" width=\"232.85\" height=\"102.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-7\">\n",
" <path fill=\"none\" d=\"M16.15,233.22 L 249 233.22\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,212.66 L 249 212.66\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,192.09 L 249 192.09\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,171.53 L 249 171.53\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,150.96 L 249 150.96\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,130.39 L 249 130.39\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,89.26 L 249 89.26\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,48.13 L 249 48.13\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,-13.57 L 249 -13.57\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-34.13 L 249 -34.13\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-54.7 L 249 -54.7\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-75.26 L 249 -75.26\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-116.39 L 249 -116.39\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,212.66 L 249 212.66\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,208.54 L 249 208.54\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,204.43 L 249 204.43\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,200.32 L 249 200.32\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,196.2 L 249 196.2\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,192.09 L 249 192.09\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,187.98 L 249 187.98\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,183.86 L 249 183.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,179.75 L 249 179.75\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,175.64 L 249 175.64\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,171.53 L 249 171.53\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,167.41 L 249 167.41\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,163.3 L 249 163.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,159.19 L 249 159.19\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,155.07 L 249 155.07\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,150.96 L 249 150.96\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,146.85 L 249 146.85\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,142.73 L 249 142.73\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,138.62 L 249 138.62\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,134.51 L 249 134.51\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,130.39 L 249 130.39\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,126.28 L 249 126.28\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,122.17 L 249 122.17\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,118.05 L 249 118.05\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,113.94 L 249 113.94\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,105.72 L 249 105.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,101.6 L 249 101.6\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,97.49 L 249 97.49\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,93.38 L 249 93.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,89.26 L 249 89.26\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,85.15 L 249 85.15\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,81.04 L 249 81.04\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,76.92 L 249 76.92\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,72.81 L 249 72.81\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,64.58 L 249 64.58\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,60.47 L 249 60.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,56.36 L 249 56.36\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,52.24 L 249 52.24\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,48.13 L 249 48.13\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,44.02 L 249 44.02\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,39.91 L 249 39.91\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,35.79 L 249 35.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,31.68 L 249 31.68\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,23.45 L 249 23.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,19.34 L 249 19.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,15.23 L 249 15.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,11.11 L 249 11.11\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,2.89 L 249 2.89\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-1.23 L 249 -1.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-5.34 L 249 -5.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-9.45 L 249 -9.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-13.57 L 249 -13.57\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-17.68 L 249 -17.68\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-21.79 L 249 -21.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-25.9 L 249 -25.9\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-30.02 L 249 -30.02\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-34.13 L 249 -34.13\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-38.24 L 249 -38.24\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-42.36 L 249 -42.36\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-46.47 L 249 -46.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-50.58 L 249 -50.58\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-54.7 L 249 -54.7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-58.81 L 249 -58.81\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-62.92 L 249 -62.92\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-67.04 L 249 -67.04\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-71.15 L 249 -71.15\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-75.26 L 249 -75.26\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-79.38 L 249 -79.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-83.49 L 249 -83.49\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-87.6 L 249 -87.6\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-91.72 L 249 -91.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,212.66 L 249 212.66\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,216.77 L 249 216.77\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,208.54 L 249 208.54\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,200.32 L 249 200.32\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,192.09 L 249 192.09\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,183.86 L 249 183.86\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,175.64 L 249 175.64\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,167.41 L 249 167.41\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,159.19 L 249 159.19\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,150.96 L 249 150.96\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,142.73 L 249 142.73\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,134.51 L 249 134.51\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,126.28 L 249 126.28\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,118.05 L 249 118.05\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,101.6 L 249 101.6\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,93.38 L 249 93.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,85.15 L 249 85.15\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,76.92 L 249 76.92\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,60.47 L 249 60.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,52.24 L 249 52.24\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,44.02 L 249 44.02\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,35.79 L 249 35.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,19.34 L 249 19.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,11.11 L 249 11.11\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,2.89 L 249 2.89\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-5.34 L 249 -5.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-13.57 L 249 -13.57\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-21.79 L 249 -21.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-30.02 L 249 -30.02\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-38.24 L 249 -38.24\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-46.47 L 249 -46.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-54.7 L 249 -54.7\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-62.92 L 249 -62.92\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-71.15 L 249 -71.15\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-79.38 L 249 -79.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-87.6 L 249 -87.6\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-8\">\n",
" <path fill=\"none\" d=\"M-277.44,5 L -277.44 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-229.77,5 L -229.77 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-182.09,5 L -182.09 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-134.41,5 L -134.41 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.74,5 L -86.74 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-39.06,5 L -39.06 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M56.29,5 L 56.29 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M151.65,5 L 151.65 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M294.68,5 L 294.68 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M342.35,5 L 342.35 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M390.03,5 L 390.03 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M437.71,5 L 437.71 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M533.06,5 L 533.06 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-229.77,5 L -229.77 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-220.23,5 L -220.23 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-210.7,5 L -210.7 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-201.16,5 L -201.16 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-191.62,5 L -191.62 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-182.09,5 L -182.09 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-172.55,5 L -172.55 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-163.02,5 L -163.02 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-153.48,5 L -153.48 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-143.95,5 L -143.95 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-134.41,5 L -134.41 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-124.88,5 L -124.88 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-115.34,5 L -115.34 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-105.81,5 L -105.81 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-96.27,5 L -96.27 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.74,5 L -86.74 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-77.2,5 L -77.2 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-67.67,5 L -67.67 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-58.13,5 L -58.13 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-48.59,5 L -48.59 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-39.06,5 L -39.06 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-29.52,5 L -29.52 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-19.99,5 L -19.99 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-10.45,5 L -10.45 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.92,5 L -0.92 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M18.15,5 L 18.15 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M27.69,5 L 27.69 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M37.22,5 L 37.22 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M46.76,5 L 46.76 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M56.29,5 L 56.29 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M65.83,5 L 65.83 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M75.36,5 L 75.36 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M84.9,5 L 84.9 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M94.44,5 L 94.44 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M113.51,5 L 113.51 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M123.04,5 L 123.04 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M132.58,5 L 132.58 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M142.11,5 L 142.11 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M151.65,5 L 151.65 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.18,5 L 161.18 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M170.72,5 L 170.72 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M180.25,5 L 180.25 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M189.79,5 L 189.79 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M208.86,5 L 208.86 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M218.39,5 L 218.39 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M227.93,5 L 227.93 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M237.46,5 L 237.46 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M256.54,5 L 256.54 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M266.07,5 L 266.07 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M275.61,5 L 275.61 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M285.14,5 L 285.14 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M294.68,5 L 294.68 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M304.21,5 L 304.21 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M313.75,5 L 313.75 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M323.28,5 L 323.28 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M332.82,5 L 332.82 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M342.35,5 L 342.35 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M351.89,5 L 351.89 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M361.42,5 L 361.42 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M370.96,5 L 370.96 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M380.49,5 L 380.49 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M390.03,5 L 390.03 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M399.57,5 L 399.57 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M409.1,5 L 409.1 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M418.64,5 L 418.64 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M428.17,5 L 428.17 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M437.71,5 L 437.71 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M447.24,5 L 447.24 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M456.78,5 L 456.78 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M466.31,5 L 466.31 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M475.85,5 L 475.85 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-229.77,5 L -229.77 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-239.3,5 L -239.3 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-220.23,5 L -220.23 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-201.16,5 L -201.16 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-182.09,5 L -182.09 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-163.02,5 L -163.02 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-143.95,5 L -143.95 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-124.88,5 L -124.88 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-105.81,5 L -105.81 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.74,5 L -86.74 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-67.67,5 L -67.67 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-48.59,5 L -48.59 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-29.52,5 L -29.52 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-10.45,5 L -10.45 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M27.69,5 L 27.69 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M46.76,5 L 46.76 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M65.83,5 L 65.83 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M84.9,5 L 84.9 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M123.04,5 L 123.04 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M142.11,5 L 142.11 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.18,5 L 161.18 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M180.25,5 L 180.25 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M218.39,5 L 218.39 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M237.46,5 L 237.46 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M256.54,5 L 256.54 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M275.61,5 L 275.61 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M294.68,5 L 294.68 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M313.75,5 L 313.75 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M332.82,5 L 332.82 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M351.89,5 L 351.89 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M370.96,5 L 370.96 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M390.03,5 L 390.03 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M409.1,5 L 409.1 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M428.17,5 L 428.17 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M447.24,5 L 447.24 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M466.31,5 L 466.31 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-9\">\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-10\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-11\">\n",
" <circle cx=\"223.16\" cy=\"29.62\" r=\"0.9\"/>\n",
" <circle cx=\"223.16\" cy=\"25.51\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-12\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-13\">\n",
" <circle cx=\"213.63\" cy=\"33.74\" r=\"0.9\"/>\n",
" <circle cx=\"223.16\" cy=\"29.62\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-14\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-15\">\n",
" <circle cx=\"213.63\" cy=\"37.85\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"33.74\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-16\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-17\">\n",
" <circle cx=\"213.63\" cy=\"41.96\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"37.85\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-18\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-19\">\n",
" <circle cx=\"213.63\" cy=\"46.07\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"41.96\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-20\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-21\">\n",
" <circle cx=\"204.09\" cy=\"50.19\" r=\"0.9\"/>\n",
" <circle cx=\"213.63\" cy=\"46.07\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-22\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-23\">\n",
" <circle cx=\"194.56\" cy=\"54.3\" r=\"0.9\"/>\n",
" <circle cx=\"204.09\" cy=\"50.19\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-24\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-25\">\n",
" <circle cx=\"185.02\" cy=\"58.41\" r=\"0.9\"/>\n",
" <circle cx=\"194.56\" cy=\"54.3\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-26\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-27\">\n",
" <circle cx=\"175.49\" cy=\"62.53\" r=\"0.9\"/>\n",
" <circle cx=\"185.02\" cy=\"58.41\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-28\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-29\">\n",
" <circle cx=\"175.49\" cy=\"66.64\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"62.53\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-30\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-31\">\n",
" <circle cx=\"175.49\" cy=\"70.75\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"66.64\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-32\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-33\">\n",
" <circle cx=\"175.49\" cy=\"74.87\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"70.75\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-34\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-35\">\n",
" <circle cx=\"165.95\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"175.49\" cy=\"74.87\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-36\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-37\">\n",
" <circle cx=\"156.41\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"165.95\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-38\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-39\">\n",
" <circle cx=\"146.88\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"156.41\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-40\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-41\">\n",
" <circle cx=\"137.34\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"146.88\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-42\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-43\">\n",
" <circle cx=\"127.81\" cy=\"78.98\" r=\"0.9\"/>\n",
" <circle cx=\"137.34\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-44\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-45\">\n",
" <circle cx=\"118.27\" cy=\"74.87\" r=\"0.9\"/>\n",
" <circle cx=\"127.81\" cy=\"78.98\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-46\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-47\">\n",
" <circle cx=\"108.74\" cy=\"70.75\" r=\"0.9\"/>\n",
" <circle cx=\"118.27\" cy=\"74.87\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-48\">\n",
" <g class=\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0.3\" fill=\"#00BFFF\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-49\">\n",
" <circle cx=\"99.2\" cy=\"66.64\" r=\"0.9\"/>\n",
" <circle cx=\"108.74\" cy=\"70.75\" r=\"0.9\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g opacity=\"0\" class=\"guide zoomslider\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-50\">\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-51\">\n",
" <rect x=\"242\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-52\">\n",
" <path d=\"M242.8,9.6 L 243.6 9.6 243.6 8.8 244.4 8.8 244.4 9.6 245.2 9.6 245.2 10.4 244.4 10.4 244.4 11.2 243.6 11.2 243.6 10.4 242.8 10.4 z\"/>\n",
" </g>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-53\">\n",
" <rect x=\"222.5\" y=\"8\" width=\"19\" height=\"4\"/>\n",
" </g>\n",
" <g class=\"zoomslider_thumb\" fill=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-54\">\n",
" <rect x=\"231\" y=\"8\" width=\"2\" height=\"4\"/>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-55\">\n",
" <rect x=\"218\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-56\">\n",
" <path d=\"M218.8,9.6 L 221.2 9.6 221.2 10.4 218.8 10.4 z\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g class=\"guide ylabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-57\">\n",
" <text x=\"15.15\" y=\"233.22\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-30</text>\n",
" <text x=\"15.15\" y=\"212.66\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"15.15\" y=\"192.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"15.15\" y=\"171.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"15.15\" y=\"150.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"15.15\" y=\"130.39\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0</text>\n",
" <text x=\"15.15\" y=\"89.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">5</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">10</text>\n",
" <text x=\"15.15\" y=\"48.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">15</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">20</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">25</text>\n",
" <text x=\"15.15\" y=\"-13.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"15.15\" y=\"-34.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"15.15\" y=\"-54.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"15.15\" y=\"-75.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"15.15\" y=\"-116.39\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">55</text>\n",
" <text x=\"15.15\" y=\"212.66\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"15.15\" y=\"208.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"15.15\" y=\"204.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-23</text>\n",
" <text x=\"15.15\" y=\"200.32\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"15.15\" y=\"196.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-21</text>\n",
" <text x=\"15.15\" y=\"192.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"15.15\" y=\"187.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-19</text>\n",
" <text x=\"15.15\" y=\"183.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"15.15\" y=\"179.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-17</text>\n",
" <text x=\"15.15\" y=\"175.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"15.15\" y=\"171.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"15.15\" y=\"167.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"15.15\" y=\"163.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-13</text>\n",
" <text x=\"15.15\" y=\"159.19\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"15.15\" y=\"155.07\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-11</text>\n",
" <text x=\"15.15\" y=\"150.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"15.15\" y=\"146.85\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-9</text>\n",
" <text x=\"15.15\" y=\"142.73\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"15.15\" y=\"138.62\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-7</text>\n",
" <text x=\"15.15\" y=\"134.51\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"15.15\" y=\"130.39\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"15.15\" y=\"126.28\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"15.15\" y=\"122.17\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-3</text>\n",
" <text x=\"15.15\" y=\"118.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"15.15\" y=\"113.94\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-1</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"15.15\" y=\"105.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">1</text>\n",
" <text x=\"15.15\" y=\"101.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"15.15\" y=\"97.49\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">3</text>\n",
" <text x=\"15.15\" y=\"93.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"15.15\" y=\"89.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">5</text>\n",
" <text x=\"15.15\" y=\"85.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"15.15\" y=\"81.04\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">7</text>\n",
" <text x=\"15.15\" y=\"76.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"15.15\" y=\"72.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">9</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"15.15\" y=\"64.58\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">11</text>\n",
" <text x=\"15.15\" y=\"60.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"15.15\" y=\"56.36\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">13</text>\n",
" <text x=\"15.15\" y=\"52.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"15.15\" y=\"48.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">15</text>\n",
" <text x=\"15.15\" y=\"44.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"15.15\" y=\"39.91\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">17</text>\n",
" <text x=\"15.15\" y=\"35.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"15.15\" y=\"31.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">19</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"15.15\" y=\"23.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">21</text>\n",
" <text x=\"15.15\" y=\"19.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"15.15\" y=\"15.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">23</text>\n",
" <text x=\"15.15\" y=\"11.11\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">25</text>\n",
" <text x=\"15.15\" y=\"2.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"15.15\" y=\"-1.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">27</text>\n",
" <text x=\"15.15\" y=\"-5.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"15.15\" y=\"-9.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">29</text>\n",
" <text x=\"15.15\" y=\"-13.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"15.15\" y=\"-17.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">31</text>\n",
" <text x=\"15.15\" y=\"-21.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"15.15\" y=\"-25.9\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">33</text>\n",
" <text x=\"15.15\" y=\"-30.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"15.15\" y=\"-34.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"15.15\" y=\"-38.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"15.15\" y=\"-42.36\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">37</text>\n",
" <text x=\"15.15\" y=\"-46.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"15.15\" y=\"-50.58\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">39</text>\n",
" <text x=\"15.15\" y=\"-54.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"15.15\" y=\"-58.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">41</text>\n",
" <text x=\"15.15\" y=\"-62.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"15.15\" y=\"-67.04\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">43</text>\n",
" <text x=\"15.15\" y=\"-71.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"15.15\" y=\"-75.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"15.15\" y=\"-79.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"15.15\" y=\"-83.49\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">47</text>\n",
" <text x=\"15.15\" y=\"-87.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"15.15\" y=\"-91.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">49</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"15.15\" y=\"212.66\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">-25</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">25</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">50</text>\n",
" <text x=\"15.15\" y=\"216.77\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-26</text>\n",
" <text x=\"15.15\" y=\"208.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"15.15\" y=\"200.32\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"15.15\" y=\"192.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"15.15\" y=\"183.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"15.15\" y=\"175.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"15.15\" y=\"167.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"15.15\" y=\"159.19\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"15.15\" y=\"150.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"15.15\" y=\"142.73\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"15.15\" y=\"134.51\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"15.15\" y=\"126.28\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"15.15\" y=\"118.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"15.15\" y=\"101.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"15.15\" y=\"93.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"15.15\" y=\"85.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"15.15\" y=\"76.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"15.15\" y=\"60.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"15.15\" y=\"52.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"15.15\" y=\"44.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"15.15\" y=\"35.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"15.15\" y=\"19.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"15.15\" y=\"11.11\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"15.15\" y=\"2.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"15.15\" y=\"-5.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"15.15\" y=\"-13.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"15.15\" y=\"-21.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"15.15\" y=\"-30.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"15.15\" y=\"-38.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"15.15\" y=\"-46.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"15.15\" y=\"-54.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"15.15\" y=\"-62.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"15.15\" y=\"-71.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"15.15\" y=\"-79.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"15.15\" y=\"-87.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">50</text>\n",
" </g>\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-58\">\n",
" <text x=\"8.81\" y=\"56.36\" text-anchor=\"end\" dy=\"0.35em\">y</text>\n",
" </g>\n",
"</g>\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-59\">\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-60\">\n",
" <text x=\"132.58\" y=\"115.39\" text-anchor=\"middle\" dy=\"0.6em\">x</text>\n",
" </g>\n",
" <g class=\"guide xlabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-61\">\n",
" <text x=\"-277.44\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-30</text>\n",
" <text x=\"-229.77\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"-182.09\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"-134.41\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"-86.74\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"-39.06\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0</text>\n",
" <text x=\"56.29\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">5</text>\n",
" <text x=\"103.97\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">10</text>\n",
" <text x=\"151.65\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">15</text>\n",
" <text x=\"199.32\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">20</text>\n",
" <text x=\"247\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">25</text>\n",
" <text x=\"294.68\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"342.35\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"390.03\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"437.71\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"533.06\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">55</text>\n",
" <text x=\"-229.77\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"-220.23\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"-210.7\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-23</text>\n",
" <text x=\"-201.16\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"-191.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-21</text>\n",
" <text x=\"-182.09\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"-172.55\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-19</text>\n",
" <text x=\"-163.02\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"-153.48\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-17</text>\n",
" <text x=\"-143.95\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"-134.41\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"-124.88\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"-115.34\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-13</text>\n",
" <text x=\"-105.81\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"-96.27\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-11</text>\n",
" <text x=\"-86.74\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"-77.2\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-9</text>\n",
" <text x=\"-67.67\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"-58.13\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-7</text>\n",
" <text x=\"-48.59\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"-39.06\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"-29.52\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"-19.99\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-3</text>\n",
" <text x=\"-10.45\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"-0.92\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-1</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"18.15\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">1</text>\n",
" <text x=\"27.69\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"37.22\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">3</text>\n",
" <text x=\"46.76\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"56.29\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">5</text>\n",
" <text x=\"65.83\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"75.36\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">7</text>\n",
" <text x=\"84.9\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"94.44\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">9</text>\n",
" <text x=\"103.97\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"113.51\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">11</text>\n",
" <text x=\"123.04\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"132.58\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">13</text>\n",
" <text x=\"142.11\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"151.65\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">15</text>\n",
" <text x=\"161.18\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"170.72\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">17</text>\n",
" <text x=\"180.25\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"189.79\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">19</text>\n",
" <text x=\"199.32\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"208.86\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">21</text>\n",
" <text x=\"218.39\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"227.93\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">23</text>\n",
" <text x=\"237.46\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"247\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">25</text>\n",
" <text x=\"256.54\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"266.07\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">27</text>\n",
" <text x=\"275.61\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"285.14\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">29</text>\n",
" <text x=\"294.68\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"304.21\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">31</text>\n",
" <text x=\"313.75\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"323.28\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">33</text>\n",
" <text x=\"332.82\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"342.35\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"351.89\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"361.42\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">37</text>\n",
" <text x=\"370.96\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"380.49\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">39</text>\n",
" <text x=\"390.03\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"399.57\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">41</text>\n",
" <text x=\"409.1\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"418.64\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">43</text>\n",
" <text x=\"428.17\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"437.71\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"447.24\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"456.78\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">47</text>\n",
" <text x=\"466.31\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"475.85\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">49</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"-229.77\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">-25</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0</text>\n",
" <text x=\"247\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">25</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">50</text>\n",
" <text x=\"-239.3\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-26</text>\n",
" <text x=\"-220.23\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"-201.16\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"-182.09\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"-163.02\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"-143.95\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"-124.88\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"-105.81\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"-86.74\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"-67.67\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"-48.59\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"-29.52\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"-10.45\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"8.62\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"27.69\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"46.76\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"65.83\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"84.9\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"103.97\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"123.04\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"142.11\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"161.18\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"180.25\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"199.32\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"218.39\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"237.46\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"256.54\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"275.61\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"294.68\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"313.75\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"332.82\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"351.89\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"370.96\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"390.03\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"409.1\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"428.17\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"447.24\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"466.31\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"485.38\" y=\"111.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">50</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-83d60fd3231945e4a1423f273aa64a66-element-63)\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-62\">\n",
" <g pointer-events=\"visible\" opacity=\"1\" fill=\"#000000\" fill-opacity=\"0.000\" stroke=\"#000000\" stroke-opacity=\"0.000\" class=\"guide background\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-64\">\n",
" <rect x=\"16.15\" y=\"5\" width=\"232.85\" height=\"102.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-65\">\n",
" <path fill=\"none\" d=\"M16.15,233.22 L 249 233.22\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,212.66 L 249 212.66\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,192.09 L 249 192.09\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,171.53 L 249 171.53\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,150.96 L 249 150.96\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,130.39 L 249 130.39\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,89.26 L 249 89.26\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,48.13 L 249 48.13\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M16.15,-13.57 L 249 -13.57\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-34.13 L 249 -34.13\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-54.7 L 249 -54.7\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-75.26 L 249 -75.26\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-116.39 L 249 -116.39\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,212.66 L 249 212.66\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,208.54 L 249 208.54\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,204.43 L 249 204.43\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,200.32 L 249 200.32\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,196.2 L 249 196.2\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,192.09 L 249 192.09\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,187.98 L 249 187.98\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,183.86 L 249 183.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,179.75 L 249 179.75\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,175.64 L 249 175.64\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,171.53 L 249 171.53\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,167.41 L 249 167.41\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,163.3 L 249 163.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,159.19 L 249 159.19\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,155.07 L 249 155.07\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,150.96 L 249 150.96\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,146.85 L 249 146.85\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,142.73 L 249 142.73\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,138.62 L 249 138.62\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,134.51 L 249 134.51\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,130.39 L 249 130.39\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,126.28 L 249 126.28\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,122.17 L 249 122.17\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,118.05 L 249 118.05\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,113.94 L 249 113.94\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,105.72 L 249 105.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,101.6 L 249 101.6\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,97.49 L 249 97.49\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,93.38 L 249 93.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,89.26 L 249 89.26\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,85.15 L 249 85.15\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,81.04 L 249 81.04\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,76.92 L 249 76.92\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,72.81 L 249 72.81\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,64.58 L 249 64.58\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,60.47 L 249 60.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,56.36 L 249 56.36\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,52.24 L 249 52.24\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,48.13 L 249 48.13\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,44.02 L 249 44.02\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,39.91 L 249 39.91\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,35.79 L 249 35.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,31.68 L 249 31.68\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,23.45 L 249 23.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,19.34 L 249 19.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,15.23 L 249 15.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,11.11 L 249 11.11\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,2.89 L 249 2.89\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-1.23 L 249 -1.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-5.34 L 249 -5.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-9.45 L 249 -9.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-13.57 L 249 -13.57\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-17.68 L 249 -17.68\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-21.79 L 249 -21.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-25.9 L 249 -25.9\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-30.02 L 249 -30.02\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-34.13 L 249 -34.13\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-38.24 L 249 -38.24\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-42.36 L 249 -42.36\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-46.47 L 249 -46.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-50.58 L 249 -50.58\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-54.7 L 249 -54.7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-58.81 L 249 -58.81\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-62.92 L 249 -62.92\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-67.04 L 249 -67.04\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-71.15 L 249 -71.15\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-75.26 L 249 -75.26\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-79.38 L 249 -79.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-83.49 L 249 -83.49\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-87.6 L 249 -87.6\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-91.72 L 249 -91.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,212.66 L 249 212.66\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,7 L 249 7\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,216.77 L 249 216.77\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,208.54 L 249 208.54\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,200.32 L 249 200.32\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,192.09 L 249 192.09\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,183.86 L 249 183.86\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,175.64 L 249 175.64\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,167.41 L 249 167.41\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,159.19 L 249 159.19\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,150.96 L 249 150.96\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,142.73 L 249 142.73\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,134.51 L 249 134.51\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,126.28 L 249 126.28\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,118.05 L 249 118.05\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,109.83 L 249 109.83\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,101.6 L 249 101.6\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,93.38 L 249 93.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,85.15 L 249 85.15\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,76.92 L 249 76.92\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,68.7 L 249 68.7\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,60.47 L 249 60.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,52.24 L 249 52.24\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,44.02 L 249 44.02\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,35.79 L 249 35.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,27.57 L 249 27.57\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,19.34 L 249 19.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,11.11 L 249 11.11\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,2.89 L 249 2.89\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-5.34 L 249 -5.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-13.57 L 249 -13.57\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-21.79 L 249 -21.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-30.02 L 249 -30.02\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-38.24 L 249 -38.24\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-46.47 L 249 -46.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-54.7 L 249 -54.7\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-62.92 L 249 -62.92\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-71.15 L 249 -71.15\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-79.38 L 249 -79.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-87.6 L 249 -87.6\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.15,-95.83 L 249 -95.83\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.2\" stroke=\"#D0D0E0\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-66\">\n",
" <path fill=\"none\" d=\"M-277.44,5 L -277.44 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-229.77,5 L -229.77 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-182.09,5 L -182.09 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-134.41,5 L -134.41 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.74,5 L -86.74 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-39.06,5 L -39.06 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M56.29,5 L 56.29 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M151.65,5 L 151.65 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M294.68,5 L 294.68 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M342.35,5 L 342.35 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M390.03,5 L 390.03 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M437.71,5 L 437.71 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M533.06,5 L 533.06 107.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-229.77,5 L -229.77 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-220.23,5 L -220.23 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-210.7,5 L -210.7 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-201.16,5 L -201.16 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-191.62,5 L -191.62 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-182.09,5 L -182.09 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-172.55,5 L -172.55 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-163.02,5 L -163.02 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-153.48,5 L -153.48 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-143.95,5 L -143.95 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-134.41,5 L -134.41 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-124.88,5 L -124.88 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-115.34,5 L -115.34 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-105.81,5 L -105.81 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-96.27,5 L -96.27 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.74,5 L -86.74 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-77.2,5 L -77.2 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-67.67,5 L -67.67 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-58.13,5 L -58.13 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-48.59,5 L -48.59 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-39.06,5 L -39.06 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-29.52,5 L -29.52 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-19.99,5 L -19.99 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-10.45,5 L -10.45 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.92,5 L -0.92 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M18.15,5 L 18.15 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M27.69,5 L 27.69 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M37.22,5 L 37.22 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M46.76,5 L 46.76 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M56.29,5 L 56.29 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M65.83,5 L 65.83 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M75.36,5 L 75.36 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M84.9,5 L 84.9 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M94.44,5 L 94.44 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M113.51,5 L 113.51 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M123.04,5 L 123.04 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M132.58,5 L 132.58 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M142.11,5 L 142.11 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M151.65,5 L 151.65 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.18,5 L 161.18 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M170.72,5 L 170.72 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M180.25,5 L 180.25 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M189.79,5 L 189.79 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M208.86,5 L 208.86 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M218.39,5 L 218.39 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M227.93,5 L 227.93 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M237.46,5 L 237.46 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M256.54,5 L 256.54 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M266.07,5 L 266.07 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M275.61,5 L 275.61 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M285.14,5 L 285.14 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M294.68,5 L 294.68 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M304.21,5 L 304.21 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M313.75,5 L 313.75 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M323.28,5 L 323.28 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M332.82,5 L 332.82 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M342.35,5 L 342.35 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M351.89,5 L 351.89 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M361.42,5 L 361.42 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M370.96,5 L 370.96 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M380.49,5 L 380.49 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M390.03,5 L 390.03 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M399.57,5 L 399.57 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M409.1,5 L 409.1 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M418.64,5 L 418.64 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M428.17,5 L 428.17 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M437.71,5 L 437.71 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M447.24,5 L 447.24 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M456.78,5 L 456.78 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M466.31,5 L 466.31 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M475.85,5 L 475.85 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-229.77,5 L -229.77 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M247,5 L 247 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-239.3,5 L -239.3 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-220.23,5 L -220.23 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-201.16,5 L -201.16 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-182.09,5 L -182.09 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-163.02,5 L -163.02 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-143.95,5 L -143.95 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-124.88,5 L -124.88 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-105.81,5 L -105.81 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.74,5 L -86.74 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-67.67,5 L -67.67 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-48.59,5 L -48.59 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-29.52,5 L -29.52 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-10.45,5 L -10.45 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M8.62,5 L 8.62 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M27.69,5 L 27.69 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M46.76,5 L 46.76 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M65.83,5 L 65.83 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M84.9,5 L 84.9 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M103.97,5 L 103.97 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M123.04,5 L 123.04 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M142.11,5 L 142.11 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.18,5 L 161.18 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M180.25,5 L 180.25 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M199.32,5 L 199.32 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M218.39,5 L 218.39 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M237.46,5 L 237.46 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M256.54,5 L 256.54 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M275.61,5 L 275.61 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M294.68,5 L 294.68 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M313.75,5 L 313.75 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M332.82,5 L 332.82 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M351.89,5 L 351.89 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M370.96,5 L 370.96 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M390.03,5 L 390.03 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M409.1,5 L 409.1 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M428.17,5 L 428.17 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M447.24,5 L 447.24 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M466.31,5 L 466.31 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M485.38,5 L 485.38 107.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-67\">\n",
" <g shape-rendering=\"crispEdges\" class=\"geometry\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-68\">\n",
" <rect x=\"13.38\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"13.38\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"22.92\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"32.46\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"32.46\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"41.99\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"41.99\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"70.6\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"95.38\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"91.27\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#7E273E\"/>\n",
" <rect x=\"80.13\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"80.13\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"95.38\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"91.27\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"89.67\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"99.2\" y=\"21.35\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"108.74\" y=\"21.35\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"118.27\" y=\"21.35\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"127.81\" y=\"29.57\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"103.61\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"137.34\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"103.61\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"99.5\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"54.25\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"50.14\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"46.02\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"146.88\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"54.25\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"50.14\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"46.02\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"156.41\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"165.95\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"165.95\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"175.49\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"175.49\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"175.49\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"41.91\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"37.8\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"185.02\" y=\"33.69\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"70.7\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"66.59\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"194.56\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"204.09\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"204.09\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"58.36\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"25.46\" width=\"9.59\" height=\"4.16\" fill=\"#004D84\"/>\n",
" <rect x=\"213.63\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"213.63\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"58.36\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"17.23\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"223.16\" y=\"13.12\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"232.7\" y=\"62.48\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" <rect x=\"232.7\" y=\"58.36\" width=\"9.59\" height=\"4.16\" fill=\"#BECAB9\"/>\n",
" </g>\n",
" </g>\n",
" <g opacity=\"0\" class=\"guide zoomslider\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-69\">\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-70\">\n",
" <rect x=\"242\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-71\">\n",
" <path d=\"M242.8,9.6 L 243.6 9.6 243.6 8.8 244.4 8.8 244.4 9.6 245.2 9.6 245.2 10.4 244.4 10.4 244.4 11.2 243.6 11.2 243.6 10.4 242.8 10.4 z\"/>\n",
" </g>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-72\">\n",
" <rect x=\"222.5\" y=\"8\" width=\"19\" height=\"4\"/>\n",
" </g>\n",
" <g class=\"zoomslider_thumb\" fill=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-73\">\n",
" <rect x=\"231\" y=\"8\" width=\"2\" height=\"4\"/>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-74\">\n",
" <rect x=\"218\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-75\">\n",
" <path d=\"M218.8,9.6 L 221.2 9.6 221.2 10.4 218.8 10.4 z\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g class=\"guide ylabels\" font-size=\"2.82\" font-family=\"'PT Sans Caption','Helvetica Neue','Helvetica',sans-serif\" fill=\"#6C606B\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-76\">\n",
" <text x=\"15.15\" y=\"233.22\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-30</text>\n",
" <text x=\"15.15\" y=\"212.66\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"15.15\" y=\"192.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"15.15\" y=\"171.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"15.15\" y=\"150.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"15.15\" y=\"130.39\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0</text>\n",
" <text x=\"15.15\" y=\"89.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">5</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">10</text>\n",
" <text x=\"15.15\" y=\"48.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">15</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">20</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">25</text>\n",
" <text x=\"15.15\" y=\"-13.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"15.15\" y=\"-34.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"15.15\" y=\"-54.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"15.15\" y=\"-75.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"15.15\" y=\"-116.39\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">55</text>\n",
" <text x=\"15.15\" y=\"212.66\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-25</text>\n",
" <text x=\"15.15\" y=\"208.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"15.15\" y=\"204.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-23</text>\n",
" <text x=\"15.15\" y=\"200.32\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"15.15\" y=\"196.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-21</text>\n",
" <text x=\"15.15\" y=\"192.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"15.15\" y=\"187.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-19</text>\n",
" <text x=\"15.15\" y=\"183.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"15.15\" y=\"179.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-17</text>\n",
" <text x=\"15.15\" y=\"175.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"15.15\" y=\"171.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-15</text>\n",
" <text x=\"15.15\" y=\"167.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"15.15\" y=\"163.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-13</text>\n",
" <text x=\"15.15\" y=\"159.19\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"15.15\" y=\"155.07\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-11</text>\n",
" <text x=\"15.15\" y=\"150.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"15.15\" y=\"146.85\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-9</text>\n",
" <text x=\"15.15\" y=\"142.73\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"15.15\" y=\"138.62\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-7</text>\n",
" <text x=\"15.15\" y=\"134.51\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"15.15\" y=\"130.39\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-5</text>\n",
" <text x=\"15.15\" y=\"126.28\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"15.15\" y=\"122.17\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-3</text>\n",
" <text x=\"15.15\" y=\"118.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"15.15\" y=\"113.94\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-1</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"15.15\" y=\"105.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">1</text>\n",
" <text x=\"15.15\" y=\"101.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"15.15\" y=\"97.49\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">3</text>\n",
" <text x=\"15.15\" y=\"93.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"15.15\" y=\"89.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">5</text>\n",
" <text x=\"15.15\" y=\"85.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"15.15\" y=\"81.04\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">7</text>\n",
" <text x=\"15.15\" y=\"76.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"15.15\" y=\"72.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">9</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"15.15\" y=\"64.58\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">11</text>\n",
" <text x=\"15.15\" y=\"60.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"15.15\" y=\"56.36\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">13</text>\n",
" <text x=\"15.15\" y=\"52.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"15.15\" y=\"48.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">15</text>\n",
" <text x=\"15.15\" y=\"44.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"15.15\" y=\"39.91\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">17</text>\n",
" <text x=\"15.15\" y=\"35.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"15.15\" y=\"31.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">19</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"15.15\" y=\"23.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">21</text>\n",
" <text x=\"15.15\" y=\"19.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"15.15\" y=\"15.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">23</text>\n",
" <text x=\"15.15\" y=\"11.11\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">25</text>\n",
" <text x=\"15.15\" y=\"2.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"15.15\" y=\"-1.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">27</text>\n",
" <text x=\"15.15\" y=\"-5.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"15.15\" y=\"-9.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">29</text>\n",
" <text x=\"15.15\" y=\"-13.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"15.15\" y=\"-17.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">31</text>\n",
" <text x=\"15.15\" y=\"-21.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"15.15\" y=\"-25.9\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">33</text>\n",
" <text x=\"15.15\" y=\"-30.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"15.15\" y=\"-34.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">35</text>\n",
" <text x=\"15.15\" y=\"-38.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"15.15\" y=\"-42.36\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">37</text>\n",
" <text x=\"15.15\" y=\"-46.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"15.15\" y=\"-50.58\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">39</text>\n",
" <text x=\"15.15\" y=\"-54.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"15.15\" y=\"-58.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">41</text>\n",
" <text x=\"15.15\" y=\"-62.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"15.15\" y=\"-67.04\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">43</text>\n",
" <text x=\"15.15\" y=\"-71.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"15.15\" y=\"-75.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">45</text>\n",
" <text x=\"15.15\" y=\"-79.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"15.15\" y=\"-83.49\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">47</text>\n",
" <text x=\"15.15\" y=\"-87.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"15.15\" y=\"-91.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">49</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">50</text>\n",
" <text x=\"15.15\" y=\"212.66\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">-25</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0</text>\n",
" <text x=\"15.15\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">25</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">50</text>\n",
" <text x=\"15.15\" y=\"216.77\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-26</text>\n",
" <text x=\"15.15\" y=\"208.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-24</text>\n",
" <text x=\"15.15\" y=\"200.32\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-22</text>\n",
" <text x=\"15.15\" y=\"192.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-20</text>\n",
" <text x=\"15.15\" y=\"183.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-18</text>\n",
" <text x=\"15.15\" y=\"175.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-16</text>\n",
" <text x=\"15.15\" y=\"167.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-14</text>\n",
" <text x=\"15.15\" y=\"159.19\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-12</text>\n",
" <text x=\"15.15\" y=\"150.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-10</text>\n",
" <text x=\"15.15\" y=\"142.73\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-8</text>\n",
" <text x=\"15.15\" y=\"134.51\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-6</text>\n",
" <text x=\"15.15\" y=\"126.28\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-4</text>\n",
" <text x=\"15.15\" y=\"118.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-2</text>\n",
" <text x=\"15.15\" y=\"109.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0</text>\n",
" <text x=\"15.15\" y=\"101.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">2</text>\n",
" <text x=\"15.15\" y=\"93.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">4</text>\n",
" <text x=\"15.15\" y=\"85.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">6</text>\n",
" <text x=\"15.15\" y=\"76.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">8</text>\n",
" <text x=\"15.15\" y=\"68.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">10</text>\n",
" <text x=\"15.15\" y=\"60.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">12</text>\n",
" <text x=\"15.15\" y=\"52.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">14</text>\n",
" <text x=\"15.15\" y=\"44.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">16</text>\n",
" <text x=\"15.15\" y=\"35.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">18</text>\n",
" <text x=\"15.15\" y=\"27.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">20</text>\n",
" <text x=\"15.15\" y=\"19.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">22</text>\n",
" <text x=\"15.15\" y=\"11.11\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">24</text>\n",
" <text x=\"15.15\" y=\"2.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">26</text>\n",
" <text x=\"15.15\" y=\"-5.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">28</text>\n",
" <text x=\"15.15\" y=\"-13.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">30</text>\n",
" <text x=\"15.15\" y=\"-21.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">32</text>\n",
" <text x=\"15.15\" y=\"-30.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">34</text>\n",
" <text x=\"15.15\" y=\"-38.24\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">36</text>\n",
" <text x=\"15.15\" y=\"-46.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">38</text>\n",
" <text x=\"15.15\" y=\"-54.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">40</text>\n",
" <text x=\"15.15\" y=\"-62.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">42</text>\n",
" <text x=\"15.15\" y=\"-71.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">44</text>\n",
" <text x=\"15.15\" y=\"-79.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">46</text>\n",
" <text x=\"15.15\" y=\"-87.6\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">48</text>\n",
" <text x=\"15.15\" y=\"-95.83\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">50</text>\n",
" </g>\n",
" <g font-size=\"3.88\" font-family=\"'PT Sans','Helvetica Neue','Helvetica',sans-serif\" fill=\"#564A55\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-77\">\n",
" <text x=\"8.81\" y=\"56.36\" text-anchor=\"end\" dy=\"0.35em\">y</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-5\">\n",
" <path d=\"M16.15,5 L 249 5 249 107.72 16.15 107.72\" />\n",
"</clipPath\n",
"><clipPath id=\"fig-83d60fd3231945e4a1423f273aa64a66-element-63\">\n",
" <path d=\"M16.15,5 L 249 5 249 107.72 16.15 107.72\" />\n",
"</clipPath\n",
"></defs>\n",
"<script> <![CDATA[\n",
"(function(N){var k=/[\\.\\/]/,L=/\\s*,\\s*/,C=function(a,d){return a-d},a,v,y={n:{}},M=function(){for(var a=0,d=this.length;a<d;a++)if(\"undefined\"!=typeof this[a])return this[a]},A=function(){for(var a=this.length;--a;)if(\"undefined\"!=typeof this[a])return this[a]},w=function(k,d){k=String(k);var f=v,n=Array.prototype.slice.call(arguments,2),u=w.listeners(k),p=0,b,q=[],e={},l=[],r=a;l.firstDefined=M;l.lastDefined=A;a=k;for(var s=v=0,x=u.length;s<x;s++)\"zIndex\"in u[s]&&(q.push(u[s].zIndex),0>u[s].zIndex&&\n",
"(e[u[s].zIndex]=u[s]));for(q.sort(C);0>q[p];)if(b=e[q[p++] ],l.push(b.apply(d,n)),v)return v=f,l;for(s=0;s<x;s++)if(b=u[s],\"zIndex\"in b)if(b.zIndex==q[p]){l.push(b.apply(d,n));if(v)break;do if(p++,(b=e[q[p] ])&&l.push(b.apply(d,n)),v)break;while(b)}else e[b.zIndex]=b;else if(l.push(b.apply(d,n)),v)break;v=f;a=r;return l};w._events=y;w.listeners=function(a){a=a.split(k);var d=y,f,n,u,p,b,q,e,l=[d],r=[];u=0;for(p=a.length;u<p;u++){e=[];b=0;for(q=l.length;b<q;b++)for(d=l[b].n,f=[d[a[u] ],d[\"*\"] ],n=2;n--;)if(d=\n",
"f[n])e.push(d),r=r.concat(d.f||[]);l=e}return r};w.on=function(a,d){a=String(a);if(\"function\"!=typeof d)return function(){};for(var f=a.split(L),n=0,u=f.length;n<u;n++)(function(a){a=a.split(k);for(var b=y,f,e=0,l=a.length;e<l;e++)b=b.n,b=b.hasOwnProperty(a[e])&&b[a[e] ]||(b[a[e] ]={n:{}});b.f=b.f||[];e=0;for(l=b.f.length;e<l;e++)if(b.f[e]==d){f=!0;break}!f&&b.f.push(d)})(f[n]);return function(a){+a==+a&&(d.zIndex=+a)}};w.f=function(a){var d=[].slice.call(arguments,1);return function(){w.apply(null,\n",
"[a,null].concat(d).concat([].slice.call(arguments,0)))}};w.stop=function(){v=1};w.nt=function(k){return k?(new RegExp(\"(?:\\\\.|\\\\/|^)\"+k+\"(?:\\\\.|\\\\/|$)\")).test(a):a};w.nts=function(){return a.split(k)};w.off=w.unbind=function(a,d){if(a){var f=a.split(L);if(1<f.length)for(var n=0,u=f.length;n<u;n++)w.off(f[n],d);else{for(var f=a.split(k),p,b,q,e,l=[y],n=0,u=f.length;n<u;n++)for(e=0;e<l.length;e+=q.length-2){q=[e,1];p=l[e].n;if(\"*\"!=f[n])p[f[n] ]&&q.push(p[f[n] ]);else for(b in p)p.hasOwnProperty(b)&&\n",
"q.push(p[b]);l.splice.apply(l,q)}n=0;for(u=l.length;n<u;n++)for(p=l[n];p.n;){if(d){if(p.f){e=0;for(f=p.f.length;e<f;e++)if(p.f[e]==d){p.f.splice(e,1);break}!p.f.length&&delete p.f}for(b in p.n)if(p.n.hasOwnProperty(b)&&p.n[b].f){q=p.n[b].f;e=0;for(f=q.length;e<f;e++)if(q[e]==d){q.splice(e,1);break}!q.length&&delete p.n[b].f}}else for(b in delete p.f,p.n)p.n.hasOwnProperty(b)&&p.n[b].f&&delete p.n[b].f;p=p.n}}}else w._events=y={n:{}}};w.once=function(a,d){var f=function(){w.unbind(a,f);return d.apply(this,\n",
"arguments)};return w.on(a,f)};w.version=\"0.4.2\";w.toString=function(){return\"You are running Eve 0.4.2\"};\"undefined\"!=typeof module&&module.exports?module.exports=w:\"function\"===typeof define&&define.amd?define(\"eve\",[],function(){return w}):N.eve=w})(this);\n",
"(function(N,k){\"function\"===typeof define&&define.amd?define(\"Snap.svg\",[\"eve\"],function(L){return k(N,L)}):k(N,N.eve)})(this,function(N,k){var L=function(a){var k={},y=N.requestAnimationFrame||N.webkitRequestAnimationFrame||N.mozRequestAnimationFrame||N.oRequestAnimationFrame||N.msRequestAnimationFrame||function(a){setTimeout(a,16)},M=Array.isArray||function(a){return a instanceof Array||\"[object Array]\"==Object.prototype.toString.call(a)},A=0,w=\"M\"+(+new Date).toString(36),z=function(a){if(null==\n",
"a)return this.s;var b=this.s-a;this.b+=this.dur*b;this.B+=this.dur*b;this.s=a},d=function(a){if(null==a)return this.spd;this.spd=a},f=function(a){if(null==a)return this.dur;this.s=this.s*a/this.dur;this.dur=a},n=function(){delete k[this.id];this.update();a(\"mina.stop.\"+this.id,this)},u=function(){this.pdif||(delete k[this.id],this.update(),this.pdif=this.get()-this.b)},p=function(){this.pdif&&(this.b=this.get()-this.pdif,delete this.pdif,k[this.id]=this)},b=function(){var a;if(M(this.start)){a=[];\n",
"for(var b=0,e=this.start.length;b<e;b++)a[b]=+this.start[b]+(this.end[b]-this.start[b])*this.easing(this.s)}else a=+this.start+(this.end-this.start)*this.easing(this.s);this.set(a)},q=function(){var l=0,b;for(b in k)if(k.hasOwnProperty(b)){var e=k[b],f=e.get();l++;e.s=(f-e.b)/(e.dur/e.spd);1<=e.s&&(delete k[b],e.s=1,l--,function(b){setTimeout(function(){a(\"mina.finish.\"+b.id,b)})}(e));e.update()}l&&y(q)},e=function(a,r,s,x,G,h,J){a={id:w+(A++).toString(36),start:a,end:r,b:s,s:0,dur:x-s,spd:1,get:G,\n",
"set:h,easing:J||e.linear,status:z,speed:d,duration:f,stop:n,pause:u,resume:p,update:b};k[a.id]=a;r=0;for(var K in k)if(k.hasOwnProperty(K)&&(r++,2==r))break;1==r&&y(q);return a};e.time=Date.now||function(){return+new Date};e.getById=function(a){return k[a]||null};e.linear=function(a){return a};e.easeout=function(a){return Math.pow(a,1.7)};e.easein=function(a){return Math.pow(a,0.48)};e.easeinout=function(a){if(1==a)return 1;if(0==a)return 0;var b=0.48-a/1.04,e=Math.sqrt(0.1734+b*b);a=e-b;a=Math.pow(Math.abs(a),\n",
"1/3)*(0>a?-1:1);b=-e-b;b=Math.pow(Math.abs(b),1/3)*(0>b?-1:1);a=a+b+0.5;return 3*(1-a)*a*a+a*a*a};e.backin=function(a){return 1==a?1:a*a*(2.70158*a-1.70158)};e.backout=function(a){if(0==a)return 0;a-=1;return a*a*(2.70158*a+1.70158)+1};e.elastic=function(a){return a==!!a?a:Math.pow(2,-10*a)*Math.sin(2*(a-0.075)*Math.PI/0.3)+1};e.bounce=function(a){a<1/2.75?a*=7.5625*a:a<2/2.75?(a-=1.5/2.75,a=7.5625*a*a+0.75):a<2.5/2.75?(a-=2.25/2.75,a=7.5625*a*a+0.9375):(a-=2.625/2.75,a=7.5625*a*a+0.984375);return a};\n",
"return N.mina=e}(\"undefined\"==typeof k?function(){}:k),C=function(){function a(c,t){if(c){if(c.tagName)return x(c);if(y(c,\"array\")&&a.set)return a.set.apply(a,c);if(c instanceof e)return c;if(null==t)return c=G.doc.querySelector(c),x(c)}return new s(null==c?\"100%\":c,null==t?\"100%\":t)}function v(c,a){if(a){\"#text\"==c&&(c=G.doc.createTextNode(a.text||\"\"));\"string\"==typeof c&&(c=v(c));if(\"string\"==typeof a)return\"xlink:\"==a.substring(0,6)?c.getAttributeNS(m,a.substring(6)):\"xml:\"==a.substring(0,4)?c.getAttributeNS(la,\n",
"a.substring(4)):c.getAttribute(a);for(var da in a)if(a[h](da)){var b=J(a[da]);b?\"xlink:\"==da.substring(0,6)?c.setAttributeNS(m,da.substring(6),b):\"xml:\"==da.substring(0,4)?c.setAttributeNS(la,da.substring(4),b):c.setAttribute(da,b):c.removeAttribute(da)}}else c=G.doc.createElementNS(la,c);return c}function y(c,a){a=J.prototype.toLowerCase.call(a);return\"finite\"==a?isFinite(c):\"array\"==a&&(c instanceof Array||Array.isArray&&Array.isArray(c))?!0:\"null\"==a&&null===c||a==typeof c&&null!==c||\"object\"==\n",
"a&&c===Object(c)||$.call(c).slice(8,-1).toLowerCase()==a}function M(c){if(\"function\"==typeof c||Object(c)!==c)return c;var a=new c.constructor,b;for(b in c)c[h](b)&&(a[b]=M(c[b]));return a}function A(c,a,b){function m(){var e=Array.prototype.slice.call(arguments,0),f=e.join(\"\\u2400\"),d=m.cache=m.cache||{},l=m.count=m.count||[];if(d[h](f)){a:for(var e=l,l=f,B=0,H=e.length;B<H;B++)if(e[B]===l){e.push(e.splice(B,1)[0]);break a}return b?b(d[f]):d[f]}1E3<=l.length&&delete d[l.shift()];l.push(f);d[f]=c.apply(a,\n",
"e);return b?b(d[f]):d[f]}return m}function w(c,a,b,m,e,f){return null==e?(c-=b,a-=m,c||a?(180*I.atan2(-a,-c)/C+540)%360:0):w(c,a,e,f)-w(b,m,e,f)}function z(c){return c%360*C/180}function d(c){var a=[];c=c.replace(/(?:^|\\s)(\\w+)\\(([^)]+)\\)/g,function(c,b,m){m=m.split(/\\s*,\\s*|\\s+/);\"rotate\"==b&&1==m.length&&m.push(0,0);\"scale\"==b&&(2<m.length?m=m.slice(0,2):2==m.length&&m.push(0,0),1==m.length&&m.push(m[0],0,0));\"skewX\"==b?a.push([\"m\",1,0,I.tan(z(m[0])),1,0,0]):\"skewY\"==b?a.push([\"m\",1,I.tan(z(m[0])),\n",
"0,1,0,0]):a.push([b.charAt(0)].concat(m));return c});return a}function f(c,t){var b=O(c),m=new a.Matrix;if(b)for(var e=0,f=b.length;e<f;e++){var h=b[e],d=h.length,B=J(h[0]).toLowerCase(),H=h[0]!=B,l=H?m.invert():0,E;\"t\"==B&&2==d?m.translate(h[1],0):\"t\"==B&&3==d?H?(d=l.x(0,0),B=l.y(0,0),H=l.x(h[1],h[2]),l=l.y(h[1],h[2]),m.translate(H-d,l-B)):m.translate(h[1],h[2]):\"r\"==B?2==d?(E=E||t,m.rotate(h[1],E.x+E.width/2,E.y+E.height/2)):4==d&&(H?(H=l.x(h[2],h[3]),l=l.y(h[2],h[3]),m.rotate(h[1],H,l)):m.rotate(h[1],\n",
"h[2],h[3])):\"s\"==B?2==d||3==d?(E=E||t,m.scale(h[1],h[d-1],E.x+E.width/2,E.y+E.height/2)):4==d?H?(H=l.x(h[2],h[3]),l=l.y(h[2],h[3]),m.scale(h[1],h[1],H,l)):m.scale(h[1],h[1],h[2],h[3]):5==d&&(H?(H=l.x(h[3],h[4]),l=l.y(h[3],h[4]),m.scale(h[1],h[2],H,l)):m.scale(h[1],h[2],h[3],h[4])):\"m\"==B&&7==d&&m.add(h[1],h[2],h[3],h[4],h[5],h[6])}return m}function n(c,t){if(null==t){var m=!0;t=\"linearGradient\"==c.type||\"radialGradient\"==c.type?c.node.getAttribute(\"gradientTransform\"):\"pattern\"==c.type?c.node.getAttribute(\"patternTransform\"):\n",
"c.node.getAttribute(\"transform\");if(!t)return new a.Matrix;t=d(t)}else t=a._.rgTransform.test(t)?J(t).replace(/\\.{3}|\\u2026/g,c._.transform||aa):d(t),y(t,\"array\")&&(t=a.path?a.path.toString.call(t):J(t)),c._.transform=t;var b=f(t,c.getBBox(1));if(m)return b;c.matrix=b}function u(c){c=c.node.ownerSVGElement&&x(c.node.ownerSVGElement)||c.node.parentNode&&x(c.node.parentNode)||a.select(\"svg\")||a(0,0);var t=c.select(\"defs\"),t=null==t?!1:t.node;t||(t=r(\"defs\",c.node).node);return t}function p(c){return c.node.ownerSVGElement&&\n",
"x(c.node.ownerSVGElement)||a.select(\"svg\")}function b(c,a,m){function b(c){if(null==c)return aa;if(c==+c)return c;v(B,{width:c});try{return B.getBBox().width}catch(a){return 0}}function h(c){if(null==c)return aa;if(c==+c)return c;v(B,{height:c});try{return B.getBBox().height}catch(a){return 0}}function e(b,B){null==a?d[b]=B(c.attr(b)||0):b==a&&(d=B(null==m?c.attr(b)||0:m))}var f=p(c).node,d={},B=f.querySelector(\".svg---mgr\");B||(B=v(\"rect\"),v(B,{x:-9E9,y:-9E9,width:10,height:10,\"class\":\"svg---mgr\",\n",
"fill:\"none\"}),f.appendChild(B));switch(c.type){case \"rect\":e(\"rx\",b),e(\"ry\",h);case \"image\":e(\"width\",b),e(\"height\",h);case \"text\":e(\"x\",b);e(\"y\",h);break;case \"circle\":e(\"cx\",b);e(\"cy\",h);e(\"r\",b);break;case \"ellipse\":e(\"cx\",b);e(\"cy\",h);e(\"rx\",b);e(\"ry\",h);break;case \"line\":e(\"x1\",b);e(\"x2\",b);e(\"y1\",h);e(\"y2\",h);break;case \"marker\":e(\"refX\",b);e(\"markerWidth\",b);e(\"refY\",h);e(\"markerHeight\",h);break;case \"radialGradient\":e(\"fx\",b);e(\"fy\",h);break;case \"tspan\":e(\"dx\",b);e(\"dy\",h);break;default:e(a,\n",
"b)}f.removeChild(B);return d}function q(c){y(c,\"array\")||(c=Array.prototype.slice.call(arguments,0));for(var a=0,b=0,m=this.node;this[a];)delete this[a++];for(a=0;a<c.length;a++)\"set\"==c[a].type?c[a].forEach(function(c){m.appendChild(c.node)}):m.appendChild(c[a].node);for(var h=m.childNodes,a=0;a<h.length;a++)this[b++]=x(h[a]);return this}function e(c){if(c.snap in E)return E[c.snap];var a=this.id=V(),b;try{b=c.ownerSVGElement}catch(m){}this.node=c;b&&(this.paper=new s(b));this.type=c.tagName;this.anims=\n",
"{};this._={transform:[]};c.snap=a;E[a]=this;\"g\"==this.type&&(this.add=q);if(this.type in{g:1,mask:1,pattern:1})for(var e in s.prototype)s.prototype[h](e)&&(this[e]=s.prototype[e])}function l(c){this.node=c}function r(c,a){var b=v(c);a.appendChild(b);return x(b)}function s(c,a){var b,m,f,d=s.prototype;if(c&&\"svg\"==c.tagName){if(c.snap in E)return E[c.snap];var l=c.ownerDocument;b=new e(c);m=c.getElementsByTagName(\"desc\")[0];f=c.getElementsByTagName(\"defs\")[0];m||(m=v(\"desc\"),m.appendChild(l.createTextNode(\"Created with Snap\")),\n",
"b.node.appendChild(m));f||(f=v(\"defs\"),b.node.appendChild(f));b.defs=f;for(var ca in d)d[h](ca)&&(b[ca]=d[ca]);b.paper=b.root=b}else b=r(\"svg\",G.doc.body),v(b.node,{height:a,version:1.1,width:c,xmlns:la});return b}function x(c){return!c||c instanceof e||c instanceof l?c:c.tagName&&\"svg\"==c.tagName.toLowerCase()?new s(c):c.tagName&&\"object\"==c.tagName.toLowerCase()&&\"image/svg+xml\"==c.type?new s(c.contentDocument.getElementsByTagName(\"svg\")[0]):new e(c)}a.version=\"0.3.0\";a.toString=function(){return\"Snap v\"+\n",
"this.version};a._={};var G={win:N,doc:N.document};a._.glob=G;var h=\"hasOwnProperty\",J=String,K=parseFloat,U=parseInt,I=Math,P=I.max,Q=I.min,Y=I.abs,C=I.PI,aa=\"\",$=Object.prototype.toString,F=/^\\s*((#[a-f\\d]{6})|(#[a-f\\d]{3})|rgba?\\(\\s*([\\d\\.]+%?\\s*,\\s*[\\d\\.]+%?\\s*,\\s*[\\d\\.]+%?(?:\\s*,\\s*[\\d\\.]+%?)?)\\s*\\)|hsba?\\(\\s*([\\d\\.]+(?:deg|\\xb0|%)?\\s*,\\s*[\\d\\.]+%?\\s*,\\s*[\\d\\.]+(?:%?\\s*,\\s*[\\d\\.]+)?%?)\\s*\\)|hsla?\\(\\s*([\\d\\.]+(?:deg|\\xb0|%)?\\s*,\\s*[\\d\\.]+%?\\s*,\\s*[\\d\\.]+(?:%?\\s*,\\s*[\\d\\.]+)?%?)\\s*\\))\\s*$/i;a._.separator=\n",
"RegExp(\"[,\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]+\");var S=RegExp(\"[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*,[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*\"),X={hs:1,rg:1},W=RegExp(\"([a-z])[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029,]*((-?\\\\d*\\\\.?\\\\d*(?:e[\\\\-+]?\\\\d+)?[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*,?[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*)+)\",\n",
"\"ig\"),ma=RegExp(\"([rstm])[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029,]*((-?\\\\d*\\\\.?\\\\d*(?:e[\\\\-+]?\\\\d+)?[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*,?[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*)+)\",\"ig\"),Z=RegExp(\"(-?\\\\d*\\\\.?\\\\d*(?:e[\\\\-+]?\\\\d+)?)[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*,?[\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*\",\n",
"\"ig\"),na=0,ba=\"S\"+(+new Date).toString(36),V=function(){return ba+(na++).toString(36)},m=\"http://www.w3.org/1999/xlink\",la=\"http://www.w3.org/2000/svg\",E={},ca=a.url=function(c){return\"url('#\"+c+\"')\"};a._.$=v;a._.id=V;a.format=function(){var c=/\\{([^\\}]+)\\}/g,a=/(?:(?:^|\\.)(.+?)(?=\\[|\\.|$|\\()|\\[('|\")(.+?)\\2\\])(\\(\\))?/g,b=function(c,b,m){var h=m;b.replace(a,function(c,a,b,m,t){a=a||m;h&&(a in h&&(h=h[a]),\"function\"==typeof h&&t&&(h=h()))});return h=(null==h||h==m?c:h)+\"\"};return function(a,m){return J(a).replace(c,\n",
"function(c,a){return b(c,a,m)})}}();a._.clone=M;a._.cacher=A;a.rad=z;a.deg=function(c){return 180*c/C%360};a.angle=w;a.is=y;a.snapTo=function(c,a,b){b=y(b,\"finite\")?b:10;if(y(c,\"array\"))for(var m=c.length;m--;){if(Y(c[m]-a)<=b)return c[m]}else{c=+c;m=a%c;if(m<b)return a-m;if(m>c-b)return a-m+c}return a};a.getRGB=A(function(c){if(!c||(c=J(c)).indexOf(\"-\")+1)return{r:-1,g:-1,b:-1,hex:\"none\",error:1,toString:ka};if(\"none\"==c)return{r:-1,g:-1,b:-1,hex:\"none\",toString:ka};!X[h](c.toLowerCase().substring(0,\n",
"2))&&\"#\"!=c.charAt()&&(c=T(c));if(!c)return{r:-1,g:-1,b:-1,hex:\"none\",error:1,toString:ka};var b,m,e,f,d;if(c=c.match(F)){c[2]&&(e=U(c[2].substring(5),16),m=U(c[2].substring(3,5),16),b=U(c[2].substring(1,3),16));c[3]&&(e=U((d=c[3].charAt(3))+d,16),m=U((d=c[3].charAt(2))+d,16),b=U((d=c[3].charAt(1))+d,16));c[4]&&(d=c[4].split(S),b=K(d[0]),\"%\"==d[0].slice(-1)&&(b*=2.55),m=K(d[1]),\"%\"==d[1].slice(-1)&&(m*=2.55),e=K(d[2]),\"%\"==d[2].slice(-1)&&(e*=2.55),\"rgba\"==c[1].toLowerCase().slice(0,4)&&(f=K(d[3])),\n",
"d[3]&&\"%\"==d[3].slice(-1)&&(f/=100));if(c[5])return d=c[5].split(S),b=K(d[0]),\"%\"==d[0].slice(-1)&&(b/=100),m=K(d[1]),\"%\"==d[1].slice(-1)&&(m/=100),e=K(d[2]),\"%\"==d[2].slice(-1)&&(e/=100),\"deg\"!=d[0].slice(-3)&&\"\\u00b0\"!=d[0].slice(-1)||(b/=360),\"hsba\"==c[1].toLowerCase().slice(0,4)&&(f=K(d[3])),d[3]&&\"%\"==d[3].slice(-1)&&(f/=100),a.hsb2rgb(b,m,e,f);if(c[6])return d=c[6].split(S),b=K(d[0]),\"%\"==d[0].slice(-1)&&(b/=100),m=K(d[1]),\"%\"==d[1].slice(-1)&&(m/=100),e=K(d[2]),\"%\"==d[2].slice(-1)&&(e/=100),\n",
"\"deg\"!=d[0].slice(-3)&&\"\\u00b0\"!=d[0].slice(-1)||(b/=360),\"hsla\"==c[1].toLowerCase().slice(0,4)&&(f=K(d[3])),d[3]&&\"%\"==d[3].slice(-1)&&(f/=100),a.hsl2rgb(b,m,e,f);b=Q(I.round(b),255);m=Q(I.round(m),255);e=Q(I.round(e),255);f=Q(P(f,0),1);c={r:b,g:m,b:e,toString:ka};c.hex=\"#\"+(16777216|e|m<<8|b<<16).toString(16).slice(1);c.opacity=y(f,\"finite\")?f:1;return c}return{r:-1,g:-1,b:-1,hex:\"none\",error:1,toString:ka}},a);a.hsb=A(function(c,b,m){return a.hsb2rgb(c,b,m).hex});a.hsl=A(function(c,b,m){return a.hsl2rgb(c,\n",
"b,m).hex});a.rgb=A(function(c,a,b,m){if(y(m,\"finite\")){var e=I.round;return\"rgba(\"+[e(c),e(a),e(b),+m.toFixed(2)]+\")\"}return\"#\"+(16777216|b|a<<8|c<<16).toString(16).slice(1)});var T=function(c){var a=G.doc.getElementsByTagName(\"head\")[0]||G.doc.getElementsByTagName(\"svg\")[0];T=A(function(c){if(\"red\"==c.toLowerCase())return\"rgb(255, 0, 0)\";a.style.color=\"rgb(255, 0, 0)\";a.style.color=c;c=G.doc.defaultView.getComputedStyle(a,aa).getPropertyValue(\"color\");return\"rgb(255, 0, 0)\"==c?null:c});return T(c)},\n",
"qa=function(){return\"hsb(\"+[this.h,this.s,this.b]+\")\"},ra=function(){return\"hsl(\"+[this.h,this.s,this.l]+\")\"},ka=function(){return 1==this.opacity||null==this.opacity?this.hex:\"rgba(\"+[this.r,this.g,this.b,this.opacity]+\")\"},D=function(c,b,m){null==b&&y(c,\"object\")&&\"r\"in c&&\"g\"in c&&\"b\"in c&&(m=c.b,b=c.g,c=c.r);null==b&&y(c,string)&&(m=a.getRGB(c),c=m.r,b=m.g,m=m.b);if(1<c||1<b||1<m)c/=255,b/=255,m/=255;return[c,b,m]},oa=function(c,b,m,e){c=I.round(255*c);b=I.round(255*b);m=I.round(255*m);c={r:c,\n",
"g:b,b:m,opacity:y(e,\"finite\")?e:1,hex:a.rgb(c,b,m),toString:ka};y(e,\"finite\")&&(c.opacity=e);return c};a.color=function(c){var b;y(c,\"object\")&&\"h\"in c&&\"s\"in c&&\"b\"in c?(b=a.hsb2rgb(c),c.r=b.r,c.g=b.g,c.b=b.b,c.opacity=1,c.hex=b.hex):y(c,\"object\")&&\"h\"in c&&\"s\"in c&&\"l\"in c?(b=a.hsl2rgb(c),c.r=b.r,c.g=b.g,c.b=b.b,c.opacity=1,c.hex=b.hex):(y(c,\"string\")&&(c=a.getRGB(c)),y(c,\"object\")&&\"r\"in c&&\"g\"in c&&\"b\"in c&&!(\"error\"in c)?(b=a.rgb2hsl(c),c.h=b.h,c.s=b.s,c.l=b.l,b=a.rgb2hsb(c),c.v=b.b):(c={hex:\"none\"},\n",
"c.r=c.g=c.b=c.h=c.s=c.v=c.l=-1,c.error=1));c.toString=ka;return c};a.hsb2rgb=function(c,a,b,m){y(c,\"object\")&&\"h\"in c&&\"s\"in c&&\"b\"in c&&(b=c.b,a=c.s,c=c.h,m=c.o);var e,h,d;c=360*c%360/60;d=b*a;a=d*(1-Y(c%2-1));b=e=h=b-d;c=~~c;b+=[d,a,0,0,a,d][c];e+=[a,d,d,a,0,0][c];h+=[0,0,a,d,d,a][c];return oa(b,e,h,m)};a.hsl2rgb=function(c,a,b,m){y(c,\"object\")&&\"h\"in c&&\"s\"in c&&\"l\"in c&&(b=c.l,a=c.s,c=c.h);if(1<c||1<a||1<b)c/=360,a/=100,b/=100;var e,h,d;c=360*c%360/60;d=2*a*(0.5>b?b:1-b);a=d*(1-Y(c%2-1));b=e=\n",
"h=b-d/2;c=~~c;b+=[d,a,0,0,a,d][c];e+=[a,d,d,a,0,0][c];h+=[0,0,a,d,d,a][c];return oa(b,e,h,m)};a.rgb2hsb=function(c,a,b){b=D(c,a,b);c=b[0];a=b[1];b=b[2];var m,e;m=P(c,a,b);e=m-Q(c,a,b);c=((0==e?0:m==c?(a-b)/e:m==a?(b-c)/e+2:(c-a)/e+4)+360)%6*60/360;return{h:c,s:0==e?0:e/m,b:m,toString:qa}};a.rgb2hsl=function(c,a,b){b=D(c,a,b);c=b[0];a=b[1];b=b[2];var m,e,h;m=P(c,a,b);e=Q(c,a,b);h=m-e;c=((0==h?0:m==c?(a-b)/h:m==a?(b-c)/h+2:(c-a)/h+4)+360)%6*60/360;m=(m+e)/2;return{h:c,s:0==h?0:0.5>m?h/(2*m):h/(2-2*\n",
"m),l:m,toString:ra}};a.parsePathString=function(c){if(!c)return null;var b=a.path(c);if(b.arr)return a.path.clone(b.arr);var m={a:7,c:6,o:2,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,u:3,z:0},e=[];y(c,\"array\")&&y(c[0],\"array\")&&(e=a.path.clone(c));e.length||J(c).replace(W,function(c,a,b){var h=[];c=a.toLowerCase();b.replace(Z,function(c,a){a&&h.push(+a)});\"m\"==c&&2<h.length&&(e.push([a].concat(h.splice(0,2))),c=\"l\",a=\"m\"==a?\"l\":\"L\");\"o\"==c&&1==h.length&&e.push([a,h[0] ]);if(\"r\"==c)e.push([a].concat(h));else for(;h.length>=\n",
"m[c]&&(e.push([a].concat(h.splice(0,m[c]))),m[c]););});e.toString=a.path.toString;b.arr=a.path.clone(e);return e};var O=a.parseTransformString=function(c){if(!c)return null;var b=[];y(c,\"array\")&&y(c[0],\"array\")&&(b=a.path.clone(c));b.length||J(c).replace(ma,function(c,a,m){var e=[];a.toLowerCase();m.replace(Z,function(c,a){a&&e.push(+a)});b.push([a].concat(e))});b.toString=a.path.toString;return b};a._.svgTransform2string=d;a._.rgTransform=RegExp(\"^[a-z][\\t\\n\\x0B\\f\\r \\u00a0\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000\\u2028\\u2029]*-?\\\\.?\\\\d\",\n",
"\"i\");a._.transform2matrix=f;a._unit2px=b;a._.getSomeDefs=u;a._.getSomeSVG=p;a.select=function(c){return x(G.doc.querySelector(c))};a.selectAll=function(c){c=G.doc.querySelectorAll(c);for(var b=(a.set||Array)(),m=0;m<c.length;m++)b.push(x(c[m]));return b};setInterval(function(){for(var c in E)if(E[h](c)){var a=E[c],b=a.node;(\"svg\"!=a.type&&!b.ownerSVGElement||\"svg\"==a.type&&(!b.parentNode||\"ownerSVGElement\"in b.parentNode&&!b.ownerSVGElement))&&delete E[c]}},1E4);(function(c){function m(c){function a(c,\n",
"b){var m=v(c.node,b);(m=(m=m&&m.match(d))&&m[2])&&\"#\"==m.charAt()&&(m=m.substring(1))&&(f[m]=(f[m]||[]).concat(function(a){var m={};m[b]=ca(a);v(c.node,m)}))}function b(c){var a=v(c.node,\"xlink:href\");a&&\"#\"==a.charAt()&&(a=a.substring(1))&&(f[a]=(f[a]||[]).concat(function(a){c.attr(\"xlink:href\",\"#\"+a)}))}var e=c.selectAll(\"*\"),h,d=/^\\s*url\\((\"|'|)(.*)\\1\\)\\s*$/;c=[];for(var f={},l=0,E=e.length;l<E;l++){h=e[l];a(h,\"fill\");a(h,\"stroke\");a(h,\"filter\");a(h,\"mask\");a(h,\"clip-path\");b(h);var t=v(h.node,\n",
"\"id\");t&&(v(h.node,{id:h.id}),c.push({old:t,id:h.id}))}l=0;for(E=c.length;l<E;l++)if(e=f[c[l].old])for(h=0,t=e.length;h<t;h++)e[h](c[l].id)}function e(c,a,b){return function(m){m=m.slice(c,a);1==m.length&&(m=m[0]);return b?b(m):m}}function d(c){return function(){var a=c?\"<\"+this.type:\"\",b=this.node.attributes,m=this.node.childNodes;if(c)for(var e=0,h=b.length;e<h;e++)a+=\" \"+b[e].name+'=\"'+b[e].value.replace(/\"/g,'\\\\\"')+'\"';if(m.length){c&&(a+=\">\");e=0;for(h=m.length;e<h;e++)3==m[e].nodeType?a+=m[e].nodeValue:\n",
"1==m[e].nodeType&&(a+=x(m[e]).toString());c&&(a+=\"</\"+this.type+\">\")}else c&&(a+=\"/>\");return a}}c.attr=function(c,a){if(!c)return this;if(y(c,\"string\"))if(1<arguments.length){var b={};b[c]=a;c=b}else return k(\"snap.util.getattr.\"+c,this).firstDefined();for(var m in c)c[h](m)&&k(\"snap.util.attr.\"+m,this,c[m]);return this};c.getBBox=function(c){if(!a.Matrix||!a.path)return this.node.getBBox();var b=this,m=new a.Matrix;if(b.removed)return a._.box();for(;\"use\"==b.type;)if(c||(m=m.add(b.transform().localMatrix.translate(b.attr(\"x\")||\n",
"0,b.attr(\"y\")||0))),b.original)b=b.original;else var e=b.attr(\"xlink:href\"),b=b.original=b.node.ownerDocument.getElementById(e.substring(e.indexOf(\"#\")+1));var e=b._,h=a.path.get[b.type]||a.path.get.deflt;try{if(c)return e.bboxwt=h?a.path.getBBox(b.realPath=h(b)):a._.box(b.node.getBBox()),a._.box(e.bboxwt);b.realPath=h(b);b.matrix=b.transform().localMatrix;e.bbox=a.path.getBBox(a.path.map(b.realPath,m.add(b.matrix)));return a._.box(e.bbox)}catch(d){return a._.box()}};var f=function(){return this.string};\n",
"c.transform=function(c){var b=this._;if(null==c){var m=this;c=new a.Matrix(this.node.getCTM());for(var e=n(this),h=[e],d=new a.Matrix,l=e.toTransformString(),b=J(e)==J(this.matrix)?J(b.transform):l;\"svg\"!=m.type&&(m=m.parent());)h.push(n(m));for(m=h.length;m--;)d.add(h[m]);return{string:b,globalMatrix:c,totalMatrix:d,localMatrix:e,diffMatrix:c.clone().add(e.invert()),global:c.toTransformString(),total:d.toTransformString(),local:l,toString:f}}c instanceof a.Matrix?this.matrix=c:n(this,c);this.node&&\n",
"(\"linearGradient\"==this.type||\"radialGradient\"==this.type?v(this.node,{gradientTransform:this.matrix}):\"pattern\"==this.type?v(this.node,{patternTransform:this.matrix}):v(this.node,{transform:this.matrix}));return this};c.parent=function(){return x(this.node.parentNode)};c.append=c.add=function(c){if(c){if(\"set\"==c.type){var a=this;c.forEach(function(c){a.add(c)});return this}c=x(c);this.node.appendChild(c.node);c.paper=this.paper}return this};c.appendTo=function(c){c&&(c=x(c),c.append(this));return this};\n",
"c.prepend=function(c){if(c){if(\"set\"==c.type){var a=this,b;c.forEach(function(c){b?b.after(c):a.prepend(c);b=c});return this}c=x(c);var m=c.parent();this.node.insertBefore(c.node,this.node.firstChild);this.add&&this.add();c.paper=this.paper;this.parent()&&this.parent().add();m&&m.add()}return this};c.prependTo=function(c){c=x(c);c.prepend(this);return this};c.before=function(c){if(\"set\"==c.type){var a=this;c.forEach(function(c){var b=c.parent();a.node.parentNode.insertBefore(c.node,a.node);b&&b.add()});\n",
"this.parent().add();return this}c=x(c);var b=c.parent();this.node.parentNode.insertBefore(c.node,this.node);this.parent()&&this.parent().add();b&&b.add();c.paper=this.paper;return this};c.after=function(c){c=x(c);var a=c.parent();this.node.nextSibling?this.node.parentNode.insertBefore(c.node,this.node.nextSibling):this.node.parentNode.appendChild(c.node);this.parent()&&this.parent().add();a&&a.add();c.paper=this.paper;return this};c.insertBefore=function(c){c=x(c);var a=this.parent();c.node.parentNode.insertBefore(this.node,\n",
"c.node);this.paper=c.paper;a&&a.add();c.parent()&&c.parent().add();return this};c.insertAfter=function(c){c=x(c);var a=this.parent();c.node.parentNode.insertBefore(this.node,c.node.nextSibling);this.paper=c.paper;a&&a.add();c.parent()&&c.parent().add();return this};c.remove=function(){var c=this.parent();this.node.parentNode&&this.node.parentNode.removeChild(this.node);delete this.paper;this.removed=!0;c&&c.add();return this};c.select=function(c){return x(this.node.querySelector(c))};c.selectAll=\n",
"function(c){c=this.node.querySelectorAll(c);for(var b=(a.set||Array)(),m=0;m<c.length;m++)b.push(x(c[m]));return b};c.asPX=function(c,a){null==a&&(a=this.attr(c));return+b(this,c,a)};c.use=function(){var c,a=this.node.id;a||(a=this.id,v(this.node,{id:a}));c=\"linearGradient\"==this.type||\"radialGradient\"==this.type||\"pattern\"==this.type?r(this.type,this.node.parentNode):r(\"use\",this.node.parentNode);v(c.node,{\"xlink:href\":\"#\"+a});c.original=this;return c};var l=/\\S+/g;c.addClass=function(c){var a=(c||\n",
"\"\").match(l)||[];c=this.node;var b=c.className.baseVal,m=b.match(l)||[],e,h,d;if(a.length){for(e=0;d=a[e++];)h=m.indexOf(d),~h||m.push(d);a=m.join(\" \");b!=a&&(c.className.baseVal=a)}return this};c.removeClass=function(c){var a=(c||\"\").match(l)||[];c=this.node;var b=c.className.baseVal,m=b.match(l)||[],e,h;if(m.length){for(e=0;h=a[e++];)h=m.indexOf(h),~h&&m.splice(h,1);a=m.join(\" \");b!=a&&(c.className.baseVal=a)}return this};c.hasClass=function(c){return!!~(this.node.className.baseVal.match(l)||[]).indexOf(c)};\n",
"c.toggleClass=function(c,a){if(null!=a)return a?this.addClass(c):this.removeClass(c);var b=(c||\"\").match(l)||[],m=this.node,e=m.className.baseVal,h=e.match(l)||[],d,f,E;for(d=0;E=b[d++];)f=h.indexOf(E),~f?h.splice(f,1):h.push(E);b=h.join(\" \");e!=b&&(m.className.baseVal=b);return this};c.clone=function(){var c=x(this.node.cloneNode(!0));v(c.node,\"id\")&&v(c.node,{id:c.id});m(c);c.insertAfter(this);return c};c.toDefs=function(){u(this).appendChild(this.node);return this};c.pattern=c.toPattern=function(c,\n",
"a,b,m){var e=r(\"pattern\",u(this));null==c&&(c=this.getBBox());y(c,\"object\")&&\"x\"in c&&(a=c.y,b=c.width,m=c.height,c=c.x);v(e.node,{x:c,y:a,width:b,height:m,patternUnits:\"userSpaceOnUse\",id:e.id,viewBox:[c,a,b,m].join(\" \")});e.node.appendChild(this.node);return e};c.marker=function(c,a,b,m,e,h){var d=r(\"marker\",u(this));null==c&&(c=this.getBBox());y(c,\"object\")&&\"x\"in c&&(a=c.y,b=c.width,m=c.height,e=c.refX||c.cx,h=c.refY||c.cy,c=c.x);v(d.node,{viewBox:[c,a,b,m].join(\" \"),markerWidth:b,markerHeight:m,\n",
"orient:\"auto\",refX:e||0,refY:h||0,id:d.id});d.node.appendChild(this.node);return d};var E=function(c,a,b,m){\"function\"!=typeof b||b.length||(m=b,b=L.linear);this.attr=c;this.dur=a;b&&(this.easing=b);m&&(this.callback=m)};a._.Animation=E;a.animation=function(c,a,b,m){return new E(c,a,b,m)};c.inAnim=function(){var c=[],a;for(a in this.anims)this.anims[h](a)&&function(a){c.push({anim:new E(a._attrs,a.dur,a.easing,a._callback),mina:a,curStatus:a.status(),status:function(c){return a.status(c)},stop:function(){a.stop()}})}(this.anims[a]);\n",
"return c};a.animate=function(c,a,b,m,e,h){\"function\"!=typeof e||e.length||(h=e,e=L.linear);var d=L.time();c=L(c,a,d,d+m,L.time,b,e);h&&k.once(\"mina.finish.\"+c.id,h);return c};c.stop=function(){for(var c=this.inAnim(),a=0,b=c.length;a<b;a++)c[a].stop();return this};c.animate=function(c,a,b,m){\"function\"!=typeof b||b.length||(m=b,b=L.linear);c instanceof E&&(m=c.callback,b=c.easing,a=b.dur,c=c.attr);var d=[],f=[],l={},t,ca,n,T=this,q;for(q in c)if(c[h](q)){T.equal?(n=T.equal(q,J(c[q])),t=n.from,ca=\n",
"n.to,n=n.f):(t=+T.attr(q),ca=+c[q]);var la=y(t,\"array\")?t.length:1;l[q]=e(d.length,d.length+la,n);d=d.concat(t);f=f.concat(ca)}t=L.time();var p=L(d,f,t,t+a,L.time,function(c){var a={},b;for(b in l)l[h](b)&&(a[b]=l[b](c));T.attr(a)},b);T.anims[p.id]=p;p._attrs=c;p._callback=m;k(\"snap.animcreated.\"+T.id,p);k.once(\"mina.finish.\"+p.id,function(){delete T.anims[p.id];m&&m.call(T)});k.once(\"mina.stop.\"+p.id,function(){delete T.anims[p.id]});return T};var T={};c.data=function(c,b){var m=T[this.id]=T[this.id]||\n",
"{};if(0==arguments.length)return k(\"snap.data.get.\"+this.id,this,m,null),m;if(1==arguments.length){if(a.is(c,\"object\")){for(var e in c)c[h](e)&&this.data(e,c[e]);return this}k(\"snap.data.get.\"+this.id,this,m[c],c);return m[c]}m[c]=b;k(\"snap.data.set.\"+this.id,this,b,c);return this};c.removeData=function(c){null==c?T[this.id]={}:T[this.id]&&delete T[this.id][c];return this};c.outerSVG=c.toString=d(1);c.innerSVG=d()})(e.prototype);a.parse=function(c){var a=G.doc.createDocumentFragment(),b=!0,m=G.doc.createElement(\"div\");\n",
"c=J(c);c.match(/^\\s*<\\s*svg(?:\\s|>)/)||(c=\"<svg>\"+c+\"</svg>\",b=!1);m.innerHTML=c;if(c=m.getElementsByTagName(\"svg\")[0])if(b)a=c;else for(;c.firstChild;)a.appendChild(c.firstChild);m.innerHTML=aa;return new l(a)};l.prototype.select=e.prototype.select;l.prototype.selectAll=e.prototype.selectAll;a.fragment=function(){for(var c=Array.prototype.slice.call(arguments,0),b=G.doc.createDocumentFragment(),m=0,e=c.length;m<e;m++){var h=c[m];h.node&&h.node.nodeType&&b.appendChild(h.node);h.nodeType&&b.appendChild(h);\n",
"\"string\"==typeof h&&b.appendChild(a.parse(h).node)}return new l(b)};a._.make=r;a._.wrap=x;s.prototype.el=function(c,a){var b=r(c,this.node);a&&b.attr(a);return b};k.on(\"snap.util.getattr\",function(){var c=k.nt(),c=c.substring(c.lastIndexOf(\".\")+1),a=c.replace(/[A-Z]/g,function(c){return\"-\"+c.toLowerCase()});return pa[h](a)?this.node.ownerDocument.defaultView.getComputedStyle(this.node,null).getPropertyValue(a):v(this.node,c)});var pa={\"alignment-baseline\":0,\"baseline-shift\":0,clip:0,\"clip-path\":0,\n",
"\"clip-rule\":0,color:0,\"color-interpolation\":0,\"color-interpolation-filters\":0,\"color-profile\":0,\"color-rendering\":0,cursor:0,direction:0,display:0,\"dominant-baseline\":0,\"enable-background\":0,fill:0,\"fill-opacity\":0,\"fill-rule\":0,filter:0,\"flood-color\":0,\"flood-opacity\":0,font:0,\"font-family\":0,\"font-size\":0,\"font-size-adjust\":0,\"font-stretch\":0,\"font-style\":0,\"font-variant\":0,\"font-weight\":0,\"glyph-orientation-horizontal\":0,\"glyph-orientation-vertical\":0,\"image-rendering\":0,kerning:0,\"letter-spacing\":0,\n",
"\"lighting-color\":0,marker:0,\"marker-end\":0,\"marker-mid\":0,\"marker-start\":0,mask:0,opacity:0,overflow:0,\"pointer-events\":0,\"shape-rendering\":0,\"stop-color\":0,\"stop-opacity\":0,stroke:0,\"stroke-dasharray\":0,\"stroke-dashoffset\":0,\"stroke-linecap\":0,\"stroke-linejoin\":0,\"stroke-miterlimit\":0,\"stroke-opacity\":0,\"stroke-width\":0,\"text-anchor\":0,\"text-decoration\":0,\"text-rendering\":0,\"unicode-bidi\":0,visibility:0,\"word-spacing\":0,\"writing-mode\":0};k.on(\"snap.util.attr\",function(c){var a=k.nt(),b={},a=a.substring(a.lastIndexOf(\".\")+\n",
"1);b[a]=c;var m=a.replace(/-(\\w)/gi,function(c,a){return a.toUpperCase()}),a=a.replace(/[A-Z]/g,function(c){return\"-\"+c.toLowerCase()});pa[h](a)?this.node.style[m]=null==c?aa:c:v(this.node,b)});a.ajax=function(c,a,b,m){var e=new XMLHttpRequest,h=V();if(e){if(y(a,\"function\"))m=b,b=a,a=null;else if(y(a,\"object\")){var d=[],f;for(f in a)a.hasOwnProperty(f)&&d.push(encodeURIComponent(f)+\"=\"+encodeURIComponent(a[f]));a=d.join(\"&\")}e.open(a?\"POST\":\"GET\",c,!0);a&&(e.setRequestHeader(\"X-Requested-With\",\"XMLHttpRequest\"),\n",
"e.setRequestHeader(\"Content-type\",\"application/x-www-form-urlencoded\"));b&&(k.once(\"snap.ajax.\"+h+\".0\",b),k.once(\"snap.ajax.\"+h+\".200\",b),k.once(\"snap.ajax.\"+h+\".304\",b));e.onreadystatechange=function(){4==e.readyState&&k(\"snap.ajax.\"+h+\".\"+e.status,m,e)};if(4==e.readyState)return e;e.send(a);return e}};a.load=function(c,b,m){a.ajax(c,function(c){c=a.parse(c.responseText);m?b.call(m,c):b(c)})};a.getElementByPoint=function(c,a){var b,m,e=G.doc.elementFromPoint(c,a);if(G.win.opera&&\"svg\"==e.tagName){b=\n",
"e;m=b.getBoundingClientRect();b=b.ownerDocument;var h=b.body,d=b.documentElement;b=m.top+(g.win.pageYOffset||d.scrollTop||h.scrollTop)-(d.clientTop||h.clientTop||0);m=m.left+(g.win.pageXOffset||d.scrollLeft||h.scrollLeft)-(d.clientLeft||h.clientLeft||0);h=e.createSVGRect();h.x=c-m;h.y=a-b;h.width=h.height=1;b=e.getIntersectionList(h,null);b.length&&(e=b[b.length-1])}return e?x(e):null};a.plugin=function(c){c(a,e,s,G,l)};return G.win.Snap=a}();C.plugin(function(a,k,y,M,A){function w(a,d,f,b,q,e){null==\n",
"d&&\"[object SVGMatrix]\"==z.call(a)?(this.a=a.a,this.b=a.b,this.c=a.c,this.d=a.d,this.e=a.e,this.f=a.f):null!=a?(this.a=+a,this.b=+d,this.c=+f,this.d=+b,this.e=+q,this.f=+e):(this.a=1,this.c=this.b=0,this.d=1,this.f=this.e=0)}var z=Object.prototype.toString,d=String,f=Math;(function(n){function k(a){return a[0]*a[0]+a[1]*a[1]}function p(a){var d=f.sqrt(k(a));a[0]&&(a[0]/=d);a[1]&&(a[1]/=d)}n.add=function(a,d,e,f,n,p){var k=[[],[],[] ],u=[[this.a,this.c,this.e],[this.b,this.d,this.f],[0,0,1] ];d=[[a,\n",
"e,n],[d,f,p],[0,0,1] ];a&&a instanceof w&&(d=[[a.a,a.c,a.e],[a.b,a.d,a.f],[0,0,1] ]);for(a=0;3>a;a++)for(e=0;3>e;e++){for(f=n=0;3>f;f++)n+=u[a][f]*d[f][e];k[a][e]=n}this.a=k[0][0];this.b=k[1][0];this.c=k[0][1];this.d=k[1][1];this.e=k[0][2];this.f=k[1][2];return this};n.invert=function(){var a=this.a*this.d-this.b*this.c;return new w(this.d/a,-this.b/a,-this.c/a,this.a/a,(this.c*this.f-this.d*this.e)/a,(this.b*this.e-this.a*this.f)/a)};n.clone=function(){return new w(this.a,this.b,this.c,this.d,this.e,\n",
"this.f)};n.translate=function(a,d){return this.add(1,0,0,1,a,d)};n.scale=function(a,d,e,f){null==d&&(d=a);(e||f)&&this.add(1,0,0,1,e,f);this.add(a,0,0,d,0,0);(e||f)&&this.add(1,0,0,1,-e,-f);return this};n.rotate=function(b,d,e){b=a.rad(b);d=d||0;e=e||0;var l=+f.cos(b).toFixed(9);b=+f.sin(b).toFixed(9);this.add(l,b,-b,l,d,e);return this.add(1,0,0,1,-d,-e)};n.x=function(a,d){return a*this.a+d*this.c+this.e};n.y=function(a,d){return a*this.b+d*this.d+this.f};n.get=function(a){return+this[d.fromCharCode(97+\n",
"a)].toFixed(4)};n.toString=function(){return\"matrix(\"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+\")\"};n.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]};n.determinant=function(){return this.a*this.d-this.b*this.c};n.split=function(){var b={};b.dx=this.e;b.dy=this.f;var d=[[this.a,this.c],[this.b,this.d] ];b.scalex=f.sqrt(k(d[0]));p(d[0]);b.shear=d[0][0]*d[1][0]+d[0][1]*d[1][1];d[1]=[d[1][0]-d[0][0]*b.shear,d[1][1]-d[0][1]*b.shear];b.scaley=f.sqrt(k(d[1]));\n",
"p(d[1]);b.shear/=b.scaley;0>this.determinant()&&(b.scalex=-b.scalex);var e=-d[0][1],d=d[1][1];0>d?(b.rotate=a.deg(f.acos(d)),0>e&&(b.rotate=360-b.rotate)):b.rotate=a.deg(f.asin(e));b.isSimple=!+b.shear.toFixed(9)&&(b.scalex.toFixed(9)==b.scaley.toFixed(9)||!b.rotate);b.isSuperSimple=!+b.shear.toFixed(9)&&b.scalex.toFixed(9)==b.scaley.toFixed(9)&&!b.rotate;b.noRotation=!+b.shear.toFixed(9)&&!b.rotate;return b};n.toTransformString=function(a){a=a||this.split();if(+a.shear.toFixed(9))return\"m\"+[this.get(0),\n",
"this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)];a.scalex=+a.scalex.toFixed(4);a.scaley=+a.scaley.toFixed(4);a.rotate=+a.rotate.toFixed(4);return(a.dx||a.dy?\"t\"+[+a.dx.toFixed(4),+a.dy.toFixed(4)]:\"\")+(1!=a.scalex||1!=a.scaley?\"s\"+[a.scalex,a.scaley,0,0]:\"\")+(a.rotate?\"r\"+[+a.rotate.toFixed(4),0,0]:\"\")}})(w.prototype);a.Matrix=w;a.matrix=function(a,d,f,b,k,e){return new w(a,d,f,b,k,e)}});C.plugin(function(a,v,y,M,A){function w(h){return function(d){k.stop();d instanceof A&&1==d.node.childNodes.length&&\n",
"(\"radialGradient\"==d.node.firstChild.tagName||\"linearGradient\"==d.node.firstChild.tagName||\"pattern\"==d.node.firstChild.tagName)&&(d=d.node.firstChild,b(this).appendChild(d),d=u(d));if(d instanceof v)if(\"radialGradient\"==d.type||\"linearGradient\"==d.type||\"pattern\"==d.type){d.node.id||e(d.node,{id:d.id});var f=l(d.node.id)}else f=d.attr(h);else f=a.color(d),f.error?(f=a(b(this).ownerSVGElement).gradient(d))?(f.node.id||e(f.node,{id:f.id}),f=l(f.node.id)):f=d:f=r(f);d={};d[h]=f;e(this.node,d);this.node.style[h]=\n",
"x}}function z(a){k.stop();a==+a&&(a+=\"px\");this.node.style.fontSize=a}function d(a){var b=[];a=a.childNodes;for(var e=0,f=a.length;e<f;e++){var l=a[e];3==l.nodeType&&b.push(l.nodeValue);\"tspan\"==l.tagName&&(1==l.childNodes.length&&3==l.firstChild.nodeType?b.push(l.firstChild.nodeValue):b.push(d(l)))}return b}function f(){k.stop();return this.node.style.fontSize}var n=a._.make,u=a._.wrap,p=a.is,b=a._.getSomeDefs,q=/^url\\(#?([^)]+)\\)$/,e=a._.$,l=a.url,r=String,s=a._.separator,x=\"\";k.on(\"snap.util.attr.mask\",\n",
"function(a){if(a instanceof v||a instanceof A){k.stop();a instanceof A&&1==a.node.childNodes.length&&(a=a.node.firstChild,b(this).appendChild(a),a=u(a));if(\"mask\"==a.type)var d=a;else d=n(\"mask\",b(this)),d.node.appendChild(a.node);!d.node.id&&e(d.node,{id:d.id});e(this.node,{mask:l(d.id)})}});(function(a){k.on(\"snap.util.attr.clip\",a);k.on(\"snap.util.attr.clip-path\",a);k.on(\"snap.util.attr.clipPath\",a)})(function(a){if(a instanceof v||a instanceof A){k.stop();if(\"clipPath\"==a.type)var d=a;else d=\n",
"n(\"clipPath\",b(this)),d.node.appendChild(a.node),!d.node.id&&e(d.node,{id:d.id});e(this.node,{\"clip-path\":l(d.id)})}});k.on(\"snap.util.attr.fill\",w(\"fill\"));k.on(\"snap.util.attr.stroke\",w(\"stroke\"));var G=/^([lr])(?:\\(([^)]*)\\))?(.*)$/i;k.on(\"snap.util.grad.parse\",function(a){a=r(a);var b=a.match(G);if(!b)return null;a=b[1];var e=b[2],b=b[3],e=e.split(/\\s*,\\s*/).map(function(a){return+a==a?+a:a});1==e.length&&0==e[0]&&(e=[]);b=b.split(\"-\");b=b.map(function(a){a=a.split(\":\");var b={color:a[0]};a[1]&&\n",
"(b.offset=parseFloat(a[1]));return b});return{type:a,params:e,stops:b}});k.on(\"snap.util.attr.d\",function(b){k.stop();p(b,\"array\")&&p(b[0],\"array\")&&(b=a.path.toString.call(b));b=r(b);b.match(/[ruo]/i)&&(b=a.path.toAbsolute(b));e(this.node,{d:b})})(-1);k.on(\"snap.util.attr.#text\",function(a){k.stop();a=r(a);for(a=M.doc.createTextNode(a);this.node.firstChild;)this.node.removeChild(this.node.firstChild);this.node.appendChild(a)})(-1);k.on(\"snap.util.attr.path\",function(a){k.stop();this.attr({d:a})})(-1);\n",
"k.on(\"snap.util.attr.class\",function(a){k.stop();this.node.className.baseVal=a})(-1);k.on(\"snap.util.attr.viewBox\",function(a){a=p(a,\"object\")&&\"x\"in a?[a.x,a.y,a.width,a.height].join(\" \"):p(a,\"array\")?a.join(\" \"):a;e(this.node,{viewBox:a});k.stop()})(-1);k.on(\"snap.util.attr.transform\",function(a){this.transform(a);k.stop()})(-1);k.on(\"snap.util.attr.r\",function(a){\"rect\"==this.type&&(k.stop(),e(this.node,{rx:a,ry:a}))})(-1);k.on(\"snap.util.attr.textpath\",function(a){k.stop();if(\"text\"==this.type){var d,\n",
"f;if(!a&&this.textPath){for(a=this.textPath;a.node.firstChild;)this.node.appendChild(a.node.firstChild);a.remove();delete this.textPath}else if(p(a,\"string\")?(d=b(this),a=u(d.parentNode).path(a),d.appendChild(a.node),d=a.id,a.attr({id:d})):(a=u(a),a instanceof v&&(d=a.attr(\"id\"),d||(d=a.id,a.attr({id:d})))),d)if(a=this.textPath,f=this.node,a)a.attr({\"xlink:href\":\"#\"+d});else{for(a=e(\"textPath\",{\"xlink:href\":\"#\"+d});f.firstChild;)a.appendChild(f.firstChild);f.appendChild(a);this.textPath=u(a)}}})(-1);\n",
"k.on(\"snap.util.attr.text\",function(a){if(\"text\"==this.type){for(var b=this.node,d=function(a){var b=e(\"tspan\");if(p(a,\"array\"))for(var f=0;f<a.length;f++)b.appendChild(d(a[f]));else b.appendChild(M.doc.createTextNode(a));b.normalize&&b.normalize();return b};b.firstChild;)b.removeChild(b.firstChild);for(a=d(a);a.firstChild;)b.appendChild(a.firstChild)}k.stop()})(-1);k.on(\"snap.util.attr.fontSize\",z)(-1);k.on(\"snap.util.attr.font-size\",z)(-1);k.on(\"snap.util.getattr.transform\",function(){k.stop();\n",
"return this.transform()})(-1);k.on(\"snap.util.getattr.textpath\",function(){k.stop();return this.textPath})(-1);(function(){function b(d){return function(){k.stop();var b=M.doc.defaultView.getComputedStyle(this.node,null).getPropertyValue(\"marker-\"+d);return\"none\"==b?b:a(M.doc.getElementById(b.match(q)[1]))}}function d(a){return function(b){k.stop();var d=\"marker\"+a.charAt(0).toUpperCase()+a.substring(1);if(\"\"==b||!b)this.node.style[d]=\"none\";else if(\"marker\"==b.type){var f=b.node.id;f||e(b.node,{id:b.id});\n",
"this.node.style[d]=l(f)}}}k.on(\"snap.util.getattr.marker-end\",b(\"end\"))(-1);k.on(\"snap.util.getattr.markerEnd\",b(\"end\"))(-1);k.on(\"snap.util.getattr.marker-start\",b(\"start\"))(-1);k.on(\"snap.util.getattr.markerStart\",b(\"start\"))(-1);k.on(\"snap.util.getattr.marker-mid\",b(\"mid\"))(-1);k.on(\"snap.util.getattr.markerMid\",b(\"mid\"))(-1);k.on(\"snap.util.attr.marker-end\",d(\"end\"))(-1);k.on(\"snap.util.attr.markerEnd\",d(\"end\"))(-1);k.on(\"snap.util.attr.marker-start\",d(\"start\"))(-1);k.on(\"snap.util.attr.markerStart\",\n",
"d(\"start\"))(-1);k.on(\"snap.util.attr.marker-mid\",d(\"mid\"))(-1);k.on(\"snap.util.attr.markerMid\",d(\"mid\"))(-1)})();k.on(\"snap.util.getattr.r\",function(){if(\"rect\"==this.type&&e(this.node,\"rx\")==e(this.node,\"ry\"))return k.stop(),e(this.node,\"rx\")})(-1);k.on(\"snap.util.getattr.text\",function(){if(\"text\"==this.type||\"tspan\"==this.type){k.stop();var a=d(this.node);return 1==a.length?a[0]:a}})(-1);k.on(\"snap.util.getattr.#text\",function(){return this.node.textContent})(-1);k.on(\"snap.util.getattr.viewBox\",\n",
"function(){k.stop();var b=e(this.node,\"viewBox\");if(b)return b=b.split(s),a._.box(+b[0],+b[1],+b[2],+b[3])})(-1);k.on(\"snap.util.getattr.points\",function(){var a=e(this.node,\"points\");k.stop();if(a)return a.split(s)})(-1);k.on(\"snap.util.getattr.path\",function(){var a=e(this.node,\"d\");k.stop();return a})(-1);k.on(\"snap.util.getattr.class\",function(){return this.node.className.baseVal})(-1);k.on(\"snap.util.getattr.fontSize\",f)(-1);k.on(\"snap.util.getattr.font-size\",f)(-1)});C.plugin(function(a,v,y,\n",
"M,A){function w(a){return a}function z(a){return function(b){return+b.toFixed(3)+a}}var d={\"+\":function(a,b){return a+b},\"-\":function(a,b){return a-b},\"/\":function(a,b){return a/b},\"*\":function(a,b){return a*b}},f=String,n=/[a-z]+$/i,u=/^\\s*([+\\-\\/*])\\s*=\\s*([\\d.eE+\\-]+)\\s*([^\\d\\s]+)?\\s*$/;k.on(\"snap.util.attr\",function(a){if(a=f(a).match(u)){var b=k.nt(),b=b.substring(b.lastIndexOf(\".\")+1),q=this.attr(b),e={};k.stop();var l=a[3]||\"\",r=q.match(n),s=d[a[1] ];r&&r==l?a=s(parseFloat(q),+a[2]):(q=this.asPX(b),\n",
"a=s(this.asPX(b),this.asPX(b,a[2]+l)));isNaN(q)||isNaN(a)||(e[b]=a,this.attr(e))}})(-10);k.on(\"snap.util.equal\",function(a,b){var q=f(this.attr(a)||\"\"),e=f(b).match(u);if(e){k.stop();var l=e[3]||\"\",r=q.match(n),s=d[e[1] ];if(r&&r==l)return{from:parseFloat(q),to:s(parseFloat(q),+e[2]),f:z(r)};q=this.asPX(a);return{from:q,to:s(q,this.asPX(a,e[2]+l)),f:w}}})(-10)});C.plugin(function(a,v,y,M,A){var w=y.prototype,z=a.is;w.rect=function(a,d,k,p,b,q){var e;null==q&&(q=b);z(a,\"object\")&&\"[object Object]\"==\n",
"a?e=a:null!=a&&(e={x:a,y:d,width:k,height:p},null!=b&&(e.rx=b,e.ry=q));return this.el(\"rect\",e)};w.circle=function(a,d,k){var p;z(a,\"object\")&&\"[object Object]\"==a?p=a:null!=a&&(p={cx:a,cy:d,r:k});return this.el(\"circle\",p)};var d=function(){function a(){this.parentNode.removeChild(this)}return function(d,k){var p=M.doc.createElement(\"img\"),b=M.doc.body;p.style.cssText=\"position:absolute;left:-9999em;top:-9999em\";p.onload=function(){k.call(p);p.onload=p.onerror=null;b.removeChild(p)};p.onerror=a;\n",
"b.appendChild(p);p.src=d}}();w.image=function(f,n,k,p,b){var q=this.el(\"image\");if(z(f,\"object\")&&\"src\"in f)q.attr(f);else if(null!=f){var e={\"xlink:href\":f,preserveAspectRatio:\"none\"};null!=n&&null!=k&&(e.x=n,e.y=k);null!=p&&null!=b?(e.width=p,e.height=b):d(f,function(){a._.$(q.node,{width:this.offsetWidth,height:this.offsetHeight})});a._.$(q.node,e)}return q};w.ellipse=function(a,d,k,p){var b;z(a,\"object\")&&\"[object Object]\"==a?b=a:null!=a&&(b={cx:a,cy:d,rx:k,ry:p});return this.el(\"ellipse\",b)};\n",
"w.path=function(a){var d;z(a,\"object\")&&!z(a,\"array\")?d=a:a&&(d={d:a});return this.el(\"path\",d)};w.group=w.g=function(a){var d=this.el(\"g\");1==arguments.length&&a&&!a.type?d.attr(a):arguments.length&&d.add(Array.prototype.slice.call(arguments,0));return d};w.svg=function(a,d,k,p,b,q,e,l){var r={};z(a,\"object\")&&null==d?r=a:(null!=a&&(r.x=a),null!=d&&(r.y=d),null!=k&&(r.width=k),null!=p&&(r.height=p),null!=b&&null!=q&&null!=e&&null!=l&&(r.viewBox=[b,q,e,l]));return this.el(\"svg\",r)};w.mask=function(a){var d=\n",
"this.el(\"mask\");1==arguments.length&&a&&!a.type?d.attr(a):arguments.length&&d.add(Array.prototype.slice.call(arguments,0));return d};w.ptrn=function(a,d,k,p,b,q,e,l){if(z(a,\"object\"))var r=a;else arguments.length?(r={},null!=a&&(r.x=a),null!=d&&(r.y=d),null!=k&&(r.width=k),null!=p&&(r.height=p),null!=b&&null!=q&&null!=e&&null!=l&&(r.viewBox=[b,q,e,l])):r={patternUnits:\"userSpaceOnUse\"};return this.el(\"pattern\",r)};w.use=function(a){return null!=a?(make(\"use\",this.node),a instanceof v&&(a.attr(\"id\")||\n",
"a.attr({id:ID()}),a=a.attr(\"id\")),this.el(\"use\",{\"xlink:href\":a})):v.prototype.use.call(this)};w.text=function(a,d,k){var p={};z(a,\"object\")?p=a:null!=a&&(p={x:a,y:d,text:k||\"\"});return this.el(\"text\",p)};w.line=function(a,d,k,p){var b={};z(a,\"object\")?b=a:null!=a&&(b={x1:a,x2:k,y1:d,y2:p});return this.el(\"line\",b)};w.polyline=function(a){1<arguments.length&&(a=Array.prototype.slice.call(arguments,0));var d={};z(a,\"object\")&&!z(a,\"array\")?d=a:null!=a&&(d={points:a});return this.el(\"polyline\",d)};\n",
"w.polygon=function(a){1<arguments.length&&(a=Array.prototype.slice.call(arguments,0));var d={};z(a,\"object\")&&!z(a,\"array\")?d=a:null!=a&&(d={points:a});return this.el(\"polygon\",d)};(function(){function d(){return this.selectAll(\"stop\")}function n(b,d){var f=e(\"stop\"),k={offset:+d+\"%\"};b=a.color(b);k[\"stop-color\"]=b.hex;1>b.opacity&&(k[\"stop-opacity\"]=b.opacity);e(f,k);this.node.appendChild(f);return this}function u(){if(\"linearGradient\"==this.type){var b=e(this.node,\"x1\")||0,d=e(this.node,\"x2\")||\n",
"1,f=e(this.node,\"y1\")||0,k=e(this.node,\"y2\")||0;return a._.box(b,f,math.abs(d-b),math.abs(k-f))}b=this.node.r||0;return a._.box((this.node.cx||0.5)-b,(this.node.cy||0.5)-b,2*b,2*b)}function p(a,d){function f(a,b){for(var d=(b-u)/(a-w),e=w;e<a;e++)h[e].offset=+(+u+d*(e-w)).toFixed(2);w=a;u=b}var n=k(\"snap.util.grad.parse\",null,d).firstDefined(),p;if(!n)return null;n.params.unshift(a);p=\"l\"==n.type.toLowerCase()?b.apply(0,n.params):q.apply(0,n.params);n.type!=n.type.toLowerCase()&&e(p.node,{gradientUnits:\"userSpaceOnUse\"});\n",
"var h=n.stops,n=h.length,u=0,w=0;n--;for(var v=0;v<n;v++)\"offset\"in h[v]&&f(v,h[v].offset);h[n].offset=h[n].offset||100;f(n,h[n].offset);for(v=0;v<=n;v++){var y=h[v];p.addStop(y.color,y.offset)}return p}function b(b,k,p,q,w){b=a._.make(\"linearGradient\",b);b.stops=d;b.addStop=n;b.getBBox=u;null!=k&&e(b.node,{x1:k,y1:p,x2:q,y2:w});return b}function q(b,k,p,q,w,h){b=a._.make(\"radialGradient\",b);b.stops=d;b.addStop=n;b.getBBox=u;null!=k&&e(b.node,{cx:k,cy:p,r:q});null!=w&&null!=h&&e(b.node,{fx:w,fy:h});\n",
"return b}var e=a._.$;w.gradient=function(a){return p(this.defs,a)};w.gradientLinear=function(a,d,e,f){return b(this.defs,a,d,e,f)};w.gradientRadial=function(a,b,d,e,f){return q(this.defs,a,b,d,e,f)};w.toString=function(){var b=this.node.ownerDocument,d=b.createDocumentFragment(),b=b.createElement(\"div\"),e=this.node.cloneNode(!0);d.appendChild(b);b.appendChild(e);a._.$(e,{xmlns:\"http://www.w3.org/2000/svg\"});b=b.innerHTML;d.removeChild(d.firstChild);return b};w.clear=function(){for(var a=this.node.firstChild,\n",
"b;a;)b=a.nextSibling,\"defs\"!=a.tagName?a.parentNode.removeChild(a):w.clear.call({node:a}),a=b}})()});C.plugin(function(a,k,y,M){function A(a){var b=A.ps=A.ps||{};b[a]?b[a].sleep=100:b[a]={sleep:100};setTimeout(function(){for(var d in b)b[L](d)&&d!=a&&(b[d].sleep--,!b[d].sleep&&delete b[d])});return b[a]}function w(a,b,d,e){null==a&&(a=b=d=e=0);null==b&&(b=a.y,d=a.width,e=a.height,a=a.x);return{x:a,y:b,width:d,w:d,height:e,h:e,x2:a+d,y2:b+e,cx:a+d/2,cy:b+e/2,r1:F.min(d,e)/2,r2:F.max(d,e)/2,r0:F.sqrt(d*\n",
"d+e*e)/2,path:s(a,b,d,e),vb:[a,b,d,e].join(\" \")}}function z(){return this.join(\",\").replace(N,\"$1\")}function d(a){a=C(a);a.toString=z;return a}function f(a,b,d,h,f,k,l,n,p){if(null==p)return e(a,b,d,h,f,k,l,n);if(0>p||e(a,b,d,h,f,k,l,n)<p)p=void 0;else{var q=0.5,O=1-q,s;for(s=e(a,b,d,h,f,k,l,n,O);0.01<Z(s-p);)q/=2,O+=(s<p?1:-1)*q,s=e(a,b,d,h,f,k,l,n,O);p=O}return u(a,b,d,h,f,k,l,n,p)}function n(b,d){function e(a){return+(+a).toFixed(3)}return a._.cacher(function(a,h,l){a instanceof k&&(a=a.attr(\"d\"));\n",
"a=I(a);for(var n,p,D,q,O=\"\",s={},c=0,t=0,r=a.length;t<r;t++){D=a[t];if(\"M\"==D[0])n=+D[1],p=+D[2];else{q=f(n,p,D[1],D[2],D[3],D[4],D[5],D[6]);if(c+q>h){if(d&&!s.start){n=f(n,p,D[1],D[2],D[3],D[4],D[5],D[6],h-c);O+=[\"C\"+e(n.start.x),e(n.start.y),e(n.m.x),e(n.m.y),e(n.x),e(n.y)];if(l)return O;s.start=O;O=[\"M\"+e(n.x),e(n.y)+\"C\"+e(n.n.x),e(n.n.y),e(n.end.x),e(n.end.y),e(D[5]),e(D[6])].join();c+=q;n=+D[5];p=+D[6];continue}if(!b&&!d)return n=f(n,p,D[1],D[2],D[3],D[4],D[5],D[6],h-c)}c+=q;n=+D[5];p=+D[6]}O+=\n",
"D.shift()+D}s.end=O;return n=b?c:d?s:u(n,p,D[0],D[1],D[2],D[3],D[4],D[5],1)},null,a._.clone)}function u(a,b,d,e,h,f,k,l,n){var p=1-n,q=ma(p,3),s=ma(p,2),c=n*n,t=c*n,r=q*a+3*s*n*d+3*p*n*n*h+t*k,q=q*b+3*s*n*e+3*p*n*n*f+t*l,s=a+2*n*(d-a)+c*(h-2*d+a),t=b+2*n*(e-b)+c*(f-2*e+b),x=d+2*n*(h-d)+c*(k-2*h+d),c=e+2*n*(f-e)+c*(l-2*f+e);a=p*a+n*d;b=p*b+n*e;h=p*h+n*k;f=p*f+n*l;l=90-180*F.atan2(s-x,t-c)/S;return{x:r,y:q,m:{x:s,y:t},n:{x:x,y:c},start:{x:a,y:b},end:{x:h,y:f},alpha:l}}function p(b,d,e,h,f,n,k,l){a.is(b,\n",
"\"array\")||(b=[b,d,e,h,f,n,k,l]);b=U.apply(null,b);return w(b.min.x,b.min.y,b.max.x-b.min.x,b.max.y-b.min.y)}function b(a,b,d){return b>=a.x&&b<=a.x+a.width&&d>=a.y&&d<=a.y+a.height}function q(a,d){a=w(a);d=w(d);return b(d,a.x,a.y)||b(d,a.x2,a.y)||b(d,a.x,a.y2)||b(d,a.x2,a.y2)||b(a,d.x,d.y)||b(a,d.x2,d.y)||b(a,d.x,d.y2)||b(a,d.x2,d.y2)||(a.x<d.x2&&a.x>d.x||d.x<a.x2&&d.x>a.x)&&(a.y<d.y2&&a.y>d.y||d.y<a.y2&&d.y>a.y)}function e(a,b,d,e,h,f,n,k,l){null==l&&(l=1);l=(1<l?1:0>l?0:l)/2;for(var p=[-0.1252,\n",
"0.1252,-0.3678,0.3678,-0.5873,0.5873,-0.7699,0.7699,-0.9041,0.9041,-0.9816,0.9816],q=[0.2491,0.2491,0.2335,0.2335,0.2032,0.2032,0.1601,0.1601,0.1069,0.1069,0.0472,0.0472],s=0,c=0;12>c;c++)var t=l*p[c]+l,r=t*(t*(-3*a+9*d-9*h+3*n)+6*a-12*d+6*h)-3*a+3*d,t=t*(t*(-3*b+9*e-9*f+3*k)+6*b-12*e+6*f)-3*b+3*e,s=s+q[c]*F.sqrt(r*r+t*t);return l*s}function l(a,b,d){a=I(a);b=I(b);for(var h,f,l,n,k,s,r,O,x,c,t=d?0:[],w=0,v=a.length;w<v;w++)if(x=a[w],\"M\"==x[0])h=k=x[1],f=s=x[2];else{\"C\"==x[0]?(x=[h,f].concat(x.slice(1)),\n",
"h=x[6],f=x[7]):(x=[h,f,h,f,k,s,k,s],h=k,f=s);for(var G=0,y=b.length;G<y;G++)if(c=b[G],\"M\"==c[0])l=r=c[1],n=O=c[2];else{\"C\"==c[0]?(c=[l,n].concat(c.slice(1)),l=c[6],n=c[7]):(c=[l,n,l,n,r,O,r,O],l=r,n=O);var z;var K=x,B=c;z=d;var H=p(K),J=p(B);if(q(H,J)){for(var H=e.apply(0,K),J=e.apply(0,B),H=~~(H/8),J=~~(J/8),U=[],A=[],F={},M=z?0:[],P=0;P<H+1;P++){var C=u.apply(0,K.concat(P/H));U.push({x:C.x,y:C.y,t:P/H})}for(P=0;P<J+1;P++)C=u.apply(0,B.concat(P/J)),A.push({x:C.x,y:C.y,t:P/J});for(P=0;P<H;P++)for(K=\n",
"0;K<J;K++){var Q=U[P],L=U[P+1],B=A[K],C=A[K+1],N=0.001>Z(L.x-Q.x)?\"y\":\"x\",S=0.001>Z(C.x-B.x)?\"y\":\"x\",R;R=Q.x;var Y=Q.y,V=L.x,ea=L.y,fa=B.x,ga=B.y,ha=C.x,ia=C.y;if(W(R,V)<X(fa,ha)||X(R,V)>W(fa,ha)||W(Y,ea)<X(ga,ia)||X(Y,ea)>W(ga,ia))R=void 0;else{var $=(R*ea-Y*V)*(fa-ha)-(R-V)*(fa*ia-ga*ha),aa=(R*ea-Y*V)*(ga-ia)-(Y-ea)*(fa*ia-ga*ha),ja=(R-V)*(ga-ia)-(Y-ea)*(fa-ha);if(ja){var $=$/ja,aa=aa/ja,ja=+$.toFixed(2),ba=+aa.toFixed(2);R=ja<+X(R,V).toFixed(2)||ja>+W(R,V).toFixed(2)||ja<+X(fa,ha).toFixed(2)||\n",
"ja>+W(fa,ha).toFixed(2)||ba<+X(Y,ea).toFixed(2)||ba>+W(Y,ea).toFixed(2)||ba<+X(ga,ia).toFixed(2)||ba>+W(ga,ia).toFixed(2)?void 0:{x:$,y:aa}}else R=void 0}R&&F[R.x.toFixed(4)]!=R.y.toFixed(4)&&(F[R.x.toFixed(4)]=R.y.toFixed(4),Q=Q.t+Z((R[N]-Q[N])/(L[N]-Q[N]))*(L.t-Q.t),B=B.t+Z((R[S]-B[S])/(C[S]-B[S]))*(C.t-B.t),0<=Q&&1>=Q&&0<=B&&1>=B&&(z?M++:M.push({x:R.x,y:R.y,t1:Q,t2:B})))}z=M}else z=z?0:[];if(d)t+=z;else{H=0;for(J=z.length;H<J;H++)z[H].segment1=w,z[H].segment2=G,z[H].bez1=x,z[H].bez2=c;t=t.concat(z)}}}return t}\n",
"function r(a){var b=A(a);if(b.bbox)return C(b.bbox);if(!a)return w();a=I(a);for(var d=0,e=0,h=[],f=[],l,n=0,k=a.length;n<k;n++)l=a[n],\"M\"==l[0]?(d=l[1],e=l[2],h.push(d),f.push(e)):(d=U(d,e,l[1],l[2],l[3],l[4],l[5],l[6]),h=h.concat(d.min.x,d.max.x),f=f.concat(d.min.y,d.max.y),d=l[5],e=l[6]);a=X.apply(0,h);l=X.apply(0,f);h=W.apply(0,h);f=W.apply(0,f);f=w(a,l,h-a,f-l);b.bbox=C(f);return f}function s(a,b,d,e,h){if(h)return[[\"M\",+a+ +h,b],[\"l\",d-2*h,0],[\"a\",h,h,0,0,1,h,h],[\"l\",0,e-2*h],[\"a\",h,h,0,0,1,\n",
"-h,h],[\"l\",2*h-d,0],[\"a\",h,h,0,0,1,-h,-h],[\"l\",0,2*h-e],[\"a\",h,h,0,0,1,h,-h],[\"z\"] ];a=[[\"M\",a,b],[\"l\",d,0],[\"l\",0,e],[\"l\",-d,0],[\"z\"] ];a.toString=z;return a}function x(a,b,d,e,h){null==h&&null==e&&(e=d);a=+a;b=+b;d=+d;e=+e;if(null!=h){var f=Math.PI/180,l=a+d*Math.cos(-e*f);a+=d*Math.cos(-h*f);var n=b+d*Math.sin(-e*f);b+=d*Math.sin(-h*f);d=[[\"M\",l,n],[\"A\",d,d,0,+(180<h-e),0,a,b] ]}else d=[[\"M\",a,b],[\"m\",0,-e],[\"a\",d,e,0,1,1,0,2*e],[\"a\",d,e,0,1,1,0,-2*e],[\"z\"] ];d.toString=z;return d}function G(b){var e=\n",
"A(b);if(e.abs)return d(e.abs);Q(b,\"array\")&&Q(b&&b[0],\"array\")||(b=a.parsePathString(b));if(!b||!b.length)return[[\"M\",0,0] ];var h=[],f=0,l=0,n=0,k=0,p=0;\"M\"==b[0][0]&&(f=+b[0][1],l=+b[0][2],n=f,k=l,p++,h[0]=[\"M\",f,l]);for(var q=3==b.length&&\"M\"==b[0][0]&&\"R\"==b[1][0].toUpperCase()&&\"Z\"==b[2][0].toUpperCase(),s,r,w=p,c=b.length;w<c;w++){h.push(s=[]);r=b[w];p=r[0];if(p!=p.toUpperCase())switch(s[0]=p.toUpperCase(),s[0]){case \"A\":s[1]=r[1];s[2]=r[2];s[3]=r[3];s[4]=r[4];s[5]=r[5];s[6]=+r[6]+f;s[7]=+r[7]+\n",
"l;break;case \"V\":s[1]=+r[1]+l;break;case \"H\":s[1]=+r[1]+f;break;case \"R\":for(var t=[f,l].concat(r.slice(1)),u=2,v=t.length;u<v;u++)t[u]=+t[u]+f,t[++u]=+t[u]+l;h.pop();h=h.concat(P(t,q));break;case \"O\":h.pop();t=x(f,l,r[1],r[2]);t.push(t[0]);h=h.concat(t);break;case \"U\":h.pop();h=h.concat(x(f,l,r[1],r[2],r[3]));s=[\"U\"].concat(h[h.length-1].slice(-2));break;case \"M\":n=+r[1]+f,k=+r[2]+l;default:for(u=1,v=r.length;u<v;u++)s[u]=+r[u]+(u%2?f:l)}else if(\"R\"==p)t=[f,l].concat(r.slice(1)),h.pop(),h=h.concat(P(t,\n",
"q)),s=[\"R\"].concat(r.slice(-2));else if(\"O\"==p)h.pop(),t=x(f,l,r[1],r[2]),t.push(t[0]),h=h.concat(t);else if(\"U\"==p)h.pop(),h=h.concat(x(f,l,r[1],r[2],r[3])),s=[\"U\"].concat(h[h.length-1].slice(-2));else for(t=0,u=r.length;t<u;t++)s[t]=r[t];p=p.toUpperCase();if(\"O\"!=p)switch(s[0]){case \"Z\":f=+n;l=+k;break;case \"H\":f=s[1];break;case \"V\":l=s[1];break;case \"M\":n=s[s.length-2],k=s[s.length-1];default:f=s[s.length-2],l=s[s.length-1]}}h.toString=z;e.abs=d(h);return h}function h(a,b,d,e){return[a,b,d,e,d,\n",
"e]}function J(a,b,d,e,h,f){var l=1/3,n=2/3;return[l*a+n*d,l*b+n*e,l*h+n*d,l*f+n*e,h,f]}function K(b,d,e,h,f,l,n,k,p,s){var r=120*S/180,q=S/180*(+f||0),c=[],t,x=a._.cacher(function(a,b,c){var d=a*F.cos(c)-b*F.sin(c);a=a*F.sin(c)+b*F.cos(c);return{x:d,y:a}});if(s)v=s[0],t=s[1],l=s[2],u=s[3];else{t=x(b,d,-q);b=t.x;d=t.y;t=x(k,p,-q);k=t.x;p=t.y;F.cos(S/180*f);F.sin(S/180*f);t=(b-k)/2;v=(d-p)/2;u=t*t/(e*e)+v*v/(h*h);1<u&&(u=F.sqrt(u),e*=u,h*=u);var u=e*e,w=h*h,u=(l==n?-1:1)*F.sqrt(Z((u*w-u*v*v-w*t*t)/\n",
"(u*v*v+w*t*t)));l=u*e*v/h+(b+k)/2;var u=u*-h*t/e+(d+p)/2,v=F.asin(((d-u)/h).toFixed(9));t=F.asin(((p-u)/h).toFixed(9));v=b<l?S-v:v;t=k<l?S-t:t;0>v&&(v=2*S+v);0>t&&(t=2*S+t);n&&v>t&&(v-=2*S);!n&&t>v&&(t-=2*S)}if(Z(t-v)>r){var c=t,w=k,G=p;t=v+r*(n&&t>v?1:-1);k=l+e*F.cos(t);p=u+h*F.sin(t);c=K(k,p,e,h,f,0,n,w,G,[t,c,l,u])}l=t-v;f=F.cos(v);r=F.sin(v);n=F.cos(t);t=F.sin(t);l=F.tan(l/4);e=4/3*e*l;l*=4/3*h;h=[b,d];b=[b+e*r,d-l*f];d=[k+e*t,p-l*n];k=[k,p];b[0]=2*h[0]-b[0];b[1]=2*h[1]-b[1];if(s)return[b,d,k].concat(c);\n",
"c=[b,d,k].concat(c).join().split(\",\");s=[];k=0;for(p=c.length;k<p;k++)s[k]=k%2?x(c[k-1],c[k],q).y:x(c[k],c[k+1],q).x;return s}function U(a,b,d,e,h,f,l,k){for(var n=[],p=[[],[] ],s,r,c,t,q=0;2>q;++q)0==q?(r=6*a-12*d+6*h,s=-3*a+9*d-9*h+3*l,c=3*d-3*a):(r=6*b-12*e+6*f,s=-3*b+9*e-9*f+3*k,c=3*e-3*b),1E-12>Z(s)?1E-12>Z(r)||(s=-c/r,0<s&&1>s&&n.push(s)):(t=r*r-4*c*s,c=F.sqrt(t),0>t||(t=(-r+c)/(2*s),0<t&&1>t&&n.push(t),s=(-r-c)/(2*s),0<s&&1>s&&n.push(s)));for(r=q=n.length;q--;)s=n[q],c=1-s,p[0][q]=c*c*c*a+3*\n",
"c*c*s*d+3*c*s*s*h+s*s*s*l,p[1][q]=c*c*c*b+3*c*c*s*e+3*c*s*s*f+s*s*s*k;p[0][r]=a;p[1][r]=b;p[0][r+1]=l;p[1][r+1]=k;p[0].length=p[1].length=r+2;return{min:{x:X.apply(0,p[0]),y:X.apply(0,p[1])},max:{x:W.apply(0,p[0]),y:W.apply(0,p[1])}}}function I(a,b){var e=!b&&A(a);if(!b&&e.curve)return d(e.curve);var f=G(a),l=b&&G(b),n={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},k={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},p=function(a,b,c){if(!a)return[\"C\",b.x,b.y,b.x,b.y,b.x,b.y];a[0]in{T:1,Q:1}||(b.qx=b.qy=null);\n",
"switch(a[0]){case \"M\":b.X=a[1];b.Y=a[2];break;case \"A\":a=[\"C\"].concat(K.apply(0,[b.x,b.y].concat(a.slice(1))));break;case \"S\":\"C\"==c||\"S\"==c?(c=2*b.x-b.bx,b=2*b.y-b.by):(c=b.x,b=b.y);a=[\"C\",c,b].concat(a.slice(1));break;case \"T\":\"Q\"==c||\"T\"==c?(b.qx=2*b.x-b.qx,b.qy=2*b.y-b.qy):(b.qx=b.x,b.qy=b.y);a=[\"C\"].concat(J(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case \"Q\":b.qx=a[1];b.qy=a[2];a=[\"C\"].concat(J(b.x,b.y,a[1],a[2],a[3],a[4]));break;case \"L\":a=[\"C\"].concat(h(b.x,b.y,a[1],a[2]));break;case \"H\":a=[\"C\"].concat(h(b.x,\n",
"b.y,a[1],b.y));break;case \"V\":a=[\"C\"].concat(h(b.x,b.y,b.x,a[1]));break;case \"Z\":a=[\"C\"].concat(h(b.x,b.y,b.X,b.Y))}return a},s=function(a,b){if(7<a[b].length){a[b].shift();for(var c=a[b];c.length;)q[b]=\"A\",l&&(u[b]=\"A\"),a.splice(b++,0,[\"C\"].concat(c.splice(0,6)));a.splice(b,1);v=W(f.length,l&&l.length||0)}},r=function(a,b,c,d,e){a&&b&&\"M\"==a[e][0]&&\"M\"!=b[e][0]&&(b.splice(e,0,[\"M\",d.x,d.y]),c.bx=0,c.by=0,c.x=a[e][1],c.y=a[e][2],v=W(f.length,l&&l.length||0))},q=[],u=[],c=\"\",t=\"\",x=0,v=W(f.length,\n",
"l&&l.length||0);for(;x<v;x++){f[x]&&(c=f[x][0]);\"C\"!=c&&(q[x]=c,x&&(t=q[x-1]));f[x]=p(f[x],n,t);\"A\"!=q[x]&&\"C\"==c&&(q[x]=\"C\");s(f,x);l&&(l[x]&&(c=l[x][0]),\"C\"!=c&&(u[x]=c,x&&(t=u[x-1])),l[x]=p(l[x],k,t),\"A\"!=u[x]&&\"C\"==c&&(u[x]=\"C\"),s(l,x));r(f,l,n,k,x);r(l,f,k,n,x);var w=f[x],z=l&&l[x],y=w.length,U=l&&z.length;n.x=w[y-2];n.y=w[y-1];n.bx=$(w[y-4])||n.x;n.by=$(w[y-3])||n.y;k.bx=l&&($(z[U-4])||k.x);k.by=l&&($(z[U-3])||k.y);k.x=l&&z[U-2];k.y=l&&z[U-1]}l||(e.curve=d(f));return l?[f,l]:f}function P(a,\n",
"b){for(var d=[],e=0,h=a.length;h-2*!b>e;e+=2){var f=[{x:+a[e-2],y:+a[e-1]},{x:+a[e],y:+a[e+1]},{x:+a[e+2],y:+a[e+3]},{x:+a[e+4],y:+a[e+5]}];b?e?h-4==e?f[3]={x:+a[0],y:+a[1]}:h-2==e&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[h-2],y:+a[h-1]}:h-4==e?f[3]=f[2]:e||(f[0]={x:+a[e],y:+a[e+1]});d.push([\"C\",(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return d}y=k.prototype;var Q=a.is,C=a._.clone,L=\"hasOwnProperty\",\n",
"N=/,?([a-z]),?/gi,$=parseFloat,F=Math,S=F.PI,X=F.min,W=F.max,ma=F.pow,Z=F.abs;M=n(1);var na=n(),ba=n(0,1),V=a._unit2px;a.path=A;a.path.getTotalLength=M;a.path.getPointAtLength=na;a.path.getSubpath=function(a,b,d){if(1E-6>this.getTotalLength(a)-d)return ba(a,b).end;a=ba(a,d,1);return b?ba(a,b).end:a};y.getTotalLength=function(){if(this.node.getTotalLength)return this.node.getTotalLength()};y.getPointAtLength=function(a){return na(this.attr(\"d\"),a)};y.getSubpath=function(b,d){return a.path.getSubpath(this.attr(\"d\"),\n",
"b,d)};a._.box=w;a.path.findDotsAtSegment=u;a.path.bezierBBox=p;a.path.isPointInsideBBox=b;a.path.isBBoxIntersect=q;a.path.intersection=function(a,b){return l(a,b)};a.path.intersectionNumber=function(a,b){return l(a,b,1)};a.path.isPointInside=function(a,d,e){var h=r(a);return b(h,d,e)&&1==l(a,[[\"M\",d,e],[\"H\",h.x2+10] ],1)%2};a.path.getBBox=r;a.path.get={path:function(a){return a.attr(\"path\")},circle:function(a){a=V(a);return x(a.cx,a.cy,a.r)},ellipse:function(a){a=V(a);return x(a.cx||0,a.cy||0,a.rx,\n",
"a.ry)},rect:function(a){a=V(a);return s(a.x||0,a.y||0,a.width,a.height,a.rx,a.ry)},image:function(a){a=V(a);return s(a.x||0,a.y||0,a.width,a.height)},line:function(a){return\"M\"+[a.attr(\"x1\")||0,a.attr(\"y1\")||0,a.attr(\"x2\"),a.attr(\"y2\")]},polyline:function(a){return\"M\"+a.attr(\"points\")},polygon:function(a){return\"M\"+a.attr(\"points\")+\"z\"},deflt:function(a){a=a.node.getBBox();return s(a.x,a.y,a.width,a.height)}};a.path.toRelative=function(b){var e=A(b),h=String.prototype.toLowerCase;if(e.rel)return d(e.rel);\n",
"a.is(b,\"array\")&&a.is(b&&b[0],\"array\")||(b=a.parsePathString(b));var f=[],l=0,n=0,k=0,p=0,s=0;\"M\"==b[0][0]&&(l=b[0][1],n=b[0][2],k=l,p=n,s++,f.push([\"M\",l,n]));for(var r=b.length;s<r;s++){var q=f[s]=[],x=b[s];if(x[0]!=h.call(x[0]))switch(q[0]=h.call(x[0]),q[0]){case \"a\":q[1]=x[1];q[2]=x[2];q[3]=x[3];q[4]=x[4];q[5]=x[5];q[6]=+(x[6]-l).toFixed(3);q[7]=+(x[7]-n).toFixed(3);break;case \"v\":q[1]=+(x[1]-n).toFixed(3);break;case \"m\":k=x[1],p=x[2];default:for(var c=1,t=x.length;c<t;c++)q[c]=+(x[c]-(c%2?l:\n",
"n)).toFixed(3)}else for(f[s]=[],\"m\"==x[0]&&(k=x[1]+l,p=x[2]+n),q=0,c=x.length;q<c;q++)f[s][q]=x[q];x=f[s].length;switch(f[s][0]){case \"z\":l=k;n=p;break;case \"h\":l+=+f[s][x-1];break;case \"v\":n+=+f[s][x-1];break;default:l+=+f[s][x-2],n+=+f[s][x-1]}}f.toString=z;e.rel=d(f);return f};a.path.toAbsolute=G;a.path.toCubic=I;a.path.map=function(a,b){if(!b)return a;var d,e,h,f,l,n,k;a=I(a);h=0;for(l=a.length;h<l;h++)for(k=a[h],f=1,n=k.length;f<n;f+=2)d=b.x(k[f],k[f+1]),e=b.y(k[f],k[f+1]),k[f]=d,k[f+1]=e;return a};\n",
"a.path.toString=z;a.path.clone=d});C.plugin(function(a,v,y,C){var A=Math.max,w=Math.min,z=function(a){this.items=[];this.bindings={};this.length=0;this.type=\"set\";if(a)for(var f=0,n=a.length;f<n;f++)a[f]&&(this[this.items.length]=this.items[this.items.length]=a[f],this.length++)};v=z.prototype;v.push=function(){for(var a,f,n=0,k=arguments.length;n<k;n++)if(a=arguments[n])f=this.items.length,this[f]=this.items[f]=a,this.length++;return this};v.pop=function(){this.length&&delete this[this.length--];\n",
"return this.items.pop()};v.forEach=function(a,f){for(var n=0,k=this.items.length;n<k&&!1!==a.call(f,this.items[n],n);n++);return this};v.animate=function(d,f,n,u){\"function\"!=typeof n||n.length||(u=n,n=L.linear);d instanceof a._.Animation&&(u=d.callback,n=d.easing,f=n.dur,d=d.attr);var p=arguments;if(a.is(d,\"array\")&&a.is(p[p.length-1],\"array\"))var b=!0;var q,e=function(){q?this.b=q:q=this.b},l=0,r=u&&function(){l++==this.length&&u.call(this)};return this.forEach(function(a,l){k.once(\"snap.animcreated.\"+\n",
"a.id,e);b?p[l]&&a.animate.apply(a,p[l]):a.animate(d,f,n,r)})};v.remove=function(){for(;this.length;)this.pop().remove();return this};v.bind=function(a,f,k){var u={};if(\"function\"==typeof f)this.bindings[a]=f;else{var p=k||a;this.bindings[a]=function(a){u[p]=a;f.attr(u)}}return this};v.attr=function(a){var f={},k;for(k in a)if(this.bindings[k])this.bindings[k](a[k]);else f[k]=a[k];a=0;for(k=this.items.length;a<k;a++)this.items[a].attr(f);return this};v.clear=function(){for(;this.length;)this.pop()};\n",
"v.splice=function(a,f,k){a=0>a?A(this.length+a,0):a;f=A(0,w(this.length-a,f));var u=[],p=[],b=[],q;for(q=2;q<arguments.length;q++)b.push(arguments[q]);for(q=0;q<f;q++)p.push(this[a+q]);for(;q<this.length-a;q++)u.push(this[a+q]);var e=b.length;for(q=0;q<e+u.length;q++)this.items[a+q]=this[a+q]=q<e?b[q]:u[q-e];for(q=this.items.length=this.length-=f-e;this[q];)delete this[q++];return new z(p)};v.exclude=function(a){for(var f=0,k=this.length;f<k;f++)if(this[f]==a)return this.splice(f,1),!0;return!1};\n",
"v.insertAfter=function(a){for(var f=this.items.length;f--;)this.items[f].insertAfter(a);return this};v.getBBox=function(){for(var a=[],f=[],k=[],u=[],p=this.items.length;p--;)if(!this.items[p].removed){var b=this.items[p].getBBox();a.push(b.x);f.push(b.y);k.push(b.x+b.width);u.push(b.y+b.height)}a=w.apply(0,a);f=w.apply(0,f);k=A.apply(0,k);u=A.apply(0,u);return{x:a,y:f,x2:k,y2:u,width:k-a,height:u-f,cx:a+(k-a)/2,cy:f+(u-f)/2}};v.clone=function(a){a=new z;for(var f=0,k=this.items.length;f<k;f++)a.push(this.items[f].clone());\n",
"return a};v.toString=function(){return\"Snap\\u2018s set\"};v.type=\"set\";a.set=function(){var a=new z;arguments.length&&a.push.apply(a,Array.prototype.slice.call(arguments,0));return a}});C.plugin(function(a,v,y,C){function A(a){var b=a[0];switch(b.toLowerCase()){case \"t\":return[b,0,0];case \"m\":return[b,1,0,0,1,0,0];case \"r\":return 4==a.length?[b,0,a[2],a[3] ]:[b,0];case \"s\":return 5==a.length?[b,1,1,a[3],a[4] ]:3==a.length?[b,1,1]:[b,1]}}function w(b,d,f){d=q(d).replace(/\\.{3}|\\u2026/g,b);b=a.parseTransformString(b)||\n",
"[];d=a.parseTransformString(d)||[];for(var k=Math.max(b.length,d.length),p=[],v=[],h=0,w,z,y,I;h<k;h++){y=b[h]||A(d[h]);I=d[h]||A(y);if(y[0]!=I[0]||\"r\"==y[0].toLowerCase()&&(y[2]!=I[2]||y[3]!=I[3])||\"s\"==y[0].toLowerCase()&&(y[3]!=I[3]||y[4]!=I[4])){b=a._.transform2matrix(b,f());d=a._.transform2matrix(d,f());p=[[\"m\",b.a,b.b,b.c,b.d,b.e,b.f] ];v=[[\"m\",d.a,d.b,d.c,d.d,d.e,d.f] ];break}p[h]=[];v[h]=[];w=0;for(z=Math.max(y.length,I.length);w<z;w++)w in y&&(p[h][w]=y[w]),w in I&&(v[h][w]=I[w])}return{from:u(p),\n",
"to:u(v),f:n(p)}}function z(a){return a}function d(a){return function(b){return+b.toFixed(3)+a}}function f(b){return a.rgb(b[0],b[1],b[2])}function n(a){var b=0,d,f,k,n,h,p,q=[];d=0;for(f=a.length;d<f;d++){h=\"[\";p=['\"'+a[d][0]+'\"'];k=1;for(n=a[d].length;k<n;k++)p[k]=\"val[\"+b++ +\"]\";h+=p+\"]\";q[d]=h}return Function(\"val\",\"return Snap.path.toString.call([\"+q+\"])\")}function u(a){for(var b=[],d=0,f=a.length;d<f;d++)for(var k=1,n=a[d].length;k<n;k++)b.push(a[d][k]);return b}var p={},b=/[a-z]+$/i,q=String;\n",
"p.stroke=p.fill=\"colour\";v.prototype.equal=function(a,b){return k(\"snap.util.equal\",this,a,b).firstDefined()};k.on(\"snap.util.equal\",function(e,k){var r,s;r=q(this.attr(e)||\"\");var x=this;if(r==+r&&k==+k)return{from:+r,to:+k,f:z};if(\"colour\"==p[e])return r=a.color(r),s=a.color(k),{from:[r.r,r.g,r.b,r.opacity],to:[s.r,s.g,s.b,s.opacity],f:f};if(\"transform\"==e||\"gradientTransform\"==e||\"patternTransform\"==e)return k instanceof a.Matrix&&(k=k.toTransformString()),a._.rgTransform.test(k)||(k=a._.svgTransform2string(k)),\n",
"w(r,k,function(){return x.getBBox(1)});if(\"d\"==e||\"path\"==e)return r=a.path.toCubic(r,k),{from:u(r[0]),to:u(r[1]),f:n(r[0])};if(\"points\"==e)return r=q(r).split(a._.separator),s=q(k).split(a._.separator),{from:r,to:s,f:function(a){return a}};aUnit=r.match(b);s=q(k).match(b);return aUnit&&aUnit==s?{from:parseFloat(r),to:parseFloat(k),f:d(aUnit)}:{from:this.asPX(e),to:this.asPX(e,k),f:z}})});C.plugin(function(a,v,y,C){var A=v.prototype,w=\"createTouch\"in C.doc;v=\"click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend touchcancel\".split(\" \");\n",
"var z={mousedown:\"touchstart\",mousemove:\"touchmove\",mouseup:\"touchend\"},d=function(a,b){var d=\"y\"==a?\"scrollTop\":\"scrollLeft\",e=b&&b.node?b.node.ownerDocument:C.doc;return e[d in e.documentElement?\"documentElement\":\"body\"][d]},f=function(){this.returnValue=!1},n=function(){return this.originalEvent.preventDefault()},u=function(){this.cancelBubble=!0},p=function(){return this.originalEvent.stopPropagation()},b=function(){if(C.doc.addEventListener)return function(a,b,e,f){var k=w&&z[b]?z[b]:b,l=function(k){var l=\n",
"d(\"y\",f),q=d(\"x\",f);if(w&&z.hasOwnProperty(b))for(var r=0,u=k.targetTouches&&k.targetTouches.length;r<u;r++)if(k.targetTouches[r].target==a||a.contains(k.targetTouches[r].target)){u=k;k=k.targetTouches[r];k.originalEvent=u;k.preventDefault=n;k.stopPropagation=p;break}return e.call(f,k,k.clientX+q,k.clientY+l)};b!==k&&a.addEventListener(b,l,!1);a.addEventListener(k,l,!1);return function(){b!==k&&a.removeEventListener(b,l,!1);a.removeEventListener(k,l,!1);return!0}};if(C.doc.attachEvent)return function(a,\n",
"b,e,h){var k=function(a){a=a||h.node.ownerDocument.window.event;var b=d(\"y\",h),k=d(\"x\",h),k=a.clientX+k,b=a.clientY+b;a.preventDefault=a.preventDefault||f;a.stopPropagation=a.stopPropagation||u;return e.call(h,a,k,b)};a.attachEvent(\"on\"+b,k);return function(){a.detachEvent(\"on\"+b,k);return!0}}}(),q=[],e=function(a){for(var b=a.clientX,e=a.clientY,f=d(\"y\"),l=d(\"x\"),n,p=q.length;p--;){n=q[p];if(w)for(var r=a.touches&&a.touches.length,u;r--;){if(u=a.touches[r],u.identifier==n.el._drag.id||n.el.node.contains(u.target)){b=\n",
"u.clientX;e=u.clientY;(a.originalEvent?a.originalEvent:a).preventDefault();break}}else a.preventDefault();b+=l;e+=f;k(\"snap.drag.move.\"+n.el.id,n.move_scope||n.el,b-n.el._drag.x,e-n.el._drag.y,b,e,a)}},l=function(b){a.unmousemove(e).unmouseup(l);for(var d=q.length,f;d--;)f=q[d],f.el._drag={},k(\"snap.drag.end.\"+f.el.id,f.end_scope||f.start_scope||f.move_scope||f.el,b);q=[]};for(y=v.length;y--;)(function(d){a[d]=A[d]=function(e,f){a.is(e,\"function\")&&(this.events=this.events||[],this.events.push({name:d,\n",
"f:e,unbind:b(this.node||document,d,e,f||this)}));return this};a[\"un\"+d]=A[\"un\"+d]=function(a){for(var b=this.events||[],e=b.length;e--;)if(b[e].name==d&&(b[e].f==a||!a)){b[e].unbind();b.splice(e,1);!b.length&&delete this.events;break}return this}})(v[y]);A.hover=function(a,b,d,e){return this.mouseover(a,d).mouseout(b,e||d)};A.unhover=function(a,b){return this.unmouseover(a).unmouseout(b)};var r=[];A.drag=function(b,d,f,h,n,p){function u(r,v,w){(r.originalEvent||r).preventDefault();this._drag.x=v;\n",
"this._drag.y=w;this._drag.id=r.identifier;!q.length&&a.mousemove(e).mouseup(l);q.push({el:this,move_scope:h,start_scope:n,end_scope:p});d&&k.on(\"snap.drag.start.\"+this.id,d);b&&k.on(\"snap.drag.move.\"+this.id,b);f&&k.on(\"snap.drag.end.\"+this.id,f);k(\"snap.drag.start.\"+this.id,n||h||this,v,w,r)}if(!arguments.length){var v;return this.drag(function(a,b){this.attr({transform:v+(v?\"T\":\"t\")+[a,b]})},function(){v=this.transform().local})}this._drag={};r.push({el:this,start:u});this.mousedown(u);return this};\n",
"A.undrag=function(){for(var b=r.length;b--;)r[b].el==this&&(this.unmousedown(r[b].start),r.splice(b,1),k.unbind(\"snap.drag.*.\"+this.id));!r.length&&a.unmousemove(e).unmouseup(l);return this}});C.plugin(function(a,v,y,C){y=y.prototype;var A=/^\\s*url\\((.+)\\)/,w=String,z=a._.$;a.filter={};y.filter=function(d){var f=this;\"svg\"!=f.type&&(f=f.paper);d=a.parse(w(d));var k=a._.id(),u=z(\"filter\");z(u,{id:k,filterUnits:\"userSpaceOnUse\"});u.appendChild(d.node);f.defs.appendChild(u);return new v(u)};k.on(\"snap.util.getattr.filter\",\n",
"function(){k.stop();var d=z(this.node,\"filter\");if(d)return(d=w(d).match(A))&&a.select(d[1])});k.on(\"snap.util.attr.filter\",function(d){if(d instanceof v&&\"filter\"==d.type){k.stop();var f=d.node.id;f||(z(d.node,{id:d.id}),f=d.id);z(this.node,{filter:a.url(f)})}d&&\"none\"!=d||(k.stop(),this.node.removeAttribute(\"filter\"))});a.filter.blur=function(d,f){null==d&&(d=2);return a.format('<feGaussianBlur stdDeviation=\"{def}\"/>',{def:null==f?d:[d,f]})};a.filter.blur.toString=function(){return this()};a.filter.shadow=\n",
"function(d,f,k,u,p){\"string\"==typeof k&&(p=u=k,k=4);\"string\"!=typeof u&&(p=u,u=\"#000\");null==k&&(k=4);null==p&&(p=1);null==d&&(d=0,f=2);null==f&&(f=d);u=a.color(u||\"#000\");return a.format('<feGaussianBlur in=\"SourceAlpha\" stdDeviation=\"{blur}\"/><feOffset dx=\"{dx}\" dy=\"{dy}\" result=\"offsetblur\"/><feFlood flood-color=\"{color}\"/><feComposite in2=\"offsetblur\" operator=\"in\"/><feComponentTransfer><feFuncA type=\"linear\" slope=\"{opacity}\"/></feComponentTransfer><feMerge><feMergeNode/><feMergeNode in=\"SourceGraphic\"/></feMerge>',\n",
"{color:u,dx:d,dy:f,blur:k,opacity:p})};a.filter.shadow.toString=function(){return this()};a.filter.grayscale=function(d){null==d&&(d=1);return a.format('<feColorMatrix type=\"matrix\" values=\"{a} {b} {c} 0 0 {d} {e} {f} 0 0 {g} {b} {h} 0 0 0 0 0 1 0\"/>',{a:0.2126+0.7874*(1-d),b:0.7152-0.7152*(1-d),c:0.0722-0.0722*(1-d),d:0.2126-0.2126*(1-d),e:0.7152+0.2848*(1-d),f:0.0722-0.0722*(1-d),g:0.2126-0.2126*(1-d),h:0.0722+0.9278*(1-d)})};a.filter.grayscale.toString=function(){return this()};a.filter.sepia=\n",
"function(d){null==d&&(d=1);return a.format('<feColorMatrix type=\"matrix\" values=\"{a} {b} {c} 0 0 {d} {e} {f} 0 0 {g} {h} {i} 0 0 0 0 0 1 0\"/>',{a:0.393+0.607*(1-d),b:0.769-0.769*(1-d),c:0.189-0.189*(1-d),d:0.349-0.349*(1-d),e:0.686+0.314*(1-d),f:0.168-0.168*(1-d),g:0.272-0.272*(1-d),h:0.534-0.534*(1-d),i:0.131+0.869*(1-d)})};a.filter.sepia.toString=function(){return this()};a.filter.saturate=function(d){null==d&&(d=1);return a.format('<feColorMatrix type=\"saturate\" values=\"{amount}\"/>',{amount:1-\n",
"d})};a.filter.saturate.toString=function(){return this()};a.filter.hueRotate=function(d){return a.format('<feColorMatrix type=\"hueRotate\" values=\"{angle}\"/>',{angle:d||0})};a.filter.hueRotate.toString=function(){return this()};a.filter.invert=function(d){null==d&&(d=1);return a.format('<feComponentTransfer><feFuncR type=\"table\" tableValues=\"{amount} {amount2}\"/><feFuncG type=\"table\" tableValues=\"{amount} {amount2}\"/><feFuncB type=\"table\" tableValues=\"{amount} {amount2}\"/></feComponentTransfer>',{amount:d,\n",
"amount2:1-d})};a.filter.invert.toString=function(){return this()};a.filter.brightness=function(d){null==d&&(d=1);return a.format('<feComponentTransfer><feFuncR type=\"linear\" slope=\"{amount}\"/><feFuncG type=\"linear\" slope=\"{amount}\"/><feFuncB type=\"linear\" slope=\"{amount}\"/></feComponentTransfer>',{amount:d})};a.filter.brightness.toString=function(){return this()};a.filter.contrast=function(d){null==d&&(d=1);return a.format('<feComponentTransfer><feFuncR type=\"linear\" slope=\"{amount}\" intercept=\"{amount2}\"/><feFuncG type=\"linear\" slope=\"{amount}\" intercept=\"{amount2}\"/><feFuncB type=\"linear\" slope=\"{amount}\" intercept=\"{amount2}\"/></feComponentTransfer>',\n",
"{amount:d,amount2:0.5-d/2})};a.filter.contrast.toString=function(){return this()}});return C});\n",
"\n",
"]]> </script>\n",
"<script> <![CDATA[\n",
"\n",
"(function (glob, factory) {\n",
" // AMD support\n",
" if (typeof define === \"function\" && define.amd) {\n",
" // Define as an anonymous module\n",
" define(\"Gadfly\", [\"Snap.svg\"], function (Snap) {\n",
" return factory(Snap);\n",
" });\n",
" } else {\n",
" // Browser globals (glob is window)\n",
" // Snap adds itself to window\n",
" glob.Gadfly = factory(glob.Snap);\n",
" }\n",
"}(this, function (Snap) {\n",
"\n",
"var Gadfly = {};\n",
"\n",
"// Get an x/y coordinate value in pixels\n",
"var xPX = function(fig, x) {\n",
" var client_box = fig.node.getBoundingClientRect();\n",
" return x * fig.node.viewBox.baseVal.width / client_box.width;\n",
"};\n",
"\n",
"var yPX = function(fig, y) {\n",
" var client_box = fig.node.getBoundingClientRect();\n",
" return y * fig.node.viewBox.baseVal.height / client_box.height;\n",
"};\n",
"\n",
"\n",
"Snap.plugin(function (Snap, Element, Paper, global) {\n",
" // Traverse upwards from a snap element to find and return the first\n",
" // note with the \"plotroot\" class.\n",
" Element.prototype.plotroot = function () {\n",
" var element = this;\n",
" while (!element.hasClass(\"plotroot\") && element.parent() != null) {\n",
" element = element.parent();\n",
" }\n",
" return element;\n",
" };\n",
"\n",
" Element.prototype.svgroot = function () {\n",
" var element = this;\n",
" while (element.node.nodeName != \"svg\" && element.parent() != null) {\n",
" element = element.parent();\n",
" }\n",
" return element;\n",
" };\n",
"\n",
" Element.prototype.plotbounds = function () {\n",
" var root = this.plotroot()\n",
" var bbox = root.select(\".guide.background\").node.getBBox();\n",
" return {\n",
" x0: bbox.x,\n",
" x1: bbox.x + bbox.width,\n",
" y0: bbox.y,\n",
" y1: bbox.y + bbox.height\n",
" };\n",
" };\n",
"\n",
" Element.prototype.plotcenter = function () {\n",
" var root = this.plotroot()\n",
" var bbox = root.select(\".guide.background\").node.getBBox();\n",
" return {\n",
" x: bbox.x + bbox.width / 2,\n",
" y: bbox.y + bbox.height / 2\n",
" };\n",
" };\n",
"\n",
" // Emulate IE style mouseenter/mouseleave events, since Microsoft always\n",
" // does everything right.\n",
" // See: http://www.dynamic-tools.net/toolbox/isMouseLeaveOrEnter/\n",
" var events = [\"mouseenter\", \"mouseleave\"];\n",
"\n",
" for (i in events) {\n",
" (function (event_name) {\n",
" var event_name = events[i];\n",
" Element.prototype[event_name] = function (fn, scope) {\n",
" if (Snap.is(fn, \"function\")) {\n",
" var fn2 = function (event) {\n",
" if (event.type != \"mouseover\" && event.type != \"mouseout\") {\n",
" return;\n",
" }\n",
"\n",
" var reltg = event.relatedTarget ? event.relatedTarget :\n",
" event.type == \"mouseout\" ? event.toElement : event.fromElement;\n",
" while (reltg && reltg != this.node) reltg = reltg.parentNode;\n",
"\n",
" if (reltg != this.node) {\n",
" return fn.apply(this, event);\n",
" }\n",
" };\n",
"\n",
" if (event_name == \"mouseenter\") {\n",
" this.mouseover(fn2, scope);\n",
" } else {\n",
" this.mouseout(fn2, scope);\n",
" }\n",
" }\n",
" return this;\n",
" };\n",
" })(events[i]);\n",
" }\n",
"\n",
"\n",
" Element.prototype.mousewheel = function (fn, scope) {\n",
" if (Snap.is(fn, \"function\")) {\n",
" var el = this;\n",
" var fn2 = function (event) {\n",
" fn.apply(el, [event]);\n",
" };\n",
" }\n",
"\n",
" this.node.addEventListener(\n",
" /Firefox/i.test(navigator.userAgent) ? \"DOMMouseScroll\" : \"mousewheel\",\n",
" fn2);\n",
"\n",
" return this;\n",
" };\n",
"\n",
"\n",
" // Snap's attr function can be too slow for things like panning/zooming.\n",
" // This is a function to directly update element attributes without going\n",
" // through eve.\n",
" Element.prototype.attribute = function(key, val) {\n",
" if (val === undefined) {\n",
" return this.node.getAttribute(key);\n",
" } else {\n",
" this.node.setAttribute(key, val);\n",
" return this;\n",
" }\n",
" };\n",
"});\n",
"\n",
"\n",
"// When the plot is moused over, emphasize the grid lines.\n",
"Gadfly.plot_mouseover = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
"\n",
" var xgridlines = root.select(\".xgridlines\"),\n",
" ygridlines = root.select(\".ygridlines\");\n",
"\n",
" xgridlines.data(\"unfocused_strokedash\",\n",
" xgridlines.attribute(\"stroke-dasharray\").replace(/(\\d)(,|$)/g, \"$1mm$2\"));\n",
" ygridlines.data(\"unfocused_strokedash\",\n",
" ygridlines.attribute(\"stroke-dasharray\").replace(/(\\d)(,|$)/g, \"$1mm$2\"));\n",
"\n",
" // emphasize grid lines\n",
" var destcolor = root.data(\"focused_xgrid_color\");\n",
" xgridlines.attribute(\"stroke-dasharray\", \"none\")\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" destcolor = root.data(\"focused_ygrid_color\");\n",
" ygridlines.attribute(\"stroke-dasharray\", \"none\")\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" // reveal zoom slider\n",
" root.select(\".zoomslider\")\n",
" .animate({opacity: 1.0}, 250);\n",
"};\n",
"\n",
"\n",
"// Unemphasize grid lines on mouse out.\n",
"Gadfly.plot_mouseout = function(event) {\n",
" var root = this.plotroot();\n",
" var xgridlines = root.select(\".xgridlines\"),\n",
" ygridlines = root.select(\".ygridlines\");\n",
"\n",
" var destcolor = root.data(\"unfocused_xgrid_color\");\n",
"\n",
" xgridlines.attribute(\"stroke-dasharray\", xgridlines.data(\"unfocused_strokedash\"))\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" destcolor = root.data(\"unfocused_ygrid_color\");\n",
" ygridlines.attribute(\"stroke-dasharray\", ygridlines.data(\"unfocused_strokedash\"))\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" // hide zoom slider\n",
" root.select(\".zoomslider\")\n",
" .animate({opacity: 0.0}, 250);\n",
"};\n",
"\n",
"\n",
"var set_geometry_transform = function(root, tx, ty, scale) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
"\n",
" var old_scale = root.data(\"scale\");\n",
"\n",
" var xscale = xscalable ? scale : 1.0,\n",
" yscale = yscalable ? scale : 1.0;\n",
"\n",
" tx = xscalable ? tx : 0.0;\n",
" ty = yscalable ? ty : 0.0;\n",
"\n",
" var t = new Snap.Matrix().translate(tx, ty).scale(xscale, yscale);\n",
"\n",
" root.selectAll(\".geometry, image\")\n",
" .forEach(function (element, i) {\n",
" element.transform(t);\n",
" });\n",
"\n",
" bounds = root.plotbounds();\n",
"\n",
" if (yscalable) {\n",
" var xfixed_t = new Snap.Matrix().translate(0, ty).scale(1.0, yscale);\n",
" root.selectAll(\".xfixed\")\n",
" .forEach(function (element, i) {\n",
" element.transform(xfixed_t);\n",
" });\n",
"\n",
" root.select(\".ylabels\")\n",
" .transform(xfixed_t)\n",
" .selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var cx = element.asPX(\"x\"),\n",
" cy = element.asPX(\"y\");\n",
" var st = element.data(\"static_transform\");\n",
" unscale_t = new Snap.Matrix();\n",
" unscale_t.scale(1, 1/scale, cx, cy).add(st);\n",
" element.transform(unscale_t);\n",
"\n",
" var y = cy * scale + ty;\n",
" element.attr(\"visibility\",\n",
" bounds.y0 <= y && y <= bounds.y1 ? \"visible\" : \"hidden\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" if (xscalable) {\n",
" var yfixed_t = new Snap.Matrix().translate(tx, 0).scale(xscale, 1.0);\n",
" var xtrans = new Snap.Matrix().translate(tx, 0);\n",
" root.selectAll(\".yfixed\")\n",
" .forEach(function (element, i) {\n",
" element.transform(yfixed_t);\n",
" });\n",
"\n",
" root.select(\".xlabels\")\n",
" .transform(yfixed_t)\n",
" .selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var cx = element.asPX(\"x\"),\n",
" cy = element.asPX(\"y\");\n",
" var st = element.data(\"static_transform\");\n",
" unscale_t = new Snap.Matrix();\n",
" unscale_t.scale(1/scale, 1, cx, cy).add(st);\n",
"\n",
" element.transform(unscale_t);\n",
"\n",
" var x = cx * scale + tx;\n",
" element.attr(\"visibility\",\n",
" bounds.x0 <= x && x <= bounds.x1 ? \"visible\" : \"hidden\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" // we must unscale anything that is scale invariance: widths, raiduses, etc.\n",
" var size_attribs = [\"font-size\"];\n",
" var unscaled_selection = \".geometry, .geometry *\";\n",
" if (xscalable) {\n",
" size_attribs.push(\"rx\");\n",
" unscaled_selection += \", .xgridlines\";\n",
" }\n",
" if (yscalable) {\n",
" size_attribs.push(\"ry\");\n",
" unscaled_selection += \", .ygridlines\";\n",
" }\n",
"\n",
" root.selectAll(unscaled_selection)\n",
" .forEach(function (element, i) {\n",
" // circle need special help\n",
" if (element.node.nodeName == \"circle\") {\n",
" var cx = element.attribute(\"cx\"),\n",
" cy = element.attribute(\"cy\");\n",
" unscale_t = new Snap.Matrix().scale(1/xscale, 1/yscale,\n",
" cx, cy);\n",
" element.transform(unscale_t);\n",
" return;\n",
" }\n",
"\n",
" for (i in size_attribs) {\n",
" var key = size_attribs[i];\n",
" var val = parseFloat(element.attribute(key));\n",
" if (val !== undefined && val != 0 && !isNaN(val)) {\n",
" element.attribute(key, val * old_scale / scale);\n",
" }\n",
" }\n",
" });\n",
"};\n",
"\n",
"\n",
"// Find the most appropriate tick scale and update label visibility.\n",
"var update_tickscale = function(root, scale, axis) {\n",
" if (!root.hasClass(axis + \"scalable\")) return;\n",
"\n",
" var tickscales = root.data(axis + \"tickscales\");\n",
" var best_tickscale = 1.0;\n",
" var best_tickscale_dist = Infinity;\n",
" for (tickscale in tickscales) {\n",
" var dist = Math.abs(Math.log(tickscale) - Math.log(scale));\n",
" if (dist < best_tickscale_dist) {\n",
" best_tickscale_dist = dist;\n",
" best_tickscale = tickscale;\n",
" }\n",
" }\n",
"\n",
" if (best_tickscale != root.data(axis + \"tickscale\")) {\n",
" root.data(axis + \"tickscale\", best_tickscale);\n",
" var mark_inscale_gridlines = function (element, i) {\n",
" var inscale = element.attr(\"gadfly:scale\") == best_tickscale;\n",
" element.attribute(\"gadfly:inscale\", inscale);\n",
" element.attr(\"visibility\", inscale ? \"visible\" : \"hidden\");\n",
" };\n",
"\n",
" var mark_inscale_labels = function (element, i) {\n",
" var inscale = element.attr(\"gadfly:scale\") == best_tickscale;\n",
" element.attribute(\"gadfly:inscale\", inscale);\n",
" element.attr(\"visibility\", inscale ? \"visible\" : \"hidden\");\n",
" };\n",
"\n",
" root.select(\".\" + axis + \"gridlines\").selectAll(\"path\").forEach(mark_inscale_gridlines);\n",
" root.select(\".\" + axis + \"labels\").selectAll(\"text\").forEach(mark_inscale_labels);\n",
" }\n",
"};\n",
"\n",
"\n",
"var set_plot_pan_zoom = function(root, tx, ty, scale) {\n",
" var old_scale = root.data(\"scale\");\n",
" var bounds = root.plotbounds();\n",
"\n",
" var width = bounds.x1 - bounds.x0,\n",
" height = bounds.y1 - bounds.y0;\n",
"\n",
" // compute the viewport derived from tx, ty, and scale\n",
" var x_min = -width * scale - (scale * width - width),\n",
" x_max = width * scale,\n",
" y_min = -height * scale - (scale * height - height),\n",
" y_max = height * scale;\n",
"\n",
" var x0 = bounds.x0 - scale * bounds.x0,\n",
" y0 = bounds.y0 - scale * bounds.y0;\n",
"\n",
" var tx = Math.max(Math.min(tx - x0, x_max), x_min),\n",
" ty = Math.max(Math.min(ty - y0, y_max), y_min);\n",
"\n",
" tx += x0;\n",
" ty += y0;\n",
"\n",
" // when the scale change, we may need to alter which set of\n",
" // ticks is being displayed\n",
" if (scale != old_scale) {\n",
" update_tickscale(root, scale, \"x\");\n",
" update_tickscale(root, scale, \"y\");\n",
" }\n",
"\n",
" set_geometry_transform(root, tx, ty, scale);\n",
"\n",
" root.data(\"scale\", scale);\n",
" root.data(\"tx\", tx);\n",
" root.data(\"ty\", ty);\n",
"};\n",
"\n",
"\n",
"var scale_centered_translation = function(root, scale) {\n",
" var bounds = root.plotbounds();\n",
"\n",
" var width = bounds.x1 - bounds.x0,\n",
" height = bounds.y1 - bounds.y0;\n",
"\n",
" var tx0 = root.data(\"tx\"),\n",
" ty0 = root.data(\"ty\");\n",
"\n",
" var scale0 = root.data(\"scale\");\n",
"\n",
" // how off from center the current view is\n",
" var xoff = tx0 - (bounds.x0 * (1 - scale0) + (width * (1 - scale0)) / 2),\n",
" yoff = ty0 - (bounds.y0 * (1 - scale0) + (height * (1 - scale0)) / 2);\n",
"\n",
" // rescale offsets\n",
" xoff = xoff * scale / scale0;\n",
" yoff = yoff * scale / scale0;\n",
"\n",
" // adjust for the panel position being scaled\n",
" var x_edge_adjust = bounds.x0 * (1 - scale),\n",
" y_edge_adjust = bounds.y0 * (1 - scale);\n",
"\n",
" return {\n",
" x: xoff + x_edge_adjust + (width - width * scale) / 2,\n",
" y: yoff + y_edge_adjust + (height - height * scale) / 2\n",
" };\n",
"};\n",
"\n",
"\n",
"// Initialize data for panning zooming if it isn't already.\n",
"var init_pan_zoom = function(root) {\n",
" if (root.data(\"zoompan-ready\")) {\n",
" return;\n",
" }\n",
"\n",
" // The non-scaling-stroke trick. Rather than try to correct for the\n",
" // stroke-width when zooming, we force it to a fixed value.\n",
" var px_per_mm = root.node.getCTM().a;\n",
"\n",
" // Drag events report deltas in pixels, which we'd like to convert to\n",
" // millimeters.\n",
" root.data(\"px_per_mm\", px_per_mm);\n",
"\n",
" root.selectAll(\"path\")\n",
" .forEach(function (element, i) {\n",
" sw = element.asPX(\"stroke-width\") * px_per_mm;\n",
" if (sw > 0) {\n",
" element.attribute(\"stroke-width\", sw);\n",
" element.attribute(\"vector-effect\", \"non-scaling-stroke\");\n",
" }\n",
" });\n",
"\n",
" // Store ticks labels original tranformation\n",
" root.selectAll(\".xlabels > text, .ylabels > text\")\n",
" .forEach(function (element, i) {\n",
" var lm = element.transform().localMatrix;\n",
" element.data(\"static_transform\",\n",
" new Snap.Matrix(lm.a, lm.b, lm.c, lm.d, lm.e, lm.f));\n",
" });\n",
"\n",
" var xgridlines = root.select(\".xgridlines\");\n",
" var ygridlines = root.select(\".ygridlines\");\n",
" var xlabels = root.select(\".xlabels\");\n",
" var ylabels = root.select(\".ylabels\");\n",
"\n",
" if (root.data(\"tx\") === undefined) root.data(\"tx\", 0);\n",
" if (root.data(\"ty\") === undefined) root.data(\"ty\", 0);\n",
" if (root.data(\"scale\") === undefined) root.data(\"scale\", 1.0);\n",
" if (root.data(\"xtickscales\") === undefined) {\n",
"\n",
" // index all the tick scales that are listed\n",
" var xtickscales = {};\n",
" var ytickscales = {};\n",
" var add_x_tick_scales = function (element, i) {\n",
" xtickscales[element.attribute(\"gadfly:scale\")] = true;\n",
" };\n",
" var add_y_tick_scales = function (element, i) {\n",
" ytickscales[element.attribute(\"gadfly:scale\")] = true;\n",
" };\n",
"\n",
" if (xgridlines) xgridlines.selectAll(\"path\").forEach(add_x_tick_scales);\n",
" if (ygridlines) ygridlines.selectAll(\"path\").forEach(add_y_tick_scales);\n",
" if (xlabels) xlabels.selectAll(\"text\").forEach(add_x_tick_scales);\n",
" if (ylabels) ylabels.selectAll(\"text\").forEach(add_y_tick_scales);\n",
"\n",
" root.data(\"xtickscales\", xtickscales);\n",
" root.data(\"ytickscales\", ytickscales);\n",
" root.data(\"xtickscale\", 1.0);\n",
" }\n",
"\n",
" var min_scale = 1.0, max_scale = 1.0;\n",
" for (scale in xtickscales) {\n",
" min_scale = Math.min(min_scale, scale);\n",
" max_scale = Math.max(max_scale, scale);\n",
" }\n",
" for (scale in ytickscales) {\n",
" min_scale = Math.min(min_scale, scale);\n",
" max_scale = Math.max(max_scale, scale);\n",
" }\n",
" root.data(\"min_scale\", min_scale);\n",
" root.data(\"max_scale\", max_scale);\n",
"\n",
" // store the original positions of labels\n",
" if (xlabels) {\n",
" xlabels.selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" element.data(\"x\", element.asPX(\"x\"));\n",
" });\n",
" }\n",
"\n",
" if (ylabels) {\n",
" ylabels.selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" element.data(\"y\", element.asPX(\"y\"));\n",
" });\n",
" }\n",
"\n",
" // mark grid lines and ticks as in or out of scale.\n",
" var mark_inscale = function (element, i) {\n",
" element.attribute(\"gadfly:inscale\", element.attribute(\"gadfly:scale\") == 1.0);\n",
" };\n",
"\n",
" if (xgridlines) xgridlines.selectAll(\"path\").forEach(mark_inscale);\n",
" if (ygridlines) ygridlines.selectAll(\"path\").forEach(mark_inscale);\n",
" if (xlabels) xlabels.selectAll(\"text\").forEach(mark_inscale);\n",
" if (ylabels) ylabels.selectAll(\"text\").forEach(mark_inscale);\n",
"\n",
" // figure out the upper ond lower bounds on panning using the maximum\n",
" // and minum grid lines\n",
" var bounds = root.plotbounds();\n",
" var pan_bounds = {\n",
" x0: 0.0,\n",
" y0: 0.0,\n",
" x1: 0.0,\n",
" y1: 0.0\n",
" };\n",
"\n",
" if (xgridlines) {\n",
" xgridlines\n",
" .selectAll(\"path\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var bbox = element.node.getBBox();\n",
" if (bounds.x1 - bbox.x < pan_bounds.x0) {\n",
" pan_bounds.x0 = bounds.x1 - bbox.x;\n",
" }\n",
" if (bounds.x0 - bbox.x > pan_bounds.x1) {\n",
" pan_bounds.x1 = bounds.x0 - bbox.x;\n",
" }\n",
" element.attr(\"visibility\", \"visible\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" if (ygridlines) {\n",
" ygridlines\n",
" .selectAll(\"path\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var bbox = element.node.getBBox();\n",
" if (bounds.y1 - bbox.y < pan_bounds.y0) {\n",
" pan_bounds.y0 = bounds.y1 - bbox.y;\n",
" }\n",
" if (bounds.y0 - bbox.y > pan_bounds.y1) {\n",
" pan_bounds.y1 = bounds.y0 - bbox.y;\n",
" }\n",
" element.attr(\"visibility\", \"visible\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" // nudge these values a little\n",
" pan_bounds.x0 -= 5;\n",
" pan_bounds.x1 += 5;\n",
" pan_bounds.y0 -= 5;\n",
" pan_bounds.y1 += 5;\n",
" root.data(\"pan_bounds\", pan_bounds);\n",
"\n",
" root.data(\"zoompan-ready\", true)\n",
"};\n",
"\n",
"\n",
"// Panning\n",
"Gadfly.guide_background_drag_onmove = function(dx, dy, x, y, event) {\n",
" var root = this.plotroot();\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" dx /= px_per_mm;\n",
" dy /= px_per_mm;\n",
"\n",
" var tx0 = root.data(\"tx\"),\n",
" ty0 = root.data(\"ty\");\n",
"\n",
" var dx0 = root.data(\"dx\"),\n",
" dy0 = root.data(\"dy\");\n",
"\n",
" root.data(\"dx\", dx);\n",
" root.data(\"dy\", dy);\n",
"\n",
" dx = dx - dx0;\n",
" dy = dy - dy0;\n",
"\n",
" var tx = tx0 + dx,\n",
" ty = ty0 + dy;\n",
"\n",
" set_plot_pan_zoom(root, tx, ty, root.data(\"scale\"));\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onstart = function(x, y, event) {\n",
" var root = this.plotroot();\n",
" root.data(\"dx\", 0);\n",
" root.data(\"dy\", 0);\n",
" init_pan_zoom(root);\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onend = function(event) {\n",
" var root = this.plotroot();\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_scroll = function(event) {\n",
" if (event.shiftKey) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
" var new_scale = root.data(\"scale\") * Math.pow(2, 0.002 * event.wheelDelta);\n",
" new_scale = Math.max(\n",
" root.data(\"min_scale\"),\n",
" Math.min(root.data(\"max_scale\"), new_scale))\n",
" update_plot_scale(root, new_scale);\n",
" event.stopPropagation();\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_button_mouseover = function(event) {\n",
" this.select(\".button_logo\")\n",
" .animate({fill: this.data(\"mouseover_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_button_mouseout = function(event) {\n",
" this.select(\".button_logo\")\n",
" .animate({fill: this.data(\"mouseout_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_zoomout_click = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
" var min_scale = root.data(\"min_scale\"),\n",
" scale = root.data(\"scale\");\n",
" Snap.animate(\n",
" scale,\n",
" Math.max(min_scale, scale / 1.5),\n",
" function (new_scale) {\n",
" update_plot_scale(root, new_scale);\n",
" },\n",
" 200);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_zoomin_click = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
" var max_scale = root.data(\"max_scale\"),\n",
" scale = root.data(\"scale\");\n",
"\n",
" Snap.animate(\n",
" scale,\n",
" Math.min(max_scale, scale * 1.5),\n",
" function (new_scale) {\n",
" update_plot_scale(root, new_scale);\n",
" },\n",
" 200);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_track_click = function(event) {\n",
" // TODO\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_mousedown = function(event) {\n",
" this.animate({fill: this.data(\"mouseover_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_mouseup = function(event) {\n",
" this.animate({fill: this.data(\"mouseout_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"// compute the position in [0, 1] of the zoom slider thumb from the current scale\n",
"var slider_position_from_scale = function(scale, min_scale, max_scale) {\n",
" if (scale >= 1.0) {\n",
" return 0.5 + 0.5 * (Math.log(scale) / Math.log(max_scale));\n",
" }\n",
" else {\n",
" return 0.5 * (Math.log(scale) - Math.log(min_scale)) / (0 - Math.log(min_scale));\n",
" }\n",
"}\n",
"\n",
"\n",
"var update_plot_scale = function(root, new_scale) {\n",
" var trans = scale_centered_translation(root, new_scale);\n",
" set_plot_pan_zoom(root, trans.x, trans.y, new_scale);\n",
"\n",
" root.selectAll(\".zoomslider_thumb\")\n",
" .forEach(function (element, i) {\n",
" var min_pos = element.data(\"min_pos\"),\n",
" max_pos = element.data(\"max_pos\"),\n",
" min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\");\n",
" var xmid = (min_pos + max_pos) / 2;\n",
" var xpos = slider_position_from_scale(new_scale, min_scale, max_scale);\n",
" element.transform(new Snap.Matrix().translate(\n",
" Math.max(min_pos, Math.min(\n",
" max_pos, min_pos + (max_pos - min_pos) * xpos)) - xmid, 0));\n",
" });\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragmove = function(dx, dy, x, y) {\n",
" var root = this.plotroot();\n",
" var min_pos = this.data(\"min_pos\"),\n",
" max_pos = this.data(\"max_pos\"),\n",
" min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\"),\n",
" old_scale = root.data(\"old_scale\");\n",
"\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" dx /= px_per_mm;\n",
" dy /= px_per_mm;\n",
"\n",
" var xmid = (min_pos + max_pos) / 2;\n",
" var xpos = slider_position_from_scale(old_scale, min_scale, max_scale) +\n",
" dx / (max_pos - min_pos);\n",
"\n",
" // compute the new scale\n",
" var new_scale;\n",
" if (xpos >= 0.5) {\n",
" new_scale = Math.exp(2.0 * (xpos - 0.5) * Math.log(max_scale));\n",
" }\n",
" else {\n",
" new_scale = Math.exp(2.0 * xpos * (0 - Math.log(min_scale)) +\n",
" Math.log(min_scale));\n",
" }\n",
" new_scale = Math.min(max_scale, Math.max(min_scale, new_scale));\n",
"\n",
" update_plot_scale(root, new_scale);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragstart = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
"\n",
" // keep track of what the scale was when we started dragging\n",
" root.data(\"old_scale\", root.data(\"scale\"));\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragend = function(event) {\n",
"};\n",
"\n",
"\n",
"var toggle_color_class = function(root, color_class, ison) {\n",
" var guides = root.selectAll(\".guide.\" + color_class + \",.guide .\" + color_class);\n",
" var geoms = root.selectAll(\".geometry.\" + color_class + \",.geometry .\" + color_class);\n",
" if (ison) {\n",
" guides.animate({opacity: 0.5}, 250);\n",
" geoms.animate({opacity: 0.0}, 250);\n",
" } else {\n",
" guides.animate({opacity: 1.0}, 250);\n",
" geoms.animate({opacity: 1.0}, 250);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.colorkey_swatch_click = function(event) {\n",
" var root = this.plotroot();\n",
" var color_class = this.data(\"color_class\");\n",
"\n",
" if (event.shiftKey) {\n",
" root.selectAll(\".colorkey text\")\n",
" .forEach(function (element) {\n",
" var other_color_class = element.data(\"color_class\");\n",
" if (other_color_class != color_class) {\n",
" toggle_color_class(root, other_color_class,\n",
" element.attr(\"opacity\") == 1.0);\n",
" }\n",
" });\n",
" } else {\n",
" toggle_color_class(root, color_class, this.attr(\"opacity\") == 1.0);\n",
" }\n",
"};\n",
"\n",
"\n",
"return Gadfly;\n",
"\n",
"}));\n",
"\n",
"\n",
"//@ sourceURL=gadfly.js\n",
"\n",
"\n",
"(function (glob, factory) {\n",
" // AMD support\n",
" if (typeof define === \"function\" && define.amd) {\n",
" // Define as an anonymous module\n",
" define(\"Gadfly\", [\"Snap.svg\"], function (Snap) {\n",
" return factory(Snap);\n",
" });\n",
" } else {\n",
" // Browser globals (glob is window)\n",
" // Snap adds itself to window\n",
" glob.Gadfly = factory(glob.Snap);\n",
" }\n",
"}(this, function (Snap) {\n",
"\n",
"var Gadfly = {};\n",
"\n",
"// Get an x/y coordinate value in pixels\n",
"var xPX = function(fig, x) {\n",
" var client_box = fig.node.getBoundingClientRect();\n",
" return x * fig.node.viewBox.baseVal.width / client_box.width;\n",
"};\n",
"\n",
"var yPX = function(fig, y) {\n",
" var client_box = fig.node.getBoundingClientRect();\n",
" return y * fig.node.viewBox.baseVal.height / client_box.height;\n",
"};\n",
"\n",
"\n",
"Snap.plugin(function (Snap, Element, Paper, global) {\n",
" // Traverse upwards from a snap element to find and return the first\n",
" // note with the \"plotroot\" class.\n",
" Element.prototype.plotroot = function () {\n",
" var element = this;\n",
" while (!element.hasClass(\"plotroot\") && element.parent() != null) {\n",
" element = element.parent();\n",
" }\n",
" return element;\n",
" };\n",
"\n",
" Element.prototype.svgroot = function () {\n",
" var element = this;\n",
" while (element.node.nodeName != \"svg\" && element.parent() != null) {\n",
" element = element.parent();\n",
" }\n",
" return element;\n",
" };\n",
"\n",
" Element.prototype.plotbounds = function () {\n",
" var root = this.plotroot()\n",
" var bbox = root.select(\".guide.background\").node.getBBox();\n",
" return {\n",
" x0: bbox.x,\n",
" x1: bbox.x + bbox.width,\n",
" y0: bbox.y,\n",
" y1: bbox.y + bbox.height\n",
" };\n",
" };\n",
"\n",
" Element.prototype.plotcenter = function () {\n",
" var root = this.plotroot()\n",
" var bbox = root.select(\".guide.background\").node.getBBox();\n",
" return {\n",
" x: bbox.x + bbox.width / 2,\n",
" y: bbox.y + bbox.height / 2\n",
" };\n",
" };\n",
"\n",
" // Emulate IE style mouseenter/mouseleave events, since Microsoft always\n",
" // does everything right.\n",
" // See: http://www.dynamic-tools.net/toolbox/isMouseLeaveOrEnter/\n",
" var events = [\"mouseenter\", \"mouseleave\"];\n",
"\n",
" for (i in events) {\n",
" (function (event_name) {\n",
" var event_name = events[i];\n",
" Element.prototype[event_name] = function (fn, scope) {\n",
" if (Snap.is(fn, \"function\")) {\n",
" var fn2 = function (event) {\n",
" if (event.type != \"mouseover\" && event.type != \"mouseout\") {\n",
" return;\n",
" }\n",
"\n",
" var reltg = event.relatedTarget ? event.relatedTarget :\n",
" event.type == \"mouseout\" ? event.toElement : event.fromElement;\n",
" while (reltg && reltg != this.node) reltg = reltg.parentNode;\n",
"\n",
" if (reltg != this.node) {\n",
" return fn.apply(this, event);\n",
" }\n",
" };\n",
"\n",
" if (event_name == \"mouseenter\") {\n",
" this.mouseover(fn2, scope);\n",
" } else {\n",
" this.mouseout(fn2, scope);\n",
" }\n",
" }\n",
" return this;\n",
" };\n",
" })(events[i]);\n",
" }\n",
"\n",
"\n",
" Element.prototype.mousewheel = function (fn, scope) {\n",
" if (Snap.is(fn, \"function\")) {\n",
" var el = this;\n",
" var fn2 = function (event) {\n",
" fn.apply(el, [event]);\n",
" };\n",
" }\n",
"\n",
" this.node.addEventListener(\n",
" /Firefox/i.test(navigator.userAgent) ? \"DOMMouseScroll\" : \"mousewheel\",\n",
" fn2);\n",
"\n",
" return this;\n",
" };\n",
"\n",
"\n",
" // Snap's attr function can be too slow for things like panning/zooming.\n",
" // This is a function to directly update element attributes without going\n",
" // through eve.\n",
" Element.prototype.attribute = function(key, val) {\n",
" if (val === undefined) {\n",
" return this.node.getAttribute(key);\n",
" } else {\n",
" this.node.setAttribute(key, val);\n",
" return this;\n",
" }\n",
" };\n",
"});\n",
"\n",
"\n",
"// When the plot is moused over, emphasize the grid lines.\n",
"Gadfly.plot_mouseover = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
"\n",
" var xgridlines = root.select(\".xgridlines\"),\n",
" ygridlines = root.select(\".ygridlines\");\n",
"\n",
" xgridlines.data(\"unfocused_strokedash\",\n",
" xgridlines.attribute(\"stroke-dasharray\").replace(/(\\d)(,|$)/g, \"$1mm$2\"));\n",
" ygridlines.data(\"unfocused_strokedash\",\n",
" ygridlines.attribute(\"stroke-dasharray\").replace(/(\\d)(,|$)/g, \"$1mm$2\"));\n",
"\n",
" // emphasize grid lines\n",
" var destcolor = root.data(\"focused_xgrid_color\");\n",
" xgridlines.attribute(\"stroke-dasharray\", \"none\")\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" destcolor = root.data(\"focused_ygrid_color\");\n",
" ygridlines.attribute(\"stroke-dasharray\", \"none\")\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" // reveal zoom slider\n",
" root.select(\".zoomslider\")\n",
" .animate({opacity: 1.0}, 250);\n",
"};\n",
"\n",
"\n",
"// Unemphasize grid lines on mouse out.\n",
"Gadfly.plot_mouseout = function(event) {\n",
" var root = this.plotroot();\n",
" var xgridlines = root.select(\".xgridlines\"),\n",
" ygridlines = root.select(\".ygridlines\");\n",
"\n",
" var destcolor = root.data(\"unfocused_xgrid_color\");\n",
"\n",
" xgridlines.attribute(\"stroke-dasharray\", xgridlines.data(\"unfocused_strokedash\"))\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" destcolor = root.data(\"unfocused_ygrid_color\");\n",
" ygridlines.attribute(\"stroke-dasharray\", ygridlines.data(\"unfocused_strokedash\"))\n",
" .selectAll(\"path\")\n",
" .animate({stroke: destcolor}, 250);\n",
"\n",
" // hide zoom slider\n",
" root.select(\".zoomslider\")\n",
" .animate({opacity: 0.0}, 250);\n",
"};\n",
"\n",
"\n",
"var set_geometry_transform = function(root, tx, ty, scale) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
"\n",
" var old_scale = root.data(\"scale\");\n",
"\n",
" var xscale = xscalable ? scale : 1.0,\n",
" yscale = yscalable ? scale : 1.0;\n",
"\n",
" tx = xscalable ? tx : 0.0;\n",
" ty = yscalable ? ty : 0.0;\n",
"\n",
" var t = new Snap.Matrix().translate(tx, ty).scale(xscale, yscale);\n",
"\n",
" root.selectAll(\".geometry, image\")\n",
" .forEach(function (element, i) {\n",
" element.transform(t);\n",
" });\n",
"\n",
" bounds = root.plotbounds();\n",
"\n",
" if (yscalable) {\n",
" var xfixed_t = new Snap.Matrix().translate(0, ty).scale(1.0, yscale);\n",
" root.selectAll(\".xfixed\")\n",
" .forEach(function (element, i) {\n",
" element.transform(xfixed_t);\n",
" });\n",
"\n",
" root.select(\".ylabels\")\n",
" .transform(xfixed_t)\n",
" .selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var cx = element.asPX(\"x\"),\n",
" cy = element.asPX(\"y\");\n",
" var st = element.data(\"static_transform\");\n",
" unscale_t = new Snap.Matrix();\n",
" unscale_t.scale(1, 1/scale, cx, cy).add(st);\n",
" element.transform(unscale_t);\n",
"\n",
" var y = cy * scale + ty;\n",
" element.attr(\"visibility\",\n",
" bounds.y0 <= y && y <= bounds.y1 ? \"visible\" : \"hidden\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" if (xscalable) {\n",
" var yfixed_t = new Snap.Matrix().translate(tx, 0).scale(xscale, 1.0);\n",
" var xtrans = new Snap.Matrix().translate(tx, 0);\n",
" root.selectAll(\".yfixed\")\n",
" .forEach(function (element, i) {\n",
" element.transform(yfixed_t);\n",
" });\n",
"\n",
" root.select(\".xlabels\")\n",
" .transform(yfixed_t)\n",
" .selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var cx = element.asPX(\"x\"),\n",
" cy = element.asPX(\"y\");\n",
" var st = element.data(\"static_transform\");\n",
" unscale_t = new Snap.Matrix();\n",
" unscale_t.scale(1/scale, 1, cx, cy).add(st);\n",
"\n",
" element.transform(unscale_t);\n",
"\n",
" var x = cx * scale + tx;\n",
" element.attr(\"visibility\",\n",
" bounds.x0 <= x && x <= bounds.x1 ? \"visible\" : \"hidden\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" // we must unscale anything that is scale invariance: widths, raiduses, etc.\n",
" var size_attribs = [\"font-size\"];\n",
" var unscaled_selection = \".geometry, .geometry *\";\n",
" if (xscalable) {\n",
" size_attribs.push(\"rx\");\n",
" unscaled_selection += \", .xgridlines\";\n",
" }\n",
" if (yscalable) {\n",
" size_attribs.push(\"ry\");\n",
" unscaled_selection += \", .ygridlines\";\n",
" }\n",
"\n",
" root.selectAll(unscaled_selection)\n",
" .forEach(function (element, i) {\n",
" // circle need special help\n",
" if (element.node.nodeName == \"circle\") {\n",
" var cx = element.attribute(\"cx\"),\n",
" cy = element.attribute(\"cy\");\n",
" unscale_t = new Snap.Matrix().scale(1/xscale, 1/yscale,\n",
" cx, cy);\n",
" element.transform(unscale_t);\n",
" return;\n",
" }\n",
"\n",
" for (i in size_attribs) {\n",
" var key = size_attribs[i];\n",
" var val = parseFloat(element.attribute(key));\n",
" if (val !== undefined && val != 0 && !isNaN(val)) {\n",
" element.attribute(key, val * old_scale / scale);\n",
" }\n",
" }\n",
" });\n",
"};\n",
"\n",
"\n",
"// Find the most appropriate tick scale and update label visibility.\n",
"var update_tickscale = function(root, scale, axis) {\n",
" if (!root.hasClass(axis + \"scalable\")) return;\n",
"\n",
" var tickscales = root.data(axis + \"tickscales\");\n",
" var best_tickscale = 1.0;\n",
" var best_tickscale_dist = Infinity;\n",
" for (tickscale in tickscales) {\n",
" var dist = Math.abs(Math.log(tickscale) - Math.log(scale));\n",
" if (dist < best_tickscale_dist) {\n",
" best_tickscale_dist = dist;\n",
" best_tickscale = tickscale;\n",
" }\n",
" }\n",
"\n",
" if (best_tickscale != root.data(axis + \"tickscale\")) {\n",
" root.data(axis + \"tickscale\", best_tickscale);\n",
" var mark_inscale_gridlines = function (element, i) {\n",
" var inscale = element.attr(\"gadfly:scale\") == best_tickscale;\n",
" element.attribute(\"gadfly:inscale\", inscale);\n",
" element.attr(\"visibility\", inscale ? \"visible\" : \"hidden\");\n",
" };\n",
"\n",
" var mark_inscale_labels = function (element, i) {\n",
" var inscale = element.attr(\"gadfly:scale\") == best_tickscale;\n",
" element.attribute(\"gadfly:inscale\", inscale);\n",
" element.attr(\"visibility\", inscale ? \"visible\" : \"hidden\");\n",
" };\n",
"\n",
" root.select(\".\" + axis + \"gridlines\").selectAll(\"path\").forEach(mark_inscale_gridlines);\n",
" root.select(\".\" + axis + \"labels\").selectAll(\"text\").forEach(mark_inscale_labels);\n",
" }\n",
"};\n",
"\n",
"\n",
"var set_plot_pan_zoom = function(root, tx, ty, scale) {\n",
" var old_scale = root.data(\"scale\");\n",
" var bounds = root.plotbounds();\n",
"\n",
" var width = bounds.x1 - bounds.x0,\n",
" height = bounds.y1 - bounds.y0;\n",
"\n",
" // compute the viewport derived from tx, ty, and scale\n",
" var x_min = -width * scale - (scale * width - width),\n",
" x_max = width * scale,\n",
" y_min = -height * scale - (scale * height - height),\n",
" y_max = height * scale;\n",
"\n",
" var x0 = bounds.x0 - scale * bounds.x0,\n",
" y0 = bounds.y0 - scale * bounds.y0;\n",
"\n",
" var tx = Math.max(Math.min(tx - x0, x_max), x_min),\n",
" ty = Math.max(Math.min(ty - y0, y_max), y_min);\n",
"\n",
" tx += x0;\n",
" ty += y0;\n",
"\n",
" // when the scale change, we may need to alter which set of\n",
" // ticks is being displayed\n",
" if (scale != old_scale) {\n",
" update_tickscale(root, scale, \"x\");\n",
" update_tickscale(root, scale, \"y\");\n",
" }\n",
"\n",
" set_geometry_transform(root, tx, ty, scale);\n",
"\n",
" root.data(\"scale\", scale);\n",
" root.data(\"tx\", tx);\n",
" root.data(\"ty\", ty);\n",
"};\n",
"\n",
"\n",
"var scale_centered_translation = function(root, scale) {\n",
" var bounds = root.plotbounds();\n",
"\n",
" var width = bounds.x1 - bounds.x0,\n",
" height = bounds.y1 - bounds.y0;\n",
"\n",
" var tx0 = root.data(\"tx\"),\n",
" ty0 = root.data(\"ty\");\n",
"\n",
" var scale0 = root.data(\"scale\");\n",
"\n",
" // how off from center the current view is\n",
" var xoff = tx0 - (bounds.x0 * (1 - scale0) + (width * (1 - scale0)) / 2),\n",
" yoff = ty0 - (bounds.y0 * (1 - scale0) + (height * (1 - scale0)) / 2);\n",
"\n",
" // rescale offsets\n",
" xoff = xoff * scale / scale0;\n",
" yoff = yoff * scale / scale0;\n",
"\n",
" // adjust for the panel position being scaled\n",
" var x_edge_adjust = bounds.x0 * (1 - scale),\n",
" y_edge_adjust = bounds.y0 * (1 - scale);\n",
"\n",
" return {\n",
" x: xoff + x_edge_adjust + (width - width * scale) / 2,\n",
" y: yoff + y_edge_adjust + (height - height * scale) / 2\n",
" };\n",
"};\n",
"\n",
"\n",
"// Initialize data for panning zooming if it isn't already.\n",
"var init_pan_zoom = function(root) {\n",
" if (root.data(\"zoompan-ready\")) {\n",
" return;\n",
" }\n",
"\n",
" // The non-scaling-stroke trick. Rather than try to correct for the\n",
" // stroke-width when zooming, we force it to a fixed value.\n",
" var px_per_mm = root.node.getCTM().a;\n",
"\n",
" // Drag events report deltas in pixels, which we'd like to convert to\n",
" // millimeters.\n",
" root.data(\"px_per_mm\", px_per_mm);\n",
"\n",
" root.selectAll(\"path\")\n",
" .forEach(function (element, i) {\n",
" sw = element.asPX(\"stroke-width\") * px_per_mm;\n",
" if (sw > 0) {\n",
" element.attribute(\"stroke-width\", sw);\n",
" element.attribute(\"vector-effect\", \"non-scaling-stroke\");\n",
" }\n",
" });\n",
"\n",
" // Store ticks labels original tranformation\n",
" root.selectAll(\".xlabels > text, .ylabels > text\")\n",
" .forEach(function (element, i) {\n",
" var lm = element.transform().localMatrix;\n",
" element.data(\"static_transform\",\n",
" new Snap.Matrix(lm.a, lm.b, lm.c, lm.d, lm.e, lm.f));\n",
" });\n",
"\n",
" var xgridlines = root.select(\".xgridlines\");\n",
" var ygridlines = root.select(\".ygridlines\");\n",
" var xlabels = root.select(\".xlabels\");\n",
" var ylabels = root.select(\".ylabels\");\n",
"\n",
" if (root.data(\"tx\") === undefined) root.data(\"tx\", 0);\n",
" if (root.data(\"ty\") === undefined) root.data(\"ty\", 0);\n",
" if (root.data(\"scale\") === undefined) root.data(\"scale\", 1.0);\n",
" if (root.data(\"xtickscales\") === undefined) {\n",
"\n",
" // index all the tick scales that are listed\n",
" var xtickscales = {};\n",
" var ytickscales = {};\n",
" var add_x_tick_scales = function (element, i) {\n",
" xtickscales[element.attribute(\"gadfly:scale\")] = true;\n",
" };\n",
" var add_y_tick_scales = function (element, i) {\n",
" ytickscales[element.attribute(\"gadfly:scale\")] = true;\n",
" };\n",
"\n",
" if (xgridlines) xgridlines.selectAll(\"path\").forEach(add_x_tick_scales);\n",
" if (ygridlines) ygridlines.selectAll(\"path\").forEach(add_y_tick_scales);\n",
" if (xlabels) xlabels.selectAll(\"text\").forEach(add_x_tick_scales);\n",
" if (ylabels) ylabels.selectAll(\"text\").forEach(add_y_tick_scales);\n",
"\n",
" root.data(\"xtickscales\", xtickscales);\n",
" root.data(\"ytickscales\", ytickscales);\n",
" root.data(\"xtickscale\", 1.0);\n",
" }\n",
"\n",
" var min_scale = 1.0, max_scale = 1.0;\n",
" for (scale in xtickscales) {\n",
" min_scale = Math.min(min_scale, scale);\n",
" max_scale = Math.max(max_scale, scale);\n",
" }\n",
" for (scale in ytickscales) {\n",
" min_scale = Math.min(min_scale, scale);\n",
" max_scale = Math.max(max_scale, scale);\n",
" }\n",
" root.data(\"min_scale\", min_scale);\n",
" root.data(\"max_scale\", max_scale);\n",
"\n",
" // store the original positions of labels\n",
" if (xlabels) {\n",
" xlabels.selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" element.data(\"x\", element.asPX(\"x\"));\n",
" });\n",
" }\n",
"\n",
" if (ylabels) {\n",
" ylabels.selectAll(\"text\")\n",
" .forEach(function (element, i) {\n",
" element.data(\"y\", element.asPX(\"y\"));\n",
" });\n",
" }\n",
"\n",
" // mark grid lines and ticks as in or out of scale.\n",
" var mark_inscale = function (element, i) {\n",
" element.attribute(\"gadfly:inscale\", element.attribute(\"gadfly:scale\") == 1.0);\n",
" };\n",
"\n",
" if (xgridlines) xgridlines.selectAll(\"path\").forEach(mark_inscale);\n",
" if (ygridlines) ygridlines.selectAll(\"path\").forEach(mark_inscale);\n",
" if (xlabels) xlabels.selectAll(\"text\").forEach(mark_inscale);\n",
" if (ylabels) ylabels.selectAll(\"text\").forEach(mark_inscale);\n",
"\n",
" // figure out the upper ond lower bounds on panning using the maximum\n",
" // and minum grid lines\n",
" var bounds = root.plotbounds();\n",
" var pan_bounds = {\n",
" x0: 0.0,\n",
" y0: 0.0,\n",
" x1: 0.0,\n",
" y1: 0.0\n",
" };\n",
"\n",
" if (xgridlines) {\n",
" xgridlines\n",
" .selectAll(\"path\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var bbox = element.node.getBBox();\n",
" if (bounds.x1 - bbox.x < pan_bounds.x0) {\n",
" pan_bounds.x0 = bounds.x1 - bbox.x;\n",
" }\n",
" if (bounds.x0 - bbox.x > pan_bounds.x1) {\n",
" pan_bounds.x1 = bounds.x0 - bbox.x;\n",
" }\n",
" element.attr(\"visibility\", \"visible\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" if (ygridlines) {\n",
" ygridlines\n",
" .selectAll(\"path\")\n",
" .forEach(function (element, i) {\n",
" if (element.attribute(\"gadfly:inscale\") == \"true\") {\n",
" var bbox = element.node.getBBox();\n",
" if (bounds.y1 - bbox.y < pan_bounds.y0) {\n",
" pan_bounds.y0 = bounds.y1 - bbox.y;\n",
" }\n",
" if (bounds.y0 - bbox.y > pan_bounds.y1) {\n",
" pan_bounds.y1 = bounds.y0 - bbox.y;\n",
" }\n",
" element.attr(\"visibility\", \"visible\");\n",
" }\n",
" });\n",
" }\n",
"\n",
" // nudge these values a little\n",
" pan_bounds.x0 -= 5;\n",
" pan_bounds.x1 += 5;\n",
" pan_bounds.y0 -= 5;\n",
" pan_bounds.y1 += 5;\n",
" root.data(\"pan_bounds\", pan_bounds);\n",
"\n",
" root.data(\"zoompan-ready\", true)\n",
"};\n",
"\n",
"\n",
"// Panning\n",
"Gadfly.guide_background_drag_onmove = function(dx, dy, x, y, event) {\n",
" var root = this.plotroot();\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" dx /= px_per_mm;\n",
" dy /= px_per_mm;\n",
"\n",
" var tx0 = root.data(\"tx\"),\n",
" ty0 = root.data(\"ty\");\n",
"\n",
" var dx0 = root.data(\"dx\"),\n",
" dy0 = root.data(\"dy\");\n",
"\n",
" root.data(\"dx\", dx);\n",
" root.data(\"dy\", dy);\n",
"\n",
" dx = dx - dx0;\n",
" dy = dy - dy0;\n",
"\n",
" var tx = tx0 + dx,\n",
" ty = ty0 + dy;\n",
"\n",
" set_plot_pan_zoom(root, tx, ty, root.data(\"scale\"));\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onstart = function(x, y, event) {\n",
" var root = this.plotroot();\n",
" root.data(\"dx\", 0);\n",
" root.data(\"dy\", 0);\n",
" init_pan_zoom(root);\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onend = function(event) {\n",
" var root = this.plotroot();\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_scroll = function(event) {\n",
" if (event.shiftKey) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
" var new_scale = root.data(\"scale\") * Math.pow(2, 0.002 * event.wheelDelta);\n",
" new_scale = Math.max(\n",
" root.data(\"min_scale\"),\n",
" Math.min(root.data(\"max_scale\"), new_scale))\n",
" update_plot_scale(root, new_scale);\n",
" event.stopPropagation();\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_button_mouseover = function(event) {\n",
" this.select(\".button_logo\")\n",
" .animate({fill: this.data(\"mouseover_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_button_mouseout = function(event) {\n",
" this.select(\".button_logo\")\n",
" .animate({fill: this.data(\"mouseout_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_zoomout_click = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
" var min_scale = root.data(\"min_scale\"),\n",
" scale = root.data(\"scale\");\n",
" Snap.animate(\n",
" scale,\n",
" Math.max(min_scale, scale / 1.5),\n",
" function (new_scale) {\n",
" update_plot_scale(root, new_scale);\n",
" },\n",
" 200);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_zoomin_click = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
" var max_scale = root.data(\"max_scale\"),\n",
" scale = root.data(\"scale\");\n",
"\n",
" Snap.animate(\n",
" scale,\n",
" Math.min(max_scale, scale * 1.5),\n",
" function (new_scale) {\n",
" update_plot_scale(root, new_scale);\n",
" },\n",
" 200);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_track_click = function(event) {\n",
" // TODO\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_mousedown = function(event) {\n",
" this.animate({fill: this.data(\"mouseover_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_mouseup = function(event) {\n",
" this.animate({fill: this.data(\"mouseout_color\")}, 100);\n",
"};\n",
"\n",
"\n",
"// compute the position in [0, 1] of the zoom slider thumb from the current scale\n",
"var slider_position_from_scale = function(scale, min_scale, max_scale) {\n",
" if (scale >= 1.0) {\n",
" return 0.5 + 0.5 * (Math.log(scale) / Math.log(max_scale));\n",
" }\n",
" else {\n",
" return 0.5 * (Math.log(scale) - Math.log(min_scale)) / (0 - Math.log(min_scale));\n",
" }\n",
"}\n",
"\n",
"\n",
"var update_plot_scale = function(root, new_scale) {\n",
" var trans = scale_centered_translation(root, new_scale);\n",
" set_plot_pan_zoom(root, trans.x, trans.y, new_scale);\n",
"\n",
" root.selectAll(\".zoomslider_thumb\")\n",
" .forEach(function (element, i) {\n",
" var min_pos = element.data(\"min_pos\"),\n",
" max_pos = element.data(\"max_pos\"),\n",
" min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\");\n",
" var xmid = (min_pos + max_pos) / 2;\n",
" var xpos = slider_position_from_scale(new_scale, min_scale, max_scale);\n",
" element.transform(new Snap.Matrix().translate(\n",
" Math.max(min_pos, Math.min(\n",
" max_pos, min_pos + (max_pos - min_pos) * xpos)) - xmid, 0));\n",
" });\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragmove = function(dx, dy, x, y) {\n",
" var root = this.plotroot();\n",
" var min_pos = this.data(\"min_pos\"),\n",
" max_pos = this.data(\"max_pos\"),\n",
" min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\"),\n",
" old_scale = root.data(\"old_scale\");\n",
"\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" dx /= px_per_mm;\n",
" dy /= px_per_mm;\n",
"\n",
" var xmid = (min_pos + max_pos) / 2;\n",
" var xpos = slider_position_from_scale(old_scale, min_scale, max_scale) +\n",
" dx / (max_pos - min_pos);\n",
"\n",
" // compute the new scale\n",
" var new_scale;\n",
" if (xpos >= 0.5) {\n",
" new_scale = Math.exp(2.0 * (xpos - 0.5) * Math.log(max_scale));\n",
" }\n",
" else {\n",
" new_scale = Math.exp(2.0 * xpos * (0 - Math.log(min_scale)) +\n",
" Math.log(min_scale));\n",
" }\n",
" new_scale = Math.min(max_scale, Math.max(min_scale, new_scale));\n",
"\n",
" update_plot_scale(root, new_scale);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragstart = function(event) {\n",
" var root = this.plotroot();\n",
" init_pan_zoom(root);\n",
"\n",
" // keep track of what the scale was when we started dragging\n",
" root.data(\"old_scale\", root.data(\"scale\"));\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragend = function(event) {\n",
"};\n",
"\n",
"\n",
"var toggle_color_class = function(root, color_class, ison) {\n",
" var guides = root.selectAll(\".guide.\" + color_class + \",.guide .\" + color_class);\n",
" var geoms = root.selectAll(\".geometry.\" + color_class + \",.geometry .\" + color_class);\n",
" if (ison) {\n",
" guides.animate({opacity: 0.5}, 250);\n",
" geoms.animate({opacity: 0.0}, 250);\n",
" } else {\n",
" guides.animate({opacity: 1.0}, 250);\n",
" geoms.animate({opacity: 1.0}, 250);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.colorkey_swatch_click = function(event) {\n",
" var root = this.plotroot();\n",
" var color_class = this.data(\"color_class\");\n",
"\n",
" if (event.shiftKey) {\n",
" root.selectAll(\".colorkey text\")\n",
" .forEach(function (element) {\n",
" var other_color_class = element.data(\"color_class\");\n",
" if (other_color_class != color_class) {\n",
" toggle_color_class(root, other_color_class,\n",
" element.attr(\"opacity\") == 1.0);\n",
" }\n",
" });\n",
" } else {\n",
" toggle_color_class(root, color_class, this.attr(\"opacity\") == 1.0);\n",
" }\n",
"};\n",
"\n",
"\n",
"return Gadfly;\n",
"\n",
"}));\n",
"\n",
"\n",
"//@ sourceURL=gadfly.js\n",
"\n",
"(function (glob, factory) {\n",
" // AMD support\n",
" if (typeof require === \"function\" && typeof define === \"function\" && define.amd) {\n",
" require([\"Snap.svg\", \"Gadfly\", \"Gadfly\"], function (Snap, Gadfly, Gadfly) {\n",
" factory(Snap, Gadfly, Gadfly);\n",
" });\n",
" } else {\n",
" factory(glob.Snap, glob.Gadfly, glob.Gadfly);\n",
" }\n",
"})(window, function (Snap, Gadfly, Gadfly) {\n",
" var fig = Snap(\"#fig-83d60fd3231945e4a1423f273aa64a66\");\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-4\")\n",
" .mouseenter(Gadfly.plot_mouseover)\n",
".mouseleave(Gadfly.plot_mouseout)\n",
".mousewheel(Gadfly.guide_background_scroll)\n",
".drag(Gadfly.guide_background_drag_onmove,\n",
" Gadfly.guide_background_drag_onstart,\n",
" Gadfly.guide_background_drag_onend)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-7\")\n",
" .plotroot().data(\"unfocused_ygrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-7\")\n",
" .plotroot().data(\"focused_ygrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-8\")\n",
" .plotroot().data(\"unfocused_xgrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-8\")\n",
" .plotroot().data(\"focused_xgrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-51\")\n",
" .data(\"mouseover_color\", \"#cd5c5c\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-51\")\n",
" .data(\"mouseout_color\", \"#6a6a6a\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-51\")\n",
" .click(Gadfly.zoomslider_zoomin_click)\n",
".mouseenter(Gadfly.zoomslider_button_mouseover)\n",
".mouseleave(Gadfly.zoomslider_button_mouseout)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-53\")\n",
" .data(\"max_pos\", 233)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-53\")\n",
" .data(\"min_pos\", 216)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-53\")\n",
" .click(Gadfly.zoomslider_track_click);\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-54\")\n",
" .data(\"max_pos\", 233)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-54\")\n",
" .data(\"min_pos\", 216)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-54\")\n",
" .data(\"mouseover_color\", \"#cd5c5c\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-54\")\n",
" .data(\"mouseout_color\", \"#6a6a6a\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-54\")\n",
" .drag(Gadfly.zoomslider_thumb_dragmove,\n",
" Gadfly.zoomslider_thumb_dragstart,\n",
" Gadfly.zoomslider_thumb_dragend)\n",
".mousedown(Gadfly.zoomslider_thumb_mousedown)\n",
".mouseup(Gadfly.zoomslider_thumb_mouseup)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-55\")\n",
" .data(\"mouseover_color\", \"#cd5c5c\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-55\")\n",
" .data(\"mouseout_color\", \"#6a6a6a\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-55\")\n",
" .click(Gadfly.zoomslider_zoomout_click)\n",
".mouseenter(Gadfly.zoomslider_button_mouseover)\n",
".mouseleave(Gadfly.zoomslider_button_mouseout)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-62\")\n",
" .mouseenter(Gadfly.plot_mouseover)\n",
".mouseleave(Gadfly.plot_mouseout)\n",
".mousewheel(Gadfly.guide_background_scroll)\n",
".drag(Gadfly.guide_background_drag_onmove,\n",
" Gadfly.guide_background_drag_onstart,\n",
" Gadfly.guide_background_drag_onend)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-65\")\n",
" .plotroot().data(\"unfocused_ygrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-65\")\n",
" .plotroot().data(\"focused_ygrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-66\")\n",
" .plotroot().data(\"unfocused_xgrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-66\")\n",
" .plotroot().data(\"focused_xgrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-70\")\n",
" .data(\"mouseover_color\", \"#cd5c5c\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-70\")\n",
" .data(\"mouseout_color\", \"#6a6a6a\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-70\")\n",
" .click(Gadfly.zoomslider_zoomin_click)\n",
".mouseenter(Gadfly.zoomslider_button_mouseover)\n",
".mouseleave(Gadfly.zoomslider_button_mouseout)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-72\")\n",
" .data(\"max_pos\", 233)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-72\")\n",
" .data(\"min_pos\", 216)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-72\")\n",
" .click(Gadfly.zoomslider_track_click);\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-73\")\n",
" .data(\"max_pos\", 233)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-73\")\n",
" .data(\"min_pos\", 216)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-73\")\n",
" .data(\"mouseover_color\", \"#cd5c5c\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-73\")\n",
" .data(\"mouseout_color\", \"#6a6a6a\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-73\")\n",
" .drag(Gadfly.zoomslider_thumb_dragmove,\n",
" Gadfly.zoomslider_thumb_dragstart,\n",
" Gadfly.zoomslider_thumb_dragend)\n",
".mousedown(Gadfly.zoomslider_thumb_mousedown)\n",
".mouseup(Gadfly.zoomslider_thumb_mouseup)\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-74\")\n",
" .data(\"mouseover_color\", \"#cd5c5c\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-74\")\n",
" .data(\"mouseout_color\", \"#6a6a6a\")\n",
";\n",
"fig.select(\"#fig-83d60fd3231945e4a1423f273aa64a66-element-74\")\n",
" .click(Gadfly.zoomslider_zoomout_click)\n",
".mouseenter(Gadfly.zoomslider_button_mouseover)\n",
".mouseleave(Gadfly.zoomslider_button_mouseout)\n",
";\n",
" });\n",
"]]> </script>\n",
"</svg>\n"
],
"text/plain": [
"Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(5.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(5.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(-10.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(-10.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSIncludePrimitive}([JSIncludePrimitive(\"/Users/lam/.julia/v0.3/Gadfly/src/gadfly.js\",(\"Gadfly\",\"Gadfly\"))]),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"plotroot xscalable yscalable\")]),ListNode{ComposeNode}(Table(3x3 Array{Array{Context,1},2}:\n",
" [Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(AdhocContainerPromise((anonymous function),0,false,false,nothing,nothing),ListNull{ComposeNode}()),0,false,false,false,false,5.805833333333333,7.611666666666666,0.0),Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(AdhocContainerPromise((anonymous function),0,false,false,nothing,nothing),ListNull{ComposeNode}()),0,false,false,false,false,7.611666666666666,5.805833333333333,0.0)] … [Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"mouseenter(Gadfly.plot_mouseover)\\n.mouseleave(Gadfly.plot_mouseout)\\n.mousewheel(Gadfly.guide_background_scroll)\\n.drag(Gadfly.guide_background_drag_onmove,\\n Gadfly.guide_background_drag_onstart,\\n Gadfly.guide_background_drag_onend)\\n\",Measure[])]),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,22.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),19.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,22.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),20.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),18.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,22.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),19.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),17.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),18.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),16.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),17.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),15.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),16.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,20.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),14.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,21.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),15.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,19.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),13.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,20.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),14.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,18.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),12.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,19.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),13.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),11.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,18.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),12.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),10.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),11.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),9.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),10.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),8.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),9.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,16.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,17.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),8.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,15.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,16.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,14.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,15.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,13.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,14.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,12.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,13.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,11.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),8.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,12.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),7.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,10.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),9.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,11.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),8.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"color_AlphaColorValue{RGB{Float32},Float32}(RGB{Float32}(0.0f0,0.74736935f0,1.0f0),1.0f0)\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(1.0,1.0,1.0),1.0))]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.7473693490028381,1.0),1.0))]),ListNode{ComposeNode}(Form{CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}}([CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,9.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),10.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0)),CirclePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,10.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),9.5,0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.9,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"geometry\")]),ListNull{ComposeNode}())),4,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"plotpanel\")]),ListNull{ComposeNode}()))))))))))))))))))))),0,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Float64,Float64,Float64,Float64}(0.0,0.0,1.0,1.0,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{FillOpacityPrimitive}([FillOpacityPrimitive(0.0)]),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"guide zoomslider\")]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.0,0.0),0.0))]),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(-7.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(3.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(4.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(4.0,MeasureNil(),MeasureNil(),0.0,0.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"mouseover_color\\\", \\\"#cd5c5c\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"mouseout_color\\\", \\\"#6a6a6a\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"click(Gadfly.zoomslider_zoomin_click)\\n.mouseenter(Gadfly.zoomslider_button_mouseover)\\n.mouseleave(Gadfly.zoomslider_button_mouseout)\\n\",Measure[])]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.9176470588235294,0.9176470588235294,0.9176470588235294),1.0))]),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"button_logo\")]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.41568627450980394,0.41568627450980394,0.41568627450980394),1.0))]),ListNode{ComposeNode}(Form{PolygonPrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}}}}(PolygonPrimitive[PolygonPrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.2,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.4,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.4,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.4,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.4,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.2,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.6,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.2,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.6,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.4,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.8,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.4,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.8,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.6,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.6,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.6,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.6,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.8,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.4,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.8,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.4,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.6,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.2,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.6,0.0,0.0))])]),ListNull{ComposeNode}()))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{StrokeOpacityPrimitive}([StrokeOpacityPrimitive(0.0)]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.41568627450980394,0.41568627450980394,0.41568627450980394),1.0))]),ListNode{ComposeNode}(Form{RectanglePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}},M1<:Measure{S,T},M2<:Measure{S,T}}}(RectanglePrimitive[RectanglePrimitive{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}},Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),ListNull{ComposeNode}()))))))))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(-26.5,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(3.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(19.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(4.0,MeasureNil(),MeasureNil(),0.0,0.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"max_pos\\\", %x)\\n\",Measure[Measure{MeasureNil,MeasureNil}(-8.5,MeasureNil(),MeasureNil(),1.0,0.0)])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"min_pos\\\", %x)\\n\",Measure[Measure{MeasureNil,MeasureNil}(-25.5,MeasureNil(),MeasureNil(),1.0,0.0)])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"mouseover_color\\\", \\\"#cd5c5c\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"mouseout_color\\\", \\\"#6a6a6a\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"drag(Gadfly.zoomslider_thumb_dragmove,\\n Gadfly.zoomslider_thumb_dragstart,\\n Gadfly.zoomslider_thumb_dragend)\\n.mousedown(Gadfly.zoomslider_thumb_mousedown)\\n.mouseup(Gadfly.zoomslider_thumb_mouseup)\\n\",Measure[])]),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"zoomslider_thumb\")]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.41568627450980394,0.41568627450980394,0.41568627450980394),1.0))]),ListNode{ComposeNode}(Form{RectanglePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}},M1<:Measure{S,T},M2<:Measure{S,T}}}(RectanglePrimitive[RectanglePrimitive{Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}},Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(-1.0,0.5,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.0,0.0,0.0)),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),ListNull{ComposeNode}())))))))),1,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"max_pos\\\", %x)\\n\",Measure[Measure{MeasureNil,MeasureNil}(-8.5,MeasureNil(),MeasureNil(),1.0,0.0)])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"min_pos\\\", %x)\\n\",Measure[Measure{MeasureNil,MeasureNil}(-25.5,MeasureNil(),MeasureNil(),1.0,0.0)])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"click(Gadfly.zoomslider_track_click)\",Measure[])]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.9176470588235294,0.9176470588235294,0.9176470588235294),1.0))]),ListNode{ComposeNode}(Form{RectanglePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}},M1<:Measure{S,T},M2<:Measure{S,T}}}(RectanglePrimitive[RectanglePrimitive{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}},Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),ListNull{ComposeNode}()))))),0,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}())),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(-31.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(3.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(4.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(4.0,MeasureNil(),MeasureNil(),0.0,0.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"mouseover_color\\\", \\\"#cd5c5c\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"data(\\\"mouseout_color\\\", \\\"#6a6a6a\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"click(Gadfly.zoomslider_zoomout_click)\\n.mouseenter(Gadfly.zoomslider_button_mouseover)\\n.mouseleave(Gadfly.zoomslider_button_mouseout)\\n\",Measure[])]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.9176470588235294,0.9176470588235294,0.9176470588235294),1.0))]),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"button_logo\")]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.41568627450980394,0.41568627450980394,0.41568627450980394),1.0))]),ListNode{ComposeNode}(Form{PolygonPrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}}}}(PolygonPrimitive[PolygonPrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.2,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.4,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.8,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.4,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.8,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.6,0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,Float64}}(Measure{Float64,MeasureNil}(0.0,0.2,MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.6,0.0,0.0))])]),ListNull{ComposeNode}()))),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.3,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{StrokeOpacityPrimitive}([StrokeOpacityPrimitive(0.0)]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.41568627450980394,0.41568627450980394,0.41568627450980394),1.0))]),ListNode{ComposeNode}(Form{RectanglePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}},M1<:Measure{S,T},M2<:Measure{S,T}}}(RectanglePrimitive[RectanglePrimitive{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}},Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),ListNull{ComposeNode}()))))))))),0,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}())))))),0,false,true,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()),1000,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"plotroot().data(\\\"unfocused_ygrid_color\\\", \\\"#D0D0E0\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"plotroot().data(\\\"focused_ygrid_color\\\", \\\"#A0A0A0\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{SVGAttributePrimitive}([SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\") … SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\")]),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"guide ygridlines xfixed\")]),ListNode{ComposeNode}(Property{StrokeDashPrimitive}([StrokeDashPrimitive(Measure[Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0)])]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.2,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.8156862745098039,0.8156862745098039,0.8784313725490196),1.0))]),ListNode{ComposeNode}(Property{VisiblePrimitive}([VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(true),VisiblePrimitive(true),VisiblePrimitive(true),VisiblePrimitive(true) … VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false)]),ListNode{ComposeNode}(Form{LinePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}}}}(LinePrimitive[LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-30.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-30.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-25.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-25.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-20.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-20.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-15.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-15.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-10.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-10.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-5.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),-5.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),5.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),5.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),10.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),10.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),15.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),15.0,0.0,0.0))]) … LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),32.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),32.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),34.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),34.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),36.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),36.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),38.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),38.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),40.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),40.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),42.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),42.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),44.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),44.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),46.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),46.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),48.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),48.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),50.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),50.0,0.0,0.0))])]),ListNull{ComposeNode}()))))))))),0,false,true,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"guide ygridlines xfixed\")]),ListNode{ComposeNode}(Property{StrokeDashPrimitive}([StrokeDashPrimitive(Measure[Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0)])]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.2,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.8156862745098039,0.8156862745098039,0.8784313725490196),1.0))]),ListNode{ComposeNode}(Form{LinePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}}}}(LinePrimitive[LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),0.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),5.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),5.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),10.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),10.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),15.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),15.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),20.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),20.0,0.0,0.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),25.0,0.0,0.0)),Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,Float64}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,Float64}(0.0,MeasureNil(),25.0,0.0,0.0))])]),ListNull{ComposeNode}()))))),0,false,false,true,false,nothing,nothing,0.0),ListNull{ComposeNode}())),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"plotroot().data(\\\"unfocused_xgrid_color\\\", \\\"#D0D0E0\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{JSCallPrimitive}([JSCallPrimitive(\"plotroot().data(\\\"focused_xgrid_color\\\", \\\"#A0A0A0\\\")\\n\",Measure[])]),ListNode{ComposeNode}(Property{SVGAttributePrimitive}([SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"1.0\") … SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\"),SVGAttributePrimitive(\"gadfly:scale\",\"5.0\")]),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"guide xgridlines yfixed\")]),ListNode{ComposeNode}(Property{StrokeDashPrimitive}([StrokeDashPrimitive(Measure[Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0)])]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.2,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.8156862745098039,0.8156862745098039,0.8784313725490196),1.0))]),ListNode{ComposeNode}(Property{VisiblePrimitive}([VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(true),VisiblePrimitive(true),VisiblePrimitive(true),VisiblePrimitive(true) … VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false),VisiblePrimitive(false)]),ListNode{ComposeNode}(Form{LinePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}}}}(LinePrimitive[LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-30.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-30.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-25.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-25.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-20.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-20.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-15.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-15.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-10.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-10.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-5.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,-5.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,0.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,0.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,5.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,5.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,10.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,10.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,15.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,15.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]) … LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,32.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,32.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,34.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,34.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,36.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,36.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,38.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,38.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,40.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,40.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,42.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,42.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,44.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,44.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,46.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,46.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,48.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,48.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,50.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,50.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))])]),ListNull{ComposeNode}()))))))))),0,false,true,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"guide xgridlines yfixed\")]),ListNode{ComposeNode}(Property{StrokeDashPrimitive}([StrokeDashPrimitive(Measure[Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.5,MeasureNil(),MeasureNil(),0.0,0.0)])]),ListNode{ComposeNode}(Property{LineWidthPrimitive}([LineWidthPrimitive(Measure{MeasureNil,MeasureNil}(0.2,MeasureNil(),MeasureNil(),0.0,0.0))]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.8156862745098039,0.8156862745098039,0.8784313725490196),1.0))]),ListNode{ComposeNode}(Form{LinePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}}}}(LinePrimitive[LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,0.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,0.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,5.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,5.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,10.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,10.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,15.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,15.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,20.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,20.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),LinePrimitive{Point{XM<:Measure{S,T},YM<:Measure{S,T}}}(Point[Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,25.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Point{Measure{Float64,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{Float64,MeasureNil}(0.0,25.0,MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))])]),ListNull{ComposeNode}()))))),0,false,false,true,false,nothing,nothing,0.0),ListNull{ComposeNode}())),0,false,false,false,false,nothing,nothing,0.0),ListNode{ComposeNode}(Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Nothing,Nothing,Nothing,Nothing}(nothing,nothing,nothing,nothing,Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(Property{SVGAttributePrimitive}([SVGAttributePrimitive(\"pointer-events\",\"visible\")]),ListNode{ComposeNode}(Property{FillOpacityPrimitive}([FillOpacityPrimitive(1.0)]),ListNode{ComposeNode}(Property{FillPrimitive}([FillPrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.0,0.0),0.0))]),ListNode{ComposeNode}(Property{StrokePrimitive}([StrokePrimitive(AlphaColorValue{RGB{Float64},Float64}(RGB{Float64}(0.0,0.0,0.0),0.0))]),ListNode{ComposeNode}(Property{SVGClassPrimitive}([SVGClassPrimitive(\"guide background\")]),ListNode{ComposeNode}(Form{RectanglePrimitive{P<:Point{XM<:Measure{S,T},YM<:Measure{S,T}},M1<:Measure{S,T},M2<:Measure{S,T}}}(RectanglePrimitive[RectanglePrimitive{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}},Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0))]),ListNull{ComposeNode}())))))),-1,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}()))),-1,false,false,false,false,nothing,nothing,0.0),ListNull{ComposeNode}())))),0,true,false,false,false,nothing,nothing,0.0)]\n",
" [] [Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(AdhocContainerPromise((anonymous function),0,false,false,nothing,nothing),ListNull{ComposeNode}()),0,false,false,false,false,16.733333333333334,4.673333333333334,0.0),Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(AdhocContainerPromise((anonymous function),0,false,false,nothing,nothing),ListNull{ComposeNode}()),0,false,false,false,false,16.04,5.346666666666667,3.0)] \n",
" [] [Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(AdhocContainerPromise((anonymous function),0,false,false,nothing,nothing),ListNull{ComposeNode}()),0,false,false,false,false,7.998333333333334,9.611666666666666,0.0),Context(BoundingBox(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),1.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,1.0)),UnitBox{Int64,Int64,Int64,Int64}(1,25,24,-24,Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(2.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.0)),Rotation{Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}}(0.0,Point{Measure{MeasureNil,MeasureNil},Measure{MeasureNil,MeasureNil}}(Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.5,0.0),Measure{MeasureNil,MeasureNil}(0.0,MeasureNil(),MeasureNil(),0.0,0.5))),nothing,ListNode{ComposeNode}(AdhocContainerPromise((anonymous function),0,false,false,nothing,nothing),ListNull{ComposeNode}()),0,false,false,false,false,9.611666666666666,7.998333333333334,3.0)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment