Skip to content

Instantly share code, notes, and snippets.

@sglyon
Created October 12, 2015 19:31
Show Gist options
  • Save sglyon/f7ec8358c289801b5726 to your computer and use it in GitHub Desktop.
Save sglyon/f7ec8358c289801b5726 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": 34,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"using Interact\n",
"using Gadfly\n",
"using SQLite\n",
"using DataFrames\n",
"\n",
"rgb_tripets = [(0.2980392156862745, 0.4470588235294118, 0.6901960784313725),\n",
" (0.3333333333333333, 0.6588235294117647, 0.40784313725490196),\n",
" (0.7686274509803922, 0.3058823529411765, 0.3215686274509804),\n",
" (0.5058823529411764, 0.4470588235294118, 0.6980392156862745),\n",
" (0.8, 0.7254901960784313, 0.4549019607843137),\n",
" (0.39215686274509803, 0.7098039215686275, 0.803921568627451)]\n",
"color_scale = Scale.color_discrete_manual([Gadfly.RGB(a...) for a in rgb_tripets]...)\n",
"small_points = Theme(default_point_size=0.3mm, \n",
" grid_line_width=0.05mm, \n",
" highlight_width=0.0mm, \n",
"# major_label_font=\"Source Code Pro\",\n",
"# minor_label_font=\"Source Code Pro\",\n",
" default_color=color_scale.f(1)[1]);"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"Exchange"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"main.jl\")"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"SQLite.SQLiteDB{UTF8String}(\"bcfl_cv.sqlite3\",Ptr{Void} @0x00007f95d73c76e0,0)"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"db = SQLiteDB(\"bcfl_cv.sqlite3\")"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"3x7 SQLite.ResultSet\n",
"| Row | \"model_id\" | \"ρ1\" | \"α1\" | \"σ1\" | \"ρ2\" | \"α2\" | \"σ2\" |\n",
"|-----|------------|------|------|------|------|------|------|\n",
"| 1 | 1 | -1.0 | -1.0 | 0.0 | -1.0 | -1.0 | 0.0 |\n",
"| 2 | 10 | -1.0 | -5.0 | 0.0 | -1.0 | -5.0 | 0.0 |\n",
"| 3 | 19 | -1.0 | -9.0 | 0.0 | -1.0 | -9.0 | 0.0 |"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"query(db, \"SELECT * FROM params where ρ1=-1.0 and σ1=0.0\")"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 0.170727 seconds (861.23 k allocations: 178.628 MB, 14.07% gc time)\n"
]
}
],
"source": [
"@time df_sim = Exchange.new_simulation_frame(Exchange.ModelCV, db, 1);"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"1x7 SQLite.ResultSet\n",
"| Row | \"model_id\" | \"ρ1\" | \"α1\" | \"σ1\" | \"ρ2\" | \"α2\" | \"σ2\" |\n",
"|-----|------------|------|------|------|------|------|------|\n",
"| 1 | 1 | -1.0 | -1.0 | 0.0 | -1.0 | -1.0 | 0.0 |"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"query(db, \"SELECT * FROM params WHERE model_id = 1\")"
]
},
{
"cell_type": "code",
"execution_count": 49,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"manipulate_plot (generic function with 1 method)"
]
},
"execution_count": 49,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function manipulate_plot(plot_func, trans_func)\n",
" @manipulate for alpha in [-1.0, -5.0, -9.0]\n",
" srand(42)\n",
" rs = query(db, \"SELECT * FROM params where ρ1=-1.0 and σ1=0.0 and α1=$alpha\")\n",
" model_id = rs[1,1]\n",
" df_sim = Exchange.new_simulation_frame(Exchange.ModelCV, db, model_id)\n",
" df2 = DataFrame(x=diff(log(df_sim[:c2])) - diff(log(df_sim[:c1])),\n",
" y=diff(log(df_sim[:fxr])));\n",
" plot_func(df_sim, df2)\n",
" end\n",
"end\n"
]
},
{
"cell_type": "code",
"execution_count": 50,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [],
"text/plain": [
"Interact.Options{:ToggleButtons,Float64}([Reactive.Input{Float64}] -1.0,\"alpha\",-1.0,\"-1.0\",Interact.OptionDict(Any[\"-1.0\",\"-5.0\",\"-9.0\"],Dict{Any,Any}(\"-1.0\"=>-1.0,\"-9.0\"=>-9.0,\"-5.0\"=>-5.0)),Any[],Any[])"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\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-bcfbb97576434424b36d8f92a03d2211-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-bcfbb97576434424b36d8f92a03d2211-element-2\">\n",
" <text x=\"79.2\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">c₂ / c₁</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-bcfbb97576434424b36d8f92a03d2211-element-3\">\n",
" <text x=\"23.98\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.916</text>\n",
" <text x=\"60.79\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.917</text>\n",
" <text x=\"97.61\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.918</text>\n",
" <text x=\"134.42\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.919</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-bcfbb97576434424b36d8f92a03d2211-element-5)\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-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-bcfbb97576434424b36d8f92a03d2211-element-6\">\n",
" <rect x=\"21.98\" y=\"5\" width=\"114.44\" height=\"75.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-7\">\n",
" <path fill=\"none\" d=\"M21.98,78.72 L 136.42 78.72\"/>\n",
" <path fill=\"none\" d=\"M21.98,54.81 L 136.42 54.81\"/>\n",
" <path fill=\"none\" d=\"M21.98,30.91 L 136.42 30.91\"/>\n",
" <path fill=\"none\" d=\"M21.98,7 L 136.42 7\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-8\">\n",
" <path fill=\"none\" d=\"M23.98,5 L 23.98 80.72\"/>\n",
" <path fill=\"none\" d=\"M60.79,5 L 60.79 80.72\"/>\n",
" <path fill=\"none\" d=\"M97.61,5 L 97.61 80.72\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-9\">\n",
" <g stroke-width=\"0.3\" fill=\"#000000\" fill-opacity=\"0.000\" class=\"geometry\" stroke-dasharray=\"none\" stroke=\"#4C72B0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-10\">\n",
" <path fill=\"none\" d=\"M105.24,27.8 L 105.26 27.8 105.28 27.81 105.31 27.81 105.33 27.82 105.35 27.83 105.38 27.83 105.4 27.84 105.42 27.84 105.44 27.85 105.47 27.85 105.49 27.86 105.51 27.86 105.54 27.87 105.56 27.88 105.58 27.88 105.61 27.89 105.63 27.89 105.65 27.9 105.67 27.9 105.7 27.91 105.72 27.91 105.74 27.92 105.77 27.93 105.79 27.93 105.81 27.94 105.83 27.94 105.86 27.95 105.88 27.95 105.9 27.96 105.93 27.96 105.95 27.97 105.97 27.98 106 27.98 106.02 27.99 106.04 27.99 106.06 28 106.09 28 106.11 28.01 106.13 28.01 106.16 28.02 106.18 28.03 106.2 28.03 106.22 28.04 106.25 28.04 106.27 28.05 106.29 28.05 106.32 28.06 106.34 28.06 106.36 28.07 106.39 28.08 106.41 28.08 106.43 28.09 106.45 28.09 106.48 28.1 106.5 28.1 106.52 28.11 106.55 28.11 106.57 28.12 106.59 28.13 106.62 28.13 106.64 28.14 106.66 28.14 106.68 28.15 106.71 28.15 106.73 28.16 106.75 28.16 106.78 28.17 106.8 28.18 106.82 28.18 106.84 28.19 106.87 28.19 106.89 28.2 106.91 28.2 106.94 28.21 106.96 28.21 106.98 28.22 107.01 28.23 107.03 28.23 107.05 28.24 107.07 28.24 107.1 28.25 107.12 28.25 107.14 28.26 107.17 28.26 107.19 28.27 107.21 28.28 107.23 28.28 107.26 28.29 107.28 28.29 107.3 28.3 107.33 28.3 107.35 28.31 107.37 28.31 107.4 28.32 107.42 28.33 107.44 28.33 107.46 28.34 107.49 28.34 107.51 28.35 107.53 28.35 107.56 28.36 107.58 28.36 107.6 28.37 107.63 28.38 107.65 28.38 107.67 28.39 107.69 28.39 107.72 28.4 107.74 28.4 107.76 28.41 107.79 28.41 107.81 28.42 107.83 28.43 107.85 28.43 107.88 28.44 107.9 28.44 107.92 28.45 107.95 28.45 107.97 28.46 107.99 28.46 108.02 28.47 108.04 28.48 108.06 28.48 108.08 28.49 108.11 28.49 108.13 28.5 108.15 28.5 108.18 28.51 108.2 28.52 108.22 28.52 108.24 28.53 108.27 28.53 108.29 28.54 108.31 28.54 108.34 28.55 108.36 28.55 108.38 28.56 108.41 28.57 108.43 28.57 108.45 28.58 108.47 28.58 108.5 28.59 108.52 28.59 108.54 28.6 108.57 28.6 108.59 28.61 108.61 28.62 108.63 28.62 108.66 28.63 108.68 28.63 108.7 28.64 108.73 28.64 108.75 28.65 108.77 28.65 108.8 28.66 108.82 28.67 108.84 28.67 108.86 28.68 108.89 28.68 108.91 28.69 108.93 28.69 108.96 28.7 108.98 28.7 109 28.71 109.03 28.72 109.05 28.72 109.07 28.73 109.09 28.73 109.12 28.74 109.14 28.74 109.16 28.75 109.19 28.75 109.21 28.76 109.23 28.77 109.25 28.77 109.28 28.78 109.3 28.78 109.32 28.79 109.35 28.79 109.37 28.8 109.39 28.81 109.42 28.81 109.44 28.82 109.46 28.82 109.48 28.83 109.51 28.83 109.53 28.84 109.55 28.84 109.58 28.85 109.6 28.86 109.62 28.86 109.64 28.87 109.67 28.87 109.69 28.88 109.71 28.88 109.74 28.89 109.76 28.89 109.78 28.9 109.81 28.91 109.83 28.91 109.85 28.92 109.87 28.92 109.9 28.93 109.92 28.93 109.94 28.94 109.97 28.94 109.99 28.95 110.01 28.96 110.04 28.96 110.06 28.97 110.08 28.97 110.1 28.98 110.13 28.98 110.15 28.99 110.17 28.99 110.2 29 110.22 29.01 110.24 29.01 110.26 29.02 110.29 29.02 110.31 29.03 110.33 29.03 110.36 29.04 110.38 29.04 110.4 29.05 110.43 29.06 110.45 29.06 110.47 29.07 110.49 29.07 110.52 29.08 110.54 29.08 110.56 29.09 110.59 29.1 110.61 29.1 110.63 29.11 110.65 29.11 110.68 29.12 110.7 29.12 110.72 29.13 110.75 29.13 110.77 29.14 110.79 29.15 110.82 29.15 110.84 29.16 110.86 29.16 110.88 29.17 110.91 29.17 110.93 29.18 110.95 29.18 110.98 29.19 111 29.2 111.02 29.2 111.05 29.21 111.07 29.21 111.09 29.22 111.11 29.22 111.14 29.23 111.16 29.23 111.18 29.24 111.21 29.25 111.23 29.25 111.25 29.26 111.27 29.26 111.3 29.27 111.32 29.27 111.34 29.28 111.37 29.28 111.39 29.29 111.41 29.3 111.44 29.3 111.46 29.31 111.48 29.31 111.5 29.32 111.53 29.32 111.55 29.33 111.57 29.33 111.6 29.34 111.62 29.35 111.64 29.35 111.66 29.36 111.69 29.36 111.71 29.37 111.73 29.37 111.76 29.38 111.78 29.39 111.8 29.39 111.83 29.4 111.85 29.4 111.87 29.41 111.89 29.41 111.92 29.42 111.94 29.42 111.96 29.43 111.99 29.44 112.01 29.44 112.03 29.45 112.06 29.45 112.08 29.46 112.1 29.46 112.12 29.47 112.15 29.47 112.17 29.48 112.19 29.49 112.22 29.49 112.24 29.5 112.26 29.5 112.28 29.51 112.31 29.51 112.33 29.52 112.35 29.52 112.38 29.53 112.4 29.54 112.42 29.54 112.45 29.55 112.47 29.55 112.49 29.56 112.51 29.56 112.54 29.57 112.56 29.57 112.58 29.58 112.61 29.59 112.63 29.59 112.65 29.6 112.67 29.6 112.7 29.61 112.72 29.61 112.74 29.62 112.77 29.62 112.79 29.63 112.81 29.64 112.84 29.64 112.86 29.65 112.88 29.65 112.9 29.66 112.93 29.66 112.95 29.67 112.97 29.68 113 29.68 113.02 29.69 113.04 29.69 113.06 29.7 113.09 29.7 113.11 29.71 113.13 29.71 113.16 29.72 113.18 29.73 113.2 29.73 113.23 29.74 113.25 29.74 113.27 29.75 113.29 29.75 113.32 29.76 113.34 29.76 113.36 29.77 113.39 29.78 113.41 29.78 113.43 29.79 113.46 29.79 113.48 29.8 113.5 29.8 113.52 29.81 113.55 29.81 113.57 29.82 113.59 29.83 113.62 29.83 113.64 29.84 113.66 29.84 113.68 29.85 113.71 29.85 113.73 29.86 113.75 29.86 113.78 29.87 113.8 29.88 113.82 29.88 113.85 29.89 113.87 29.89 113.89 29.9 113.91 29.9 113.94 29.91 113.96 29.91 113.98 29.92 114.01 29.93 114.03 29.93 114.05 29.94 114.07 29.94 114.1 29.95 114.12 29.95 114.14 29.96 114.17 29.97 114.19 29.97 114.21 29.98 114.24 29.98 114.26 29.99 114.28 29.99 114.3 30 114.33 30 114.35 30.01 114.37 30.02 114.4 30.02 114.42 30.03 114.44 30.03 114.47 30.04 114.49 30.04 114.51 30.05 114.53 30.05 114.56 30.06 114.58 30.07 114.6 30.07 114.63 30.08 114.65 30.08 114.67 30.09 114.69 30.09 114.72 30.1 114.74 30.1 114.76 30.11 114.79 30.12 114.81 30.12 114.83 30.13 114.86 30.13 114.88 30.14 114.9 30.14 114.92 30.15 114.95 30.15 114.97 30.16 114.99 30.17 115.02 30.17 115.04 30.18 115.06 30.18 115.08 30.19 115.11 30.19 115.13 30.2 115.15 30.2 115.18 30.21 115.2 30.21 115.22 30.22 115.25 30.23 115.27 30.23 115.29 30.24 115.31 30.24 115.34 30.25 115.36 30.25 115.38 30.26 115.41 30.26 115.43 30.27 115.45 30.28 115.48 30.28 115.5 30.29 115.52 30.29 115.54 30.3 115.57 30.3 115.59 30.31 115.61 30.31 115.64 30.32 115.66 30.33 115.68 30.33 115.7 30.34 115.73 30.34 115.75 30.35 115.77 30.35 115.8 30.36 115.82 30.36 115.84 30.37 115.87 30.38 115.89 30.38 115.91 30.39 115.93 30.39 115.96 30.4 115.98 30.4 116 30.41 116.03 30.41 116.05 30.42 116.07 30.43 116.09 30.43 116.12 30.44 116.14 30.44 116.16 30.45 116.19 30.45 116.21 30.46 116.23 30.46 116.26 30.47 116.28 30.48 116.3 30.48 116.32 30.49 116.35 30.49 116.37 30.5 116.39 30.5 116.42 30.51 116.44 30.51 116.46 30.52 116.49 30.52 116.51 30.53 116.53 30.54 116.55 30.54 116.58 30.55 116.6 30.55 116.62 30.56 116.65 30.56 116.67 30.57 116.69 30.57 116.71 30.58 116.74 30.59 116.76 30.59 116.78 30.6 116.81 30.6 116.83 30.61 116.85 30.61 116.88 30.62 116.9 30.62 116.92 30.63 116.94 30.64 116.97 30.64 116.99 30.65 117.01 30.65 117.04 30.66 117.06 30.66 117.08 30.67 117.1 30.67 117.13 30.68 117.15 30.69 117.17 30.69 117.2 30.7 117.22 30.7 117.24 30.71 117.27 30.71 117.29 30.72 117.31 30.72 117.33 30.73 117.36 30.74 117.38 30.74 117.4 30.75 117.43 30.75 117.45 30.76 117.47 30.76 117.49 30.77 117.52 30.77 117.54 30.78 117.56 30.79 117.59 30.79 117.61 30.8 117.63 30.8 117.66 30.81 117.68 30.81 117.7 30.82 117.72 30.82 117.75 30.83 117.77 30.84 117.79 30.84 117.82 30.85 117.84 30.85 117.86 30.86 117.89 30.86 117.91 30.87 117.93 30.87 117.95 30.88 117.98 30.89 118 30.89 118.02 30.9 118.05 30.9 118.07 30.91 118.09 30.91 118.11 30.92 118.14 30.92 118.16 30.93 118.18 30.94 118.21 30.94 118.23 30.95 118.25 30.95 118.28 30.96 118.3 30.96 118.32 30.97 118.34 30.97 118.37 30.98 118.39 30.99 118.41 30.99 118.44 31 118.46 31 118.48 31.01 118.5 31.01 118.53 31.02 118.55 31.02 118.57 31.03 118.6 31.04 118.62 31.04 118.64 31.05 118.67 31.05 118.69 31.06 118.71 31.06 118.73 31.07 118.76 31.07 118.78 31.08 118.8 31.09 118.83 31.09 118.85 31.1 118.87 31.1 118.9 31.11 118.92 31.11 118.94 31.12 118.96 31.12 118.99 31.13 119.01 31.14 119.03 31.14 119.06 31.15 119.08 31.15 119.1 31.16 119.12 31.16 119.15 31.17 119.17 31.17 119.19 31.18 119.22 31.18 119.24 31.19 119.26 31.2 119.29 31.2 119.31 31.21 119.33 31.21 119.35 31.22 119.38 31.22 119.4 31.23 119.42 31.23 119.45 31.24 119.47 31.25 119.49 31.25 119.51 31.26 119.54 31.26 119.56 31.27 119.58 31.27 119.61 31.28 119.63 31.28 119.65 31.29 119.68 31.3 119.7 31.3 119.72 31.31 119.74 31.31 119.77 31.32 119.79 31.32 119.81 31.33 119.84 31.33 119.86 31.34 119.88 31.35 119.91 31.35 119.93 31.36 119.95 31.36 119.97 31.37 120 31.37 120.02 31.38 120.04 31.38 120.07 31.39 120.09 31.4 120.11 31.4 120.13 31.41 120.16 31.41 120.18 31.42 120.2 31.42 120.23 31.43 120.25 31.43 120.27 31.44 120.3 31.44 120.32 31.45 120.34 31.46 120.36 31.46 120.39 31.47 120.41 31.47 120.43 31.48 120.46 31.48 120.48 31.49 120.5 31.49 120.52 31.5 120.55 31.51 120.57 31.51 120.59 31.52 120.62 31.52 120.64 31.53 120.66 31.53 120.69 31.54 120.71 31.54 120.73 31.55 120.75 31.56 120.78 31.56 120.8 31.57 120.82 31.57 120.85 31.58 120.87 31.58 120.89 31.59 120.92 31.59 120.94 31.6 120.96 31.6 120.98 31.61 121.01 31.62 121.03 31.62 121.05 31.63 121.08 31.63 121.1 31.64 121.12 31.64 121.14 31.65 121.17 31.65 121.19 31.66 121.21 31.67 121.24 31.67 121.26 31.68 121.28 31.68 121.31 31.69 121.33 31.69 121.35 31.7 121.37 31.7 121.4 31.71 121.42 31.71 121.44 31.72 121.47 31.73 121.49 31.73 121.51 31.74 121.53 31.74 121.56 31.75 121.58 31.75 121.6 31.76 121.63 31.76 121.65 31.77 121.67 31.78 121.7 31.78 121.72 31.79 121.74 31.79 121.76 31.8 121.79 31.8 121.81 31.81 121.83 31.81 121.86 31.82 121.88 31.82 121.9 31.83 121.92 31.84 121.95 31.84 121.97 31.85 121.99 31.85 122.02 31.86 122.04 31.86 122.06 31.87 122.09 31.87 122.11 31.88 122.13 31.89 122.15 31.89 122.18 31.9 122.2 31.9 122.22 31.91 122.25 31.91 122.27 31.92 122.29 31.92 122.32 31.93 122.34 31.93 122.36 31.94 122.38 31.95 122.41 31.95 122.43 31.96\"/>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-11\">\n",
" <g class=\"color_RGBA{Float32}(0.29803923f0,0.44705883f0,0.6901961f0,1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0\" fill=\"#4C72B0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-12\">\n",
" <circle cx=\"113.59\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"114.29\" cy=\"30.01\" r=\"0.3\"/>\n",
" <circle cx=\"114.21\" cy=\"29.99\" r=\"0.3\"/>\n",
" <circle cx=\"113.52\" cy=\"29.82\" r=\"0.3\"/>\n",
" <circle cx=\"111.87\" cy=\"29.42\" r=\"0.3\"/>\n",
" <circle cx=\"108.75\" cy=\"28.66\" r=\"0.3\"/>\n",
" <circle cx=\"110.52\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"111.22\" cy=\"29.26\" r=\"0.3\"/>\n",
" <circle cx=\"112.38\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"113.69\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"111.88\" cy=\"29.43\" r=\"0.3\"/>\n",
" <circle cx=\"113.7\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"109.72\" cy=\"28.9\" r=\"0.3\"/>\n",
" <circle cx=\"111.42\" cy=\"29.31\" r=\"0.3\"/>\n",
" <circle cx=\"109.7\" cy=\"28.9\" r=\"0.3\"/>\n",
" <circle cx=\"109.86\" cy=\"28.93\" r=\"0.3\"/>\n",
" <circle cx=\"108.58\" cy=\"28.62\" r=\"0.3\"/>\n",
" <circle cx=\"111.69\" cy=\"29.38\" r=\"0.3\"/>\n",
" <circle cx=\"109.72\" cy=\"28.9\" r=\"0.3\"/>\n",
" <circle cx=\"109.49\" cy=\"28.84\" r=\"0.3\"/>\n",
" <circle cx=\"112.85\" cy=\"29.66\" r=\"0.3\"/>\n",
" <circle cx=\"110.32\" cy=\"29.05\" r=\"0.3\"/>\n",
" <circle cx=\"108.68\" cy=\"28.64\" r=\"0.3\"/>\n",
" <circle cx=\"108.31\" cy=\"28.56\" r=\"0.3\"/>\n",
" <circle cx=\"106.98\" cy=\"28.23\" r=\"0.3\"/>\n",
" <circle cx=\"106.75\" cy=\"28.18\" r=\"0.3\"/>\n",
" <circle cx=\"106.23\" cy=\"28.05\" r=\"0.3\"/>\n",
" <circle cx=\"105.24\" cy=\"27.81\" r=\"0.3\"/>\n",
" <circle cx=\"106.81\" cy=\"28.19\" r=\"0.3\"/>\n",
" <circle cx=\"106.86\" cy=\"28.2\" r=\"0.3\"/>\n",
" <circle cx=\"107.65\" cy=\"28.39\" r=\"0.3\"/>\n",
" <circle cx=\"109.29\" cy=\"28.79\" r=\"0.3\"/>\n",
" <circle cx=\"108.36\" cy=\"28.57\" r=\"0.3\"/>\n",
" <circle cx=\"108.44\" cy=\"28.58\" r=\"0.3\"/>\n",
" <circle cx=\"111.35\" cy=\"29.29\" r=\"0.3\"/>\n",
" <circle cx=\"113.05\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"110.39\" cy=\"29.06\" r=\"0.3\"/>\n",
" <circle cx=\"112.56\" cy=\"29.59\" r=\"0.3\"/>\n",
" <circle cx=\"111.81\" cy=\"29.4\" r=\"0.3\"/>\n",
" <circle cx=\"114.25\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"115.28\" cy=\"30.25\" r=\"0.3\"/>\n",
" <circle cx=\"115.47\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"114.62\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"118.58\" cy=\"31.05\" r=\"0.3\"/>\n",
" <circle cx=\"116.27\" cy=\"30.49\" r=\"0.3\"/>\n",
" <circle cx=\"118.93\" cy=\"31.14\" r=\"0.3\"/>\n",
" <circle cx=\"116.19\" cy=\"30.47\" r=\"0.3\"/>\n",
" <circle cx=\"112.36\" cy=\"29.54\" r=\"0.3\"/>\n",
" <circle cx=\"110.3\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"113.51\" cy=\"29.82\" r=\"0.3\"/>\n",
" <circle cx=\"112.96\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"114.43\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"115.09\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"115.53\" cy=\"30.31\" r=\"0.3\"/>\n",
" <circle cx=\"114.44\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"116.29\" cy=\"30.49\" r=\"0.3\"/>\n",
" <circle cx=\"116\" cy=\"30.42\" r=\"0.3\"/>\n",
" <circle cx=\"113.41\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"114\" cy=\"29.94\" r=\"0.3\"/>\n",
" <circle cx=\"112.18\" cy=\"29.49\" r=\"0.3\"/>\n",
" <circle cx=\"113.27\" cy=\"29.76\" r=\"0.3\"/>\n",
" <circle cx=\"112.97\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"110.18\" cy=\"29.01\" r=\"0.3\"/>\n",
" <circle cx=\"111.53\" cy=\"29.34\" r=\"0.3\"/>\n",
" <circle cx=\"111.82\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"111.39\" cy=\"29.3\" r=\"0.3\"/>\n",
" <circle cx=\"111.78\" cy=\"29.4\" r=\"0.3\"/>\n",
" <circle cx=\"111.6\" cy=\"29.35\" r=\"0.3\"/>\n",
" <circle cx=\"110.56\" cy=\"29.1\" r=\"0.3\"/>\n",
" <circle cx=\"110.35\" cy=\"29.05\" r=\"0.3\"/>\n",
" <circle cx=\"106.99\" cy=\"28.23\" r=\"0.3\"/>\n",
" <circle cx=\"109.77\" cy=\"28.91\" r=\"0.3\"/>\n",
" <circle cx=\"111.82\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"109.65\" cy=\"28.88\" r=\"0.3\"/>\n",
" <circle cx=\"108.79\" cy=\"28.67\" r=\"0.3\"/>\n",
" <circle cx=\"108.36\" cy=\"28.56\" r=\"0.3\"/>\n",
" <circle cx=\"107.07\" cy=\"28.25\" r=\"0.3\"/>\n",
" <circle cx=\"107.2\" cy=\"28.28\" r=\"0.3\"/>\n",
" <circle cx=\"107.37\" cy=\"28.32\" r=\"0.3\"/>\n",
" <circle cx=\"110.01\" cy=\"28.96\" r=\"0.3\"/>\n",
" <circle cx=\"113.07\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"115.68\" cy=\"30.34\" r=\"0.3\"/>\n",
" <circle cx=\"116.49\" cy=\"30.54\" r=\"0.3\"/>\n",
" <circle cx=\"113.68\" cy=\"29.86\" r=\"0.3\"/>\n",
" <circle cx=\"113.08\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"112.84\" cy=\"29.65\" r=\"0.3\"/>\n",
" <circle cx=\"110.66\" cy=\"29.12\" r=\"0.3\"/>\n",
" <circle cx=\"109.03\" cy=\"28.72\" r=\"0.3\"/>\n",
" <circle cx=\"109.01\" cy=\"28.72\" r=\"0.3\"/>\n",
" <circle cx=\"111.82\" cy=\"29.4\" r=\"0.3\"/>\n",
" <circle cx=\"110.93\" cy=\"29.19\" r=\"0.3\"/>\n",
" <circle cx=\"111.2\" cy=\"29.25\" r=\"0.3\"/>\n",
" <circle cx=\"114.94\" cy=\"30.16\" r=\"0.3\"/>\n",
" <circle cx=\"115.85\" cy=\"30.38\" r=\"0.3\"/>\n",
" <circle cx=\"114.53\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"114.56\" cy=\"30.07\" r=\"0.3\"/>\n",
" <circle cx=\"113.8\" cy=\"29.88\" r=\"0.3\"/>\n",
" <circle cx=\"111.52\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"109.96\" cy=\"28.95\" r=\"0.3\"/>\n",
" <circle cx=\"112.63\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"116.12\" cy=\"30.45\" r=\"0.3\"/>\n",
" <circle cx=\"115.22\" cy=\"30.23\" r=\"0.3\"/>\n",
" <circle cx=\"114.5\" cy=\"30.05\" r=\"0.3\"/>\n",
" <circle cx=\"116.88\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"116.93\" cy=\"30.65\" r=\"0.3\"/>\n",
" <circle cx=\"118.88\" cy=\"31.12\" r=\"0.3\"/>\n",
" <circle cx=\"116.66\" cy=\"30.58\" r=\"0.3\"/>\n",
" <circle cx=\"112.99\" cy=\"29.69\" r=\"0.3\"/>\n",
" <circle cx=\"112.35\" cy=\"29.53\" r=\"0.3\"/>\n",
" <circle cx=\"114.29\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"113.5\" cy=\"29.81\" r=\"0.3\"/>\n",
" <circle cx=\"111.97\" cy=\"29.44\" r=\"0.3\"/>\n",
" <circle cx=\"113.38\" cy=\"29.78\" r=\"0.3\"/>\n",
" <circle cx=\"112.69\" cy=\"29.61\" r=\"0.3\"/>\n",
" <circle cx=\"112.92\" cy=\"29.67\" r=\"0.3\"/>\n",
" <circle cx=\"111.04\" cy=\"29.21\" r=\"0.3\"/>\n",
" <circle cx=\"110.71\" cy=\"29.13\" r=\"0.3\"/>\n",
" <circle cx=\"113.96\" cy=\"29.92\" r=\"0.3\"/>\n",
" <circle cx=\"116.02\" cy=\"30.42\" r=\"0.3\"/>\n",
" <circle cx=\"112.8\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"113.69\" cy=\"29.86\" r=\"0.3\"/>\n",
" <circle cx=\"115.18\" cy=\"30.22\" r=\"0.3\"/>\n",
" <circle cx=\"113.18\" cy=\"29.73\" r=\"0.3\"/>\n",
" <circle cx=\"111.91\" cy=\"29.42\" r=\"0.3\"/>\n",
" <circle cx=\"112.86\" cy=\"29.65\" r=\"0.3\"/>\n",
" <circle cx=\"114.52\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"115.05\" cy=\"30.19\" r=\"0.3\"/>\n",
" <circle cx=\"111.53\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"115.01\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"114.85\" cy=\"30.14\" r=\"0.3\"/>\n",
" <circle cx=\"115.11\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"111.31\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"109.32\" cy=\"28.79\" r=\"0.3\"/>\n",
" <circle cx=\"107.45\" cy=\"28.34\" r=\"0.3\"/>\n",
" <circle cx=\"106.75\" cy=\"28.17\" r=\"0.3\"/>\n",
" <circle cx=\"107.82\" cy=\"28.43\" r=\"0.3\"/>\n",
" <circle cx=\"106.54\" cy=\"28.12\" r=\"0.3\"/>\n",
" <circle cx=\"111.12\" cy=\"29.23\" r=\"0.3\"/>\n",
" <circle cx=\"111.58\" cy=\"29.34\" r=\"0.3\"/>\n",
" <circle cx=\"112.45\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"110.22\" cy=\"29.01\" r=\"0.3\"/>\n",
" <circle cx=\"110.41\" cy=\"29.06\" r=\"0.3\"/>\n",
" <circle cx=\"110.54\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"109.6\" cy=\"28.86\" r=\"0.3\"/>\n",
" <circle cx=\"112.8\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"112.03\" cy=\"29.45\" r=\"0.3\"/>\n",
" <circle cx=\"112.26\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"113.61\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"113.77\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"116.05\" cy=\"30.43\" r=\"0.3\"/>\n",
" <circle cx=\"115.15\" cy=\"30.21\" r=\"0.3\"/>\n",
" <circle cx=\"112.89\" cy=\"29.66\" r=\"0.3\"/>\n",
" <circle cx=\"111.45\" cy=\"29.31\" r=\"0.3\"/>\n",
" <circle cx=\"109.66\" cy=\"28.87\" r=\"0.3\"/>\n",
" <circle cx=\"110.92\" cy=\"29.18\" r=\"0.3\"/>\n",
" <circle cx=\"111.31\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"114.28\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"113.34\" cy=\"29.77\" r=\"0.3\"/>\n",
" <circle cx=\"110.73\" cy=\"29.13\" r=\"0.3\"/>\n",
" <circle cx=\"108.69\" cy=\"28.64\" r=\"0.3\"/>\n",
" <circle cx=\"110.65\" cy=\"29.11\" r=\"0.3\"/>\n",
" <circle cx=\"112.22\" cy=\"29.5\" r=\"0.3\"/>\n",
" <circle cx=\"109.08\" cy=\"28.73\" r=\"0.3\"/>\n",
" <circle cx=\"109.34\" cy=\"28.8\" r=\"0.3\"/>\n",
" <circle cx=\"110.54\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"111.11\" cy=\"29.23\" r=\"0.3\"/>\n",
" <circle cx=\"115.31\" cy=\"30.25\" r=\"0.3\"/>\n",
" <circle cx=\"113.36\" cy=\"29.77\" r=\"0.3\"/>\n",
" <circle cx=\"116.6\" cy=\"30.56\" r=\"0.3\"/>\n",
" <circle cx=\"114.63\" cy=\"30.08\" r=\"0.3\"/>\n",
" <circle cx=\"113.07\" cy=\"29.7\" r=\"0.3\"/>\n",
" <circle cx=\"113.76\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"117.13\" cy=\"30.69\" r=\"0.3\"/>\n",
" <circle cx=\"119.58\" cy=\"31.29\" r=\"0.3\"/>\n",
" <circle cx=\"118.67\" cy=\"31.06\" r=\"0.3\"/>\n",
" <circle cx=\"117.91\" cy=\"30.88\" r=\"0.3\"/>\n",
" <circle cx=\"116.26\" cy=\"30.48\" r=\"0.3\"/>\n",
" <circle cx=\"114.11\" cy=\"29.95\" r=\"0.3\"/>\n",
" <circle cx=\"112.64\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"114.18\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"113.48\" cy=\"29.8\" r=\"0.3\"/>\n",
" <circle cx=\"112.81\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"115.15\" cy=\"30.21\" r=\"0.3\"/>\n",
" <circle cx=\"112.77\" cy=\"29.63\" r=\"0.3\"/>\n",
" <circle cx=\"114.75\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"114.45\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"114.15\" cy=\"29.96\" r=\"0.3\"/>\n",
" <circle cx=\"112.35\" cy=\"29.53\" r=\"0.3\"/>\n",
" <circle cx=\"114.18\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"110.96\" cy=\"29.19\" r=\"0.3\"/>\n",
" <circle cx=\"115.49\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"116.43\" cy=\"30.52\" r=\"0.3\"/>\n",
" <circle cx=\"113.84\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"115.04\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"114.38\" cy=\"30.02\" r=\"0.3\"/>\n",
" <circle cx=\"110.53\" cy=\"29.08\" r=\"0.3\"/>\n",
" <circle cx=\"109.05\" cy=\"28.72\" r=\"0.3\"/>\n",
" <circle cx=\"106.77\" cy=\"28.17\" r=\"0.3\"/>\n",
" <circle cx=\"109.88\" cy=\"28.93\" r=\"0.3\"/>\n",
" <circle cx=\"112.06\" cy=\"29.46\" r=\"0.3\"/>\n",
" <circle cx=\"112.15\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"110.1\" cy=\"28.98\" r=\"0.3\"/>\n",
" <circle cx=\"113.86\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"112.8\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"110.89\" cy=\"29.17\" r=\"0.3\"/>\n",
" <circle cx=\"113.31\" cy=\"29.76\" r=\"0.3\"/>\n",
" <circle cx=\"114.05\" cy=\"29.94\" r=\"0.3\"/>\n",
" <circle cx=\"117.28\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"114.47\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"113.38\" cy=\"29.78\" r=\"0.3\"/>\n",
" <circle cx=\"115.55\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"113.43\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"115.77\" cy=\"30.36\" r=\"0.3\"/>\n",
" <circle cx=\"114.74\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"118.78\" cy=\"31.09\" r=\"0.3\"/>\n",
" <circle cx=\"117.96\" cy=\"30.89\" r=\"0.3\"/>\n",
" <circle cx=\"116.75\" cy=\"30.59\" r=\"0.3\"/>\n",
" <circle cx=\"115.03\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"111.86\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"114.12\" cy=\"29.95\" r=\"0.3\"/>\n",
" <circle cx=\"113.85\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"113.1\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"115.2\" cy=\"30.22\" r=\"0.3\"/>\n",
" <circle cx=\"113.09\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"112.43\" cy=\"29.54\" r=\"0.3\"/>\n",
" <circle cx=\"115.12\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"115.04\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"116.78\" cy=\"30.6\" r=\"0.3\"/>\n",
" <circle cx=\"117.08\" cy=\"30.68\" r=\"0.3\"/>\n",
" <circle cx=\"116.02\" cy=\"30.42\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.31\" r=\"0.3\"/>\n",
" <circle cx=\"113.47\" cy=\"29.8\" r=\"0.3\"/>\n",
" <circle cx=\"111.31\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"111.65\" cy=\"29.35\" r=\"0.3\"/>\n",
" <circle cx=\"113.42\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"110.64\" cy=\"29.11\" r=\"0.3\"/>\n",
" <circle cx=\"111.08\" cy=\"29.21\" r=\"0.3\"/>\n",
" <circle cx=\"112.16\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"112.26\" cy=\"29.5\" r=\"0.3\"/>\n",
" <circle cx=\"109.6\" cy=\"28.85\" r=\"0.3\"/>\n",
" <circle cx=\"109.42\" cy=\"28.81\" r=\"0.3\"/>\n",
" <circle cx=\"112.17\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"115.49\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"115.23\" cy=\"30.22\" r=\"0.3\"/>\n",
" <circle cx=\"115.43\" cy=\"30.27\" r=\"0.3\"/>\n",
" <circle cx=\"115.77\" cy=\"30.36\" r=\"0.3\"/>\n",
" <circle cx=\"112.28\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"114.13\" cy=\"29.96\" r=\"0.3\"/>\n",
" <circle cx=\"115.02\" cy=\"30.17\" r=\"0.3\"/>\n",
" <circle cx=\"115.84\" cy=\"30.37\" r=\"0.3\"/>\n",
" <circle cx=\"111.93\" cy=\"29.42\" r=\"0.3\"/>\n",
" <circle cx=\"114.33\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"112.58\" cy=\"29.58\" r=\"0.3\"/>\n",
" <circle cx=\"111\" cy=\"29.19\" r=\"0.3\"/>\n",
" <circle cx=\"112.61\" cy=\"29.59\" r=\"0.3\"/>\n",
" <circle cx=\"113.52\" cy=\"29.81\" r=\"0.3\"/>\n",
" <circle cx=\"112.82\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"111.32\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"112.07\" cy=\"29.45\" r=\"0.3\"/>\n",
" <circle cx=\"111.71\" cy=\"29.37\" r=\"0.3\"/>\n",
" <circle cx=\"109.37\" cy=\"28.8\" r=\"0.3\"/>\n",
" <circle cx=\"111.52\" cy=\"29.32\" r=\"0.3\"/>\n",
" <circle cx=\"112.45\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"115.06\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"116.58\" cy=\"30.55\" r=\"0.3\"/>\n",
" <circle cx=\"119.14\" cy=\"31.17\" r=\"0.3\"/>\n",
" <circle cx=\"118.05\" cy=\"30.91\" r=\"0.3\"/>\n",
" <circle cx=\"118.61\" cy=\"31.04\" r=\"0.3\"/>\n",
" <circle cx=\"115.06\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"113.01\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"113.18\" cy=\"29.72\" r=\"0.3\"/>\n",
" <circle cx=\"115.5\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"115.68\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"116.66\" cy=\"30.57\" r=\"0.3\"/>\n",
" <circle cx=\"117.79\" cy=\"30.84\" r=\"0.3\"/>\n",
" <circle cx=\"118.37\" cy=\"30.99\" r=\"0.3\"/>\n",
" <circle cx=\"115.45\" cy=\"30.27\" r=\"0.3\"/>\n",
" <circle cx=\"112.35\" cy=\"29.52\" r=\"0.3\"/>\n",
" <circle cx=\"113.06\" cy=\"29.69\" r=\"0.3\"/>\n",
" <circle cx=\"113.47\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"114.42\" cy=\"30.02\" r=\"0.3\"/>\n",
" <circle cx=\"116.91\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"116.59\" cy=\"30.55\" r=\"0.3\"/>\n",
" <circle cx=\"117.49\" cy=\"30.77\" r=\"0.3\"/>\n",
" <circle cx=\"115.3\" cy=\"30.24\" r=\"0.3\"/>\n",
" <circle cx=\"116.92\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"119.34\" cy=\"31.22\" r=\"0.3\"/>\n",
" <circle cx=\"119.02\" cy=\"31.14\" r=\"0.3\"/>\n",
" <circle cx=\"117.3\" cy=\"30.72\" r=\"0.3\"/>\n",
" <circle cx=\"118.43\" cy=\"31\" r=\"0.3\"/>\n",
" <circle cx=\"117.63\" cy=\"30.8\" r=\"0.3\"/>\n",
" <circle cx=\"115.14\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"117\" cy=\"30.65\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"118.38\" cy=\"30.99\" r=\"0.3\"/>\n",
" <circle cx=\"119.44\" cy=\"31.24\" r=\"0.3\"/>\n",
" <circle cx=\"118.32\" cy=\"30.97\" r=\"0.3\"/>\n",
" <circle cx=\"117.15\" cy=\"30.69\" r=\"0.3\"/>\n",
" <circle cx=\"113.45\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"112.78\" cy=\"29.62\" r=\"0.3\"/>\n",
" <circle cx=\"112.83\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"113.99\" cy=\"29.92\" r=\"0.3\"/>\n",
" <circle cx=\"111.54\" cy=\"29.32\" r=\"0.3\"/>\n",
" <circle cx=\"112.32\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"109.23\" cy=\"28.76\" r=\"0.3\"/>\n",
" <circle cx=\"106.87\" cy=\"28.19\" r=\"0.3\"/>\n",
" <circle cx=\"107.94\" cy=\"28.45\" r=\"0.3\"/>\n",
" <circle cx=\"109.33\" cy=\"28.78\" r=\"0.3\"/>\n",
" <circle cx=\"109.86\" cy=\"28.91\" r=\"0.3\"/>\n",
" <circle cx=\"112.55\" cy=\"29.57\" r=\"0.3\"/>\n",
" <circle cx=\"112.24\" cy=\"29.49\" r=\"0.3\"/>\n",
" <circle cx=\"110.32\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.54\" cy=\"28.59\" r=\"0.3\"/>\n",
" <circle cx=\"110.03\" cy=\"28.95\" r=\"0.3\"/>\n",
" <circle cx=\"108.06\" cy=\"28.48\" r=\"0.3\"/>\n",
" <circle cx=\"108.98\" cy=\"28.7\" r=\"0.3\"/>\n",
" <circle cx=\"107.79\" cy=\"28.41\" r=\"0.3\"/>\n",
" <circle cx=\"111.78\" cy=\"29.38\" r=\"0.3\"/>\n",
" <circle cx=\"114.29\" cy=\"29.99\" r=\"0.3\"/>\n",
" <circle cx=\"115.36\" cy=\"30.25\" r=\"0.3\"/>\n",
" <circle cx=\"117.9\" cy=\"30.87\" r=\"0.3\"/>\n",
" <circle cx=\"115.76\" cy=\"30.35\" r=\"0.3\"/>\n",
" <circle cx=\"115.62\" cy=\"30.31\" r=\"0.3\"/>\n",
" <circle cx=\"113.65\" cy=\"29.83\" r=\"0.3\"/>\n",
" <circle cx=\"116.17\" cy=\"30.45\" r=\"0.3\"/>\n",
" <circle cx=\"118.57\" cy=\"31.03\" r=\"0.3\"/>\n",
" <circle cx=\"115.98\" cy=\"30.4\" r=\"0.3\"/>\n",
" <circle cx=\"117.26\" cy=\"30.71\" r=\"0.3\"/>\n",
" <circle cx=\"116.64\" cy=\"30.56\" r=\"0.3\"/>\n",
" <circle cx=\"118.15\" cy=\"30.93\" r=\"0.3\"/>\n",
" <circle cx=\"119.84\" cy=\"31.34\" r=\"0.3\"/>\n",
" <circle cx=\"117.93\" cy=\"30.87\" r=\"0.3\"/>\n",
" <circle cx=\"117.64\" cy=\"30.8\" r=\"0.3\"/>\n",
" <circle cx=\"114.6\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"111.13\" cy=\"29.22\" r=\"0.3\"/>\n",
" <circle cx=\"110.31\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"109.99\" cy=\"28.94\" r=\"0.3\"/>\n",
" <circle cx=\"108.01\" cy=\"28.46\" r=\"0.3\"/>\n",
" <circle cx=\"113.15\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"114.79\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"114.94\" cy=\"30.15\" r=\"0.3\"/>\n",
" <circle cx=\"116.68\" cy=\"30.57\" r=\"0.3\"/>\n",
" <circle cx=\"116.31\" cy=\"30.48\" r=\"0.3\"/>\n",
" <circle cx=\"112.82\" cy=\"29.63\" r=\"0.3\"/>\n",
" <circle cx=\"114.2\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"112.47\" cy=\"29.54\" r=\"0.3\"/>\n",
" <circle cx=\"113\" cy=\"29.67\" r=\"0.3\"/>\n",
" <circle cx=\"114.53\" cy=\"30.05\" r=\"0.3\"/>\n",
" <circle cx=\"115.1\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"115.57\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"117.53\" cy=\"30.77\" r=\"0.3\"/>\n",
" <circle cx=\"115.97\" cy=\"30.4\" r=\"0.3\"/>\n",
" <circle cx=\"114.17\" cy=\"29.96\" r=\"0.3\"/>\n",
" <circle cx=\"112.05\" cy=\"29.44\" r=\"0.3\"/>\n",
" <circle cx=\"111.37\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"115.87\" cy=\"30.37\" r=\"0.3\"/>\n",
" <circle cx=\"114.46\" cy=\"30.03\" r=\"0.3\"/>\n",
" <circle cx=\"118.06\" cy=\"30.9\" r=\"0.3\"/>\n",
" <circle cx=\"116.55\" cy=\"30.54\" r=\"0.3\"/>\n",
" <circle cx=\"115.58\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"117.83\" cy=\"30.85\" r=\"0.3\"/>\n",
" <circle cx=\"116.87\" cy=\"30.61\" r=\"0.3\"/>\n",
" <circle cx=\"119.36\" cy=\"31.22\" r=\"0.3\"/>\n",
" <circle cx=\"118.19\" cy=\"30.93\" r=\"0.3\"/>\n",
" <circle cx=\"116.54\" cy=\"30.53\" r=\"0.3\"/>\n",
" <circle cx=\"115.42\" cy=\"30.26\" r=\"0.3\"/>\n",
" <circle cx=\"114.06\" cy=\"29.93\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"114.21\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"112.5\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"115.75\" cy=\"30.34\" r=\"0.3\"/>\n",
" <circle cx=\"111.9\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"110.3\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.38\" cy=\"28.55\" r=\"0.3\"/>\n",
" <circle cx=\"109.98\" cy=\"28.94\" r=\"0.3\"/>\n",
" <circle cx=\"113.6\" cy=\"29.82\" r=\"0.3\"/>\n",
" <circle cx=\"110.84\" cy=\"29.15\" r=\"0.3\"/>\n",
" <circle cx=\"108.93\" cy=\"28.68\" r=\"0.3\"/>\n",
" <circle cx=\"107.83\" cy=\"28.41\" r=\"0.3\"/>\n",
" <circle cx=\"109.59\" cy=\"28.84\" r=\"0.3\"/>\n",
" <circle cx=\"111.58\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"108.97\" cy=\"28.69\" r=\"0.3\"/>\n",
" <circle cx=\"111.17\" cy=\"29.23\" r=\"0.3\"/>\n",
" <circle cx=\"110.85\" cy=\"29.15\" r=\"0.3\"/>\n",
" <circle cx=\"111.94\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"110.4\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"112.22\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"112.02\" cy=\"29.43\" r=\"0.3\"/>\n",
" <circle cx=\"113.44\" cy=\"29.78\" r=\"0.3\"/>\n",
" <circle cx=\"112.02\" cy=\"29.43\" r=\"0.3\"/>\n",
" <circle cx=\"113.27\" cy=\"29.74\" r=\"0.3\"/>\n",
" <circle cx=\"116.8\" cy=\"30.59\" r=\"0.3\"/>\n",
" <circle cx=\"117.35\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"117.91\" cy=\"30.86\" r=\"0.3\"/>\n",
" <circle cx=\"116.18\" cy=\"30.44\" r=\"0.3\"/>\n",
" <circle cx=\"117.86\" cy=\"30.85\" r=\"0.3\"/>\n",
" <circle cx=\"117.52\" cy=\"30.77\" r=\"0.3\"/>\n",
" <circle cx=\"118.03\" cy=\"30.89\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"114.58\" cy=\"30.05\" r=\"0.3\"/>\n",
" <circle cx=\"113.05\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"114.74\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"113.49\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"110.38\" cy=\"29.03\" r=\"0.3\"/>\n",
" <circle cx=\"110.41\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"112.92\" cy=\"29.65\" r=\"0.3\"/>\n",
" <circle cx=\"113.32\" cy=\"29.75\" r=\"0.3\"/>\n",
" <circle cx=\"111.34\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"114.48\" cy=\"30.03\" r=\"0.3\"/>\n",
" <circle cx=\"116.89\" cy=\"30.61\" r=\"0.3\"/>\n",
" <circle cx=\"117.03\" cy=\"30.65\" r=\"0.3\"/>\n",
" <circle cx=\"118.13\" cy=\"30.92\" r=\"0.3\"/>\n",
" <circle cx=\"118.33\" cy=\"30.96\" r=\"0.3\"/>\n",
" <circle cx=\"119.59\" cy=\"31.27\" r=\"0.3\"/>\n",
" <circle cx=\"117.19\" cy=\"30.69\" r=\"0.3\"/>\n",
" <circle cx=\"114.01\" cy=\"29.92\" r=\"0.3\"/>\n",
" <circle cx=\"112.61\" cy=\"29.57\" r=\"0.3\"/>\n",
" <circle cx=\"115.36\" cy=\"30.24\" r=\"0.3\"/>\n",
" <circle cx=\"117.36\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"116.41\" cy=\"30.5\" r=\"0.3\"/>\n",
" <circle cx=\"118.68\" cy=\"31.05\" r=\"0.3\"/>\n",
" <circle cx=\"120.03\" cy=\"31.38\" r=\"0.3\"/>\n",
" <circle cx=\"117.86\" cy=\"30.85\" r=\"0.3\"/>\n",
" <circle cx=\"114.75\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"112.62\" cy=\"29.58\" r=\"0.3\"/>\n",
" <circle cx=\"112.58\" cy=\"29.57\" r=\"0.3\"/>\n",
" <circle cx=\"109.69\" cy=\"28.86\" r=\"0.3\"/>\n",
" <circle cx=\"110.42\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"109.59\" cy=\"28.84\" r=\"0.3\"/>\n",
" <circle cx=\"111.62\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"114.74\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"114.11\" cy=\"29.94\" r=\"0.3\"/>\n",
" <circle cx=\"114.32\" cy=\"29.99\" r=\"0.3\"/>\n",
" <circle cx=\"112.14\" cy=\"29.46\" r=\"0.3\"/>\n",
" <circle cx=\"113.27\" cy=\"29.73\" r=\"0.3\"/>\n",
" <circle cx=\"112.71\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"113.98\" cy=\"29.91\" r=\"0.3\"/>\n",
" <circle cx=\"113.16\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"116.44\" cy=\"30.5\" r=\"0.3\"/>\n",
" <circle cx=\"117.46\" cy=\"30.75\" r=\"0.3\"/>\n",
" <circle cx=\"119.2\" cy=\"31.17\" r=\"0.3\"/>\n",
" <circle cx=\"118.51\" cy=\"31.01\" r=\"0.3\"/>\n",
" <circle cx=\"117.33\" cy=\"30.72\" r=\"0.3\"/>\n",
" <circle cx=\"116.26\" cy=\"30.46\" r=\"0.3\"/>\n",
" <circle cx=\"115.92\" cy=\"30.38\" r=\"0.3\"/>\n",
" <circle cx=\"115.73\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"114.67\" cy=\"30.07\" r=\"0.3\"/>\n",
" <circle cx=\"115.61\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"111.65\" cy=\"29.34\" r=\"0.3\"/>\n",
" <circle cx=\"108.58\" cy=\"28.59\" r=\"0.3\"/>\n",
" <circle cx=\"106.55\" cy=\"28.1\" r=\"0.3\"/>\n",
" <circle cx=\"108.51\" cy=\"28.58\" r=\"0.3\"/>\n",
" <circle cx=\"106.5\" cy=\"28.08\" r=\"0.3\"/>\n",
" <circle cx=\"110.21\" cy=\"28.99\" r=\"0.3\"/>\n",
" <circle cx=\"113.12\" cy=\"29.7\" r=\"0.3\"/>\n",
" <circle cx=\"110.86\" cy=\"29.15\" r=\"0.3\"/>\n",
" <circle cx=\"108.3\" cy=\"28.52\" r=\"0.3\"/>\n",
" <circle cx=\"112.52\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"111.62\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"110.99\" cy=\"29.18\" r=\"0.3\"/>\n",
" <circle cx=\"109.55\" cy=\"28.83\" r=\"0.3\"/>\n",
" <circle cx=\"112.36\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"115.03\" cy=\"30.16\" r=\"0.3\"/>\n",
" <circle cx=\"114.49\" cy=\"30.03\" r=\"0.3\"/>\n",
" <circle cx=\"115.74\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"113.78\" cy=\"29.86\" r=\"0.3\"/>\n",
" <circle cx=\"116.15\" cy=\"30.43\" r=\"0.3\"/>\n",
" <circle cx=\"112.88\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"114.46\" cy=\"30.02\" r=\"0.3\"/>\n",
" <circle cx=\"111.95\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"111.87\" cy=\"29.39\" r=\"0.3\"/>\n",
" <circle cx=\"114.68\" cy=\"30.07\" r=\"0.3\"/>\n",
" <circle cx=\"115.91\" cy=\"30.37\" r=\"0.3\"/>\n",
" <circle cx=\"115.34\" cy=\"30.23\" r=\"0.3\"/>\n",
" <circle cx=\"116.28\" cy=\"30.46\" r=\"0.3\"/>\n",
" <circle cx=\"118.56\" cy=\"31.02\" r=\"0.3\"/>\n",
" <circle cx=\"119.01\" cy=\"31.13\" r=\"0.3\"/>\n",
" <circle cx=\"115.94\" cy=\"30.38\" r=\"0.3\"/>\n",
" <circle cx=\"113.36\" cy=\"29.75\" r=\"0.3\"/>\n",
" <circle cx=\"112.78\" cy=\"29.61\" r=\"0.3\"/>\n",
" <circle cx=\"116.17\" cy=\"30.44\" r=\"0.3\"/>\n",
" <circle cx=\"116.73\" cy=\"30.57\" r=\"0.3\"/>\n",
" <circle cx=\"119.15\" cy=\"31.16\" r=\"0.3\"/>\n",
" <circle cx=\"121.31\" cy=\"31.68\" r=\"0.3\"/>\n",
" <circle cx=\"122.45\" cy=\"31.96\" r=\"0.3\"/>\n",
" <circle cx=\"120.36\" cy=\"31.45\" r=\"0.3\"/>\n",
" <circle cx=\"121.94\" cy=\"31.84\" r=\"0.3\"/>\n",
" <circle cx=\"122.43\" cy=\"31.95\" r=\"0.3\"/>\n",
" <circle cx=\"117.38\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"115.99\" cy=\"30.39\" r=\"0.3\"/>\n",
" <circle cx=\"113.74\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"112.74\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"109.26\" cy=\"28.75\" r=\"0.3\"/>\n",
" <circle cx=\"106.62\" cy=\"28.11\" r=\"0.3\"/>\n",
" <circle cx=\"110.09\" cy=\"28.96\" r=\"0.3\"/>\n",
" <circle cx=\"110.37\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.57\" cy=\"28.59\" r=\"0.3\"/>\n",
" <circle cx=\"110.18\" cy=\"28.98\" r=\"0.3\"/>\n",
" <circle cx=\"106.68\" cy=\"28.12\" r=\"0.3\"/>\n",
" <circle cx=\"107.94\" cy=\"28.43\" r=\"0.3\"/>\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-bcfbb97576434424b36d8f92a03d2211-element-13\">\n",
" <text x=\"20.98\" y=\"78.72\" text-anchor=\"end\" dy=\"0.35em\">0.850</text>\n",
" <text x=\"20.98\" y=\"54.81\" text-anchor=\"end\" dy=\"0.35em\">0.855</text>\n",
" <text x=\"20.98\" y=\"30.91\" text-anchor=\"end\" dy=\"0.35em\">0.860</text>\n",
" <text x=\"20.98\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\">0.865</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-bcfbb97576434424b36d8f92a03d2211-element-14\">\n",
" <text x=\"8.81\" y=\"40.86\" text-anchor=\"middle\" dy=\"0.35em\" transform=\"rotate(-90, 8.81, 42.86)\">Exchange Rate</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-5\">\n",
" <path d=\"M21.98,5 L 136.42 5 136.42 80.72 21.98 80.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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\n",
" stroke=\"none\"\n",
" fill=\"#000000\"\n",
" stroke-width=\"0.3\"\n",
" font-size=\"3.88\"\n",
"\n",
" id=\"fig-80217fdcce744fcf9ed925850409e4d1\">\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-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-80217fdcce744fcf9ed925850409e4d1-element-2\">\n",
" <text x=\"79.2\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">c₂ / c₁</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-80217fdcce744fcf9ed925850409e4d1-element-3\">\n",
" <text x=\"-123.28\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.912</text>\n",
" <text x=\"-86.46\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.913</text>\n",
" <text x=\"-49.65\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.914</text>\n",
" <text x=\"-12.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.915</text>\n",
" <text x=\"23.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.916</text>\n",
" <text x=\"60.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.917</text>\n",
" <text x=\"97.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.918</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.919</text>\n",
" <text x=\"171.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.920</text>\n",
" <text x=\"208.05\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.921</text>\n",
" <text x=\"244.86\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.922</text>\n",
" <text x=\"281.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.923</text>\n",
" <text x=\"-90.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9129</text>\n",
" <text x=\"-86.46\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9130</text>\n",
" <text x=\"-82.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9131</text>\n",
" <text x=\"-79.1\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9132</text>\n",
" <text x=\"-75.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9133</text>\n",
" <text x=\"-71.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9134</text>\n",
" <text x=\"-68.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9135</text>\n",
" <text x=\"-64.38\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9136</text>\n",
" <text x=\"-60.69\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9137</text>\n",
" <text x=\"-57.01\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9138</text>\n",
" <text x=\"-53.33\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9139</text>\n",
" <text x=\"-49.65\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9140</text>\n",
" <text x=\"-45.97\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9141</text>\n",
" <text x=\"-42.29\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9142</text>\n",
" <text x=\"-38.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9143</text>\n",
" <text x=\"-34.92\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9144</text>\n",
" <text x=\"-31.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9145</text>\n",
" <text x=\"-27.56\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9146</text>\n",
" <text x=\"-23.88\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9147</text>\n",
" <text x=\"-20.2\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9148</text>\n",
" <text x=\"-16.52\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9149</text>\n",
" <text x=\"-12.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9150</text>\n",
" <text x=\"-9.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9151</text>\n",
" <text x=\"-5.47\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9152</text>\n",
" <text x=\"-1.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9153</text>\n",
" <text x=\"1.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9154</text>\n",
" <text x=\"5.57\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9155</text>\n",
" <text x=\"9.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9156</text>\n",
" <text x=\"12.93\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9157</text>\n",
" <text x=\"16.62\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9158</text>\n",
" <text x=\"20.3\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9159</text>\n",
" <text x=\"23.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9160</text>\n",
" <text x=\"27.66\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9161</text>\n",
" <text x=\"31.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9162</text>\n",
" <text x=\"35.02\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9163</text>\n",
" <text x=\"38.7\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9164</text>\n",
" <text x=\"42.39\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9165</text>\n",
" <text x=\"46.07\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9166</text>\n",
" <text x=\"49.75\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9167</text>\n",
" <text x=\"53.43\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9168</text>\n",
" <text x=\"57.11\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9169</text>\n",
" <text x=\"60.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9170</text>\n",
" <text x=\"64.47\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9171</text>\n",
" <text x=\"68.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9172</text>\n",
" <text x=\"71.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9173</text>\n",
" <text x=\"75.52\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9174</text>\n",
" <text x=\"79.2\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9175</text>\n",
" <text x=\"82.88\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9176</text>\n",
" <text x=\"86.56\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9177</text>\n",
" <text x=\"90.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9178</text>\n",
" <text x=\"93.93\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9179</text>\n",
" <text x=\"97.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9180</text>\n",
" <text x=\"101.29\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9181</text>\n",
" <text x=\"104.97\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9182</text>\n",
" <text x=\"108.65\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9183</text>\n",
" <text x=\"112.33\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9184</text>\n",
" <text x=\"116.01\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9185</text>\n",
" <text x=\"119.7\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9186</text>\n",
" <text x=\"123.38\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9187</text>\n",
" <text x=\"127.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9188</text>\n",
" <text x=\"130.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9189</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9190</text>\n",
" <text x=\"138.1\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9191</text>\n",
" <text x=\"141.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9192</text>\n",
" <text x=\"145.47\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9193</text>\n",
" <text x=\"149.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9194</text>\n",
" <text x=\"152.83\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9195</text>\n",
" <text x=\"156.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9196</text>\n",
" <text x=\"160.19\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9197</text>\n",
" <text x=\"163.87\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9198</text>\n",
" <text x=\"167.55\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9199</text>\n",
" <text x=\"171.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9200</text>\n",
" <text x=\"174.92\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9201</text>\n",
" <text x=\"178.6\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9202</text>\n",
" <text x=\"182.28\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9203</text>\n",
" <text x=\"185.96\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9204</text>\n",
" <text x=\"189.64\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9205</text>\n",
" <text x=\"193.32\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9206</text>\n",
" <text x=\"197.01\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9207</text>\n",
" <text x=\"200.69\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9208</text>\n",
" <text x=\"204.37\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9209</text>\n",
" <text x=\"208.05\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9210</text>\n",
" <text x=\"211.73\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9211</text>\n",
" <text x=\"215.41\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9212</text>\n",
" <text x=\"219.09\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9213</text>\n",
" <text x=\"222.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9214</text>\n",
" <text x=\"226.46\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9215</text>\n",
" <text x=\"230.14\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9216</text>\n",
" <text x=\"233.82\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9217</text>\n",
" <text x=\"237.5\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9218</text>\n",
" <text x=\"241.18\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9219</text>\n",
" <text x=\"244.86\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9220</text>\n",
" <text x=\"-104.87\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.9125</text>\n",
" <text x=\"-12.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.9150</text>\n",
" <text x=\"79.2\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.9175</text>\n",
" <text x=\"171.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.9200</text>\n",
" <text x=\"263.27\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.9225</text>\n",
" <text x=\"-93.83\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9128</text>\n",
" <text x=\"-86.46\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9130</text>\n",
" <text x=\"-79.1\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9132</text>\n",
" <text x=\"-71.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9134</text>\n",
" <text x=\"-64.38\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9136</text>\n",
" <text x=\"-57.01\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9138</text>\n",
" <text x=\"-49.65\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9140</text>\n",
" <text x=\"-42.29\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9142</text>\n",
" <text x=\"-34.92\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9144</text>\n",
" <text x=\"-27.56\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9146</text>\n",
" <text x=\"-20.2\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9148</text>\n",
" <text x=\"-12.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9150</text>\n",
" <text x=\"-5.47\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9152</text>\n",
" <text x=\"1.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9154</text>\n",
" <text x=\"9.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9156</text>\n",
" <text x=\"16.62\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9158</text>\n",
" <text x=\"23.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9160</text>\n",
" <text x=\"31.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9162</text>\n",
" <text x=\"38.7\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9164</text>\n",
" <text x=\"46.07\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9166</text>\n",
" <text x=\"53.43\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9168</text>\n",
" <text x=\"60.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9170</text>\n",
" <text x=\"68.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9172</text>\n",
" <text x=\"75.52\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9174</text>\n",
" <text x=\"82.88\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9176</text>\n",
" <text x=\"90.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9178</text>\n",
" <text x=\"97.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9180</text>\n",
" <text x=\"104.97\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9182</text>\n",
" <text x=\"112.33\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9184</text>\n",
" <text x=\"119.7\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9186</text>\n",
" <text x=\"127.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9188</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9190</text>\n",
" <text x=\"141.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9192</text>\n",
" <text x=\"149.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9194</text>\n",
" <text x=\"156.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9196</text>\n",
" <text x=\"163.87\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9198</text>\n",
" <text x=\"171.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9200</text>\n",
" <text x=\"178.6\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9202</text>\n",
" <text x=\"185.96\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9204</text>\n",
" <text x=\"193.32\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9206</text>\n",
" <text x=\"200.69\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9208</text>\n",
" <text x=\"208.05\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9210</text>\n",
" <text x=\"215.41\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9212</text>\n",
" <text x=\"222.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9214</text>\n",
" <text x=\"230.14\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9216</text>\n",
" <text x=\"237.5\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9218</text>\n",
" <text x=\"244.86\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.9220</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-80217fdcce744fcf9ed925850409e4d1-element-5)\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-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-80217fdcce744fcf9ed925850409e4d1-element-6\">\n",
" <rect x=\"21.98\" y=\"5\" width=\"114.44\" height=\"75.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-7\">\n",
" <path fill=\"none\" d=\"M21.98,174.33 L 136.42 174.33\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,150.43 L 136.42 150.43\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,126.53 L 136.42 126.53\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,102.62 L 136.42 102.62\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,78.72 L 136.42 78.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M21.98,54.81 L 136.42 54.81\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M21.98,30.91 L 136.42 30.91\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M21.98,7 L 136.42 7\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M21.98,-16.9 L 136.42 -16.9\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-40.81 L 136.42 -40.81\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-64.71 L 136.42 -64.71\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-88.62 L 136.42 -88.62\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,152.82 L 136.42 152.82\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,150.43 L 136.42 150.43\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,148.04 L 136.42 148.04\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,145.65 L 136.42 145.65\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,143.26 L 136.42 143.26\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,140.87 L 136.42 140.87\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,138.48 L 136.42 138.48\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,136.09 L 136.42 136.09\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,133.7 L 136.42 133.7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,131.31 L 136.42 131.31\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,128.92 L 136.42 128.92\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,126.53 L 136.42 126.53\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,124.13 L 136.42 124.13\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,121.74 L 136.42 121.74\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,119.35 L 136.42 119.35\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,116.96 L 136.42 116.96\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,114.57 L 136.42 114.57\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,112.18 L 136.42 112.18\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,109.79 L 136.42 109.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,107.4 L 136.42 107.4\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,105.01 L 136.42 105.01\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,102.62 L 136.42 102.62\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,100.23 L 136.42 100.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,97.84 L 136.42 97.84\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,95.45 L 136.42 95.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,93.06 L 136.42 93.06\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,90.67 L 136.42 90.67\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,88.28 L 136.42 88.28\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,85.89 L 136.42 85.89\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,83.5 L 136.42 83.5\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,81.11 L 136.42 81.11\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,78.72 L 136.42 78.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,76.32 L 136.42 76.32\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,73.93 L 136.42 73.93\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,71.54 L 136.42 71.54\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,69.15 L 136.42 69.15\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,66.76 L 136.42 66.76\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,64.37 L 136.42 64.37\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,61.98 L 136.42 61.98\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,59.59 L 136.42 59.59\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,57.2 L 136.42 57.2\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,54.81 L 136.42 54.81\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,52.42 L 136.42 52.42\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,50.03 L 136.42 50.03\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,47.64 L 136.42 47.64\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,45.25 L 136.42 45.25\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,42.86 L 136.42 42.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,40.47 L 136.42 40.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,38.08 L 136.42 38.08\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,35.69 L 136.42 35.69\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,33.3 L 136.42 33.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,30.91 L 136.42 30.91\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,28.51 L 136.42 28.51\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,26.12 L 136.42 26.12\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,23.73 L 136.42 23.73\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,21.34 L 136.42 21.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,18.95 L 136.42 18.95\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,16.56 L 136.42 16.56\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,14.17 L 136.42 14.17\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,11.78 L 136.42 11.78\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,9.39 L 136.42 9.39\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,7 L 136.42 7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,4.61 L 136.42 4.61\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,2.22 L 136.42 2.22\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-0.17 L 136.42 -0.17\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-2.56 L 136.42 -2.56\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-4.95 L 136.42 -4.95\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-7.34 L 136.42 -7.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-9.73 L 136.42 -9.73\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-12.12 L 136.42 -12.12\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-14.51 L 136.42 -14.51\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-16.9 L 136.42 -16.9\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-19.3 L 136.42 -19.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-21.69 L 136.42 -21.69\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-24.08 L 136.42 -24.08\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-26.47 L 136.42 -26.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-28.86 L 136.42 -28.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-31.25 L 136.42 -31.25\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-33.64 L 136.42 -33.64\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-36.03 L 136.42 -36.03\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-38.42 L 136.42 -38.42\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-40.81 L 136.42 -40.81\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-43.2 L 136.42 -43.2\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-45.59 L 136.42 -45.59\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-47.98 L 136.42 -47.98\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-50.37 L 136.42 -50.37\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-52.76 L 136.42 -52.76\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-55.15 L 136.42 -55.15\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-57.54 L 136.42 -57.54\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-59.93 L 136.42 -59.93\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-62.32 L 136.42 -62.32\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-64.71 L 136.42 -64.71\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,222.14 L 136.42 222.14\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,126.53 L 136.42 126.53\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,30.91 L 136.42 30.91\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-64.71 L 136.42 -64.71\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,155.21 L 136.42 155.21\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,150.43 L 136.42 150.43\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,145.65 L 136.42 145.65\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,140.87 L 136.42 140.87\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,136.09 L 136.42 136.09\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,131.31 L 136.42 131.31\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,126.53 L 136.42 126.53\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,121.74 L 136.42 121.74\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,116.96 L 136.42 116.96\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,112.18 L 136.42 112.18\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,107.4 L 136.42 107.4\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,102.62 L 136.42 102.62\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,97.84 L 136.42 97.84\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,93.06 L 136.42 93.06\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,88.28 L 136.42 88.28\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,83.5 L 136.42 83.5\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,78.72 L 136.42 78.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,73.93 L 136.42 73.93\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,69.15 L 136.42 69.15\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,64.37 L 136.42 64.37\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,59.59 L 136.42 59.59\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,54.81 L 136.42 54.81\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,50.03 L 136.42 50.03\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,45.25 L 136.42 45.25\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,40.47 L 136.42 40.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,35.69 L 136.42 35.69\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,30.91 L 136.42 30.91\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,26.12 L 136.42 26.12\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,21.34 L 136.42 21.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,16.56 L 136.42 16.56\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,11.78 L 136.42 11.78\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,7 L 136.42 7\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,2.22 L 136.42 2.22\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-2.56 L 136.42 -2.56\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-7.34 L 136.42 -7.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-12.12 L 136.42 -12.12\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-16.9 L 136.42 -16.9\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-21.69 L 136.42 -21.69\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-26.47 L 136.42 -26.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-31.25 L 136.42 -31.25\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-36.03 L 136.42 -36.03\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-40.81 L 136.42 -40.81\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-45.59 L 136.42 -45.59\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-50.37 L 136.42 -50.37\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-55.15 L 136.42 -55.15\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-59.93 L 136.42 -59.93\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.98,-64.71 L 136.42 -64.71\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-8\">\n",
" <path fill=\"none\" d=\"M-123.28,5 L -123.28 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.46,5 L -86.46 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-49.65,5 L -49.65 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-12.84,5 L -12.84 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M23.98,5 L 23.98 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M60.79,5 L 60.79 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M97.61,5 L 97.61 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M171.24,5 L 171.24 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M208.05,5 L 208.05 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M244.86,5 L 244.86 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M281.68,5 L 281.68 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-90.15,5 L -90.15 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.46,5 L -86.46 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-82.78,5 L -82.78 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-79.1,5 L -79.1 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-75.42,5 L -75.42 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-71.74,5 L -71.74 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-68.06,5 L -68.06 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-64.38,5 L -64.38 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-60.69,5 L -60.69 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-57.01,5 L -57.01 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-53.33,5 L -53.33 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-49.65,5 L -49.65 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-45.97,5 L -45.97 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-42.29,5 L -42.29 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-38.61,5 L -38.61 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-34.92,5 L -34.92 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-31.24,5 L -31.24 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.56,5 L -27.56 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-23.88,5 L -23.88 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-20.2,5 L -20.2 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-16.52,5 L -16.52 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-12.84,5 L -12.84 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-9.15,5 L -9.15 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-5.47,5 L -5.47 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-1.79,5 L -1.79 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M1.89,5 L 1.89 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M5.57,5 L 5.57 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M9.25,5 L 9.25 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M12.93,5 L 12.93 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.62,5 L 16.62 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M20.3,5 L 20.3 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M23.98,5 L 23.98 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M27.66,5 L 27.66 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M31.34,5 L 31.34 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M35.02,5 L 35.02 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M38.7,5 L 38.7 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M42.39,5 L 42.39 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M46.07,5 L 46.07 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M49.75,5 L 49.75 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M53.43,5 L 53.43 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M57.11,5 L 57.11 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M60.79,5 L 60.79 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M64.47,5 L 64.47 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M68.16,5 L 68.16 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M71.84,5 L 71.84 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M75.52,5 L 75.52 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M79.2,5 L 79.2 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M82.88,5 L 82.88 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M86.56,5 L 86.56 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M90.24,5 L 90.24 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M93.93,5 L 93.93 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M97.61,5 L 97.61 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M101.29,5 L 101.29 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M104.97,5 L 104.97 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M108.65,5 L 108.65 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M112.33,5 L 112.33 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M116.01,5 L 116.01 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M119.7,5 L 119.7 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M123.38,5 L 123.38 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M127.06,5 L 127.06 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M130.74,5 L 130.74 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M138.1,5 L 138.1 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M141.78,5 L 141.78 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M145.47,5 L 145.47 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M149.15,5 L 149.15 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M152.83,5 L 152.83 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M156.51,5 L 156.51 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M160.19,5 L 160.19 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M163.87,5 L 163.87 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M167.55,5 L 167.55 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M171.24,5 L 171.24 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M174.92,5 L 174.92 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M178.6,5 L 178.6 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M182.28,5 L 182.28 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M185.96,5 L 185.96 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M189.64,5 L 189.64 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M193.32,5 L 193.32 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M197.01,5 L 197.01 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M200.69,5 L 200.69 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M204.37,5 L 204.37 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M208.05,5 L 208.05 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M211.73,5 L 211.73 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.41,5 L 215.41 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M219.09,5 L 219.09 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M222.78,5 L 222.78 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M226.46,5 L 226.46 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M230.14,5 L 230.14 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M233.82,5 L 233.82 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M237.5,5 L 237.5 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M241.18,5 L 241.18 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M244.86,5 L 244.86 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-104.87,5 L -104.87 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-12.84,5 L -12.84 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M79.2,5 L 79.2 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M171.24,5 L 171.24 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M263.27,5 L 263.27 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-93.83,5 L -93.83 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-86.46,5 L -86.46 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-79.1,5 L -79.1 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-71.74,5 L -71.74 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-64.38,5 L -64.38 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-57.01,5 L -57.01 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-49.65,5 L -49.65 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-42.29,5 L -42.29 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-34.92,5 L -34.92 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.56,5 L -27.56 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-20.2,5 L -20.2 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-12.84,5 L -12.84 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-5.47,5 L -5.47 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M1.89,5 L 1.89 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M9.25,5 L 9.25 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16.62,5 L 16.62 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M23.98,5 L 23.98 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M31.34,5 L 31.34 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M38.7,5 L 38.7 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M46.07,5 L 46.07 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M53.43,5 L 53.43 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M60.79,5 L 60.79 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M68.16,5 L 68.16 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M75.52,5 L 75.52 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M82.88,5 L 82.88 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M90.24,5 L 90.24 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M97.61,5 L 97.61 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M104.97,5 L 104.97 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M112.33,5 L 112.33 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M119.7,5 L 119.7 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M127.06,5 L 127.06 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M141.78,5 L 141.78 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M149.15,5 L 149.15 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M156.51,5 L 156.51 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M163.87,5 L 163.87 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M171.24,5 L 171.24 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M178.6,5 L 178.6 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M185.96,5 L 185.96 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M193.32,5 L 193.32 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M200.69,5 L 200.69 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M208.05,5 L 208.05 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.41,5 L 215.41 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M222.78,5 L 222.78 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M230.14,5 L 230.14 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M237.5,5 L 237.5 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M244.86,5 L 244.86 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-9\">\n",
" <g stroke-width=\"0.3\" fill=\"#000000\" fill-opacity=\"0.000\" class=\"geometry\" stroke-dasharray=\"none\" stroke=\"#4C72B0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-10\">\n",
" <path fill=\"none\" d=\"M105.24,27.8 L 105.26 27.8 105.28 27.81 105.31 27.81 105.33 27.82 105.35 27.83 105.38 27.83 105.4 27.84 105.42 27.84 105.44 27.85 105.47 27.85 105.49 27.86 105.51 27.86 105.54 27.87 105.56 27.88 105.58 27.88 105.61 27.89 105.63 27.89 105.65 27.9 105.67 27.9 105.7 27.91 105.72 27.91 105.74 27.92 105.77 27.93 105.79 27.93 105.81 27.94 105.83 27.94 105.86 27.95 105.88 27.95 105.9 27.96 105.93 27.96 105.95 27.97 105.97 27.98 106 27.98 106.02 27.99 106.04 27.99 106.06 28 106.09 28 106.11 28.01 106.13 28.01 106.16 28.02 106.18 28.03 106.2 28.03 106.22 28.04 106.25 28.04 106.27 28.05 106.29 28.05 106.32 28.06 106.34 28.06 106.36 28.07 106.39 28.08 106.41 28.08 106.43 28.09 106.45 28.09 106.48 28.1 106.5 28.1 106.52 28.11 106.55 28.11 106.57 28.12 106.59 28.13 106.62 28.13 106.64 28.14 106.66 28.14 106.68 28.15 106.71 28.15 106.73 28.16 106.75 28.16 106.78 28.17 106.8 28.18 106.82 28.18 106.84 28.19 106.87 28.19 106.89 28.2 106.91 28.2 106.94 28.21 106.96 28.21 106.98 28.22 107.01 28.23 107.03 28.23 107.05 28.24 107.07 28.24 107.1 28.25 107.12 28.25 107.14 28.26 107.17 28.26 107.19 28.27 107.21 28.28 107.23 28.28 107.26 28.29 107.28 28.29 107.3 28.3 107.33 28.3 107.35 28.31 107.37 28.31 107.4 28.32 107.42 28.33 107.44 28.33 107.46 28.34 107.49 28.34 107.51 28.35 107.53 28.35 107.56 28.36 107.58 28.36 107.6 28.37 107.63 28.38 107.65 28.38 107.67 28.39 107.69 28.39 107.72 28.4 107.74 28.4 107.76 28.41 107.79 28.41 107.81 28.42 107.83 28.43 107.85 28.43 107.88 28.44 107.9 28.44 107.92 28.45 107.95 28.45 107.97 28.46 107.99 28.46 108.02 28.47 108.04 28.48 108.06 28.48 108.08 28.49 108.11 28.49 108.13 28.5 108.15 28.5 108.18 28.51 108.2 28.52 108.22 28.52 108.24 28.53 108.27 28.53 108.29 28.54 108.31 28.54 108.34 28.55 108.36 28.55 108.38 28.56 108.41 28.57 108.43 28.57 108.45 28.58 108.47 28.58 108.5 28.59 108.52 28.59 108.54 28.6 108.57 28.6 108.59 28.61 108.61 28.62 108.63 28.62 108.66 28.63 108.68 28.63 108.7 28.64 108.73 28.64 108.75 28.65 108.77 28.65 108.8 28.66 108.82 28.67 108.84 28.67 108.86 28.68 108.89 28.68 108.91 28.69 108.93 28.69 108.96 28.7 108.98 28.7 109 28.71 109.03 28.72 109.05 28.72 109.07 28.73 109.09 28.73 109.12 28.74 109.14 28.74 109.16 28.75 109.19 28.75 109.21 28.76 109.23 28.77 109.25 28.77 109.28 28.78 109.3 28.78 109.32 28.79 109.35 28.79 109.37 28.8 109.39 28.81 109.42 28.81 109.44 28.82 109.46 28.82 109.48 28.83 109.51 28.83 109.53 28.84 109.55 28.84 109.58 28.85 109.6 28.86 109.62 28.86 109.64 28.87 109.67 28.87 109.69 28.88 109.71 28.88 109.74 28.89 109.76 28.89 109.78 28.9 109.81 28.91 109.83 28.91 109.85 28.92 109.87 28.92 109.9 28.93 109.92 28.93 109.94 28.94 109.97 28.94 109.99 28.95 110.01 28.96 110.04 28.96 110.06 28.97 110.08 28.97 110.1 28.98 110.13 28.98 110.15 28.99 110.17 28.99 110.2 29 110.22 29.01 110.24 29.01 110.26 29.02 110.29 29.02 110.31 29.03 110.33 29.03 110.36 29.04 110.38 29.04 110.4 29.05 110.43 29.06 110.45 29.06 110.47 29.07 110.49 29.07 110.52 29.08 110.54 29.08 110.56 29.09 110.59 29.1 110.61 29.1 110.63 29.11 110.65 29.11 110.68 29.12 110.7 29.12 110.72 29.13 110.75 29.13 110.77 29.14 110.79 29.15 110.82 29.15 110.84 29.16 110.86 29.16 110.88 29.17 110.91 29.17 110.93 29.18 110.95 29.18 110.98 29.19 111 29.2 111.02 29.2 111.05 29.21 111.07 29.21 111.09 29.22 111.11 29.22 111.14 29.23 111.16 29.23 111.18 29.24 111.21 29.25 111.23 29.25 111.25 29.26 111.27 29.26 111.3 29.27 111.32 29.27 111.34 29.28 111.37 29.28 111.39 29.29 111.41 29.3 111.44 29.3 111.46 29.31 111.48 29.31 111.5 29.32 111.53 29.32 111.55 29.33 111.57 29.33 111.6 29.34 111.62 29.35 111.64 29.35 111.66 29.36 111.69 29.36 111.71 29.37 111.73 29.37 111.76 29.38 111.78 29.39 111.8 29.39 111.83 29.4 111.85 29.4 111.87 29.41 111.89 29.41 111.92 29.42 111.94 29.42 111.96 29.43 111.99 29.44 112.01 29.44 112.03 29.45 112.06 29.45 112.08 29.46 112.1 29.46 112.12 29.47 112.15 29.47 112.17 29.48 112.19 29.49 112.22 29.49 112.24 29.5 112.26 29.5 112.28 29.51 112.31 29.51 112.33 29.52 112.35 29.52 112.38 29.53 112.4 29.54 112.42 29.54 112.45 29.55 112.47 29.55 112.49 29.56 112.51 29.56 112.54 29.57 112.56 29.57 112.58 29.58 112.61 29.59 112.63 29.59 112.65 29.6 112.67 29.6 112.7 29.61 112.72 29.61 112.74 29.62 112.77 29.62 112.79 29.63 112.81 29.64 112.84 29.64 112.86 29.65 112.88 29.65 112.9 29.66 112.93 29.66 112.95 29.67 112.97 29.68 113 29.68 113.02 29.69 113.04 29.69 113.06 29.7 113.09 29.7 113.11 29.71 113.13 29.71 113.16 29.72 113.18 29.73 113.2 29.73 113.23 29.74 113.25 29.74 113.27 29.75 113.29 29.75 113.32 29.76 113.34 29.76 113.36 29.77 113.39 29.78 113.41 29.78 113.43 29.79 113.46 29.79 113.48 29.8 113.5 29.8 113.52 29.81 113.55 29.81 113.57 29.82 113.59 29.83 113.62 29.83 113.64 29.84 113.66 29.84 113.68 29.85 113.71 29.85 113.73 29.86 113.75 29.86 113.78 29.87 113.8 29.88 113.82 29.88 113.85 29.89 113.87 29.89 113.89 29.9 113.91 29.9 113.94 29.91 113.96 29.91 113.98 29.92 114.01 29.93 114.03 29.93 114.05 29.94 114.07 29.94 114.1 29.95 114.12 29.95 114.14 29.96 114.17 29.97 114.19 29.97 114.21 29.98 114.24 29.98 114.26 29.99 114.28 29.99 114.3 30 114.33 30 114.35 30.01 114.37 30.02 114.4 30.02 114.42 30.03 114.44 30.03 114.47 30.04 114.49 30.04 114.51 30.05 114.53 30.05 114.56 30.06 114.58 30.07 114.6 30.07 114.63 30.08 114.65 30.08 114.67 30.09 114.69 30.09 114.72 30.1 114.74 30.1 114.76 30.11 114.79 30.12 114.81 30.12 114.83 30.13 114.86 30.13 114.88 30.14 114.9 30.14 114.92 30.15 114.95 30.15 114.97 30.16 114.99 30.17 115.02 30.17 115.04 30.18 115.06 30.18 115.08 30.19 115.11 30.19 115.13 30.2 115.15 30.2 115.18 30.21 115.2 30.21 115.22 30.22 115.25 30.23 115.27 30.23 115.29 30.24 115.31 30.24 115.34 30.25 115.36 30.25 115.38 30.26 115.41 30.26 115.43 30.27 115.45 30.28 115.48 30.28 115.5 30.29 115.52 30.29 115.54 30.3 115.57 30.3 115.59 30.31 115.61 30.31 115.64 30.32 115.66 30.33 115.68 30.33 115.7 30.34 115.73 30.34 115.75 30.35 115.77 30.35 115.8 30.36 115.82 30.36 115.84 30.37 115.87 30.38 115.89 30.38 115.91 30.39 115.93 30.39 115.96 30.4 115.98 30.4 116 30.41 116.03 30.41 116.05 30.42 116.07 30.43 116.09 30.43 116.12 30.44 116.14 30.44 116.16 30.45 116.19 30.45 116.21 30.46 116.23 30.46 116.26 30.47 116.28 30.48 116.3 30.48 116.32 30.49 116.35 30.49 116.37 30.5 116.39 30.5 116.42 30.51 116.44 30.51 116.46 30.52 116.49 30.52 116.51 30.53 116.53 30.54 116.55 30.54 116.58 30.55 116.6 30.55 116.62 30.56 116.65 30.56 116.67 30.57 116.69 30.57 116.71 30.58 116.74 30.59 116.76 30.59 116.78 30.6 116.81 30.6 116.83 30.61 116.85 30.61 116.88 30.62 116.9 30.62 116.92 30.63 116.94 30.64 116.97 30.64 116.99 30.65 117.01 30.65 117.04 30.66 117.06 30.66 117.08 30.67 117.1 30.67 117.13 30.68 117.15 30.69 117.17 30.69 117.2 30.7 117.22 30.7 117.24 30.71 117.27 30.71 117.29 30.72 117.31 30.72 117.33 30.73 117.36 30.74 117.38 30.74 117.4 30.75 117.43 30.75 117.45 30.76 117.47 30.76 117.49 30.77 117.52 30.77 117.54 30.78 117.56 30.79 117.59 30.79 117.61 30.8 117.63 30.8 117.66 30.81 117.68 30.81 117.7 30.82 117.72 30.82 117.75 30.83 117.77 30.84 117.79 30.84 117.82 30.85 117.84 30.85 117.86 30.86 117.89 30.86 117.91 30.87 117.93 30.87 117.95 30.88 117.98 30.89 118 30.89 118.02 30.9 118.05 30.9 118.07 30.91 118.09 30.91 118.11 30.92 118.14 30.92 118.16 30.93 118.18 30.94 118.21 30.94 118.23 30.95 118.25 30.95 118.28 30.96 118.3 30.96 118.32 30.97 118.34 30.97 118.37 30.98 118.39 30.99 118.41 30.99 118.44 31 118.46 31 118.48 31.01 118.5 31.01 118.53 31.02 118.55 31.02 118.57 31.03 118.6 31.04 118.62 31.04 118.64 31.05 118.67 31.05 118.69 31.06 118.71 31.06 118.73 31.07 118.76 31.07 118.78 31.08 118.8 31.09 118.83 31.09 118.85 31.1 118.87 31.1 118.9 31.11 118.92 31.11 118.94 31.12 118.96 31.12 118.99 31.13 119.01 31.14 119.03 31.14 119.06 31.15 119.08 31.15 119.1 31.16 119.12 31.16 119.15 31.17 119.17 31.17 119.19 31.18 119.22 31.18 119.24 31.19 119.26 31.2 119.29 31.2 119.31 31.21 119.33 31.21 119.35 31.22 119.38 31.22 119.4 31.23 119.42 31.23 119.45 31.24 119.47 31.25 119.49 31.25 119.51 31.26 119.54 31.26 119.56 31.27 119.58 31.27 119.61 31.28 119.63 31.28 119.65 31.29 119.68 31.3 119.7 31.3 119.72 31.31 119.74 31.31 119.77 31.32 119.79 31.32 119.81 31.33 119.84 31.33 119.86 31.34 119.88 31.35 119.91 31.35 119.93 31.36 119.95 31.36 119.97 31.37 120 31.37 120.02 31.38 120.04 31.38 120.07 31.39 120.09 31.4 120.11 31.4 120.13 31.41 120.16 31.41 120.18 31.42 120.2 31.42 120.23 31.43 120.25 31.43 120.27 31.44 120.3 31.44 120.32 31.45 120.34 31.46 120.36 31.46 120.39 31.47 120.41 31.47 120.43 31.48 120.46 31.48 120.48 31.49 120.5 31.49 120.52 31.5 120.55 31.51 120.57 31.51 120.59 31.52 120.62 31.52 120.64 31.53 120.66 31.53 120.69 31.54 120.71 31.54 120.73 31.55 120.75 31.56 120.78 31.56 120.8 31.57 120.82 31.57 120.85 31.58 120.87 31.58 120.89 31.59 120.92 31.59 120.94 31.6 120.96 31.6 120.98 31.61 121.01 31.62 121.03 31.62 121.05 31.63 121.08 31.63 121.1 31.64 121.12 31.64 121.14 31.65 121.17 31.65 121.19 31.66 121.21 31.67 121.24 31.67 121.26 31.68 121.28 31.68 121.31 31.69 121.33 31.69 121.35 31.7 121.37 31.7 121.4 31.71 121.42 31.71 121.44 31.72 121.47 31.73 121.49 31.73 121.51 31.74 121.53 31.74 121.56 31.75 121.58 31.75 121.6 31.76 121.63 31.76 121.65 31.77 121.67 31.78 121.7 31.78 121.72 31.79 121.74 31.79 121.76 31.8 121.79 31.8 121.81 31.81 121.83 31.81 121.86 31.82 121.88 31.82 121.9 31.83 121.92 31.84 121.95 31.84 121.97 31.85 121.99 31.85 122.02 31.86 122.04 31.86 122.06 31.87 122.09 31.87 122.11 31.88 122.13 31.89 122.15 31.89 122.18 31.9 122.2 31.9 122.22 31.91 122.25 31.91 122.27 31.92 122.29 31.92 122.32 31.93 122.34 31.93 122.36 31.94 122.38 31.95 122.41 31.95 122.43 31.96\"/>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-11\">\n",
" <g class=\"color_RGBA{Float32}(0.29803923f0,0.44705883f0,0.6901961f0,1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0\" fill=\"#4C72B0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-12\">\n",
" <circle cx=\"113.59\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"114.29\" cy=\"30.01\" r=\"0.3\"/>\n",
" <circle cx=\"114.21\" cy=\"29.99\" r=\"0.3\"/>\n",
" <circle cx=\"113.52\" cy=\"29.82\" r=\"0.3\"/>\n",
" <circle cx=\"111.87\" cy=\"29.42\" r=\"0.3\"/>\n",
" <circle cx=\"108.75\" cy=\"28.66\" r=\"0.3\"/>\n",
" <circle cx=\"110.52\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"111.22\" cy=\"29.26\" r=\"0.3\"/>\n",
" <circle cx=\"112.38\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"113.69\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"111.88\" cy=\"29.43\" r=\"0.3\"/>\n",
" <circle cx=\"113.7\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"109.72\" cy=\"28.9\" r=\"0.3\"/>\n",
" <circle cx=\"111.42\" cy=\"29.31\" r=\"0.3\"/>\n",
" <circle cx=\"109.7\" cy=\"28.9\" r=\"0.3\"/>\n",
" <circle cx=\"109.86\" cy=\"28.93\" r=\"0.3\"/>\n",
" <circle cx=\"108.58\" cy=\"28.62\" r=\"0.3\"/>\n",
" <circle cx=\"111.69\" cy=\"29.38\" r=\"0.3\"/>\n",
" <circle cx=\"109.72\" cy=\"28.9\" r=\"0.3\"/>\n",
" <circle cx=\"109.49\" cy=\"28.84\" r=\"0.3\"/>\n",
" <circle cx=\"112.85\" cy=\"29.66\" r=\"0.3\"/>\n",
" <circle cx=\"110.32\" cy=\"29.05\" r=\"0.3\"/>\n",
" <circle cx=\"108.68\" cy=\"28.64\" r=\"0.3\"/>\n",
" <circle cx=\"108.31\" cy=\"28.56\" r=\"0.3\"/>\n",
" <circle cx=\"106.98\" cy=\"28.23\" r=\"0.3\"/>\n",
" <circle cx=\"106.75\" cy=\"28.18\" r=\"0.3\"/>\n",
" <circle cx=\"106.23\" cy=\"28.05\" r=\"0.3\"/>\n",
" <circle cx=\"105.24\" cy=\"27.81\" r=\"0.3\"/>\n",
" <circle cx=\"106.81\" cy=\"28.19\" r=\"0.3\"/>\n",
" <circle cx=\"106.86\" cy=\"28.2\" r=\"0.3\"/>\n",
" <circle cx=\"107.65\" cy=\"28.39\" r=\"0.3\"/>\n",
" <circle cx=\"109.29\" cy=\"28.79\" r=\"0.3\"/>\n",
" <circle cx=\"108.36\" cy=\"28.57\" r=\"0.3\"/>\n",
" <circle cx=\"108.44\" cy=\"28.58\" r=\"0.3\"/>\n",
" <circle cx=\"111.35\" cy=\"29.29\" r=\"0.3\"/>\n",
" <circle cx=\"113.05\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"110.39\" cy=\"29.06\" r=\"0.3\"/>\n",
" <circle cx=\"112.56\" cy=\"29.59\" r=\"0.3\"/>\n",
" <circle cx=\"111.81\" cy=\"29.4\" r=\"0.3\"/>\n",
" <circle cx=\"114.25\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"115.28\" cy=\"30.25\" r=\"0.3\"/>\n",
" <circle cx=\"115.47\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"114.62\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"118.58\" cy=\"31.05\" r=\"0.3\"/>\n",
" <circle cx=\"116.27\" cy=\"30.49\" r=\"0.3\"/>\n",
" <circle cx=\"118.93\" cy=\"31.14\" r=\"0.3\"/>\n",
" <circle cx=\"116.19\" cy=\"30.47\" r=\"0.3\"/>\n",
" <circle cx=\"112.36\" cy=\"29.54\" r=\"0.3\"/>\n",
" <circle cx=\"110.3\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"113.51\" cy=\"29.82\" r=\"0.3\"/>\n",
" <circle cx=\"112.96\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"114.43\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"115.09\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"115.53\" cy=\"30.31\" r=\"0.3\"/>\n",
" <circle cx=\"114.44\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"116.29\" cy=\"30.49\" r=\"0.3\"/>\n",
" <circle cx=\"116\" cy=\"30.42\" r=\"0.3\"/>\n",
" <circle cx=\"113.41\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"114\" cy=\"29.94\" r=\"0.3\"/>\n",
" <circle cx=\"112.18\" cy=\"29.49\" r=\"0.3\"/>\n",
" <circle cx=\"113.27\" cy=\"29.76\" r=\"0.3\"/>\n",
" <circle cx=\"112.97\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"110.18\" cy=\"29.01\" r=\"0.3\"/>\n",
" <circle cx=\"111.53\" cy=\"29.34\" r=\"0.3\"/>\n",
" <circle cx=\"111.82\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"111.39\" cy=\"29.3\" r=\"0.3\"/>\n",
" <circle cx=\"111.78\" cy=\"29.4\" r=\"0.3\"/>\n",
" <circle cx=\"111.6\" cy=\"29.35\" r=\"0.3\"/>\n",
" <circle cx=\"110.56\" cy=\"29.1\" r=\"0.3\"/>\n",
" <circle cx=\"110.35\" cy=\"29.05\" r=\"0.3\"/>\n",
" <circle cx=\"106.99\" cy=\"28.23\" r=\"0.3\"/>\n",
" <circle cx=\"109.77\" cy=\"28.91\" r=\"0.3\"/>\n",
" <circle cx=\"111.82\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"109.65\" cy=\"28.88\" r=\"0.3\"/>\n",
" <circle cx=\"108.79\" cy=\"28.67\" r=\"0.3\"/>\n",
" <circle cx=\"108.36\" cy=\"28.56\" r=\"0.3\"/>\n",
" <circle cx=\"107.07\" cy=\"28.25\" r=\"0.3\"/>\n",
" <circle cx=\"107.2\" cy=\"28.28\" r=\"0.3\"/>\n",
" <circle cx=\"107.37\" cy=\"28.32\" r=\"0.3\"/>\n",
" <circle cx=\"110.01\" cy=\"28.96\" r=\"0.3\"/>\n",
" <circle cx=\"113.07\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"115.68\" cy=\"30.34\" r=\"0.3\"/>\n",
" <circle cx=\"116.49\" cy=\"30.54\" r=\"0.3\"/>\n",
" <circle cx=\"113.68\" cy=\"29.86\" r=\"0.3\"/>\n",
" <circle cx=\"113.08\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"112.84\" cy=\"29.65\" r=\"0.3\"/>\n",
" <circle cx=\"110.66\" cy=\"29.12\" r=\"0.3\"/>\n",
" <circle cx=\"109.03\" cy=\"28.72\" r=\"0.3\"/>\n",
" <circle cx=\"109.01\" cy=\"28.72\" r=\"0.3\"/>\n",
" <circle cx=\"111.82\" cy=\"29.4\" r=\"0.3\"/>\n",
" <circle cx=\"110.93\" cy=\"29.19\" r=\"0.3\"/>\n",
" <circle cx=\"111.2\" cy=\"29.25\" r=\"0.3\"/>\n",
" <circle cx=\"114.94\" cy=\"30.16\" r=\"0.3\"/>\n",
" <circle cx=\"115.85\" cy=\"30.38\" r=\"0.3\"/>\n",
" <circle cx=\"114.53\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"114.56\" cy=\"30.07\" r=\"0.3\"/>\n",
" <circle cx=\"113.8\" cy=\"29.88\" r=\"0.3\"/>\n",
" <circle cx=\"111.52\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"109.96\" cy=\"28.95\" r=\"0.3\"/>\n",
" <circle cx=\"112.63\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"116.12\" cy=\"30.45\" r=\"0.3\"/>\n",
" <circle cx=\"115.22\" cy=\"30.23\" r=\"0.3\"/>\n",
" <circle cx=\"114.5\" cy=\"30.05\" r=\"0.3\"/>\n",
" <circle cx=\"116.88\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"116.93\" cy=\"30.65\" r=\"0.3\"/>\n",
" <circle cx=\"118.88\" cy=\"31.12\" r=\"0.3\"/>\n",
" <circle cx=\"116.66\" cy=\"30.58\" r=\"0.3\"/>\n",
" <circle cx=\"112.99\" cy=\"29.69\" r=\"0.3\"/>\n",
" <circle cx=\"112.35\" cy=\"29.53\" r=\"0.3\"/>\n",
" <circle cx=\"114.29\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"113.5\" cy=\"29.81\" r=\"0.3\"/>\n",
" <circle cx=\"111.97\" cy=\"29.44\" r=\"0.3\"/>\n",
" <circle cx=\"113.38\" cy=\"29.78\" r=\"0.3\"/>\n",
" <circle cx=\"112.69\" cy=\"29.61\" r=\"0.3\"/>\n",
" <circle cx=\"112.92\" cy=\"29.67\" r=\"0.3\"/>\n",
" <circle cx=\"111.04\" cy=\"29.21\" r=\"0.3\"/>\n",
" <circle cx=\"110.71\" cy=\"29.13\" r=\"0.3\"/>\n",
" <circle cx=\"113.96\" cy=\"29.92\" r=\"0.3\"/>\n",
" <circle cx=\"116.02\" cy=\"30.42\" r=\"0.3\"/>\n",
" <circle cx=\"112.8\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"113.69\" cy=\"29.86\" r=\"0.3\"/>\n",
" <circle cx=\"115.18\" cy=\"30.22\" r=\"0.3\"/>\n",
" <circle cx=\"113.18\" cy=\"29.73\" r=\"0.3\"/>\n",
" <circle cx=\"111.91\" cy=\"29.42\" r=\"0.3\"/>\n",
" <circle cx=\"112.86\" cy=\"29.65\" r=\"0.3\"/>\n",
" <circle cx=\"114.52\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"115.05\" cy=\"30.19\" r=\"0.3\"/>\n",
" <circle cx=\"111.53\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"115.01\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"114.85\" cy=\"30.14\" r=\"0.3\"/>\n",
" <circle cx=\"115.11\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"111.31\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"109.32\" cy=\"28.79\" r=\"0.3\"/>\n",
" <circle cx=\"107.45\" cy=\"28.34\" r=\"0.3\"/>\n",
" <circle cx=\"106.75\" cy=\"28.17\" r=\"0.3\"/>\n",
" <circle cx=\"107.82\" cy=\"28.43\" r=\"0.3\"/>\n",
" <circle cx=\"106.54\" cy=\"28.12\" r=\"0.3\"/>\n",
" <circle cx=\"111.12\" cy=\"29.23\" r=\"0.3\"/>\n",
" <circle cx=\"111.58\" cy=\"29.34\" r=\"0.3\"/>\n",
" <circle cx=\"112.45\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"110.22\" cy=\"29.01\" r=\"0.3\"/>\n",
" <circle cx=\"110.41\" cy=\"29.06\" r=\"0.3\"/>\n",
" <circle cx=\"110.54\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"109.6\" cy=\"28.86\" r=\"0.3\"/>\n",
" <circle cx=\"112.8\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"112.03\" cy=\"29.45\" r=\"0.3\"/>\n",
" <circle cx=\"112.26\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"113.61\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"113.77\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"116.05\" cy=\"30.43\" r=\"0.3\"/>\n",
" <circle cx=\"115.15\" cy=\"30.21\" r=\"0.3\"/>\n",
" <circle cx=\"112.89\" cy=\"29.66\" r=\"0.3\"/>\n",
" <circle cx=\"111.45\" cy=\"29.31\" r=\"0.3\"/>\n",
" <circle cx=\"109.66\" cy=\"28.87\" r=\"0.3\"/>\n",
" <circle cx=\"110.92\" cy=\"29.18\" r=\"0.3\"/>\n",
" <circle cx=\"111.31\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"114.28\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"113.34\" cy=\"29.77\" r=\"0.3\"/>\n",
" <circle cx=\"110.73\" cy=\"29.13\" r=\"0.3\"/>\n",
" <circle cx=\"108.69\" cy=\"28.64\" r=\"0.3\"/>\n",
" <circle cx=\"110.65\" cy=\"29.11\" r=\"0.3\"/>\n",
" <circle cx=\"112.22\" cy=\"29.5\" r=\"0.3\"/>\n",
" <circle cx=\"109.08\" cy=\"28.73\" r=\"0.3\"/>\n",
" <circle cx=\"109.34\" cy=\"28.8\" r=\"0.3\"/>\n",
" <circle cx=\"110.54\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"111.11\" cy=\"29.23\" r=\"0.3\"/>\n",
" <circle cx=\"115.31\" cy=\"30.25\" r=\"0.3\"/>\n",
" <circle cx=\"113.36\" cy=\"29.77\" r=\"0.3\"/>\n",
" <circle cx=\"116.6\" cy=\"30.56\" r=\"0.3\"/>\n",
" <circle cx=\"114.63\" cy=\"30.08\" r=\"0.3\"/>\n",
" <circle cx=\"113.07\" cy=\"29.7\" r=\"0.3\"/>\n",
" <circle cx=\"113.76\" cy=\"29.87\" r=\"0.3\"/>\n",
" <circle cx=\"117.13\" cy=\"30.69\" r=\"0.3\"/>\n",
" <circle cx=\"119.58\" cy=\"31.29\" r=\"0.3\"/>\n",
" <circle cx=\"118.67\" cy=\"31.06\" r=\"0.3\"/>\n",
" <circle cx=\"117.91\" cy=\"30.88\" r=\"0.3\"/>\n",
" <circle cx=\"116.26\" cy=\"30.48\" r=\"0.3\"/>\n",
" <circle cx=\"114.11\" cy=\"29.95\" r=\"0.3\"/>\n",
" <circle cx=\"112.64\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"114.18\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"113.48\" cy=\"29.8\" r=\"0.3\"/>\n",
" <circle cx=\"112.81\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"115.15\" cy=\"30.21\" r=\"0.3\"/>\n",
" <circle cx=\"112.77\" cy=\"29.63\" r=\"0.3\"/>\n",
" <circle cx=\"114.75\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"114.45\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"114.15\" cy=\"29.96\" r=\"0.3\"/>\n",
" <circle cx=\"112.35\" cy=\"29.53\" r=\"0.3\"/>\n",
" <circle cx=\"114.18\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"110.96\" cy=\"29.19\" r=\"0.3\"/>\n",
" <circle cx=\"115.49\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"116.43\" cy=\"30.52\" r=\"0.3\"/>\n",
" <circle cx=\"113.84\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"115.04\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"114.38\" cy=\"30.02\" r=\"0.3\"/>\n",
" <circle cx=\"110.53\" cy=\"29.08\" r=\"0.3\"/>\n",
" <circle cx=\"109.05\" cy=\"28.72\" r=\"0.3\"/>\n",
" <circle cx=\"106.77\" cy=\"28.17\" r=\"0.3\"/>\n",
" <circle cx=\"109.88\" cy=\"28.93\" r=\"0.3\"/>\n",
" <circle cx=\"112.06\" cy=\"29.46\" r=\"0.3\"/>\n",
" <circle cx=\"112.15\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"110.1\" cy=\"28.98\" r=\"0.3\"/>\n",
" <circle cx=\"113.86\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"112.8\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"110.89\" cy=\"29.17\" r=\"0.3\"/>\n",
" <circle cx=\"113.31\" cy=\"29.76\" r=\"0.3\"/>\n",
" <circle cx=\"114.05\" cy=\"29.94\" r=\"0.3\"/>\n",
" <circle cx=\"117.28\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"114.47\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"113.38\" cy=\"29.78\" r=\"0.3\"/>\n",
" <circle cx=\"115.55\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"113.43\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"115.77\" cy=\"30.36\" r=\"0.3\"/>\n",
" <circle cx=\"114.74\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"118.78\" cy=\"31.09\" r=\"0.3\"/>\n",
" <circle cx=\"117.96\" cy=\"30.89\" r=\"0.3\"/>\n",
" <circle cx=\"116.75\" cy=\"30.59\" r=\"0.3\"/>\n",
" <circle cx=\"115.03\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"111.86\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"114.12\" cy=\"29.95\" r=\"0.3\"/>\n",
" <circle cx=\"113.85\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"113.1\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"115.2\" cy=\"30.22\" r=\"0.3\"/>\n",
" <circle cx=\"113.09\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"112.43\" cy=\"29.54\" r=\"0.3\"/>\n",
" <circle cx=\"115.12\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"115.04\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"116.78\" cy=\"30.6\" r=\"0.3\"/>\n",
" <circle cx=\"117.08\" cy=\"30.68\" r=\"0.3\"/>\n",
" <circle cx=\"116.02\" cy=\"30.42\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.31\" r=\"0.3\"/>\n",
" <circle cx=\"113.47\" cy=\"29.8\" r=\"0.3\"/>\n",
" <circle cx=\"111.31\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"111.65\" cy=\"29.35\" r=\"0.3\"/>\n",
" <circle cx=\"113.42\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"110.64\" cy=\"29.11\" r=\"0.3\"/>\n",
" <circle cx=\"111.08\" cy=\"29.21\" r=\"0.3\"/>\n",
" <circle cx=\"112.16\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"112.26\" cy=\"29.5\" r=\"0.3\"/>\n",
" <circle cx=\"109.6\" cy=\"28.85\" r=\"0.3\"/>\n",
" <circle cx=\"109.42\" cy=\"28.81\" r=\"0.3\"/>\n",
" <circle cx=\"112.17\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"115.49\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"115.23\" cy=\"30.22\" r=\"0.3\"/>\n",
" <circle cx=\"115.43\" cy=\"30.27\" r=\"0.3\"/>\n",
" <circle cx=\"115.77\" cy=\"30.36\" r=\"0.3\"/>\n",
" <circle cx=\"112.28\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"114.13\" cy=\"29.96\" r=\"0.3\"/>\n",
" <circle cx=\"115.02\" cy=\"30.17\" r=\"0.3\"/>\n",
" <circle cx=\"115.84\" cy=\"30.37\" r=\"0.3\"/>\n",
" <circle cx=\"111.93\" cy=\"29.42\" r=\"0.3\"/>\n",
" <circle cx=\"114.33\" cy=\"30\" r=\"0.3\"/>\n",
" <circle cx=\"112.58\" cy=\"29.58\" r=\"0.3\"/>\n",
" <circle cx=\"111\" cy=\"29.19\" r=\"0.3\"/>\n",
" <circle cx=\"112.61\" cy=\"29.59\" r=\"0.3\"/>\n",
" <circle cx=\"113.52\" cy=\"29.81\" r=\"0.3\"/>\n",
" <circle cx=\"112.82\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"111.32\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"112.07\" cy=\"29.45\" r=\"0.3\"/>\n",
" <circle cx=\"111.71\" cy=\"29.37\" r=\"0.3\"/>\n",
" <circle cx=\"109.37\" cy=\"28.8\" r=\"0.3\"/>\n",
" <circle cx=\"111.52\" cy=\"29.32\" r=\"0.3\"/>\n",
" <circle cx=\"112.45\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"115.06\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"116.58\" cy=\"30.55\" r=\"0.3\"/>\n",
" <circle cx=\"119.14\" cy=\"31.17\" r=\"0.3\"/>\n",
" <circle cx=\"118.05\" cy=\"30.91\" r=\"0.3\"/>\n",
" <circle cx=\"118.61\" cy=\"31.04\" r=\"0.3\"/>\n",
" <circle cx=\"115.06\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"113.01\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"113.18\" cy=\"29.72\" r=\"0.3\"/>\n",
" <circle cx=\"115.5\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"115.68\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"116.66\" cy=\"30.57\" r=\"0.3\"/>\n",
" <circle cx=\"117.79\" cy=\"30.84\" r=\"0.3\"/>\n",
" <circle cx=\"118.37\" cy=\"30.99\" r=\"0.3\"/>\n",
" <circle cx=\"115.45\" cy=\"30.27\" r=\"0.3\"/>\n",
" <circle cx=\"112.35\" cy=\"29.52\" r=\"0.3\"/>\n",
" <circle cx=\"113.06\" cy=\"29.69\" r=\"0.3\"/>\n",
" <circle cx=\"113.47\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"114.42\" cy=\"30.02\" r=\"0.3\"/>\n",
" <circle cx=\"116.91\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"116.59\" cy=\"30.55\" r=\"0.3\"/>\n",
" <circle cx=\"117.49\" cy=\"30.77\" r=\"0.3\"/>\n",
" <circle cx=\"115.3\" cy=\"30.24\" r=\"0.3\"/>\n",
" <circle cx=\"116.92\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"119.34\" cy=\"31.22\" r=\"0.3\"/>\n",
" <circle cx=\"119.02\" cy=\"31.14\" r=\"0.3\"/>\n",
" <circle cx=\"117.3\" cy=\"30.72\" r=\"0.3\"/>\n",
" <circle cx=\"118.43\" cy=\"31\" r=\"0.3\"/>\n",
" <circle cx=\"117.63\" cy=\"30.8\" r=\"0.3\"/>\n",
" <circle cx=\"115.14\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"117\" cy=\"30.65\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"118.38\" cy=\"30.99\" r=\"0.3\"/>\n",
" <circle cx=\"119.44\" cy=\"31.24\" r=\"0.3\"/>\n",
" <circle cx=\"118.32\" cy=\"30.97\" r=\"0.3\"/>\n",
" <circle cx=\"117.15\" cy=\"30.69\" r=\"0.3\"/>\n",
" <circle cx=\"113.45\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"112.78\" cy=\"29.62\" r=\"0.3\"/>\n",
" <circle cx=\"112.83\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"113.99\" cy=\"29.92\" r=\"0.3\"/>\n",
" <circle cx=\"111.54\" cy=\"29.32\" r=\"0.3\"/>\n",
" <circle cx=\"112.32\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"109.23\" cy=\"28.76\" r=\"0.3\"/>\n",
" <circle cx=\"106.87\" cy=\"28.19\" r=\"0.3\"/>\n",
" <circle cx=\"107.94\" cy=\"28.45\" r=\"0.3\"/>\n",
" <circle cx=\"109.33\" cy=\"28.78\" r=\"0.3\"/>\n",
" <circle cx=\"109.86\" cy=\"28.91\" r=\"0.3\"/>\n",
" <circle cx=\"112.55\" cy=\"29.57\" r=\"0.3\"/>\n",
" <circle cx=\"112.24\" cy=\"29.49\" r=\"0.3\"/>\n",
" <circle cx=\"110.32\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.54\" cy=\"28.59\" r=\"0.3\"/>\n",
" <circle cx=\"110.03\" cy=\"28.95\" r=\"0.3\"/>\n",
" <circle cx=\"108.06\" cy=\"28.48\" r=\"0.3\"/>\n",
" <circle cx=\"108.98\" cy=\"28.7\" r=\"0.3\"/>\n",
" <circle cx=\"107.79\" cy=\"28.41\" r=\"0.3\"/>\n",
" <circle cx=\"111.78\" cy=\"29.38\" r=\"0.3\"/>\n",
" <circle cx=\"114.29\" cy=\"29.99\" r=\"0.3\"/>\n",
" <circle cx=\"115.36\" cy=\"30.25\" r=\"0.3\"/>\n",
" <circle cx=\"117.9\" cy=\"30.87\" r=\"0.3\"/>\n",
" <circle cx=\"115.76\" cy=\"30.35\" r=\"0.3\"/>\n",
" <circle cx=\"115.62\" cy=\"30.31\" r=\"0.3\"/>\n",
" <circle cx=\"113.65\" cy=\"29.83\" r=\"0.3\"/>\n",
" <circle cx=\"116.17\" cy=\"30.45\" r=\"0.3\"/>\n",
" <circle cx=\"118.57\" cy=\"31.03\" r=\"0.3\"/>\n",
" <circle cx=\"115.98\" cy=\"30.4\" r=\"0.3\"/>\n",
" <circle cx=\"117.26\" cy=\"30.71\" r=\"0.3\"/>\n",
" <circle cx=\"116.64\" cy=\"30.56\" r=\"0.3\"/>\n",
" <circle cx=\"118.15\" cy=\"30.93\" r=\"0.3\"/>\n",
" <circle cx=\"119.84\" cy=\"31.34\" r=\"0.3\"/>\n",
" <circle cx=\"117.93\" cy=\"30.87\" r=\"0.3\"/>\n",
" <circle cx=\"117.64\" cy=\"30.8\" r=\"0.3\"/>\n",
" <circle cx=\"114.6\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"111.13\" cy=\"29.22\" r=\"0.3\"/>\n",
" <circle cx=\"110.31\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"109.99\" cy=\"28.94\" r=\"0.3\"/>\n",
" <circle cx=\"108.01\" cy=\"28.46\" r=\"0.3\"/>\n",
" <circle cx=\"113.15\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"114.79\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"114.94\" cy=\"30.15\" r=\"0.3\"/>\n",
" <circle cx=\"116.68\" cy=\"30.57\" r=\"0.3\"/>\n",
" <circle cx=\"116.31\" cy=\"30.48\" r=\"0.3\"/>\n",
" <circle cx=\"112.82\" cy=\"29.63\" r=\"0.3\"/>\n",
" <circle cx=\"114.2\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"112.47\" cy=\"29.54\" r=\"0.3\"/>\n",
" <circle cx=\"113\" cy=\"29.67\" r=\"0.3\"/>\n",
" <circle cx=\"114.53\" cy=\"30.05\" r=\"0.3\"/>\n",
" <circle cx=\"115.1\" cy=\"30.18\" r=\"0.3\"/>\n",
" <circle cx=\"115.57\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"117.53\" cy=\"30.77\" r=\"0.3\"/>\n",
" <circle cx=\"115.97\" cy=\"30.4\" r=\"0.3\"/>\n",
" <circle cx=\"114.17\" cy=\"29.96\" r=\"0.3\"/>\n",
" <circle cx=\"112.05\" cy=\"29.44\" r=\"0.3\"/>\n",
" <circle cx=\"111.37\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"115.87\" cy=\"30.37\" r=\"0.3\"/>\n",
" <circle cx=\"114.46\" cy=\"30.03\" r=\"0.3\"/>\n",
" <circle cx=\"118.06\" cy=\"30.9\" r=\"0.3\"/>\n",
" <circle cx=\"116.55\" cy=\"30.54\" r=\"0.3\"/>\n",
" <circle cx=\"115.58\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"117.83\" cy=\"30.85\" r=\"0.3\"/>\n",
" <circle cx=\"116.87\" cy=\"30.61\" r=\"0.3\"/>\n",
" <circle cx=\"119.36\" cy=\"31.22\" r=\"0.3\"/>\n",
" <circle cx=\"118.19\" cy=\"30.93\" r=\"0.3\"/>\n",
" <circle cx=\"116.54\" cy=\"30.53\" r=\"0.3\"/>\n",
" <circle cx=\"115.42\" cy=\"30.26\" r=\"0.3\"/>\n",
" <circle cx=\"114.06\" cy=\"29.93\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"114.21\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"112.5\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"115.75\" cy=\"30.34\" r=\"0.3\"/>\n",
" <circle cx=\"111.9\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"110.3\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.38\" cy=\"28.55\" r=\"0.3\"/>\n",
" <circle cx=\"109.98\" cy=\"28.94\" r=\"0.3\"/>\n",
" <circle cx=\"113.6\" cy=\"29.82\" r=\"0.3\"/>\n",
" <circle cx=\"110.84\" cy=\"29.15\" r=\"0.3\"/>\n",
" <circle cx=\"108.93\" cy=\"28.68\" r=\"0.3\"/>\n",
" <circle cx=\"107.83\" cy=\"28.41\" r=\"0.3\"/>\n",
" <circle cx=\"109.59\" cy=\"28.84\" r=\"0.3\"/>\n",
" <circle cx=\"111.58\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"108.97\" cy=\"28.69\" r=\"0.3\"/>\n",
" <circle cx=\"111.17\" cy=\"29.23\" r=\"0.3\"/>\n",
" <circle cx=\"110.85\" cy=\"29.15\" r=\"0.3\"/>\n",
" <circle cx=\"111.94\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"110.4\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"112.22\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"112.02\" cy=\"29.43\" r=\"0.3\"/>\n",
" <circle cx=\"113.44\" cy=\"29.78\" r=\"0.3\"/>\n",
" <circle cx=\"112.02\" cy=\"29.43\" r=\"0.3\"/>\n",
" <circle cx=\"113.27\" cy=\"29.74\" r=\"0.3\"/>\n",
" <circle cx=\"116.8\" cy=\"30.59\" r=\"0.3\"/>\n",
" <circle cx=\"117.35\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"117.91\" cy=\"30.86\" r=\"0.3\"/>\n",
" <circle cx=\"116.18\" cy=\"30.44\" r=\"0.3\"/>\n",
" <circle cx=\"117.86\" cy=\"30.85\" r=\"0.3\"/>\n",
" <circle cx=\"117.52\" cy=\"30.77\" r=\"0.3\"/>\n",
" <circle cx=\"118.03\" cy=\"30.89\" r=\"0.3\"/>\n",
" <circle cx=\"115.56\" cy=\"30.29\" r=\"0.3\"/>\n",
" <circle cx=\"114.58\" cy=\"30.05\" r=\"0.3\"/>\n",
" <circle cx=\"113.05\" cy=\"29.68\" r=\"0.3\"/>\n",
" <circle cx=\"114.74\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"113.49\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"110.38\" cy=\"29.03\" r=\"0.3\"/>\n",
" <circle cx=\"110.41\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"112.92\" cy=\"29.65\" r=\"0.3\"/>\n",
" <circle cx=\"113.32\" cy=\"29.75\" r=\"0.3\"/>\n",
" <circle cx=\"111.34\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"114.48\" cy=\"30.03\" r=\"0.3\"/>\n",
" <circle cx=\"116.89\" cy=\"30.61\" r=\"0.3\"/>\n",
" <circle cx=\"117.03\" cy=\"30.65\" r=\"0.3\"/>\n",
" <circle cx=\"118.13\" cy=\"30.92\" r=\"0.3\"/>\n",
" <circle cx=\"118.33\" cy=\"30.96\" r=\"0.3\"/>\n",
" <circle cx=\"119.59\" cy=\"31.27\" r=\"0.3\"/>\n",
" <circle cx=\"117.19\" cy=\"30.69\" r=\"0.3\"/>\n",
" <circle cx=\"114.01\" cy=\"29.92\" r=\"0.3\"/>\n",
" <circle cx=\"112.61\" cy=\"29.57\" r=\"0.3\"/>\n",
" <circle cx=\"115.36\" cy=\"30.24\" r=\"0.3\"/>\n",
" <circle cx=\"117.36\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"116.41\" cy=\"30.5\" r=\"0.3\"/>\n",
" <circle cx=\"118.68\" cy=\"31.05\" r=\"0.3\"/>\n",
" <circle cx=\"120.03\" cy=\"31.38\" r=\"0.3\"/>\n",
" <circle cx=\"117.86\" cy=\"30.85\" r=\"0.3\"/>\n",
" <circle cx=\"114.75\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"112.62\" cy=\"29.58\" r=\"0.3\"/>\n",
" <circle cx=\"112.58\" cy=\"29.57\" r=\"0.3\"/>\n",
" <circle cx=\"109.69\" cy=\"28.86\" r=\"0.3\"/>\n",
" <circle cx=\"110.42\" cy=\"29.04\" r=\"0.3\"/>\n",
" <circle cx=\"109.59\" cy=\"28.84\" r=\"0.3\"/>\n",
" <circle cx=\"111.62\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"114.74\" cy=\"30.09\" r=\"0.3\"/>\n",
" <circle cx=\"114.11\" cy=\"29.94\" r=\"0.3\"/>\n",
" <circle cx=\"114.32\" cy=\"29.99\" r=\"0.3\"/>\n",
" <circle cx=\"112.14\" cy=\"29.46\" r=\"0.3\"/>\n",
" <circle cx=\"113.27\" cy=\"29.73\" r=\"0.3\"/>\n",
" <circle cx=\"112.71\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"113.98\" cy=\"29.91\" r=\"0.3\"/>\n",
" <circle cx=\"113.16\" cy=\"29.71\" r=\"0.3\"/>\n",
" <circle cx=\"116.44\" cy=\"30.5\" r=\"0.3\"/>\n",
" <circle cx=\"117.46\" cy=\"30.75\" r=\"0.3\"/>\n",
" <circle cx=\"119.2\" cy=\"31.17\" r=\"0.3\"/>\n",
" <circle cx=\"118.51\" cy=\"31.01\" r=\"0.3\"/>\n",
" <circle cx=\"117.33\" cy=\"30.72\" r=\"0.3\"/>\n",
" <circle cx=\"116.26\" cy=\"30.46\" r=\"0.3\"/>\n",
" <circle cx=\"115.92\" cy=\"30.38\" r=\"0.3\"/>\n",
" <circle cx=\"115.73\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"114.67\" cy=\"30.07\" r=\"0.3\"/>\n",
" <circle cx=\"115.61\" cy=\"30.3\" r=\"0.3\"/>\n",
" <circle cx=\"111.65\" cy=\"29.34\" r=\"0.3\"/>\n",
" <circle cx=\"108.58\" cy=\"28.59\" r=\"0.3\"/>\n",
" <circle cx=\"106.55\" cy=\"28.1\" r=\"0.3\"/>\n",
" <circle cx=\"108.51\" cy=\"28.58\" r=\"0.3\"/>\n",
" <circle cx=\"106.5\" cy=\"28.08\" r=\"0.3\"/>\n",
" <circle cx=\"110.21\" cy=\"28.99\" r=\"0.3\"/>\n",
" <circle cx=\"113.12\" cy=\"29.7\" r=\"0.3\"/>\n",
" <circle cx=\"110.86\" cy=\"29.15\" r=\"0.3\"/>\n",
" <circle cx=\"108.3\" cy=\"28.52\" r=\"0.3\"/>\n",
" <circle cx=\"112.52\" cy=\"29.55\" r=\"0.3\"/>\n",
" <circle cx=\"111.62\" cy=\"29.33\" r=\"0.3\"/>\n",
" <circle cx=\"110.99\" cy=\"29.18\" r=\"0.3\"/>\n",
" <circle cx=\"109.55\" cy=\"28.83\" r=\"0.3\"/>\n",
" <circle cx=\"112.36\" cy=\"29.51\" r=\"0.3\"/>\n",
" <circle cx=\"115.03\" cy=\"30.16\" r=\"0.3\"/>\n",
" <circle cx=\"114.49\" cy=\"30.03\" r=\"0.3\"/>\n",
" <circle cx=\"115.74\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"113.78\" cy=\"29.86\" r=\"0.3\"/>\n",
" <circle cx=\"116.15\" cy=\"30.43\" r=\"0.3\"/>\n",
" <circle cx=\"112.88\" cy=\"29.64\" r=\"0.3\"/>\n",
" <circle cx=\"114.46\" cy=\"30.02\" r=\"0.3\"/>\n",
" <circle cx=\"111.95\" cy=\"29.41\" r=\"0.3\"/>\n",
" <circle cx=\"111.87\" cy=\"29.39\" r=\"0.3\"/>\n",
" <circle cx=\"114.68\" cy=\"30.07\" r=\"0.3\"/>\n",
" <circle cx=\"115.91\" cy=\"30.37\" r=\"0.3\"/>\n",
" <circle cx=\"115.34\" cy=\"30.23\" r=\"0.3\"/>\n",
" <circle cx=\"116.28\" cy=\"30.46\" r=\"0.3\"/>\n",
" <circle cx=\"118.56\" cy=\"31.02\" r=\"0.3\"/>\n",
" <circle cx=\"119.01\" cy=\"31.13\" r=\"0.3\"/>\n",
" <circle cx=\"115.94\" cy=\"30.38\" r=\"0.3\"/>\n",
" <circle cx=\"113.36\" cy=\"29.75\" r=\"0.3\"/>\n",
" <circle cx=\"112.78\" cy=\"29.61\" r=\"0.3\"/>\n",
" <circle cx=\"116.17\" cy=\"30.44\" r=\"0.3\"/>\n",
" <circle cx=\"116.73\" cy=\"30.57\" r=\"0.3\"/>\n",
" <circle cx=\"119.15\" cy=\"31.16\" r=\"0.3\"/>\n",
" <circle cx=\"121.31\" cy=\"31.68\" r=\"0.3\"/>\n",
" <circle cx=\"122.45\" cy=\"31.96\" r=\"0.3\"/>\n",
" <circle cx=\"120.36\" cy=\"31.45\" r=\"0.3\"/>\n",
" <circle cx=\"121.94\" cy=\"31.84\" r=\"0.3\"/>\n",
" <circle cx=\"122.43\" cy=\"31.95\" r=\"0.3\"/>\n",
" <circle cx=\"117.38\" cy=\"30.73\" r=\"0.3\"/>\n",
" <circle cx=\"115.99\" cy=\"30.39\" r=\"0.3\"/>\n",
" <circle cx=\"113.74\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"112.74\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"109.26\" cy=\"28.75\" r=\"0.3\"/>\n",
" <circle cx=\"106.62\" cy=\"28.11\" r=\"0.3\"/>\n",
" <circle cx=\"110.09\" cy=\"28.96\" r=\"0.3\"/>\n",
" <circle cx=\"110.37\" cy=\"29.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.57\" cy=\"28.59\" r=\"0.3\"/>\n",
" <circle cx=\"110.18\" cy=\"28.98\" r=\"0.3\"/>\n",
" <circle cx=\"106.68\" cy=\"28.12\" r=\"0.3\"/>\n",
" <circle cx=\"107.94\" cy=\"28.43\" r=\"0.3\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g opacity=\"0\" class=\"guide zoomslider\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-13\">\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-14\">\n",
" <rect x=\"129.42\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-15\">\n",
" <path d=\"M130.22,9.6 L 131.02 9.6 131.02 8.8 131.82 8.8 131.82 9.6 132.62 9.6 132.62 10.4 131.82 10.4 131.82 11.2 131.02 11.2 131.02 10.4 130.22 10.4 z\"/>\n",
" </g>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-16\">\n",
" <rect x=\"109.92\" y=\"8\" width=\"19\" height=\"4\"/>\n",
" </g>\n",
" <g class=\"zoomslider_thumb\" fill=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-17\">\n",
" <rect x=\"118.42\" y=\"8\" width=\"2\" height=\"4\"/>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-18\">\n",
" <rect x=\"105.42\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-19\">\n",
" <path d=\"M106.22,9.6 L 108.62 9.6 108.62 10.4 106.22 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-80217fdcce744fcf9ed925850409e4d1-element-20\">\n",
" <text x=\"20.98\" y=\"174.33\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.830</text>\n",
" <text x=\"20.98\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.835</text>\n",
" <text x=\"20.98\" y=\"126.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.840</text>\n",
" <text x=\"20.98\" y=\"102.62\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.845</text>\n",
" <text x=\"20.98\" y=\"78.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.850</text>\n",
" <text x=\"20.98\" y=\"54.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.855</text>\n",
" <text x=\"20.98\" y=\"30.91\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.860</text>\n",
" <text x=\"20.98\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.865</text>\n",
" <text x=\"20.98\" y=\"-16.9\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.870</text>\n",
" <text x=\"20.98\" y=\"-40.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.875</text>\n",
" <text x=\"20.98\" y=\"-64.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.880</text>\n",
" <text x=\"20.98\" y=\"-88.62\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.885</text>\n",
" <text x=\"20.98\" y=\"152.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8345</text>\n",
" <text x=\"20.98\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8350</text>\n",
" <text x=\"20.98\" y=\"148.04\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8355</text>\n",
" <text x=\"20.98\" y=\"145.65\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8360</text>\n",
" <text x=\"20.98\" y=\"143.26\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8365</text>\n",
" <text x=\"20.98\" y=\"140.87\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8370</text>\n",
" <text x=\"20.98\" y=\"138.48\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8375</text>\n",
" <text x=\"20.98\" y=\"136.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8380</text>\n",
" <text x=\"20.98\" y=\"133.7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8385</text>\n",
" <text x=\"20.98\" y=\"131.31\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8390</text>\n",
" <text x=\"20.98\" y=\"128.92\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8395</text>\n",
" <text x=\"20.98\" y=\"126.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8400</text>\n",
" <text x=\"20.98\" y=\"124.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8405</text>\n",
" <text x=\"20.98\" y=\"121.74\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8410</text>\n",
" <text x=\"20.98\" y=\"119.35\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8415</text>\n",
" <text x=\"20.98\" y=\"116.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8420</text>\n",
" <text x=\"20.98\" y=\"114.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8425</text>\n",
" <text x=\"20.98\" y=\"112.18\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8430</text>\n",
" <text x=\"20.98\" y=\"109.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8435</text>\n",
" <text x=\"20.98\" y=\"107.4\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8440</text>\n",
" <text x=\"20.98\" y=\"105.01\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8445</text>\n",
" <text x=\"20.98\" y=\"102.62\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8450</text>\n",
" <text x=\"20.98\" y=\"100.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8455</text>\n",
" <text x=\"20.98\" y=\"97.84\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8460</text>\n",
" <text x=\"20.98\" y=\"95.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8465</text>\n",
" <text x=\"20.98\" y=\"93.06\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8470</text>\n",
" <text x=\"20.98\" y=\"90.67\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8475</text>\n",
" <text x=\"20.98\" y=\"88.28\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8480</text>\n",
" <text x=\"20.98\" y=\"85.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8485</text>\n",
" <text x=\"20.98\" y=\"83.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8490</text>\n",
" <text x=\"20.98\" y=\"81.11\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8495</text>\n",
" <text x=\"20.98\" y=\"78.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8500</text>\n",
" <text x=\"20.98\" y=\"76.32\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8505</text>\n",
" <text x=\"20.98\" y=\"73.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8510</text>\n",
" <text x=\"20.98\" y=\"71.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8515</text>\n",
" <text x=\"20.98\" y=\"69.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8520</text>\n",
" <text x=\"20.98\" y=\"66.76\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8525</text>\n",
" <text x=\"20.98\" y=\"64.37\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8530</text>\n",
" <text x=\"20.98\" y=\"61.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8535</text>\n",
" <text x=\"20.98\" y=\"59.59\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8540</text>\n",
" <text x=\"20.98\" y=\"57.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8545</text>\n",
" <text x=\"20.98\" y=\"54.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8550</text>\n",
" <text x=\"20.98\" y=\"52.42\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8555</text>\n",
" <text x=\"20.98\" y=\"50.03\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8560</text>\n",
" <text x=\"20.98\" y=\"47.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8565</text>\n",
" <text x=\"20.98\" y=\"45.25\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8570</text>\n",
" <text x=\"20.98\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8575</text>\n",
" <text x=\"20.98\" y=\"40.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8580</text>\n",
" <text x=\"20.98\" y=\"38.08\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8585</text>\n",
" <text x=\"20.98\" y=\"35.69\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8590</text>\n",
" <text x=\"20.98\" y=\"33.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8595</text>\n",
" <text x=\"20.98\" y=\"30.91\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8600</text>\n",
" <text x=\"20.98\" y=\"28.51\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8605</text>\n",
" <text x=\"20.98\" y=\"26.12\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8610</text>\n",
" <text x=\"20.98\" y=\"23.73\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8615</text>\n",
" <text x=\"20.98\" y=\"21.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8620</text>\n",
" <text x=\"20.98\" y=\"18.95\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8625</text>\n",
" <text x=\"20.98\" y=\"16.56\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8630</text>\n",
" <text x=\"20.98\" y=\"14.17\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8635</text>\n",
" <text x=\"20.98\" y=\"11.78\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8640</text>\n",
" <text x=\"20.98\" y=\"9.39\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8645</text>\n",
" <text x=\"20.98\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8650</text>\n",
" <text x=\"20.98\" y=\"4.61\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8655</text>\n",
" <text x=\"20.98\" y=\"2.22\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8660</text>\n",
" <text x=\"20.98\" y=\"-0.17\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8665</text>\n",
" <text x=\"20.98\" y=\"-2.56\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8670</text>\n",
" <text x=\"20.98\" y=\"-4.95\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8675</text>\n",
" <text x=\"20.98\" y=\"-7.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8680</text>\n",
" <text x=\"20.98\" y=\"-9.73\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8685</text>\n",
" <text x=\"20.98\" y=\"-12.12\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8690</text>\n",
" <text x=\"20.98\" y=\"-14.51\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8695</text>\n",
" <text x=\"20.98\" y=\"-16.9\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8700</text>\n",
" <text x=\"20.98\" y=\"-19.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8705</text>\n",
" <text x=\"20.98\" y=\"-21.69\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8710</text>\n",
" <text x=\"20.98\" y=\"-24.08\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8715</text>\n",
" <text x=\"20.98\" y=\"-26.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8720</text>\n",
" <text x=\"20.98\" y=\"-28.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8725</text>\n",
" <text x=\"20.98\" y=\"-31.25\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8730</text>\n",
" <text x=\"20.98\" y=\"-33.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8735</text>\n",
" <text x=\"20.98\" y=\"-36.03\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8740</text>\n",
" <text x=\"20.98\" y=\"-38.42\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8745</text>\n",
" <text x=\"20.98\" y=\"-40.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8750</text>\n",
" <text x=\"20.98\" y=\"-43.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8755</text>\n",
" <text x=\"20.98\" y=\"-45.59\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8760</text>\n",
" <text x=\"20.98\" y=\"-47.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8765</text>\n",
" <text x=\"20.98\" y=\"-50.37\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8770</text>\n",
" <text x=\"20.98\" y=\"-52.76\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8775</text>\n",
" <text x=\"20.98\" y=\"-55.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8780</text>\n",
" <text x=\"20.98\" y=\"-57.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8785</text>\n",
" <text x=\"20.98\" y=\"-59.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8790</text>\n",
" <text x=\"20.98\" y=\"-62.32\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8795</text>\n",
" <text x=\"20.98\" y=\"-64.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.8800</text>\n",
" <text x=\"20.98\" y=\"222.14\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.82</text>\n",
" <text x=\"20.98\" y=\"126.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.84</text>\n",
" <text x=\"20.98\" y=\"30.91\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.86</text>\n",
" <text x=\"20.98\" y=\"-64.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.88</text>\n",
" <text x=\"20.98\" y=\"155.21\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.834</text>\n",
" <text x=\"20.98\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.835</text>\n",
" <text x=\"20.98\" y=\"145.65\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.836</text>\n",
" <text x=\"20.98\" y=\"140.87\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.837</text>\n",
" <text x=\"20.98\" y=\"136.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.838</text>\n",
" <text x=\"20.98\" y=\"131.31\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.839</text>\n",
" <text x=\"20.98\" y=\"126.53\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.840</text>\n",
" <text x=\"20.98\" y=\"121.74\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.841</text>\n",
" <text x=\"20.98\" y=\"116.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.842</text>\n",
" <text x=\"20.98\" y=\"112.18\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.843</text>\n",
" <text x=\"20.98\" y=\"107.4\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.844</text>\n",
" <text x=\"20.98\" y=\"102.62\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.845</text>\n",
" <text x=\"20.98\" y=\"97.84\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.846</text>\n",
" <text x=\"20.98\" y=\"93.06\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.847</text>\n",
" <text x=\"20.98\" y=\"88.28\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.848</text>\n",
" <text x=\"20.98\" y=\"83.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.849</text>\n",
" <text x=\"20.98\" y=\"78.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.850</text>\n",
" <text x=\"20.98\" y=\"73.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.851</text>\n",
" <text x=\"20.98\" y=\"69.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.852</text>\n",
" <text x=\"20.98\" y=\"64.37\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.853</text>\n",
" <text x=\"20.98\" y=\"59.59\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.854</text>\n",
" <text x=\"20.98\" y=\"54.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.855</text>\n",
" <text x=\"20.98\" y=\"50.03\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.856</text>\n",
" <text x=\"20.98\" y=\"45.25\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.857</text>\n",
" <text x=\"20.98\" y=\"40.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.858</text>\n",
" <text x=\"20.98\" y=\"35.69\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.859</text>\n",
" <text x=\"20.98\" y=\"30.91\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.860</text>\n",
" <text x=\"20.98\" y=\"26.12\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.861</text>\n",
" <text x=\"20.98\" y=\"21.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.862</text>\n",
" <text x=\"20.98\" y=\"16.56\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.863</text>\n",
" <text x=\"20.98\" y=\"11.78\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.864</text>\n",
" <text x=\"20.98\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.865</text>\n",
" <text x=\"20.98\" y=\"2.22\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.866</text>\n",
" <text x=\"20.98\" y=\"-2.56\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.867</text>\n",
" <text x=\"20.98\" y=\"-7.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.868</text>\n",
" <text x=\"20.98\" y=\"-12.12\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.869</text>\n",
" <text x=\"20.98\" y=\"-16.9\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.870</text>\n",
" <text x=\"20.98\" y=\"-21.69\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.871</text>\n",
" <text x=\"20.98\" y=\"-26.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.872</text>\n",
" <text x=\"20.98\" y=\"-31.25\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.873</text>\n",
" <text x=\"20.98\" y=\"-36.03\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.874</text>\n",
" <text x=\"20.98\" y=\"-40.81\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.875</text>\n",
" <text x=\"20.98\" y=\"-45.59\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.876</text>\n",
" <text x=\"20.98\" y=\"-50.37\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.877</text>\n",
" <text x=\"20.98\" y=\"-55.15\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.878</text>\n",
" <text x=\"20.98\" y=\"-59.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.879</text>\n",
" <text x=\"20.98\" y=\"-64.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.880</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-80217fdcce744fcf9ed925850409e4d1-element-21\">\n",
" <text x=\"8.81\" y=\"40.86\" text-anchor=\"middle\" dy=\"0.35em\" transform=\"rotate(-90, 8.81, 42.86)\">Exchange Rate</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-5\">\n",
" <path d=\"M21.98,5 L 136.42 5 136.42 80.72 21.98 80.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",
" Element.prototype.init_gadfly = function() {\n",
" this.mouseenter(Gadfly.plot_mouseover)\n",
" .mouseleave(Gadfly.plot_mouseout)\n",
" .dblclick(Gadfly.plot_dblclick)\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",
" this.mouseenter(function (event) {\n",
" init_pan_zoom(this.plotroot());\n",
" });\n",
" return this;\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",
"\n",
" var keyboard_zoom = function(event) {\n",
" if (event.which == 187) { // plus\n",
" increase_zoom_by_position(root, 0.1, true);\n",
" } else if (event.which == 189) { // minus\n",
" increase_zoom_by_position(root, -0.1, true);\n",
" }\n",
" };\n",
" root.data(\"keyboard_zoom\", keyboard_zoom);\n",
" window.addEventListener(\"keyup\", keyboard_zoom);\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",
"// Reset pan and zoom on double click\n",
"Gadfly.plot_dblclick = function(event) {\n",
" set_plot_pan_zoom(this.plotroot(), 0.0, 0.0, 1.0);\n",
"};\n",
"\n",
"// Unemphasize grid lines on mouse out.\n",
"Gadfly.plot_mouseout = function(event) {\n",
" var root = this.plotroot();\n",
"\n",
" window.removeEventListener(\"keyup\", root.data(\"keyboard_zoom\"));\n",
" root.data(\"keyboard_zoom\", undefined);\n",
"\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",
"// drag actions, i.e. zooming and panning\n",
"var pan_action = {\n",
" start: function(root, x, y, event) {\n",
" root.data(\"dx\", 0);\n",
" root.data(\"dy\", 0);\n",
" root.data(\"tx0\", root.data(\"tx\"));\n",
" root.data(\"ty0\", root.data(\"ty\"));\n",
" },\n",
" update: function(root, dx, dy, x, y, event) {\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",
" end: function(root, event) {\n",
"\n",
" },\n",
" cancel: function(root) {\n",
" set_plot_pan_zoom(root, root.data(\"tx0\"), root.data(\"ty0\"), root.data(\"scale\"));\n",
" }\n",
"};\n",
"\n",
"var zoom_box;\n",
"var zoom_action = {\n",
" start: function(root, x, y, event) {\n",
" var bounds = root.plotbounds();\n",
" var width = bounds.x1 - bounds.x0,\n",
" height = bounds.y1 - bounds.y0;\n",
" var ratio = width / height;\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" x = xscalable ? x / px_per_mm : bounds.x0;\n",
" y = yscalable ? y / px_per_mm : bounds.y0;\n",
" var w = xscalable ? 0 : width;\n",
" var h = yscalable ? 0 : height;\n",
" zoom_box = root.rect(x, y, w, h).attr({\n",
" \"fill\": \"#000\",\n",
" \"opacity\": 0.25\n",
" });\n",
" zoom_box.data(\"ratio\", ratio);\n",
" },\n",
" update: function(root, dx, dy, x, y, event) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" var bounds = root.plotbounds();\n",
" if (yscalable) {\n",
" y /= px_per_mm;\n",
" y = Math.max(bounds.y0, y);\n",
" y = Math.min(bounds.y1, y);\n",
" } else {\n",
" y = bounds.y1;\n",
" }\n",
" if (xscalable) {\n",
" x /= px_per_mm;\n",
" x = Math.max(bounds.x0, x);\n",
" x = Math.min(bounds.x1, x);\n",
" } else {\n",
" x = bounds.x1;\n",
" }\n",
"\n",
" dx = x - zoom_box.attr(\"x\");\n",
" dy = y - zoom_box.attr(\"y\");\n",
" if (xscalable && yscalable) {\n",
" var ratio = zoom_box.data(\"ratio\");\n",
" var width = Math.min(Math.abs(dx), ratio * Math.abs(dy));\n",
" var height = Math.min(Math.abs(dy), Math.abs(dx) / ratio);\n",
" dx = width * dx / Math.abs(dx);\n",
" dy = height * dy / Math.abs(dy);\n",
" }\n",
" var xoffset = 0,\n",
" yoffset = 0;\n",
" if (dx < 0) {\n",
" xoffset = dx;\n",
" dx = -1 * dx;\n",
" }\n",
" if (dy < 0) {\n",
" yoffset = dy;\n",
" dy = -1 * dy;\n",
" }\n",
" if (isNaN(dy)) {\n",
" dy = 0.0;\n",
" }\n",
" if (isNaN(dx)) {\n",
" dx = 0.0;\n",
" }\n",
" zoom_box.transform(\"T\" + xoffset + \",\" + yoffset);\n",
" zoom_box.attr(\"width\", dx);\n",
" zoom_box.attr(\"height\", dy);\n",
" },\n",
" end: function(root, event) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var zoom_bounds = zoom_box.getBBox();\n",
" if (zoom_bounds.width * zoom_bounds.height <= 0) {\n",
" return;\n",
" }\n",
" var plot_bounds = root.plotbounds();\n",
" var zoom_factor = 1.0;\n",
" if (yscalable) {\n",
" zoom_factor = (plot_bounds.y1 - plot_bounds.y0) / zoom_bounds.height;\n",
" } else {\n",
" zoom_factor = (plot_bounds.x1 - plot_bounds.x0) / zoom_bounds.width;\n",
" }\n",
" var tx = (root.data(\"tx\") - zoom_bounds.x) * zoom_factor + plot_bounds.x0,\n",
" ty = (root.data(\"ty\") - zoom_bounds.y) * zoom_factor + plot_bounds.y0;\n",
" set_plot_pan_zoom(root, tx, ty, root.data(\"scale\") * zoom_factor);\n",
" zoom_box.remove();\n",
" },\n",
" cancel: function(root) {\n",
" zoom_box.remove();\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onstart = function(x, y, event) {\n",
" var root = this.plotroot();\n",
" var scalable = root.hasClass(\"xscalable\") || root.hasClass(\"yscalable\");\n",
" var zoomable = !event.altKey && !event.ctrlKey && event.shiftKey && scalable;\n",
" var panable = !event.altKey && !event.ctrlKey && !event.shiftKey && scalable;\n",
" var drag_action = zoomable ? zoom_action :\n",
" panable ? pan_action :\n",
" undefined;\n",
" root.data(\"drag_action\", drag_action);\n",
" if (drag_action) {\n",
" var cancel_drag_action = function(event) {\n",
" if (event.which == 27) { // esc key\n",
" drag_action.cancel(root);\n",
" root.data(\"drag_action\", undefined);\n",
" }\n",
" };\n",
" window.addEventListener(\"keyup\", cancel_drag_action);\n",
" root.data(\"cancel_drag_action\", cancel_drag_action);\n",
" drag_action.start(root, x, y, event);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onmove = function(dx, dy, x, y, event) {\n",
" var root = this.plotroot();\n",
" var drag_action = root.data(\"drag_action\");\n",
" if (drag_action) {\n",
" drag_action.update(root, dx, dy, x, y, event);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onend = function(event) {\n",
" var root = this.plotroot();\n",
" window.removeEventListener(\"keyup\", root.data(\"cancel_drag_action\"));\n",
" root.data(\"cancel_drag_action\", undefined);\n",
" var drag_action = root.data(\"drag_action\");\n",
" if (drag_action) {\n",
" drag_action.end(root, event);\n",
" }\n",
" root.data(\"drag_action\", undefined);\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_scroll = function(event) {\n",
" if (event.shiftKey) {\n",
" increase_zoom_by_position(this.plotroot(), 0.001 * event.wheelDelta);\n",
" event.preventDefault();\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",
" increase_zoom_by_position(this.plotroot(), -0.1, true);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_zoomin_click = function(event) {\n",
" increase_zoom_by_position(this.plotroot(), 0.1, true);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_track_click = function(event) {\n",
" // TODO\n",
"};\n",
"\n",
"\n",
"// Map slider position x to scale y using the function y = a*exp(b*x)+c.\n",
"// The constants a, b, and c are solved using the constraint that the function\n",
"// should go through the points (0; min_scale), (0.5; 1), and (1; max_scale).\n",
"var scale_from_slider_position = function(position, min_scale, max_scale) {\n",
" var a = (1 - 2 * min_scale + min_scale * min_scale) / (min_scale + max_scale - 2),\n",
" b = 2 * Math.log((max_scale - 1) / (1 - min_scale)),\n",
" c = (min_scale * max_scale - 1) / (min_scale + max_scale - 2);\n",
" return a * Math.exp(b * position) + c;\n",
"}\n",
"\n",
"// inverse of scale_from_slider_position\n",
"var slider_position_from_scale = function(scale, min_scale, max_scale) {\n",
" var a = (1 - 2 * min_scale + min_scale * min_scale) / (min_scale + max_scale - 2),\n",
" b = 2 * Math.log((max_scale - 1) / (1 - min_scale)),\n",
" c = (min_scale * max_scale - 1) / (min_scale + max_scale - 2);\n",
" return 1 / b * Math.log((scale - c) / a);\n",
"}\n",
"\n",
"var increase_zoom_by_position = function(root, delta_position, animate) {\n",
" var scale = root.data(\"scale\"),\n",
" min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\");\n",
" var position = slider_position_from_scale(scale, min_scale, max_scale);\n",
" position += delta_position;\n",
" scale = scale_from_slider_position(position, min_scale, max_scale);\n",
" set_zoom(root, scale, animate);\n",
"}\n",
"\n",
"var set_zoom = function(root, scale, animate) {\n",
" var min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\"),\n",
" old_scale = root.data(\"scale\");\n",
" var new_scale = Math.max(min_scale, Math.min(scale, max_scale));\n",
" if (animate) {\n",
" Snap.animate(\n",
" old_scale,\n",
" new_scale,\n",
" function (new_scale) {\n",
" update_plot_scale(root, new_scale);\n",
" },\n",
" 200);\n",
" } else {\n",
" update_plot_scale(root, new_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, event) {\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 = scale_from_slider_position(xpos, min_scale, max_scale);\n",
" new_scale = Math.min(max_scale, Math.max(min_scale, new_scale));\n",
"\n",
" update_plot_scale(root, new_scale);\n",
" event.stopPropagation();\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragstart = function(x, y, event) {\n",
" this.animate({fill: this.data(\"mouseover_color\")}, 100);\n",
" var root = this.plotroot();\n",
"\n",
" // keep track of what the scale was when we started dragging\n",
" root.data(\"old_scale\", root.data(\"scale\"));\n",
" event.stopPropagation();\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragend = function(event) {\n",
" this.animate({fill: this.data(\"mouseout_color\")}, 100);\n",
" event.stopPropagation();\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\"], function (Snap, Gadfly) {\n",
" factory(Snap, Gadfly);\n",
" });\n",
" } else {\n",
" factory(glob.Snap, glob.Gadfly);\n",
" }\n",
"})(window, function (Snap, Gadfly) {\n",
" var fig = Snap(\"#fig-80217fdcce744fcf9ed925850409e4d1\");\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-4\")\n",
" .init_gadfly();\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-7\")\n",
" .plotroot().data(\"unfocused_ygrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-7\")\n",
" .plotroot().data(\"focused_ygrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-8\")\n",
" .plotroot().data(\"unfocused_xgrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-8\")\n",
" .plotroot().data(\"focused_xgrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-14\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-14\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-14\")\n",
" .click(Gadfly.zoomslider_zoomin_click)\n",
".mouseenter(Gadfly.zoomslider_button_mouseover)\n",
".mouseleave(Gadfly.zoomslider_button_mouseout)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-16\")\n",
" .data(\"max_pos\", 120.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-16\")\n",
" .data(\"min_pos\", 103.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-16\")\n",
" .click(Gadfly.zoomslider_track_click);\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"max_pos\", 120.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"min_pos\", 103.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .drag(Gadfly.zoomslider_thumb_dragmove,\n",
" Gadfly.zoomslider_thumb_dragstart,\n",
" Gadfly.zoomslider_thumb_dragend)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-18\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-18\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-18\")\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": [
"Plot(...)"
]
},
"execution_count": 50,
"metadata": {
"comm_id": "6f874572-7c78-4feb-836a-abec58e10b97",
"reactive": true
},
"output_type": "execute_result"
}
],
"source": [
"manipulate_plot() do df, df2\n",
" plot(df, x=:c2_c1_ratio, y=:fxr,\n",
" Scale.y_continuous(minvalue=0.855, maxvalue=0.865),\n",
" Scale.x_continuous(minvalue=0.9165, maxvalue=0.919),\n",
" Geom.point, Geom.smooth, color_scale, small_points,\n",
" Guide.xlabel(\"c₂ / c₁\"), Guide.ylabel(\"Exchange Rate\"))\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [],
"text/plain": [
"Interact.Options{:ToggleButtons,Float64}([Reactive.Input{Float64}] -1.0,\"alpha\",-1.0,\"-1.0\",Interact.OptionDict(Any[\"-1.0\",\"-5.0\",\"-9.0\"],Dict{Any,Any}(\"-1.0\"=>-1.0,\"-9.0\"=>-9.0,\"-5.0\"=>-5.0)),Any[],Any[])"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\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-bcfbb97576434424b36d8f92a03d2211-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-bcfbb97576434424b36d8f92a03d2211-element-2\">\n",
" <text x=\"80.59\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">Δ log(c₂) - Δ log(c₁)</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-bcfbb97576434424b36d8f92a03d2211-element-3\">\n",
" <text x=\"26.76\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">-0.0002</text>\n",
" <text x=\"53.68\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">-0.0001</text>\n",
" <text x=\"80.59\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.0000</text>\n",
" <text x=\"107.51\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.0001</text>\n",
" <text x=\"134.42\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.0002</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-bcfbb97576434424b36d8f92a03d2211-element-5)\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-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-bcfbb97576434424b36d8f92a03d2211-element-6\">\n",
" <rect x=\"24.76\" y=\"5\" width=\"111.66\" height=\"75.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-7\">\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-8\">\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-9\">\n",
" <g stroke-width=\"0.3\" fill=\"#000000\" fill-opacity=\"0.000\" class=\"geometry\" stroke-dasharray=\"none\" stroke=\"#4C72B0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-10\">\n",
" <path fill=\"none\" d=\"M40.45,16.12 L 40.56 16.2 40.66 16.27 40.77 16.34 40.88 16.41 40.99 16.48 41.1 16.56 41.2 16.63 41.31 16.7 41.42 16.77 41.53 16.84 41.64 16.91 41.74 16.99 41.85 17.06 41.96 17.13 42.07 17.2 42.18 17.27 42.28 17.35 42.39 17.42 42.5 17.49 42.61 17.56 42.72 17.63 42.82 17.71 42.93 17.78 43.04 17.85 43.15 17.92 43.26 17.99 43.36 18.07 43.47 18.14 43.58 18.21 43.69 18.28 43.8 18.35 43.9 18.43 44.01 18.5 44.12 18.57 44.23 18.64 44.34 18.71 44.44 18.79 44.55 18.86 44.66 18.93 44.77 19 44.88 19.07 44.98 19.14 45.09 19.22 45.2 19.29 45.31 19.36 45.42 19.43 45.52 19.5 45.63 19.58 45.74 19.65 45.85 19.72 45.96 19.79 46.06 19.86 46.17 19.94 46.28 20.01 46.39 20.08 46.5 20.15 46.6 20.22 46.71 20.3 46.82 20.37 46.93 20.44 47.04 20.51 47.14 20.58 47.25 20.66 47.36 20.73 47.47 20.8 47.58 20.87 47.68 20.94 47.79 21.02 47.9 21.09 48.01 21.16 48.12 21.23 48.23 21.3 48.33 21.37 48.44 21.45 48.55 21.52 48.66 21.59 48.77 21.66 48.87 21.73 48.98 21.81 49.09 21.88 49.2 21.95 49.31 22.02 49.41 22.09 49.52 22.17 49.63 22.24 49.74 22.31 49.85 22.38 49.95 22.45 50.06 22.53 50.17 22.6 50.28 22.67 50.39 22.74 50.49 22.81 50.6 22.89 50.71 22.96 50.82 23.03 50.93 23.1 51.03 23.17 51.14 23.25 51.25 23.32 51.36 23.39 51.47 23.46 51.57 23.53 51.68 23.6 51.79 23.68 51.9 23.75 52.01 23.82 52.11 23.89 52.22 23.96 52.33 24.04 52.44 24.11 52.55 24.18 52.65 24.25 52.76 24.32 52.87 24.4 52.98 24.47 53.09 24.54 53.19 24.61 53.3 24.68 53.41 24.76 53.52 24.83 53.63 24.9 53.73 24.97 53.84 25.04 53.95 25.12 54.06 25.19 54.17 25.26 54.27 25.33 54.38 25.4 54.49 25.48 54.6 25.55 54.71 25.62 54.81 25.69 54.92 25.76 55.03 25.83 55.14 25.91 55.25 25.98 55.35 26.05 55.46 26.12 55.57 26.19 55.68 26.27 55.79 26.34 55.89 26.41 56 26.48 56.11 26.55 56.22 26.63 56.33 26.7 56.44 26.77 56.54 26.84 56.65 26.91 56.76 26.99 56.87 27.06 56.98 27.13 57.08 27.2 57.19 27.27 57.3 27.35 57.41 27.42 57.52 27.49 57.62 27.56 57.73 27.63 57.84 27.7 57.95 27.78 58.06 27.85 58.16 27.92 58.27 27.99 58.38 28.06 58.49 28.14 58.6 28.21 58.7 28.28 58.81 28.35 58.92 28.42 59.03 28.5 59.14 28.57 59.24 28.64 59.35 28.71 59.46 28.78 59.57 28.86 59.68 28.93 59.78 29 59.89 29.07 60 29.14 60.11 29.22 60.22 29.29 60.32 29.36 60.43 29.43 60.54 29.5 60.65 29.58 60.76 29.65 60.86 29.72 60.97 29.79 61.08 29.86 61.19 29.93 61.3 30.01 61.4 30.08 61.51 30.15 61.62 30.22 61.73 30.29 61.84 30.37 61.94 30.44 62.05 30.51 62.16 30.58 62.27 30.65 62.38 30.73 62.48 30.8 62.59 30.87 62.7 30.94 62.81 31.01 62.92 31.09 63.02 31.16 63.13 31.23 63.24 31.3 63.35 31.37 63.46 31.45 63.56 31.52 63.67 31.59 63.78 31.66 63.89 31.73 64 31.8 64.1 31.88 64.21 31.95 64.32 32.02 64.43 32.09 64.54 32.16 64.64 32.24 64.75 32.31 64.86 32.38 64.97 32.45 65.08 32.52 65.19 32.6 65.29 32.67 65.4 32.74 65.51 32.81 65.62 32.88 65.73 32.96 65.83 33.03 65.94 33.1 66.05 33.17 66.16 33.24 66.27 33.32 66.37 33.39 66.48 33.46 66.59 33.53 66.7 33.6 66.81 33.68 66.91 33.75 67.02 33.82 67.13 33.89 67.24 33.96 67.35 34.03 67.45 34.11 67.56 34.18 67.67 34.25 67.78 34.32 67.89 34.39 67.99 34.47 68.1 34.54 68.21 34.61 68.32 34.68 68.43 34.75 68.53 34.83 68.64 34.9 68.75 34.97 68.86 35.04 68.97 35.11 69.07 35.19 69.18 35.26 69.29 35.33 69.4 35.4 69.51 35.47 69.61 35.55 69.72 35.62 69.83 35.69 69.94 35.76 70.05 35.83 70.15 35.91 70.26 35.98 70.37 36.05 70.48 36.12 70.59 36.19 70.69 36.26 70.8 36.34 70.91 36.41 71.02 36.48 71.13 36.55 71.23 36.62 71.34 36.7 71.45 36.77 71.56 36.84 71.67 36.91 71.77 36.98 71.88 37.06 71.99 37.13 72.1 37.2 72.21 37.27 72.31 37.34 72.42 37.42 72.53 37.49 72.64 37.56 72.75 37.63 72.85 37.7 72.96 37.78 73.07 37.85 73.18 37.92 73.29 37.99 73.4 38.06 73.5 38.13 73.61 38.21 73.72 38.28 73.83 38.35 73.94 38.42 74.04 38.49 74.15 38.57 74.26 38.64 74.37 38.71 74.48 38.78 74.58 38.85 74.69 38.93 74.8 39 74.91 39.07 75.02 39.14 75.12 39.21 75.23 39.29 75.34 39.36 75.45 39.43 75.56 39.5 75.66 39.57 75.77 39.65 75.88 39.72 75.99 39.79 76.1 39.86 76.2 39.93 76.31 40.01 76.42 40.08 76.53 40.15 76.64 40.22 76.74 40.29 76.85 40.36 76.96 40.44 77.07 40.51 77.18 40.58 77.28 40.65 77.39 40.72 77.5 40.8 77.61 40.87 77.72 40.94 77.82 41.01 77.93 41.08 78.04 41.16 78.15 41.23 78.26 41.3 78.36 41.37 78.47 41.44 78.58 41.52 78.69 41.59 78.8 41.66 78.9 41.73 79.01 41.8 79.12 41.88 79.23 41.95 79.34 42.02 79.44 42.09 79.55 42.16 79.66 42.24 79.77 42.31 79.88 42.38 79.98 42.45 80.09 42.52 80.2 42.59 80.31 42.67 80.42 42.74 80.52 42.81 80.63 42.88 80.74 42.95 80.85 43.03 80.96 43.1 81.06 43.17 81.17 43.24 81.28 43.31 81.39 43.39 81.5 43.46 81.61 43.53 81.71 43.6 81.82 43.67 81.93 43.75 82.04 43.82 82.15 43.89 82.25 43.96 82.36 44.03 82.47 44.11 82.58 44.18 82.69 44.25 82.79 44.32 82.9 44.39 83.01 44.46 83.12 44.54 83.23 44.61 83.33 44.68 83.44 44.75 83.55 44.82 83.66 44.9 83.77 44.97 83.87 45.04 83.98 45.11 84.09 45.18 84.2 45.26 84.31 45.33 84.41 45.4 84.52 45.47 84.63 45.54 84.74 45.62 84.85 45.69 84.95 45.76 85.06 45.83 85.17 45.9 85.28 45.98 85.39 46.05 85.49 46.12 85.6 46.19 85.71 46.26 85.82 46.34 85.93 46.41 86.03 46.48 86.14 46.55 86.25 46.62 86.36 46.69 86.47 46.77 86.57 46.84 86.68 46.91 86.79 46.98 86.9 47.05 87.01 47.13 87.11 47.2 87.22 47.27 87.33 47.34 87.44 47.41 87.55 47.49 87.65 47.56 87.76 47.63 87.87 47.7 87.98 47.77 88.09 47.85 88.19 47.92 88.3 47.99 88.41 48.06 88.52 48.13 88.63 48.21 88.73 48.28 88.84 48.35 88.95 48.42 89.06 48.49 89.17 48.56 89.27 48.64 89.38 48.71 89.49 48.78 89.6 48.85 89.71 48.92 89.81 49 89.92 49.07 90.03 49.14 90.14 49.21 90.25 49.28 90.36 49.36 90.46 49.43 90.57 49.5 90.68 49.57 90.79 49.64 90.9 49.72 91 49.79 91.11 49.86 91.22 49.93 91.33 50 91.44 50.08 91.54 50.15 91.65 50.22 91.76 50.29 91.87 50.36 91.98 50.44 92.08 50.51 92.19 50.58 92.3 50.65 92.41 50.72 92.52 50.79 92.62 50.87 92.73 50.94 92.84 51.01 92.95 51.08 93.06 51.15 93.16 51.23 93.27 51.3 93.38 51.37 93.49 51.44 93.6 51.51 93.7 51.59 93.81 51.66 93.92 51.73 94.03 51.8 94.14 51.87 94.24 51.95 94.35 52.02 94.46 52.09 94.57 52.16 94.68 52.23 94.78 52.31 94.89 52.38 95 52.45 95.11 52.52 95.22 52.59 95.32 52.66 95.43 52.74 95.54 52.81 95.65 52.88 95.76 52.95 95.86 53.02 95.97 53.1 96.08 53.17 96.19 53.24 96.3 53.31 96.4 53.38 96.51 53.46 96.62 53.53 96.73 53.6 96.84 53.67 96.94 53.74 97.05 53.82 97.16 53.89 97.27 53.96 97.38 54.03 97.48 54.1 97.59 54.18 97.7 54.25 97.81 54.32 97.92 54.39 98.02 54.46 98.13 54.54 98.24 54.61 98.35 54.68 98.46 54.75 98.57 54.82 98.67 54.89 98.78 54.97 98.89 55.04 99 55.11 99.11 55.18 99.21 55.25 99.32 55.33 99.43 55.4 99.54 55.47 99.65 55.54 99.75 55.61 99.86 55.69 99.97 55.76 100.08 55.83 100.19 55.9 100.29 55.97 100.4 56.05 100.51 56.12 100.62 56.19 100.73 56.26 100.83 56.33 100.94 56.41 101.05 56.48 101.16 56.55 101.27 56.62 101.37 56.69 101.48 56.76 101.59 56.84 101.7 56.91 101.81 56.98 101.91 57.05 102.02 57.12 102.13 57.2 102.24 57.27 102.35 57.34 102.45 57.41 102.56 57.48 102.67 57.56 102.78 57.63 102.89 57.7 102.99 57.77 103.1 57.84 103.21 57.92 103.32 57.99 103.43 58.06 103.53 58.13 103.64 58.2 103.75 58.28 103.86 58.35 103.97 58.42 104.07 58.49 104.18 58.56 104.29 58.64 104.4 58.71 104.51 58.78 104.61 58.85 104.72 58.92 104.83 58.99 104.94 59.07 105.05 59.14 105.15 59.21 105.26 59.28 105.37 59.35 105.48 59.43 105.59 59.5 105.69 59.57 105.8 59.64 105.91 59.71 106.02 59.79 106.13 59.86 106.23 59.93 106.34 60 106.45 60.07 106.56 60.15 106.67 60.22 106.77 60.29 106.88 60.36 106.99 60.43 107.1 60.51 107.21 60.58 107.32 60.65 107.42 60.72 107.53 60.79 107.64 60.87 107.75 60.94 107.86 61.01 107.96 61.08 108.07 61.15 108.18 61.22 108.29 61.3 108.4 61.37 108.5 61.44 108.61 61.51 108.72 61.58 108.83 61.66 108.94 61.73 109.04 61.8 109.15 61.87 109.26 61.94 109.37 62.02 109.48 62.09 109.58 62.16 109.69 62.23 109.8 62.3 109.91 62.38 110.02 62.45 110.12 62.52 110.23 62.59 110.34 62.66 110.45 62.74 110.56 62.81 110.66 62.88 110.77 62.95 110.88 63.02 110.99 63.09 111.1 63.17 111.2 63.24 111.31 63.31 111.42 63.38 111.53 63.45 111.64 63.53 111.74 63.6 111.85 63.67 111.96 63.74 112.07 63.81 112.18 63.89 112.28 63.96 112.39 64.03 112.5 64.1 112.61 64.17 112.72 64.25 112.82 64.32 112.93 64.39 113.04 64.46 113.15 64.53 113.26 64.61 113.36 64.68 113.47 64.75 113.58 64.82 113.69 64.89 113.8 64.96 113.9 65.04 114.01 65.11 114.12 65.18 114.23 65.25 114.34 65.32 114.44 65.4 114.55 65.47 114.66 65.54 114.77 65.61 114.88 65.68 114.98 65.76 115.09 65.83 115.2 65.9 115.31 65.97 115.42 66.04 115.53 66.12 115.63 66.19 115.74 66.26 115.85 66.33 115.96 66.4 116.07 66.48 116.17 66.55 116.28 66.62 116.39 66.69 116.5 66.76 116.61 66.84 116.71 66.91 116.82 66.98 116.93 67.05 117.04 67.12 117.15 67.19 117.25 67.27 117.36 67.34 117.47 67.41 117.58 67.48 117.69 67.55 117.79 67.63 117.9 67.7 118.01 67.77 118.12 67.84 118.23 67.91 118.33 67.99 118.44 68.06 118.55 68.13 118.66 68.2 118.77 68.27 118.87 68.35 118.98 68.42 119.09 68.49 119.2 68.56 119.31 68.63 119.41 68.71 119.52 68.78 119.63 68.85 119.74 68.92 119.85 68.99 119.95 69.06 120.06 69.14 120.17 69.21 120.28 69.28 120.39 69.35 120.49 69.42 120.6 69.5 120.71 69.57 120.82 69.64 120.93 69.71 121.03 69.78 121.14 69.86 121.25 69.93 121.36 70\"/>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-11\">\n",
" <g class=\"color_RGBA{Float32}(0.29803923f0,0.44705883f0,0.6901961f0,1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0\" fill=\"#4C72B0\" id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-12\">\n",
" <circle cx=\"86.11\" cy=\"46.53\" r=\"0.3\"/>\n",
" <circle cx=\"80.01\" cy=\"42.47\" r=\"0.3\"/>\n",
" <circle cx=\"75.09\" cy=\"39.19\" r=\"0.3\"/>\n",
" <circle cx=\"67.46\" cy=\"34.11\" r=\"0.3\"/>\n",
" <circle cx=\"55.7\" cy=\"26.28\" r=\"0.3\"/>\n",
" <circle cx=\"94.69\" cy=\"52.24\" r=\"0.3\"/>\n",
" <circle cx=\"86.21\" cy=\"46.59\" r=\"0.3\"/>\n",
" <circle cx=\"89.78\" cy=\"48.98\" r=\"0.3\"/>\n",
" <circle cx=\"91.07\" cy=\"49.83\" r=\"0.3\"/>\n",
" <circle cx=\"66.18\" cy=\"33.26\" r=\"0.3\"/>\n",
" <circle cx=\"95.05\" cy=\"52.48\" r=\"0.3\"/>\n",
" <circle cx=\"48.9\" cy=\"21.75\" r=\"0.3\"/>\n",
" <circle cx=\"94.15\" cy=\"51.89\" r=\"0.3\"/>\n",
" <circle cx=\"66.93\" cy=\"33.76\" r=\"0.3\"/>\n",
" <circle cx=\"81.86\" cy=\"43.7\" r=\"0.3\"/>\n",
" <circle cx=\"70.37\" cy=\"36.05\" r=\"0.3\"/>\n",
" <circle cx=\"105.34\" cy=\"59.33\" r=\"0.3\"/>\n",
" <circle cx=\"64.96\" cy=\"32.45\" r=\"0.3\"/>\n",
" <circle cx=\"78.72\" cy=\"41.61\" r=\"0.3\"/>\n",
" <circle cx=\"107.35\" cy=\"60.67\" r=\"0.3\"/>\n",
" <circle cx=\"60.48\" cy=\"29.47\" r=\"0.3\"/>\n",
" <circle cx=\"67.47\" cy=\"34.12\" r=\"0.3\"/>\n",
" <circle cx=\"77.71\" cy=\"40.93\" r=\"0.3\"/>\n",
" <circle cx=\"69.98\" cy=\"35.79\" r=\"0.3\"/>\n",
" <circle cx=\"78.76\" cy=\"41.64\" r=\"0.3\"/>\n",
" <circle cx=\"76.47\" cy=\"40.11\" r=\"0.3\"/>\n",
" <circle cx=\"72.68\" cy=\"37.59\" r=\"0.3\"/>\n",
" <circle cx=\"93.14\" cy=\"51.21\" r=\"0.3\"/>\n",
" <circle cx=\"80.95\" cy=\"43.09\" r=\"0.3\"/>\n",
" <circle cx=\"86.88\" cy=\"47.04\" r=\"0.3\"/>\n",
" <circle cx=\"93.69\" cy=\"51.57\" r=\"0.3\"/>\n",
" <circle cx=\"73.19\" cy=\"37.93\" r=\"0.3\"/>\n",
" <circle cx=\"81.18\" cy=\"43.25\" r=\"0.3\"/>\n",
" <circle cx=\"103.77\" cy=\"58.29\" r=\"0.3\"/>\n",
" <circle cx=\"94.13\" cy=\"51.87\" r=\"0.3\"/>\n",
" <circle cx=\"59.39\" cy=\"28.74\" r=\"0.3\"/>\n",
" <circle cx=\"97.86\" cy=\"54.36\" r=\"0.3\"/>\n",
" <circle cx=\"74.64\" cy=\"38.89\" r=\"0.3\"/>\n",
" <circle cx=\"100.03\" cy=\"55.8\" r=\"0.3\"/>\n",
" <circle cx=\"88.78\" cy=\"48.31\" r=\"0.3\"/>\n",
" <circle cx=\"82.12\" cy=\"43.88\" r=\"0.3\"/>\n",
" <circle cx=\"73.78\" cy=\"38.32\" r=\"0.3\"/>\n",
" <circle cx=\"112.12\" cy=\"63.85\" r=\"0.3\"/>\n",
" <circle cx=\"62.23\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"101.8\" cy=\"56.97\" r=\"0.3\"/>\n",
" <circle cx=\"58.71\" cy=\"28.29\" r=\"0.3\"/>\n",
" <circle cx=\"50.18\" cy=\"22.6\" r=\"0.3\"/>\n",
" <circle cx=\"64.16\" cy=\"31.92\" r=\"0.3\"/>\n",
" <circle cx=\"106.13\" cy=\"59.86\" r=\"0.3\"/>\n",
" <circle cx=\"76.25\" cy=\"39.97\" r=\"0.3\"/>\n",
" <circle cx=\"92.27\" cy=\"50.63\" r=\"0.3\"/>\n",
" <circle cx=\"85.88\" cy=\"46.38\" r=\"0.3\"/>\n",
" <circle cx=\"84.03\" cy=\"45.15\" r=\"0.3\"/>\n",
" <circle cx=\"71.96\" cy=\"37.1\" r=\"0.3\"/>\n",
" <circle cx=\"95.32\" cy=\"52.66\" r=\"0.3\"/>\n",
" <circle cx=\"78.3\" cy=\"41.33\" r=\"0.3\"/>\n",
" <circle cx=\"59.92\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"85.28\" cy=\"45.98\" r=\"0.3\"/>\n",
" <circle cx=\"66.13\" cy=\"33.23\" r=\"0.3\"/>\n",
" <circle cx=\"89.32\" cy=\"48.67\" r=\"0.3\"/>\n",
" <circle cx=\"78.14\" cy=\"41.22\" r=\"0.3\"/>\n",
" <circle cx=\"58.39\" cy=\"28.07\" r=\"0.3\"/>\n",
" <circle cx=\"91.36\" cy=\"50.02\" r=\"0.3\"/>\n",
" <circle cx=\"82.89\" cy=\"44.39\" r=\"0.3\"/>\n",
" <circle cx=\"77.16\" cy=\"40.57\" r=\"0.3\"/>\n",
" <circle cx=\"83.69\" cy=\"44.92\" r=\"0.3\"/>\n",
" <circle cx=\"79.21\" cy=\"41.93\" r=\"0.3\"/>\n",
" <circle cx=\"72.33\" cy=\"37.36\" r=\"0.3\"/>\n",
" <circle cx=\"78.9\" cy=\"41.73\" r=\"0.3\"/>\n",
" <circle cx=\"53.86\" cy=\"25.05\" r=\"0.3\"/>\n",
" <circle cx=\"102.7\" cy=\"57.58\" r=\"0.3\"/>\n",
" <circle cx=\"96.91\" cy=\"53.72\" r=\"0.3\"/>\n",
" <circle cx=\"63.33\" cy=\"31.36\" r=\"0.3\"/>\n",
" <circle cx=\"73.76\" cy=\"38.3\" r=\"0.3\"/>\n",
" <circle cx=\"77.14\" cy=\"40.56\" r=\"0.3\"/>\n",
" <circle cx=\"70.32\" cy=\"36.01\" r=\"0.3\"/>\n",
" <circle cx=\"81.64\" cy=\"43.55\" r=\"0.3\"/>\n",
" <circle cx=\"81.92\" cy=\"43.74\" r=\"0.3\"/>\n",
" <circle cx=\"101.62\" cy=\"56.86\" r=\"0.3\"/>\n",
" <circle cx=\"104.99\" cy=\"59.1\" r=\"0.3\"/>\n",
" <circle cx=\"101.38\" cy=\"56.7\" r=\"0.3\"/>\n",
" <circle cx=\"87\" cy=\"47.12\" r=\"0.3\"/>\n",
" <circle cx=\"58.22\" cy=\"27.96\" r=\"0.3\"/>\n",
" <circle cx=\"75.84\" cy=\"39.69\" r=\"0.3\"/>\n",
" <circle cx=\"78.66\" cy=\"41.57\" r=\"0.3\"/>\n",
" <circle cx=\"63.22\" cy=\"31.29\" r=\"0.3\"/>\n",
" <circle cx=\"67.62\" cy=\"34.22\" r=\"0.3\"/>\n",
" <circle cx=\"80.49\" cy=\"42.79\" r=\"0.3\"/>\n",
" <circle cx=\"102.91\" cy=\"57.72\" r=\"0.3\"/>\n",
" <circle cx=\"73.55\" cy=\"38.17\" r=\"0.3\"/>\n",
" <circle cx=\"82.76\" cy=\"44.3\" r=\"0.3\"/>\n",
" <circle cx=\"110.3\" cy=\"62.64\" r=\"0.3\"/>\n",
" <circle cx=\"87.82\" cy=\"47.67\" r=\"0.3\"/>\n",
" <circle cx=\"70.09\" cy=\"35.86\" r=\"0.3\"/>\n",
" <circle cx=\"80.86\" cy=\"43.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.51\" cy=\"38.81\" r=\"0.3\"/>\n",
" <circle cx=\"62.51\" cy=\"30.81\" r=\"0.3\"/>\n",
" <circle cx=\"68.14\" cy=\"34.56\" r=\"0.3\"/>\n",
" <circle cx=\"101.87\" cy=\"57.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.32\" cy=\"61.32\" r=\"0.3\"/>\n",
" <circle cx=\"73.49\" cy=\"38.13\" r=\"0.3\"/>\n",
" <circle cx=\"74.84\" cy=\"39.02\" r=\"0.3\"/>\n",
" <circle cx=\"99.51\" cy=\"55.45\" r=\"0.3\"/>\n",
" <circle cx=\"81.02\" cy=\"43.14\" r=\"0.3\"/>\n",
" <circle cx=\"96.13\" cy=\"53.2\" r=\"0.3\"/>\n",
" <circle cx=\"62.92\" cy=\"31.09\" r=\"0.3\"/>\n",
" <circle cx=\"51.37\" cy=\"23.4\" r=\"0.3\"/>\n",
" <circle cx=\"75.49\" cy=\"39.46\" r=\"0.3\"/>\n",
" <circle cx=\"96.06\" cy=\"53.16\" r=\"0.3\"/>\n",
" <circle cx=\"74.29\" cy=\"38.66\" r=\"0.3\"/>\n",
" <circle cx=\"68.45\" cy=\"34.77\" r=\"0.3\"/>\n",
" <circle cx=\"91.75\" cy=\"50.29\" r=\"0.3\"/>\n",
" <circle cx=\"75.11\" cy=\"39.2\" r=\"0.3\"/>\n",
" <circle cx=\"82.46\" cy=\"44.1\" r=\"0.3\"/>\n",
" <circle cx=\"65.62\" cy=\"32.88\" r=\"0.3\"/>\n",
" <circle cx=\"77.98\" cy=\"41.12\" r=\"0.3\"/>\n",
" <circle cx=\"106.47\" cy=\"60.08\" r=\"0.3\"/>\n",
" <circle cx=\"96.94\" cy=\"53.74\" r=\"0.3\"/>\n",
" <circle cx=\"54.98\" cy=\"25.8\" r=\"0.3\"/>\n",
" <circle cx=\"87.72\" cy=\"47.6\" r=\"0.3\"/>\n",
" <circle cx=\"92.42\" cy=\"50.73\" r=\"0.3\"/>\n",
" <circle cx=\"64.66\" cy=\"32.25\" r=\"0.3\"/>\n",
" <circle cx=\"70.51\" cy=\"36.15\" r=\"0.3\"/>\n",
" <circle cx=\"88.14\" cy=\"47.88\" r=\"0.3\"/>\n",
" <circle cx=\"93.78\" cy=\"51.64\" r=\"0.3\"/>\n",
" <circle cx=\"84.87\" cy=\"45.7\" r=\"0.3\"/>\n",
" <circle cx=\"52.54\" cy=\"24.17\" r=\"0.3\"/>\n",
" <circle cx=\"108.33\" cy=\"61.33\" r=\"0.3\"/>\n",
" <circle cx=\"79.33\" cy=\"42.02\" r=\"0.3\"/>\n",
" <circle cx=\"82.64\" cy=\"44.22\" r=\"0.3\"/>\n",
" <circle cx=\"50.36\" cy=\"22.72\" r=\"0.3\"/>\n",
" <circle cx=\"64.73\" cy=\"32.29\" r=\"0.3\"/>\n",
" <circle cx=\"65.69\" cy=\"32.93\" r=\"0.3\"/>\n",
" <circle cx=\"75.02\" cy=\"39.14\" r=\"0.3\"/>\n",
" <circle cx=\"89.12\" cy=\"48.53\" r=\"0.3\"/>\n",
" <circle cx=\"70.43\" cy=\"36.09\" r=\"0.3\"/>\n",
" <circle cx=\"117.02\" cy=\"67.11\" r=\"0.3\"/>\n",
" <circle cx=\"84.29\" cy=\"45.32\" r=\"0.3\"/>\n",
" <circle cx=\"87.52\" cy=\"47.47\" r=\"0.3\"/>\n",
" <circle cx=\"62.84\" cy=\"31.04\" r=\"0.3\"/>\n",
" <circle cx=\"82.1\" cy=\"43.86\" r=\"0.3\"/>\n",
" <circle cx=\"81.58\" cy=\"43.51\" r=\"0.3\"/>\n",
" <circle cx=\"73.14\" cy=\"37.89\" r=\"0.3\"/>\n",
" <circle cx=\"106.05\" cy=\"59.8\" r=\"0.3\"/>\n",
" <circle cx=\"74.47\" cy=\"38.78\" r=\"0.3\"/>\n",
" <circle cx=\"82.44\" cy=\"44.08\" r=\"0.3\"/>\n",
" <circle cx=\"91.33\" cy=\"50\" r=\"0.3\"/>\n",
" <circle cx=\"81.87\" cy=\"43.7\" r=\"0.3\"/>\n",
" <circle cx=\"98.73\" cy=\"54.93\" r=\"0.3\"/>\n",
" <circle cx=\"73.43\" cy=\"38.09\" r=\"0.3\"/>\n",
" <circle cx=\"62.63\" cy=\"30.9\" r=\"0.3\"/>\n",
" <circle cx=\"69.1\" cy=\"35.2\" r=\"0.3\"/>\n",
" <circle cx=\"66.34\" cy=\"33.37\" r=\"0.3\"/>\n",
" <circle cx=\"90.68\" cy=\"49.58\" r=\"0.3\"/>\n",
" <circle cx=\"83.64\" cy=\"44.88\" r=\"0.3\"/>\n",
" <circle cx=\"104.22\" cy=\"58.59\" r=\"0.3\"/>\n",
" <circle cx=\"73.17\" cy=\"37.91\" r=\"0.3\"/>\n",
" <circle cx=\"59.78\" cy=\"29\" r=\"0.3\"/>\n",
" <circle cx=\"64.38\" cy=\"32.06\" r=\"0.3\"/>\n",
" <circle cx=\"96.16\" cy=\"53.22\" r=\"0.3\"/>\n",
" <circle cx=\"93.09\" cy=\"51.18\" r=\"0.3\"/>\n",
" <circle cx=\"55.65\" cy=\"26.25\" r=\"0.3\"/>\n",
" <circle cx=\"82.62\" cy=\"44.2\" r=\"0.3\"/>\n",
" <circle cx=\"90.17\" cy=\"49.23\" r=\"0.3\"/>\n",
" <circle cx=\"85.09\" cy=\"45.85\" r=\"0.3\"/>\n",
" <circle cx=\"114.01\" cy=\"65.11\" r=\"0.3\"/>\n",
" <circle cx=\"65.13\" cy=\"32.56\" r=\"0.3\"/>\n",
" <circle cx=\"106.34\" cy=\"60\" r=\"0.3\"/>\n",
" <circle cx=\"64.91\" cy=\"32.41\" r=\"0.3\"/>\n",
" <circle cx=\"68.24\" cy=\"34.63\" r=\"0.3\"/>\n",
" <circle cx=\"86.02\" cy=\"46.47\" r=\"0.3\"/>\n",
" <circle cx=\"107.41\" cy=\"60.72\" r=\"0.3\"/>\n",
" <circle cx=\"100.12\" cy=\"55.86\" r=\"0.3\"/>\n",
" <circle cx=\"73.32\" cy=\"38.01\" r=\"0.3\"/>\n",
" <circle cx=\"74.57\" cy=\"38.84\" r=\"0.3\"/>\n",
" <circle cx=\"67.44\" cy=\"34.1\" r=\"0.3\"/>\n",
" <circle cx=\"63.5\" cy=\"31.48\" r=\"0.3\"/>\n",
" <circle cx=\"68.92\" cy=\"35.08\" r=\"0.3\"/>\n",
" <circle cx=\"92.86\" cy=\"51.02\" r=\"0.3\"/>\n",
" <circle cx=\"75.01\" cy=\"39.14\" r=\"0.3\"/>\n",
" <circle cx=\"75.26\" cy=\"39.31\" r=\"0.3\"/>\n",
" <circle cx=\"99.18\" cy=\"55.23\" r=\"0.3\"/>\n",
" <circle cx=\"61.7\" cy=\"30.27\" r=\"0.3\"/>\n",
" <circle cx=\"96.3\" cy=\"53.32\" r=\"0.3\"/>\n",
" <circle cx=\"78.26\" cy=\"41.3\" r=\"0.3\"/>\n",
" <circle cx=\"78.14\" cy=\"41.22\" r=\"0.3\"/>\n",
" <circle cx=\"66.3\" cy=\"33.34\" r=\"0.3\"/>\n",
" <circle cx=\"95.14\" cy=\"52.54\" r=\"0.3\"/>\n",
" <circle cx=\"54.97\" cy=\"25.8\" r=\"0.3\"/>\n",
" <circle cx=\"116.67\" cy=\"66.88\" r=\"0.3\"/>\n",
" <circle cx=\"88.03\" cy=\"47.81\" r=\"0.3\"/>\n",
" <circle cx=\"60.05\" cy=\"29.18\" r=\"0.3\"/>\n",
" <circle cx=\"90.11\" cy=\"49.19\" r=\"0.3\"/>\n",
" <circle cx=\"75.36\" cy=\"39.37\" r=\"0.3\"/>\n",
" <circle cx=\"49.94\" cy=\"22.44\" r=\"0.3\"/>\n",
" <circle cx=\"68.78\" cy=\"34.99\" r=\"0.3\"/>\n",
" <circle cx=\"62.42\" cy=\"30.76\" r=\"0.3\"/>\n",
" <circle cx=\"105.42\" cy=\"59.38\" r=\"0.3\"/>\n",
" <circle cx=\"97.95\" cy=\"54.41\" r=\"0.3\"/>\n",
" <circle cx=\"81.27\" cy=\"43.3\" r=\"0.3\"/>\n",
" <circle cx=\"64.31\" cy=\"32.01\" r=\"0.3\"/>\n",
" <circle cx=\"110.5\" cy=\"62.77\" r=\"0.3\"/>\n",
" <circle cx=\"72.17\" cy=\"37.25\" r=\"0.3\"/>\n",
" <circle cx=\"65.36\" cy=\"32.71\" r=\"0.3\"/>\n",
" <circle cx=\"99.88\" cy=\"55.7\" r=\"0.3\"/>\n",
" <circle cx=\"86.46\" cy=\"46.76\" r=\"0.3\"/>\n",
" <circle cx=\"106.36\" cy=\"60.01\" r=\"0.3\"/>\n",
" <circle cx=\"58.2\" cy=\"27.94\" r=\"0.3\"/>\n",
" <circle cx=\"71.93\" cy=\"37.09\" r=\"0.3\"/>\n",
" <circle cx=\"97.88\" cy=\"54.37\" r=\"0.3\"/>\n",
" <circle cx=\"63.65\" cy=\"31.58\" r=\"0.3\"/>\n",
" <circle cx=\"99.22\" cy=\"55.26\" r=\"0.3\"/>\n",
" <circle cx=\"72.41\" cy=\"37.41\" r=\"0.3\"/>\n",
" <circle cx=\"112.77\" cy=\"64.28\" r=\"0.3\"/>\n",
" <circle cx=\"74.09\" cy=\"38.53\" r=\"0.3\"/>\n",
" <circle cx=\"70.91\" cy=\"36.41\" r=\"0.3\"/>\n",
" <circle cx=\"66.89\" cy=\"33.73\" r=\"0.3\"/>\n",
" <circle cx=\"55.39\" cy=\"26.08\" r=\"0.3\"/>\n",
" <circle cx=\"98.57\" cy=\"54.82\" r=\"0.3\"/>\n",
" <circle cx=\"78.48\" cy=\"41.45\" r=\"0.3\"/>\n",
" <circle cx=\"74.61\" cy=\"38.87\" r=\"0.3\"/>\n",
" <circle cx=\"97.28\" cy=\"53.97\" r=\"0.3\"/>\n",
" <circle cx=\"63.84\" cy=\"31.7\" r=\"0.3\"/>\n",
" <circle cx=\"75.28\" cy=\"39.32\" r=\"0.3\"/>\n",
" <circle cx=\"102.01\" cy=\"57.12\" r=\"0.3\"/>\n",
" <circle cx=\"79.97\" cy=\"42.44\" r=\"0.3\"/>\n",
" <circle cx=\"94.42\" cy=\"52.06\" r=\"0.3\"/>\n",
" <circle cx=\"83.04\" cy=\"44.49\" r=\"0.3\"/>\n",
" <circle cx=\"72.16\" cy=\"37.24\" r=\"0.3\"/>\n",
" <circle cx=\"76.94\" cy=\"40.42\" r=\"0.3\"/>\n",
" <circle cx=\"63.9\" cy=\"31.74\" r=\"0.3\"/>\n",
" <circle cx=\"63.45\" cy=\"31.44\" r=\"0.3\"/>\n",
" <circle cx=\"83.32\" cy=\"44.67\" r=\"0.3\"/>\n",
" <circle cx=\"94.69\" cy=\"52.24\" r=\"0.3\"/>\n",
" <circle cx=\"58.4\" cy=\"28.08\" r=\"0.3\"/>\n",
" <circle cx=\"84.08\" cy=\"45.18\" r=\"0.3\"/>\n",
" <circle cx=\"89.25\" cy=\"48.62\" r=\"0.3\"/>\n",
" <circle cx=\"81.36\" cy=\"43.37\" r=\"0.3\"/>\n",
" <circle cx=\"59.41\" cy=\"28.75\" r=\"0.3\"/>\n",
" <circle cx=\"79.15\" cy=\"41.9\" r=\"0.3\"/>\n",
" <circle cx=\"102.5\" cy=\"57.44\" r=\"0.3\"/>\n",
" <circle cx=\"107.03\" cy=\"60.46\" r=\"0.3\"/>\n",
" <circle cx=\"78.49\" cy=\"41.45\" r=\"0.3\"/>\n",
" <circle cx=\"82.19\" cy=\"43.92\" r=\"0.3\"/>\n",
" <circle cx=\"83.35\" cy=\"44.69\" r=\"0.3\"/>\n",
" <circle cx=\"52.78\" cy=\"24.34\" r=\"0.3\"/>\n",
" <circle cx=\"95.34\" cy=\"52.68\" r=\"0.3\"/>\n",
" <circle cx=\"87.67\" cy=\"47.57\" r=\"0.3\"/>\n",
" <circle cx=\"87.12\" cy=\"47.2\" r=\"0.3\"/>\n",
" <circle cx=\"49.42\" cy=\"22.1\" r=\"0.3\"/>\n",
" <circle cx=\"99.73\" cy=\"55.6\" r=\"0.3\"/>\n",
" <circle cx=\"66.63\" cy=\"33.56\" r=\"0.3\"/>\n",
" <circle cx=\"68.05\" cy=\"34.51\" r=\"0.3\"/>\n",
" <circle cx=\"93.39\" cy=\"51.37\" r=\"0.3\"/>\n",
" <circle cx=\"87.83\" cy=\"47.68\" r=\"0.3\"/>\n",
" <circle cx=\"75.06\" cy=\"39.17\" r=\"0.3\"/>\n",
" <circle cx=\"68.59\" cy=\"34.87\" r=\"0.3\"/>\n",
" <circle cx=\"86.59\" cy=\"46.85\" r=\"0.3\"/>\n",
" <circle cx=\"77.73\" cy=\"40.95\" r=\"0.3\"/>\n",
" <circle cx=\"61.94\" cy=\"30.44\" r=\"0.3\"/>\n",
" <circle cx=\"97.77\" cy=\"54.29\" r=\"0.3\"/>\n",
" <circle cx=\"87.94\" cy=\"47.75\" r=\"0.3\"/>\n",
" <circle cx=\"101.42\" cy=\"56.73\" r=\"0.3\"/>\n",
" <circle cx=\"92.65\" cy=\"50.89\" r=\"0.3\"/>\n",
" <circle cx=\"100.98\" cy=\"56.43\" r=\"0.3\"/>\n",
" <circle cx=\"71.94\" cy=\"37.09\" r=\"0.3\"/>\n",
" <circle cx=\"85\" cy=\"45.79\" r=\"0.3\"/>\n",
" <circle cx=\"52.34\" cy=\"24.04\" r=\"0.3\"/>\n",
" <circle cx=\"64.32\" cy=\"32.02\" r=\"0.3\"/>\n",
" <circle cx=\"81.93\" cy=\"43.75\" r=\"0.3\"/>\n",
" <circle cx=\"99.1\" cy=\"55.18\" r=\"0.3\"/>\n",
" <circle cx=\"82.01\" cy=\"43.8\" r=\"0.3\"/>\n",
" <circle cx=\"88.38\" cy=\"48.04\" r=\"0.3\"/>\n",
" <circle cx=\"89.59\" cy=\"48.85\" r=\"0.3\"/>\n",
" <circle cx=\"85.21\" cy=\"45.93\" r=\"0.3\"/>\n",
" <circle cx=\"57.32\" cy=\"27.36\" r=\"0.3\"/>\n",
" <circle cx=\"55.91\" cy=\"26.42\" r=\"0.3\"/>\n",
" <circle cx=\"86.31\" cy=\"46.66\" r=\"0.3\"/>\n",
" <circle cx=\"83.85\" cy=\"45.03\" r=\"0.3\"/>\n",
" <circle cx=\"88.12\" cy=\"47.87\" r=\"0.3\"/>\n",
" <circle cx=\"100.39\" cy=\"56.04\" r=\"0.3\"/>\n",
" <circle cx=\"78.08\" cy=\"41.18\" r=\"0.3\"/>\n",
" <circle cx=\"87.72\" cy=\"47.6\" r=\"0.3\"/>\n",
" <circle cx=\"63.17\" cy=\"31.25\" r=\"0.3\"/>\n",
" <circle cx=\"93.51\" cy=\"51.46\" r=\"0.3\"/>\n",
" <circle cx=\"99.87\" cy=\"55.69\" r=\"0.3\"/>\n",
" <circle cx=\"78.07\" cy=\"41.17\" r=\"0.3\"/>\n",
" <circle cx=\"66.86\" cy=\"33.71\" r=\"0.3\"/>\n",
" <circle cx=\"89.6\" cy=\"48.85\" r=\"0.3\"/>\n",
" <circle cx=\"74.21\" cy=\"38.61\" r=\"0.3\"/>\n",
" <circle cx=\"60.77\" cy=\"29.66\" r=\"0.3\"/>\n",
" <circle cx=\"95.44\" cy=\"52.74\" r=\"0.3\"/>\n",
" <circle cx=\"69.08\" cy=\"35.19\" r=\"0.3\"/>\n",
" <circle cx=\"103.09\" cy=\"57.84\" r=\"0.3\"/>\n",
" <circle cx=\"89\" cy=\"48.45\" r=\"0.3\"/>\n",
" <circle cx=\"71.64\" cy=\"36.89\" r=\"0.3\"/>\n",
" <circle cx=\"71.3\" cy=\"36.67\" r=\"0.3\"/>\n",
" <circle cx=\"51.15\" cy=\"23.25\" r=\"0.3\"/>\n",
" <circle cx=\"75.29\" cy=\"39.33\" r=\"0.3\"/>\n",
" <circle cx=\"80.97\" cy=\"43.11\" r=\"0.3\"/>\n",
" <circle cx=\"89.82\" cy=\"49\" r=\"0.3\"/>\n",
" <circle cx=\"61.05\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"86.81\" cy=\"47\" r=\"0.3\"/>\n",
" <circle cx=\"56.04\" cy=\"26.51\" r=\"0.3\"/>\n",
" <circle cx=\"61.78\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"89.09\" cy=\"48.51\" r=\"0.3\"/>\n",
" <circle cx=\"91.67\" cy=\"50.23\" r=\"0.3\"/>\n",
" <circle cx=\"84.82\" cy=\"45.67\" r=\"0.3\"/>\n",
" <circle cx=\"102.02\" cy=\"57.13\" r=\"0.3\"/>\n",
" <circle cx=\"78.15\" cy=\"41.23\" r=\"0.3\"/>\n",
" <circle cx=\"65.26\" cy=\"32.65\" r=\"0.3\"/>\n",
" <circle cx=\"66.41\" cy=\"33.41\" r=\"0.3\"/>\n",
" <circle cx=\"92.45\" cy=\"50.75\" r=\"0.3\"/>\n",
" <circle cx=\"64.96\" cy=\"32.45\" r=\"0.3\"/>\n",
" <circle cx=\"87.93\" cy=\"47.74\" r=\"0.3\"/>\n",
" <circle cx=\"71.08\" cy=\"36.52\" r=\"0.3\"/>\n",
" <circle cx=\"112.39\" cy=\"64.02\" r=\"0.3\"/>\n",
" <circle cx=\"100.57\" cy=\"56.16\" r=\"0.3\"/>\n",
" <circle cx=\"89.1\" cy=\"48.52\" r=\"0.3\"/>\n",
" <circle cx=\"100.79\" cy=\"56.31\" r=\"0.3\"/>\n",
" <circle cx=\"63.53\" cy=\"31.49\" r=\"0.3\"/>\n",
" <circle cx=\"79.54\" cy=\"42.15\" r=\"0.3\"/>\n",
" <circle cx=\"64.9\" cy=\"32.41\" r=\"0.3\"/>\n",
" <circle cx=\"100.62\" cy=\"56.19\" r=\"0.3\"/>\n",
" <circle cx=\"99.74\" cy=\"55.6\" r=\"0.3\"/>\n",
" <circle cx=\"59.93\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"90.8\" cy=\"49.65\" r=\"0.3\"/>\n",
" <circle cx=\"75.66\" cy=\"39.57\" r=\"0.3\"/>\n",
" <circle cx=\"92.63\" cy=\"50.87\" r=\"0.3\"/>\n",
" <circle cx=\"94.05\" cy=\"51.82\" r=\"0.3\"/>\n",
" <circle cx=\"65.37\" cy=\"32.72\" r=\"0.3\"/>\n",
" <circle cx=\"78.28\" cy=\"41.32\" r=\"0.3\"/>\n",
" <circle cx=\"56.37\" cy=\"26.72\" r=\"0.3\"/>\n",
" <circle cx=\"52.97\" cy=\"24.46\" r=\"0.3\"/>\n",
" <circle cx=\"74.1\" cy=\"38.53\" r=\"0.3\"/>\n",
" <circle cx=\"78.03\" cy=\"41.15\" r=\"0.3\"/>\n",
" <circle cx=\"64.89\" cy=\"32.4\" r=\"0.3\"/>\n",
" <circle cx=\"121.47\" cy=\"70.07\" r=\"0.3\"/>\n",
" <circle cx=\"93.62\" cy=\"51.53\" r=\"0.3\"/>\n",
" <circle cx=\"81.83\" cy=\"43.68\" r=\"0.3\"/>\n",
" <circle cx=\"94.46\" cy=\"52.09\" r=\"0.3\"/>\n",
" <circle cx=\"77.61\" cy=\"40.87\" r=\"0.3\"/>\n",
" <circle cx=\"52.85\" cy=\"24.38\" r=\"0.3\"/>\n",
" <circle cx=\"91.57\" cy=\"50.17\" r=\"0.3\"/>\n",
" <circle cx=\"66.8\" cy=\"33.67\" r=\"0.3\"/>\n",
" <circle cx=\"84.82\" cy=\"45.67\" r=\"0.3\"/>\n",
" <circle cx=\"92.76\" cy=\"50.96\" r=\"0.3\"/>\n",
" <circle cx=\"85.12\" cy=\"45.87\" r=\"0.3\"/>\n",
" <circle cx=\"84.34\" cy=\"45.35\" r=\"0.3\"/>\n",
" <circle cx=\"96.21\" cy=\"53.25\" r=\"0.3\"/>\n",
" <circle cx=\"68.22\" cy=\"34.61\" r=\"0.3\"/>\n",
" <circle cx=\"66.25\" cy=\"33.3\" r=\"0.3\"/>\n",
" <circle cx=\"63.71\" cy=\"31.61\" r=\"0.3\"/>\n",
" <circle cx=\"75.19\" cy=\"39.26\" r=\"0.3\"/>\n",
" <circle cx=\"116.39\" cy=\"66.69\" r=\"0.3\"/>\n",
" <circle cx=\"69.34\" cy=\"35.36\" r=\"0.3\"/>\n",
" <circle cx=\"109.27\" cy=\"61.95\" r=\"0.3\"/>\n",
" <circle cx=\"68.57\" cy=\"34.85\" r=\"0.3\"/>\n",
" <circle cx=\"72.87\" cy=\"37.71\" r=\"0.3\"/>\n",
" <circle cx=\"98.55\" cy=\"54.81\" r=\"0.3\"/>\n",
" <circle cx=\"72.93\" cy=\"37.75\" r=\"0.3\"/>\n",
" <circle cx=\"100.38\" cy=\"56.03\" r=\"0.3\"/>\n",
" <circle cx=\"71.3\" cy=\"36.66\" r=\"0.3\"/>\n",
" <circle cx=\"67.48\" cy=\"34.12\" r=\"0.3\"/>\n",
" <circle cx=\"71.69\" cy=\"36.93\" r=\"0.3\"/>\n",
" <circle cx=\"69.74\" cy=\"35.63\" r=\"0.3\"/>\n",
" <circle cx=\"92.53\" cy=\"50.8\" r=\"0.3\"/>\n",
" <circle cx=\"69.9\" cy=\"35.74\" r=\"0.3\"/>\n",
" <circle cx=\"66.98\" cy=\"33.79\" r=\"0.3\"/>\n",
" <circle cx=\"106.41\" cy=\"60.04\" r=\"0.3\"/>\n",
" <circle cx=\"49.99\" cy=\"22.48\" r=\"0.3\"/>\n",
" <circle cx=\"67.88\" cy=\"34.39\" r=\"0.3\"/>\n",
" <circle cx=\"65.3\" cy=\"32.67\" r=\"0.3\"/>\n",
" <circle cx=\"93.27\" cy=\"51.3\" r=\"0.3\"/>\n",
" <circle cx=\"109.44\" cy=\"62.07\" r=\"0.3\"/>\n",
" <circle cx=\"58.65\" cy=\"28.24\" r=\"0.3\"/>\n",
" <circle cx=\"65.36\" cy=\"32.71\" r=\"0.3\"/>\n",
" <circle cx=\"71.83\" cy=\"37.02\" r=\"0.3\"/>\n",
" <circle cx=\"94.57\" cy=\"52.16\" r=\"0.3\"/>\n",
" <circle cx=\"96.51\" cy=\"53.46\" r=\"0.3\"/>\n",
" <circle cx=\"59.75\" cy=\"28.98\" r=\"0.3\"/>\n",
" <circle cx=\"98.12\" cy=\"54.53\" r=\"0.3\"/>\n",
" <circle cx=\"78.07\" cy=\"41.18\" r=\"0.3\"/>\n",
" <circle cx=\"89.24\" cy=\"48.61\" r=\"0.3\"/>\n",
" <circle cx=\"68.37\" cy=\"34.72\" r=\"0.3\"/>\n",
" <circle cx=\"95.05\" cy=\"52.48\" r=\"0.3\"/>\n",
" <circle cx=\"78.97\" cy=\"41.78\" r=\"0.3\"/>\n",
" <circle cx=\"91.93\" cy=\"50.41\" r=\"0.3\"/>\n",
" <circle cx=\"69.28\" cy=\"35.33\" r=\"0.3\"/>\n",
" <circle cx=\"90.56\" cy=\"49.49\" r=\"0.3\"/>\n",
" <circle cx=\"108.69\" cy=\"61.56\" r=\"0.3\"/>\n",
" <circle cx=\"84.95\" cy=\"45.76\" r=\"0.3\"/>\n",
" <circle cx=\"85.07\" cy=\"45.83\" r=\"0.3\"/>\n",
" <circle cx=\"66.83\" cy=\"33.69\" r=\"0.3\"/>\n",
" <circle cx=\"93.93\" cy=\"51.73\" r=\"0.3\"/>\n",
" <circle cx=\"77.93\" cy=\"41.08\" r=\"0.3\"/>\n",
" <circle cx=\"84.65\" cy=\"45.56\" r=\"0.3\"/>\n",
" <circle cx=\"60.91\" cy=\"29.75\" r=\"0.3\"/>\n",
" <circle cx=\"72.78\" cy=\"37.65\" r=\"0.3\"/>\n",
" <circle cx=\"68.45\" cy=\"34.77\" r=\"0.3\"/>\n",
" <circle cx=\"94.01\" cy=\"51.79\" r=\"0.3\"/>\n",
" <circle cx=\"70.71\" cy=\"36.27\" r=\"0.3\"/>\n",
" <circle cx=\"55.81\" cy=\"26.35\" r=\"0.3\"/>\n",
" <circle cx=\"80.85\" cy=\"43.02\" r=\"0.3\"/>\n",
" <circle cx=\"100.52\" cy=\"56.13\" r=\"0.3\"/>\n",
" <circle cx=\"83.83\" cy=\"45.01\" r=\"0.3\"/>\n",
" <circle cx=\"64.79\" cy=\"32.33\" r=\"0.3\"/>\n",
" <circle cx=\"105.64\" cy=\"59.54\" r=\"0.3\"/>\n",
" <circle cx=\"99.71\" cy=\"55.58\" r=\"0.3\"/>\n",
" <circle cx=\"81.72\" cy=\"43.61\" r=\"0.3\"/>\n",
" <circle cx=\"89.35\" cy=\"48.68\" r=\"0.3\"/>\n",
" <circle cx=\"82.2\" cy=\"43.92\" r=\"0.3\"/>\n",
" <circle cx=\"90.66\" cy=\"49.56\" r=\"0.3\"/>\n",
" <circle cx=\"61.46\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"55.31\" cy=\"26.02\" r=\"0.3\"/>\n",
" <circle cx=\"69.42\" cy=\"35.41\" r=\"0.3\"/>\n",
" <circle cx=\"102.52\" cy=\"57.46\" r=\"0.3\"/>\n",
" <circle cx=\"96.52\" cy=\"53.46\" r=\"0.3\"/>\n",
" <circle cx=\"72.99\" cy=\"37.79\" r=\"0.3\"/>\n",
" <circle cx=\"98.67\" cy=\"54.89\" r=\"0.3\"/>\n",
" <circle cx=\"91.33\" cy=\"50.01\" r=\"0.3\"/>\n",
" <circle cx=\"63.34\" cy=\"31.37\" r=\"0.3\"/>\n",
" <circle cx=\"55.8\" cy=\"26.34\" r=\"0.3\"/>\n",
" <circle cx=\"63.7\" cy=\"31.61\" r=\"0.3\"/>\n",
" <circle cx=\"80.23\" cy=\"42.62\" r=\"0.3\"/>\n",
" <circle cx=\"57.57\" cy=\"27.53\" r=\"0.3\"/>\n",
" <circle cx=\"86.41\" cy=\"46.73\" r=\"0.3\"/>\n",
" <circle cx=\"74.04\" cy=\"38.49\" r=\"0.3\"/>\n",
" <circle cx=\"96.74\" cy=\"53.6\" r=\"0.3\"/>\n",
" <circle cx=\"105.39\" cy=\"59.37\" r=\"0.3\"/>\n",
" <circle cx=\"75.62\" cy=\"39.55\" r=\"0.3\"/>\n",
" <circle cx=\"82.27\" cy=\"43.97\" r=\"0.3\"/>\n",
" <circle cx=\"63.22\" cy=\"31.29\" r=\"0.3\"/>\n",
" <circle cx=\"89.59\" cy=\"48.85\" r=\"0.3\"/>\n",
" <circle cx=\"76.13\" cy=\"39.88\" r=\"0.3\"/>\n",
" <circle cx=\"90.71\" cy=\"49.59\" r=\"0.3\"/>\n",
" <circle cx=\"74.05\" cy=\"38.5\" r=\"0.3\"/>\n",
" <circle cx=\"106.68\" cy=\"60.23\" r=\"0.3\"/>\n",
" <circle cx=\"88.77\" cy=\"48.3\" r=\"0.3\"/>\n",
" <circle cx=\"94.39\" cy=\"52.04\" r=\"0.3\"/>\n",
" <circle cx=\"75.16\" cy=\"39.24\" r=\"0.3\"/>\n",
" <circle cx=\"71.19\" cy=\"36.59\" r=\"0.3\"/>\n",
" <circle cx=\"72.07\" cy=\"37.18\" r=\"0.3\"/>\n",
" <circle cx=\"77.82\" cy=\"41.01\" r=\"0.3\"/>\n",
" <circle cx=\"79.16\" cy=\"41.9\" r=\"0.3\"/>\n",
" <circle cx=\"72.11\" cy=\"37.21\" r=\"0.3\"/>\n",
" <circle cx=\"88.06\" cy=\"47.83\" r=\"0.3\"/>\n",
" <circle cx=\"49.09\" cy=\"21.88\" r=\"0.3\"/>\n",
" <circle cx=\"56.14\" cy=\"26.57\" r=\"0.3\"/>\n",
" <circle cx=\"64.46\" cy=\"32.11\" r=\"0.3\"/>\n",
" <circle cx=\"96.22\" cy=\"53.26\" r=\"0.3\"/>\n",
" <circle cx=\"64.52\" cy=\"32.15\" r=\"0.3\"/>\n",
" <circle cx=\"110.19\" cy=\"62.56\" r=\"0.3\"/>\n",
" <circle cx=\"103.73\" cy=\"58.26\" r=\"0.3\"/>\n",
" <circle cx=\"62.62\" cy=\"30.89\" r=\"0.3\"/>\n",
" <circle cx=\"60.18\" cy=\"29.26\" r=\"0.3\"/>\n",
" <circle cx=\"114.18\" cy=\"65.22\" r=\"0.3\"/>\n",
" <circle cx=\"73.44\" cy=\"38.09\" r=\"0.3\"/>\n",
" <circle cx=\"75.57\" cy=\"39.51\" r=\"0.3\"/>\n",
" <circle cx=\"69.18\" cy=\"35.26\" r=\"0.3\"/>\n",
" <circle cx=\"102.93\" cy=\"57.73\" r=\"0.3\"/>\n",
" <circle cx=\"101.88\" cy=\"57.03\" r=\"0.3\"/>\n",
" <circle cx=\"76.25\" cy=\"39.96\" r=\"0.3\"/>\n",
" <circle cx=\"90.58\" cy=\"49.51\" r=\"0.3\"/>\n",
" <circle cx=\"65\" cy=\"32.47\" r=\"0.3\"/>\n",
" <circle cx=\"99.4\" cy=\"55.38\" r=\"0.3\"/>\n",
" <circle cx=\"54.59\" cy=\"25.54\" r=\"0.3\"/>\n",
" <circle cx=\"93.14\" cy=\"51.21\" r=\"0.3\"/>\n",
" <circle cx=\"60.66\" cy=\"29.58\" r=\"0.3\"/>\n",
" <circle cx=\"79.91\" cy=\"42.4\" r=\"0.3\"/>\n",
" <circle cx=\"103\" cy=\"57.78\" r=\"0.3\"/>\n",
" <circle cx=\"90.39\" cy=\"49.38\" r=\"0.3\"/>\n",
" <circle cx=\"76.07\" cy=\"39.85\" r=\"0.3\"/>\n",
" <circle cx=\"88.02\" cy=\"47.8\" r=\"0.3\"/>\n",
" <circle cx=\"98.76\" cy=\"54.95\" r=\"0.3\"/>\n",
" <circle cx=\"84.19\" cy=\"45.25\" r=\"0.3\"/>\n",
" <circle cx=\"56.13\" cy=\"26.57\" r=\"0.3\"/>\n",
" <circle cx=\"60.11\" cy=\"29.21\" r=\"0.3\"/>\n",
" <circle cx=\"75.94\" cy=\"39.76\" r=\"0.3\"/>\n",
" <circle cx=\"107.59\" cy=\"60.83\" r=\"0.3\"/>\n",
" <circle cx=\"85.02\" cy=\"45.81\" r=\"0.3\"/>\n",
" <circle cx=\"99.89\" cy=\"55.71\" r=\"0.3\"/>\n",
" <circle cx=\"97.76\" cy=\"54.29\" r=\"0.3\"/>\n",
" <circle cx=\"89.69\" cy=\"48.91\" r=\"0.3\"/>\n",
" <circle cx=\"63.92\" cy=\"31.75\" r=\"0.3\"/>\n",
" <circle cx=\"93.2\" cy=\"51.25\" r=\"0.3\"/>\n",
" <circle cx=\"84.44\" cy=\"45.41\" r=\"0.3\"/>\n",
" <circle cx=\"40.45\" cy=\"16.12\" r=\"0.3\"/>\n",
" <circle cx=\"69.51\" cy=\"35.48\" r=\"0.3\"/>\n",
" <circle cx=\"62.72\" cy=\"30.95\" r=\"0.3\"/>\n",
" <circle cx=\"72.61\" cy=\"37.54\" r=\"0.3\"/>\n",
" <circle cx=\"52.88\" cy=\"24.41\" r=\"0.3\"/>\n",
" <circle cx=\"59.6\" cy=\"28.88\" r=\"0.3\"/>\n",
" <circle cx=\"108.23\" cy=\"61.26\" r=\"0.3\"/>\n",
" <circle cx=\"82.76\" cy=\"44.3\" r=\"0.3\"/>\n",
" <circle cx=\"66.32\" cy=\"33.35\" r=\"0.3\"/>\n",
" <circle cx=\"93.4\" cy=\"51.38\" r=\"0.3\"/>\n",
" <circle cx=\"52.69\" cy=\"24.28\" r=\"0.3\"/>\n",
" <circle cx=\"90.67\" cy=\"49.56\" r=\"0.3\"/>\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-bcfbb97576434424b36d8f92a03d2211-element-13\">\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\">-0.0004</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\">-0.0002</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\">0.0000</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\">0.0002</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\">0.0004</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-bcfbb97576434424b36d8f92a03d2211-element-14\">\n",
" <text x=\"8.81\" y=\"40.86\" text-anchor=\"middle\" dy=\"0.35em\" transform=\"rotate(-90, 8.81, 42.86)\">Δ log(Exchange Rate)</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-bcfbb97576434424b36d8f92a03d2211-element-5\">\n",
" <path d=\"M24.76,5 L 136.42 5 136.42 80.72 24.76 80.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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\n",
" stroke=\"none\"\n",
" fill=\"#000000\"\n",
" stroke-width=\"0.3\"\n",
" font-size=\"3.88\"\n",
"\n",
" id=\"fig-80217fdcce744fcf9ed925850409e4d1\">\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-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-80217fdcce744fcf9ed925850409e4d1-element-2\">\n",
" <text x=\"80.59\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">Δ log(c₂) - Δ log(c₁)</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-80217fdcce744fcf9ed925850409e4d1-element-3\">\n",
" <text x=\"-107.81\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0007</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0006</text>\n",
" <text x=\"-53.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0005</text>\n",
" <text x=\"-27.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0004</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0003</text>\n",
" <text x=\"26.76\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0002</text>\n",
" <text x=\"53.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0001</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0000</text>\n",
" <text x=\"107.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0001</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0002</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0003</text>\n",
" <text x=\"188.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0004</text>\n",
" <text x=\"215.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0005</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0006</text>\n",
" <text x=\"268.99\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0007</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"-75.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00058</text>\n",
" <text x=\"-70.13\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00056</text>\n",
" <text x=\"-64.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00054</text>\n",
" <text x=\"-59.36\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00052</text>\n",
" <text x=\"-53.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"-48.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00048</text>\n",
" <text x=\"-43.21\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00046</text>\n",
" <text x=\"-37.83\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00044</text>\n",
" <text x=\"-32.45\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00042</text>\n",
" <text x=\"-27.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"-21.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00038</text>\n",
" <text x=\"-16.3\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00036</text>\n",
" <text x=\"-10.91\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00034</text>\n",
" <text x=\"-5.53\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00032</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"5.23\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00028</text>\n",
" <text x=\"10.62\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00026</text>\n",
" <text x=\"16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00024</text>\n",
" <text x=\"21.38\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00022</text>\n",
" <text x=\"26.76\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"32.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00018</text>\n",
" <text x=\"37.53\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00016</text>\n",
" <text x=\"42.91\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00014</text>\n",
" <text x=\"48.3\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00012</text>\n",
" <text x=\"53.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"59.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00008</text>\n",
" <text x=\"64.44\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00006</text>\n",
" <text x=\"69.83\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00004</text>\n",
" <text x=\"75.21\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00002</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"85.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00002</text>\n",
" <text x=\"91.36\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00004</text>\n",
" <text x=\"96.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00006</text>\n",
" <text x=\"102.12\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00008</text>\n",
" <text x=\"107.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"112.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00012</text>\n",
" <text x=\"118.27\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00014</text>\n",
" <text x=\"123.66\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00016</text>\n",
" <text x=\"129.04\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00018</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"139.8\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00022</text>\n",
" <text x=\"145.19\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00024</text>\n",
" <text x=\"150.57\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00026</text>\n",
" <text x=\"155.95\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00028</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"166.72\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00032</text>\n",
" <text x=\"172.1\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00034</text>\n",
" <text x=\"177.48\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00036</text>\n",
" <text x=\"182.87\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00038</text>\n",
" <text x=\"188.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"193.63\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00042</text>\n",
" <text x=\"199.02\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00044</text>\n",
" <text x=\"204.4\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00046</text>\n",
" <text x=\"209.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00048</text>\n",
" <text x=\"215.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"220.55\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00052</text>\n",
" <text x=\"225.93\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00054</text>\n",
" <text x=\"231.31\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00056</text>\n",
" <text x=\"236.69\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00058</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00060</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.0006</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.0003</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.0000</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.0003</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.0006</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"-67.43\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00055</text>\n",
" <text x=\"-53.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"-40.52\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00045</text>\n",
" <text x=\"-27.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"-13.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00035</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"13.31\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00025</text>\n",
" <text x=\"26.76\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"40.22\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00015</text>\n",
" <text x=\"53.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"67.14\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00005</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"94.05\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00005</text>\n",
" <text x=\"107.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"120.96\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00015</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"147.88\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00025</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"174.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00035</text>\n",
" <text x=\"188.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"201.71\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00045</text>\n",
" <text x=\"215.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"228.62\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00055</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00060</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-80217fdcce744fcf9ed925850409e4d1-element-5)\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-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-80217fdcce744fcf9ed925850409e4d1-element-6\">\n",
" <rect x=\"24.76\" y=\"5\" width=\"111.66\" height=\"75.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-7\">\n",
" <path fill=\"none\" d=\"M24.76,168.36 L 136.42 168.36\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,150.43 L 136.42 150.43\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,114.57 L 136.42 114.57\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,96.64 L 136.42 96.64\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,-10.93 L 136.42 -10.93\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-28.86 L 136.42 -28.86\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-64.72 L 136.42 -64.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-82.64 L 136.42 -82.64\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,150.43 L 136.42 150.43\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,145.95 L 136.42 145.95\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,141.47 L 136.42 141.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,136.98 L 136.42 136.98\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,128.02 L 136.42 128.02\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,123.54 L 136.42 123.54\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,119.05 L 136.42 119.05\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,114.57 L 136.42 114.57\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,110.09 L 136.42 110.09\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,105.61 L 136.42 105.61\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,101.13 L 136.42 101.13\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,96.64 L 136.42 96.64\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,92.16 L 136.42 92.16\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,87.68 L 136.42 87.68\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,83.2 L 136.42 83.2\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,74.23 L 136.42 74.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,69.75 L 136.42 69.75\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,65.27 L 136.42 65.27\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,56.3 L 136.42 56.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,51.82 L 136.42 51.82\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,47.34 L 136.42 47.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,38.38 L 136.42 38.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,33.89 L 136.42 33.89\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,29.41 L 136.42 29.41\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,20.45 L 136.42 20.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,15.96 L 136.42 15.96\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,11.48 L 136.42 11.48\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,2.52 L 136.42 2.52\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-1.96 L 136.42 -1.96\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-6.45 L 136.42 -6.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-10.93 L 136.42 -10.93\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-15.41 L 136.42 -15.41\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-19.89 L 136.42 -19.89\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-24.38 L 136.42 -24.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-28.86 L 136.42 -28.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-33.34 L 136.42 -33.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-37.82 L 136.42 -37.82\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-42.3 L 136.42 -42.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-51.27 L 136.42 -51.27\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-55.75 L 136.42 -55.75\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-60.23 L 136.42 -60.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-64.72 L 136.42 -64.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,222.14 L 136.42 222.14\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-136.43 L 136.42 -136.43\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,150.43 L 136.42 150.43\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,145.95 L 136.42 145.95\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,141.47 L 136.42 141.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,136.98 L 136.42 136.98\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,128.02 L 136.42 128.02\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,123.54 L 136.42 123.54\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,119.05 L 136.42 119.05\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,114.57 L 136.42 114.57\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,110.09 L 136.42 110.09\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,105.61 L 136.42 105.61\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,101.13 L 136.42 101.13\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,96.64 L 136.42 96.64\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,92.16 L 136.42 92.16\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,87.68 L 136.42 87.68\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,83.2 L 136.42 83.2\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,74.23 L 136.42 74.23\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,69.75 L 136.42 69.75\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,65.27 L 136.42 65.27\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,56.3 L 136.42 56.3\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,51.82 L 136.42 51.82\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,47.34 L 136.42 47.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,38.38 L 136.42 38.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,33.89 L 136.42 33.89\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,29.41 L 136.42 29.41\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,20.45 L 136.42 20.45\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,15.96 L 136.42 15.96\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,11.48 L 136.42 11.48\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,2.52 L 136.42 2.52\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-1.96 L 136.42 -1.96\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-6.45 L 136.42 -6.45\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-10.93 L 136.42 -10.93\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-15.41 L 136.42 -15.41\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-19.89 L 136.42 -19.89\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-24.38 L 136.42 -24.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-28.86 L 136.42 -28.86\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-33.34 L 136.42 -33.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-37.82 L 136.42 -37.82\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-42.3 L 136.42 -42.3\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-51.27 L 136.42 -51.27\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-55.75 L 136.42 -55.75\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-60.23 L 136.42 -60.23\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-64.72 L 136.42 -64.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-8\">\n",
" <path fill=\"none\" d=\"M-107.81,5 L -107.81 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-53.98,5 L -53.98 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.06,5 L -27.06 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M188.25,5 L 188.25 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.16,5 L 215.16 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M268.99,5 L 268.99 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-75.51,5 L -75.51 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-70.13,5 L -70.13 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-64.74,5 L -64.74 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-59.36,5 L -59.36 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-53.98,5 L -53.98 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-48.59,5 L -48.59 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-43.21,5 L -43.21 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-37.83,5 L -37.83 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-32.45,5 L -32.45 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.06,5 L -27.06 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-21.68,5 L -21.68 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-16.3,5 L -16.3 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-10.91,5 L -10.91 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-5.53,5 L -5.53 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M5.23,5 L 5.23 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M10.62,5 L 10.62 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16,5 L 16 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.38,5 L 21.38 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M32.15,5 L 32.15 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M37.53,5 L 37.53 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M42.91,5 L 42.91 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M48.3,5 L 48.3 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M59.06,5 L 59.06 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M64.44,5 L 64.44 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M69.83,5 L 69.83 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M75.21,5 L 75.21 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M85.98,5 L 85.98 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M91.36,5 L 91.36 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M96.74,5 L 96.74 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M102.12,5 L 102.12 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M112.89,5 L 112.89 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M118.27,5 L 118.27 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M123.66,5 L 123.66 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M129.04,5 L 129.04 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M139.8,5 L 139.8 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M145.19,5 L 145.19 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M150.57,5 L 150.57 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M155.95,5 L 155.95 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M166.72,5 L 166.72 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M172.1,5 L 172.1 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M177.48,5 L 177.48 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M182.87,5 L 182.87 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M188.25,5 L 188.25 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M193.63,5 L 193.63 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M199.02,5 L 199.02 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M204.4,5 L 204.4 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M209.78,5 L 209.78 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.16,5 L 215.16 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M220.55,5 L 220.55 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M225.93,5 L 225.93 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M231.31,5 L 231.31 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M236.69,5 L 236.69 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-67.43,5 L -67.43 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-53.98,5 L -53.98 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-40.52,5 L -40.52 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.06,5 L -27.06 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-13.61,5 L -13.61 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M13.31,5 L 13.31 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M40.22,5 L 40.22 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M67.14,5 L 67.14 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M94.05,5 L 94.05 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M120.96,5 L 120.96 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M147.88,5 L 147.88 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M174.79,5 L 174.79 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M188.25,5 L 188.25 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M201.71,5 L 201.71 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.16,5 L 215.16 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M228.62,5 L 228.62 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-9\">\n",
" <g stroke-width=\"0.3\" fill=\"#000000\" fill-opacity=\"0.000\" class=\"geometry\" stroke-dasharray=\"none\" stroke=\"#4C72B0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-10\">\n",
" <path fill=\"none\" d=\"M40.45,16.12 L 40.56 16.2 40.66 16.27 40.77 16.34 40.88 16.41 40.99 16.48 41.1 16.56 41.2 16.63 41.31 16.7 41.42 16.77 41.53 16.84 41.64 16.91 41.74 16.99 41.85 17.06 41.96 17.13 42.07 17.2 42.18 17.27 42.28 17.35 42.39 17.42 42.5 17.49 42.61 17.56 42.72 17.63 42.82 17.71 42.93 17.78 43.04 17.85 43.15 17.92 43.26 17.99 43.36 18.07 43.47 18.14 43.58 18.21 43.69 18.28 43.8 18.35 43.9 18.43 44.01 18.5 44.12 18.57 44.23 18.64 44.34 18.71 44.44 18.79 44.55 18.86 44.66 18.93 44.77 19 44.88 19.07 44.98 19.14 45.09 19.22 45.2 19.29 45.31 19.36 45.42 19.43 45.52 19.5 45.63 19.58 45.74 19.65 45.85 19.72 45.96 19.79 46.06 19.86 46.17 19.94 46.28 20.01 46.39 20.08 46.5 20.15 46.6 20.22 46.71 20.3 46.82 20.37 46.93 20.44 47.04 20.51 47.14 20.58 47.25 20.66 47.36 20.73 47.47 20.8 47.58 20.87 47.68 20.94 47.79 21.02 47.9 21.09 48.01 21.16 48.12 21.23 48.23 21.3 48.33 21.37 48.44 21.45 48.55 21.52 48.66 21.59 48.77 21.66 48.87 21.73 48.98 21.81 49.09 21.88 49.2 21.95 49.31 22.02 49.41 22.09 49.52 22.17 49.63 22.24 49.74 22.31 49.85 22.38 49.95 22.45 50.06 22.53 50.17 22.6 50.28 22.67 50.39 22.74 50.49 22.81 50.6 22.89 50.71 22.96 50.82 23.03 50.93 23.1 51.03 23.17 51.14 23.25 51.25 23.32 51.36 23.39 51.47 23.46 51.57 23.53 51.68 23.6 51.79 23.68 51.9 23.75 52.01 23.82 52.11 23.89 52.22 23.96 52.33 24.04 52.44 24.11 52.55 24.18 52.65 24.25 52.76 24.32 52.87 24.4 52.98 24.47 53.09 24.54 53.19 24.61 53.3 24.68 53.41 24.76 53.52 24.83 53.63 24.9 53.73 24.97 53.84 25.04 53.95 25.12 54.06 25.19 54.17 25.26 54.27 25.33 54.38 25.4 54.49 25.48 54.6 25.55 54.71 25.62 54.81 25.69 54.92 25.76 55.03 25.83 55.14 25.91 55.25 25.98 55.35 26.05 55.46 26.12 55.57 26.19 55.68 26.27 55.79 26.34 55.89 26.41 56 26.48 56.11 26.55 56.22 26.63 56.33 26.7 56.44 26.77 56.54 26.84 56.65 26.91 56.76 26.99 56.87 27.06 56.98 27.13 57.08 27.2 57.19 27.27 57.3 27.35 57.41 27.42 57.52 27.49 57.62 27.56 57.73 27.63 57.84 27.7 57.95 27.78 58.06 27.85 58.16 27.92 58.27 27.99 58.38 28.06 58.49 28.14 58.6 28.21 58.7 28.28 58.81 28.35 58.92 28.42 59.03 28.5 59.14 28.57 59.24 28.64 59.35 28.71 59.46 28.78 59.57 28.86 59.68 28.93 59.78 29 59.89 29.07 60 29.14 60.11 29.22 60.22 29.29 60.32 29.36 60.43 29.43 60.54 29.5 60.65 29.58 60.76 29.65 60.86 29.72 60.97 29.79 61.08 29.86 61.19 29.93 61.3 30.01 61.4 30.08 61.51 30.15 61.62 30.22 61.73 30.29 61.84 30.37 61.94 30.44 62.05 30.51 62.16 30.58 62.27 30.65 62.38 30.73 62.48 30.8 62.59 30.87 62.7 30.94 62.81 31.01 62.92 31.09 63.02 31.16 63.13 31.23 63.24 31.3 63.35 31.37 63.46 31.45 63.56 31.52 63.67 31.59 63.78 31.66 63.89 31.73 64 31.8 64.1 31.88 64.21 31.95 64.32 32.02 64.43 32.09 64.54 32.16 64.64 32.24 64.75 32.31 64.86 32.38 64.97 32.45 65.08 32.52 65.19 32.6 65.29 32.67 65.4 32.74 65.51 32.81 65.62 32.88 65.73 32.96 65.83 33.03 65.94 33.1 66.05 33.17 66.16 33.24 66.27 33.32 66.37 33.39 66.48 33.46 66.59 33.53 66.7 33.6 66.81 33.68 66.91 33.75 67.02 33.82 67.13 33.89 67.24 33.96 67.35 34.03 67.45 34.11 67.56 34.18 67.67 34.25 67.78 34.32 67.89 34.39 67.99 34.47 68.1 34.54 68.21 34.61 68.32 34.68 68.43 34.75 68.53 34.83 68.64 34.9 68.75 34.97 68.86 35.04 68.97 35.11 69.07 35.19 69.18 35.26 69.29 35.33 69.4 35.4 69.51 35.47 69.61 35.55 69.72 35.62 69.83 35.69 69.94 35.76 70.05 35.83 70.15 35.91 70.26 35.98 70.37 36.05 70.48 36.12 70.59 36.19 70.69 36.26 70.8 36.34 70.91 36.41 71.02 36.48 71.13 36.55 71.23 36.62 71.34 36.7 71.45 36.77 71.56 36.84 71.67 36.91 71.77 36.98 71.88 37.06 71.99 37.13 72.1 37.2 72.21 37.27 72.31 37.34 72.42 37.42 72.53 37.49 72.64 37.56 72.75 37.63 72.85 37.7 72.96 37.78 73.07 37.85 73.18 37.92 73.29 37.99 73.4 38.06 73.5 38.13 73.61 38.21 73.72 38.28 73.83 38.35 73.94 38.42 74.04 38.49 74.15 38.57 74.26 38.64 74.37 38.71 74.48 38.78 74.58 38.85 74.69 38.93 74.8 39 74.91 39.07 75.02 39.14 75.12 39.21 75.23 39.29 75.34 39.36 75.45 39.43 75.56 39.5 75.66 39.57 75.77 39.65 75.88 39.72 75.99 39.79 76.1 39.86 76.2 39.93 76.31 40.01 76.42 40.08 76.53 40.15 76.64 40.22 76.74 40.29 76.85 40.36 76.96 40.44 77.07 40.51 77.18 40.58 77.28 40.65 77.39 40.72 77.5 40.8 77.61 40.87 77.72 40.94 77.82 41.01 77.93 41.08 78.04 41.16 78.15 41.23 78.26 41.3 78.36 41.37 78.47 41.44 78.58 41.52 78.69 41.59 78.8 41.66 78.9 41.73 79.01 41.8 79.12 41.88 79.23 41.95 79.34 42.02 79.44 42.09 79.55 42.16 79.66 42.24 79.77 42.31 79.88 42.38 79.98 42.45 80.09 42.52 80.2 42.59 80.31 42.67 80.42 42.74 80.52 42.81 80.63 42.88 80.74 42.95 80.85 43.03 80.96 43.1 81.06 43.17 81.17 43.24 81.28 43.31 81.39 43.39 81.5 43.46 81.61 43.53 81.71 43.6 81.82 43.67 81.93 43.75 82.04 43.82 82.15 43.89 82.25 43.96 82.36 44.03 82.47 44.11 82.58 44.18 82.69 44.25 82.79 44.32 82.9 44.39 83.01 44.46 83.12 44.54 83.23 44.61 83.33 44.68 83.44 44.75 83.55 44.82 83.66 44.9 83.77 44.97 83.87 45.04 83.98 45.11 84.09 45.18 84.2 45.26 84.31 45.33 84.41 45.4 84.52 45.47 84.63 45.54 84.74 45.62 84.85 45.69 84.95 45.76 85.06 45.83 85.17 45.9 85.28 45.98 85.39 46.05 85.49 46.12 85.6 46.19 85.71 46.26 85.82 46.34 85.93 46.41 86.03 46.48 86.14 46.55 86.25 46.62 86.36 46.69 86.47 46.77 86.57 46.84 86.68 46.91 86.79 46.98 86.9 47.05 87.01 47.13 87.11 47.2 87.22 47.27 87.33 47.34 87.44 47.41 87.55 47.49 87.65 47.56 87.76 47.63 87.87 47.7 87.98 47.77 88.09 47.85 88.19 47.92 88.3 47.99 88.41 48.06 88.52 48.13 88.63 48.21 88.73 48.28 88.84 48.35 88.95 48.42 89.06 48.49 89.17 48.56 89.27 48.64 89.38 48.71 89.49 48.78 89.6 48.85 89.71 48.92 89.81 49 89.92 49.07 90.03 49.14 90.14 49.21 90.25 49.28 90.36 49.36 90.46 49.43 90.57 49.5 90.68 49.57 90.79 49.64 90.9 49.72 91 49.79 91.11 49.86 91.22 49.93 91.33 50 91.44 50.08 91.54 50.15 91.65 50.22 91.76 50.29 91.87 50.36 91.98 50.44 92.08 50.51 92.19 50.58 92.3 50.65 92.41 50.72 92.52 50.79 92.62 50.87 92.73 50.94 92.84 51.01 92.95 51.08 93.06 51.15 93.16 51.23 93.27 51.3 93.38 51.37 93.49 51.44 93.6 51.51 93.7 51.59 93.81 51.66 93.92 51.73 94.03 51.8 94.14 51.87 94.24 51.95 94.35 52.02 94.46 52.09 94.57 52.16 94.68 52.23 94.78 52.31 94.89 52.38 95 52.45 95.11 52.52 95.22 52.59 95.32 52.66 95.43 52.74 95.54 52.81 95.65 52.88 95.76 52.95 95.86 53.02 95.97 53.1 96.08 53.17 96.19 53.24 96.3 53.31 96.4 53.38 96.51 53.46 96.62 53.53 96.73 53.6 96.84 53.67 96.94 53.74 97.05 53.82 97.16 53.89 97.27 53.96 97.38 54.03 97.48 54.1 97.59 54.18 97.7 54.25 97.81 54.32 97.92 54.39 98.02 54.46 98.13 54.54 98.24 54.61 98.35 54.68 98.46 54.75 98.57 54.82 98.67 54.89 98.78 54.97 98.89 55.04 99 55.11 99.11 55.18 99.21 55.25 99.32 55.33 99.43 55.4 99.54 55.47 99.65 55.54 99.75 55.61 99.86 55.69 99.97 55.76 100.08 55.83 100.19 55.9 100.29 55.97 100.4 56.05 100.51 56.12 100.62 56.19 100.73 56.26 100.83 56.33 100.94 56.41 101.05 56.48 101.16 56.55 101.27 56.62 101.37 56.69 101.48 56.76 101.59 56.84 101.7 56.91 101.81 56.98 101.91 57.05 102.02 57.12 102.13 57.2 102.24 57.27 102.35 57.34 102.45 57.41 102.56 57.48 102.67 57.56 102.78 57.63 102.89 57.7 102.99 57.77 103.1 57.84 103.21 57.92 103.32 57.99 103.43 58.06 103.53 58.13 103.64 58.2 103.75 58.28 103.86 58.35 103.97 58.42 104.07 58.49 104.18 58.56 104.29 58.64 104.4 58.71 104.51 58.78 104.61 58.85 104.72 58.92 104.83 58.99 104.94 59.07 105.05 59.14 105.15 59.21 105.26 59.28 105.37 59.35 105.48 59.43 105.59 59.5 105.69 59.57 105.8 59.64 105.91 59.71 106.02 59.79 106.13 59.86 106.23 59.93 106.34 60 106.45 60.07 106.56 60.15 106.67 60.22 106.77 60.29 106.88 60.36 106.99 60.43 107.1 60.51 107.21 60.58 107.32 60.65 107.42 60.72 107.53 60.79 107.64 60.87 107.75 60.94 107.86 61.01 107.96 61.08 108.07 61.15 108.18 61.22 108.29 61.3 108.4 61.37 108.5 61.44 108.61 61.51 108.72 61.58 108.83 61.66 108.94 61.73 109.04 61.8 109.15 61.87 109.26 61.94 109.37 62.02 109.48 62.09 109.58 62.16 109.69 62.23 109.8 62.3 109.91 62.38 110.02 62.45 110.12 62.52 110.23 62.59 110.34 62.66 110.45 62.74 110.56 62.81 110.66 62.88 110.77 62.95 110.88 63.02 110.99 63.09 111.1 63.17 111.2 63.24 111.31 63.31 111.42 63.38 111.53 63.45 111.64 63.53 111.74 63.6 111.85 63.67 111.96 63.74 112.07 63.81 112.18 63.89 112.28 63.96 112.39 64.03 112.5 64.1 112.61 64.17 112.72 64.25 112.82 64.32 112.93 64.39 113.04 64.46 113.15 64.53 113.26 64.61 113.36 64.68 113.47 64.75 113.58 64.82 113.69 64.89 113.8 64.96 113.9 65.04 114.01 65.11 114.12 65.18 114.23 65.25 114.34 65.32 114.44 65.4 114.55 65.47 114.66 65.54 114.77 65.61 114.88 65.68 114.98 65.76 115.09 65.83 115.2 65.9 115.31 65.97 115.42 66.04 115.53 66.12 115.63 66.19 115.74 66.26 115.85 66.33 115.96 66.4 116.07 66.48 116.17 66.55 116.28 66.62 116.39 66.69 116.5 66.76 116.61 66.84 116.71 66.91 116.82 66.98 116.93 67.05 117.04 67.12 117.15 67.19 117.25 67.27 117.36 67.34 117.47 67.41 117.58 67.48 117.69 67.55 117.79 67.63 117.9 67.7 118.01 67.77 118.12 67.84 118.23 67.91 118.33 67.99 118.44 68.06 118.55 68.13 118.66 68.2 118.77 68.27 118.87 68.35 118.98 68.42 119.09 68.49 119.2 68.56 119.31 68.63 119.41 68.71 119.52 68.78 119.63 68.85 119.74 68.92 119.85 68.99 119.95 69.06 120.06 69.14 120.17 69.21 120.28 69.28 120.39 69.35 120.49 69.42 120.6 69.5 120.71 69.57 120.82 69.64 120.93 69.71 121.03 69.78 121.14 69.86 121.25 69.93 121.36 70\"/>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-11\">\n",
" <g class=\"color_RGBA{Float32}(0.29803923f0,0.44705883f0,0.6901961f0,1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0\" fill=\"#4C72B0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-12\">\n",
" <circle cx=\"86.11\" cy=\"46.53\" r=\"0.3\"/>\n",
" <circle cx=\"80.01\" cy=\"42.47\" r=\"0.3\"/>\n",
" <circle cx=\"75.09\" cy=\"39.19\" r=\"0.3\"/>\n",
" <circle cx=\"67.46\" cy=\"34.11\" r=\"0.3\"/>\n",
" <circle cx=\"55.7\" cy=\"26.28\" r=\"0.3\"/>\n",
" <circle cx=\"94.69\" cy=\"52.24\" r=\"0.3\"/>\n",
" <circle cx=\"86.21\" cy=\"46.59\" r=\"0.3\"/>\n",
" <circle cx=\"89.78\" cy=\"48.98\" r=\"0.3\"/>\n",
" <circle cx=\"91.07\" cy=\"49.83\" r=\"0.3\"/>\n",
" <circle cx=\"66.18\" cy=\"33.26\" r=\"0.3\"/>\n",
" <circle cx=\"95.05\" cy=\"52.48\" r=\"0.3\"/>\n",
" <circle cx=\"48.9\" cy=\"21.75\" r=\"0.3\"/>\n",
" <circle cx=\"94.15\" cy=\"51.89\" r=\"0.3\"/>\n",
" <circle cx=\"66.93\" cy=\"33.76\" r=\"0.3\"/>\n",
" <circle cx=\"81.86\" cy=\"43.7\" r=\"0.3\"/>\n",
" <circle cx=\"70.37\" cy=\"36.05\" r=\"0.3\"/>\n",
" <circle cx=\"105.34\" cy=\"59.33\" r=\"0.3\"/>\n",
" <circle cx=\"64.96\" cy=\"32.45\" r=\"0.3\"/>\n",
" <circle cx=\"78.72\" cy=\"41.61\" r=\"0.3\"/>\n",
" <circle cx=\"107.35\" cy=\"60.67\" r=\"0.3\"/>\n",
" <circle cx=\"60.48\" cy=\"29.47\" r=\"0.3\"/>\n",
" <circle cx=\"67.47\" cy=\"34.12\" r=\"0.3\"/>\n",
" <circle cx=\"77.71\" cy=\"40.93\" r=\"0.3\"/>\n",
" <circle cx=\"69.98\" cy=\"35.79\" r=\"0.3\"/>\n",
" <circle cx=\"78.76\" cy=\"41.64\" r=\"0.3\"/>\n",
" <circle cx=\"76.47\" cy=\"40.11\" r=\"0.3\"/>\n",
" <circle cx=\"72.68\" cy=\"37.59\" r=\"0.3\"/>\n",
" <circle cx=\"93.14\" cy=\"51.21\" r=\"0.3\"/>\n",
" <circle cx=\"80.95\" cy=\"43.09\" r=\"0.3\"/>\n",
" <circle cx=\"86.88\" cy=\"47.04\" r=\"0.3\"/>\n",
" <circle cx=\"93.69\" cy=\"51.57\" r=\"0.3\"/>\n",
" <circle cx=\"73.19\" cy=\"37.93\" r=\"0.3\"/>\n",
" <circle cx=\"81.18\" cy=\"43.25\" r=\"0.3\"/>\n",
" <circle cx=\"103.77\" cy=\"58.29\" r=\"0.3\"/>\n",
" <circle cx=\"94.13\" cy=\"51.87\" r=\"0.3\"/>\n",
" <circle cx=\"59.39\" cy=\"28.74\" r=\"0.3\"/>\n",
" <circle cx=\"97.86\" cy=\"54.36\" r=\"0.3\"/>\n",
" <circle cx=\"74.64\" cy=\"38.89\" r=\"0.3\"/>\n",
" <circle cx=\"100.03\" cy=\"55.8\" r=\"0.3\"/>\n",
" <circle cx=\"88.78\" cy=\"48.31\" r=\"0.3\"/>\n",
" <circle cx=\"82.12\" cy=\"43.88\" r=\"0.3\"/>\n",
" <circle cx=\"73.78\" cy=\"38.32\" r=\"0.3\"/>\n",
" <circle cx=\"112.12\" cy=\"63.85\" r=\"0.3\"/>\n",
" <circle cx=\"62.23\" cy=\"30.63\" r=\"0.3\"/>\n",
" <circle cx=\"101.8\" cy=\"56.97\" r=\"0.3\"/>\n",
" <circle cx=\"58.71\" cy=\"28.29\" r=\"0.3\"/>\n",
" <circle cx=\"50.18\" cy=\"22.6\" r=\"0.3\"/>\n",
" <circle cx=\"64.16\" cy=\"31.92\" r=\"0.3\"/>\n",
" <circle cx=\"106.13\" cy=\"59.86\" r=\"0.3\"/>\n",
" <circle cx=\"76.25\" cy=\"39.97\" r=\"0.3\"/>\n",
" <circle cx=\"92.27\" cy=\"50.63\" r=\"0.3\"/>\n",
" <circle cx=\"85.88\" cy=\"46.38\" r=\"0.3\"/>\n",
" <circle cx=\"84.03\" cy=\"45.15\" r=\"0.3\"/>\n",
" <circle cx=\"71.96\" cy=\"37.1\" r=\"0.3\"/>\n",
" <circle cx=\"95.32\" cy=\"52.66\" r=\"0.3\"/>\n",
" <circle cx=\"78.3\" cy=\"41.33\" r=\"0.3\"/>\n",
" <circle cx=\"59.92\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"85.28\" cy=\"45.98\" r=\"0.3\"/>\n",
" <circle cx=\"66.13\" cy=\"33.23\" r=\"0.3\"/>\n",
" <circle cx=\"89.32\" cy=\"48.67\" r=\"0.3\"/>\n",
" <circle cx=\"78.14\" cy=\"41.22\" r=\"0.3\"/>\n",
" <circle cx=\"58.39\" cy=\"28.07\" r=\"0.3\"/>\n",
" <circle cx=\"91.36\" cy=\"50.02\" r=\"0.3\"/>\n",
" <circle cx=\"82.89\" cy=\"44.39\" r=\"0.3\"/>\n",
" <circle cx=\"77.16\" cy=\"40.57\" r=\"0.3\"/>\n",
" <circle cx=\"83.69\" cy=\"44.92\" r=\"0.3\"/>\n",
" <circle cx=\"79.21\" cy=\"41.93\" r=\"0.3\"/>\n",
" <circle cx=\"72.33\" cy=\"37.36\" r=\"0.3\"/>\n",
" <circle cx=\"78.9\" cy=\"41.73\" r=\"0.3\"/>\n",
" <circle cx=\"53.86\" cy=\"25.05\" r=\"0.3\"/>\n",
" <circle cx=\"102.7\" cy=\"57.58\" r=\"0.3\"/>\n",
" <circle cx=\"96.91\" cy=\"53.72\" r=\"0.3\"/>\n",
" <circle cx=\"63.33\" cy=\"31.36\" r=\"0.3\"/>\n",
" <circle cx=\"73.76\" cy=\"38.3\" r=\"0.3\"/>\n",
" <circle cx=\"77.14\" cy=\"40.56\" r=\"0.3\"/>\n",
" <circle cx=\"70.32\" cy=\"36.01\" r=\"0.3\"/>\n",
" <circle cx=\"81.64\" cy=\"43.55\" r=\"0.3\"/>\n",
" <circle cx=\"81.92\" cy=\"43.74\" r=\"0.3\"/>\n",
" <circle cx=\"101.62\" cy=\"56.86\" r=\"0.3\"/>\n",
" <circle cx=\"104.99\" cy=\"59.1\" r=\"0.3\"/>\n",
" <circle cx=\"101.38\" cy=\"56.7\" r=\"0.3\"/>\n",
" <circle cx=\"87\" cy=\"47.12\" r=\"0.3\"/>\n",
" <circle cx=\"58.22\" cy=\"27.96\" r=\"0.3\"/>\n",
" <circle cx=\"75.84\" cy=\"39.69\" r=\"0.3\"/>\n",
" <circle cx=\"78.66\" cy=\"41.57\" r=\"0.3\"/>\n",
" <circle cx=\"63.22\" cy=\"31.29\" r=\"0.3\"/>\n",
" <circle cx=\"67.62\" cy=\"34.22\" r=\"0.3\"/>\n",
" <circle cx=\"80.49\" cy=\"42.79\" r=\"0.3\"/>\n",
" <circle cx=\"102.91\" cy=\"57.72\" r=\"0.3\"/>\n",
" <circle cx=\"73.55\" cy=\"38.17\" r=\"0.3\"/>\n",
" <circle cx=\"82.76\" cy=\"44.3\" r=\"0.3\"/>\n",
" <circle cx=\"110.3\" cy=\"62.64\" r=\"0.3\"/>\n",
" <circle cx=\"87.82\" cy=\"47.67\" r=\"0.3\"/>\n",
" <circle cx=\"70.09\" cy=\"35.86\" r=\"0.3\"/>\n",
" <circle cx=\"80.86\" cy=\"43.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.51\" cy=\"38.81\" r=\"0.3\"/>\n",
" <circle cx=\"62.51\" cy=\"30.81\" r=\"0.3\"/>\n",
" <circle cx=\"68.14\" cy=\"34.56\" r=\"0.3\"/>\n",
" <circle cx=\"101.87\" cy=\"57.02\" r=\"0.3\"/>\n",
" <circle cx=\"108.32\" cy=\"61.32\" r=\"0.3\"/>\n",
" <circle cx=\"73.49\" cy=\"38.13\" r=\"0.3\"/>\n",
" <circle cx=\"74.84\" cy=\"39.02\" r=\"0.3\"/>\n",
" <circle cx=\"99.51\" cy=\"55.45\" r=\"0.3\"/>\n",
" <circle cx=\"81.02\" cy=\"43.14\" r=\"0.3\"/>\n",
" <circle cx=\"96.13\" cy=\"53.2\" r=\"0.3\"/>\n",
" <circle cx=\"62.92\" cy=\"31.09\" r=\"0.3\"/>\n",
" <circle cx=\"51.37\" cy=\"23.4\" r=\"0.3\"/>\n",
" <circle cx=\"75.49\" cy=\"39.46\" r=\"0.3\"/>\n",
" <circle cx=\"96.06\" cy=\"53.16\" r=\"0.3\"/>\n",
" <circle cx=\"74.29\" cy=\"38.66\" r=\"0.3\"/>\n",
" <circle cx=\"68.45\" cy=\"34.77\" r=\"0.3\"/>\n",
" <circle cx=\"91.75\" cy=\"50.29\" r=\"0.3\"/>\n",
" <circle cx=\"75.11\" cy=\"39.2\" r=\"0.3\"/>\n",
" <circle cx=\"82.46\" cy=\"44.1\" r=\"0.3\"/>\n",
" <circle cx=\"65.62\" cy=\"32.88\" r=\"0.3\"/>\n",
" <circle cx=\"77.98\" cy=\"41.12\" r=\"0.3\"/>\n",
" <circle cx=\"106.47\" cy=\"60.08\" r=\"0.3\"/>\n",
" <circle cx=\"96.94\" cy=\"53.74\" r=\"0.3\"/>\n",
" <circle cx=\"54.98\" cy=\"25.8\" r=\"0.3\"/>\n",
" <circle cx=\"87.72\" cy=\"47.6\" r=\"0.3\"/>\n",
" <circle cx=\"92.42\" cy=\"50.73\" r=\"0.3\"/>\n",
" <circle cx=\"64.66\" cy=\"32.25\" r=\"0.3\"/>\n",
" <circle cx=\"70.51\" cy=\"36.15\" r=\"0.3\"/>\n",
" <circle cx=\"88.14\" cy=\"47.88\" r=\"0.3\"/>\n",
" <circle cx=\"93.78\" cy=\"51.64\" r=\"0.3\"/>\n",
" <circle cx=\"84.87\" cy=\"45.7\" r=\"0.3\"/>\n",
" <circle cx=\"52.54\" cy=\"24.17\" r=\"0.3\"/>\n",
" <circle cx=\"108.33\" cy=\"61.33\" r=\"0.3\"/>\n",
" <circle cx=\"79.33\" cy=\"42.02\" r=\"0.3\"/>\n",
" <circle cx=\"82.64\" cy=\"44.22\" r=\"0.3\"/>\n",
" <circle cx=\"50.36\" cy=\"22.72\" r=\"0.3\"/>\n",
" <circle cx=\"64.73\" cy=\"32.29\" r=\"0.3\"/>\n",
" <circle cx=\"65.69\" cy=\"32.93\" r=\"0.3\"/>\n",
" <circle cx=\"75.02\" cy=\"39.14\" r=\"0.3\"/>\n",
" <circle cx=\"89.12\" cy=\"48.53\" r=\"0.3\"/>\n",
" <circle cx=\"70.43\" cy=\"36.09\" r=\"0.3\"/>\n",
" <circle cx=\"117.02\" cy=\"67.11\" r=\"0.3\"/>\n",
" <circle cx=\"84.29\" cy=\"45.32\" r=\"0.3\"/>\n",
" <circle cx=\"87.52\" cy=\"47.47\" r=\"0.3\"/>\n",
" <circle cx=\"62.84\" cy=\"31.04\" r=\"0.3\"/>\n",
" <circle cx=\"82.1\" cy=\"43.86\" r=\"0.3\"/>\n",
" <circle cx=\"81.58\" cy=\"43.51\" r=\"0.3\"/>\n",
" <circle cx=\"73.14\" cy=\"37.89\" r=\"0.3\"/>\n",
" <circle cx=\"106.05\" cy=\"59.8\" r=\"0.3\"/>\n",
" <circle cx=\"74.47\" cy=\"38.78\" r=\"0.3\"/>\n",
" <circle cx=\"82.44\" cy=\"44.08\" r=\"0.3\"/>\n",
" <circle cx=\"91.33\" cy=\"50\" r=\"0.3\"/>\n",
" <circle cx=\"81.87\" cy=\"43.7\" r=\"0.3\"/>\n",
" <circle cx=\"98.73\" cy=\"54.93\" r=\"0.3\"/>\n",
" <circle cx=\"73.43\" cy=\"38.09\" r=\"0.3\"/>\n",
" <circle cx=\"62.63\" cy=\"30.9\" r=\"0.3\"/>\n",
" <circle cx=\"69.1\" cy=\"35.2\" r=\"0.3\"/>\n",
" <circle cx=\"66.34\" cy=\"33.37\" r=\"0.3\"/>\n",
" <circle cx=\"90.68\" cy=\"49.58\" r=\"0.3\"/>\n",
" <circle cx=\"83.64\" cy=\"44.88\" r=\"0.3\"/>\n",
" <circle cx=\"104.22\" cy=\"58.59\" r=\"0.3\"/>\n",
" <circle cx=\"73.17\" cy=\"37.91\" r=\"0.3\"/>\n",
" <circle cx=\"59.78\" cy=\"29\" r=\"0.3\"/>\n",
" <circle cx=\"64.38\" cy=\"32.06\" r=\"0.3\"/>\n",
" <circle cx=\"96.16\" cy=\"53.22\" r=\"0.3\"/>\n",
" <circle cx=\"93.09\" cy=\"51.18\" r=\"0.3\"/>\n",
" <circle cx=\"55.65\" cy=\"26.25\" r=\"0.3\"/>\n",
" <circle cx=\"82.62\" cy=\"44.2\" r=\"0.3\"/>\n",
" <circle cx=\"90.17\" cy=\"49.23\" r=\"0.3\"/>\n",
" <circle cx=\"85.09\" cy=\"45.85\" r=\"0.3\"/>\n",
" <circle cx=\"114.01\" cy=\"65.11\" r=\"0.3\"/>\n",
" <circle cx=\"65.13\" cy=\"32.56\" r=\"0.3\"/>\n",
" <circle cx=\"106.34\" cy=\"60\" r=\"0.3\"/>\n",
" <circle cx=\"64.91\" cy=\"32.41\" r=\"0.3\"/>\n",
" <circle cx=\"68.24\" cy=\"34.63\" r=\"0.3\"/>\n",
" <circle cx=\"86.02\" cy=\"46.47\" r=\"0.3\"/>\n",
" <circle cx=\"107.41\" cy=\"60.72\" r=\"0.3\"/>\n",
" <circle cx=\"100.12\" cy=\"55.86\" r=\"0.3\"/>\n",
" <circle cx=\"73.32\" cy=\"38.01\" r=\"0.3\"/>\n",
" <circle cx=\"74.57\" cy=\"38.84\" r=\"0.3\"/>\n",
" <circle cx=\"67.44\" cy=\"34.1\" r=\"0.3\"/>\n",
" <circle cx=\"63.5\" cy=\"31.48\" r=\"0.3\"/>\n",
" <circle cx=\"68.92\" cy=\"35.08\" r=\"0.3\"/>\n",
" <circle cx=\"92.86\" cy=\"51.02\" r=\"0.3\"/>\n",
" <circle cx=\"75.01\" cy=\"39.14\" r=\"0.3\"/>\n",
" <circle cx=\"75.26\" cy=\"39.31\" r=\"0.3\"/>\n",
" <circle cx=\"99.18\" cy=\"55.23\" r=\"0.3\"/>\n",
" <circle cx=\"61.7\" cy=\"30.27\" r=\"0.3\"/>\n",
" <circle cx=\"96.3\" cy=\"53.32\" r=\"0.3\"/>\n",
" <circle cx=\"78.26\" cy=\"41.3\" r=\"0.3\"/>\n",
" <circle cx=\"78.14\" cy=\"41.22\" r=\"0.3\"/>\n",
" <circle cx=\"66.3\" cy=\"33.34\" r=\"0.3\"/>\n",
" <circle cx=\"95.14\" cy=\"52.54\" r=\"0.3\"/>\n",
" <circle cx=\"54.97\" cy=\"25.8\" r=\"0.3\"/>\n",
" <circle cx=\"116.67\" cy=\"66.88\" r=\"0.3\"/>\n",
" <circle cx=\"88.03\" cy=\"47.81\" r=\"0.3\"/>\n",
" <circle cx=\"60.05\" cy=\"29.18\" r=\"0.3\"/>\n",
" <circle cx=\"90.11\" cy=\"49.19\" r=\"0.3\"/>\n",
" <circle cx=\"75.36\" cy=\"39.37\" r=\"0.3\"/>\n",
" <circle cx=\"49.94\" cy=\"22.44\" r=\"0.3\"/>\n",
" <circle cx=\"68.78\" cy=\"34.99\" r=\"0.3\"/>\n",
" <circle cx=\"62.42\" cy=\"30.76\" r=\"0.3\"/>\n",
" <circle cx=\"105.42\" cy=\"59.38\" r=\"0.3\"/>\n",
" <circle cx=\"97.95\" cy=\"54.41\" r=\"0.3\"/>\n",
" <circle cx=\"81.27\" cy=\"43.3\" r=\"0.3\"/>\n",
" <circle cx=\"64.31\" cy=\"32.01\" r=\"0.3\"/>\n",
" <circle cx=\"110.5\" cy=\"62.77\" r=\"0.3\"/>\n",
" <circle cx=\"72.17\" cy=\"37.25\" r=\"0.3\"/>\n",
" <circle cx=\"65.36\" cy=\"32.71\" r=\"0.3\"/>\n",
" <circle cx=\"99.88\" cy=\"55.7\" r=\"0.3\"/>\n",
" <circle cx=\"86.46\" cy=\"46.76\" r=\"0.3\"/>\n",
" <circle cx=\"106.36\" cy=\"60.01\" r=\"0.3\"/>\n",
" <circle cx=\"58.2\" cy=\"27.94\" r=\"0.3\"/>\n",
" <circle cx=\"71.93\" cy=\"37.09\" r=\"0.3\"/>\n",
" <circle cx=\"97.88\" cy=\"54.37\" r=\"0.3\"/>\n",
" <circle cx=\"63.65\" cy=\"31.58\" r=\"0.3\"/>\n",
" <circle cx=\"99.22\" cy=\"55.26\" r=\"0.3\"/>\n",
" <circle cx=\"72.41\" cy=\"37.41\" r=\"0.3\"/>\n",
" <circle cx=\"112.77\" cy=\"64.28\" r=\"0.3\"/>\n",
" <circle cx=\"74.09\" cy=\"38.53\" r=\"0.3\"/>\n",
" <circle cx=\"70.91\" cy=\"36.41\" r=\"0.3\"/>\n",
" <circle cx=\"66.89\" cy=\"33.73\" r=\"0.3\"/>\n",
" <circle cx=\"55.39\" cy=\"26.08\" r=\"0.3\"/>\n",
" <circle cx=\"98.57\" cy=\"54.82\" r=\"0.3\"/>\n",
" <circle cx=\"78.48\" cy=\"41.45\" r=\"0.3\"/>\n",
" <circle cx=\"74.61\" cy=\"38.87\" r=\"0.3\"/>\n",
" <circle cx=\"97.28\" cy=\"53.97\" r=\"0.3\"/>\n",
" <circle cx=\"63.84\" cy=\"31.7\" r=\"0.3\"/>\n",
" <circle cx=\"75.28\" cy=\"39.32\" r=\"0.3\"/>\n",
" <circle cx=\"102.01\" cy=\"57.12\" r=\"0.3\"/>\n",
" <circle cx=\"79.97\" cy=\"42.44\" r=\"0.3\"/>\n",
" <circle cx=\"94.42\" cy=\"52.06\" r=\"0.3\"/>\n",
" <circle cx=\"83.04\" cy=\"44.49\" r=\"0.3\"/>\n",
" <circle cx=\"72.16\" cy=\"37.24\" r=\"0.3\"/>\n",
" <circle cx=\"76.94\" cy=\"40.42\" r=\"0.3\"/>\n",
" <circle cx=\"63.9\" cy=\"31.74\" r=\"0.3\"/>\n",
" <circle cx=\"63.45\" cy=\"31.44\" r=\"0.3\"/>\n",
" <circle cx=\"83.32\" cy=\"44.67\" r=\"0.3\"/>\n",
" <circle cx=\"94.69\" cy=\"52.24\" r=\"0.3\"/>\n",
" <circle cx=\"58.4\" cy=\"28.08\" r=\"0.3\"/>\n",
" <circle cx=\"84.08\" cy=\"45.18\" r=\"0.3\"/>\n",
" <circle cx=\"89.25\" cy=\"48.62\" r=\"0.3\"/>\n",
" <circle cx=\"81.36\" cy=\"43.37\" r=\"0.3\"/>\n",
" <circle cx=\"59.41\" cy=\"28.75\" r=\"0.3\"/>\n",
" <circle cx=\"79.15\" cy=\"41.9\" r=\"0.3\"/>\n",
" <circle cx=\"102.5\" cy=\"57.44\" r=\"0.3\"/>\n",
" <circle cx=\"107.03\" cy=\"60.46\" r=\"0.3\"/>\n",
" <circle cx=\"78.49\" cy=\"41.45\" r=\"0.3\"/>\n",
" <circle cx=\"82.19\" cy=\"43.92\" r=\"0.3\"/>\n",
" <circle cx=\"83.35\" cy=\"44.69\" r=\"0.3\"/>\n",
" <circle cx=\"52.78\" cy=\"24.34\" r=\"0.3\"/>\n",
" <circle cx=\"95.34\" cy=\"52.68\" r=\"0.3\"/>\n",
" <circle cx=\"87.67\" cy=\"47.57\" r=\"0.3\"/>\n",
" <circle cx=\"87.12\" cy=\"47.2\" r=\"0.3\"/>\n",
" <circle cx=\"49.42\" cy=\"22.1\" r=\"0.3\"/>\n",
" <circle cx=\"99.73\" cy=\"55.6\" r=\"0.3\"/>\n",
" <circle cx=\"66.63\" cy=\"33.56\" r=\"0.3\"/>\n",
" <circle cx=\"68.05\" cy=\"34.51\" r=\"0.3\"/>\n",
" <circle cx=\"93.39\" cy=\"51.37\" r=\"0.3\"/>\n",
" <circle cx=\"87.83\" cy=\"47.68\" r=\"0.3\"/>\n",
" <circle cx=\"75.06\" cy=\"39.17\" r=\"0.3\"/>\n",
" <circle cx=\"68.59\" cy=\"34.87\" r=\"0.3\"/>\n",
" <circle cx=\"86.59\" cy=\"46.85\" r=\"0.3\"/>\n",
" <circle cx=\"77.73\" cy=\"40.95\" r=\"0.3\"/>\n",
" <circle cx=\"61.94\" cy=\"30.44\" r=\"0.3\"/>\n",
" <circle cx=\"97.77\" cy=\"54.29\" r=\"0.3\"/>\n",
" <circle cx=\"87.94\" cy=\"47.75\" r=\"0.3\"/>\n",
" <circle cx=\"101.42\" cy=\"56.73\" r=\"0.3\"/>\n",
" <circle cx=\"92.65\" cy=\"50.89\" r=\"0.3\"/>\n",
" <circle cx=\"100.98\" cy=\"56.43\" r=\"0.3\"/>\n",
" <circle cx=\"71.94\" cy=\"37.09\" r=\"0.3\"/>\n",
" <circle cx=\"85\" cy=\"45.79\" r=\"0.3\"/>\n",
" <circle cx=\"52.34\" cy=\"24.04\" r=\"0.3\"/>\n",
" <circle cx=\"64.32\" cy=\"32.02\" r=\"0.3\"/>\n",
" <circle cx=\"81.93\" cy=\"43.75\" r=\"0.3\"/>\n",
" <circle cx=\"99.1\" cy=\"55.18\" r=\"0.3\"/>\n",
" <circle cx=\"82.01\" cy=\"43.8\" r=\"0.3\"/>\n",
" <circle cx=\"88.38\" cy=\"48.04\" r=\"0.3\"/>\n",
" <circle cx=\"89.59\" cy=\"48.85\" r=\"0.3\"/>\n",
" <circle cx=\"85.21\" cy=\"45.93\" r=\"0.3\"/>\n",
" <circle cx=\"57.32\" cy=\"27.36\" r=\"0.3\"/>\n",
" <circle cx=\"55.91\" cy=\"26.42\" r=\"0.3\"/>\n",
" <circle cx=\"86.31\" cy=\"46.66\" r=\"0.3\"/>\n",
" <circle cx=\"83.85\" cy=\"45.03\" r=\"0.3\"/>\n",
" <circle cx=\"88.12\" cy=\"47.87\" r=\"0.3\"/>\n",
" <circle cx=\"100.39\" cy=\"56.04\" r=\"0.3\"/>\n",
" <circle cx=\"78.08\" cy=\"41.18\" r=\"0.3\"/>\n",
" <circle cx=\"87.72\" cy=\"47.6\" r=\"0.3\"/>\n",
" <circle cx=\"63.17\" cy=\"31.25\" r=\"0.3\"/>\n",
" <circle cx=\"93.51\" cy=\"51.46\" r=\"0.3\"/>\n",
" <circle cx=\"99.87\" cy=\"55.69\" r=\"0.3\"/>\n",
" <circle cx=\"78.07\" cy=\"41.17\" r=\"0.3\"/>\n",
" <circle cx=\"66.86\" cy=\"33.71\" r=\"0.3\"/>\n",
" <circle cx=\"89.6\" cy=\"48.85\" r=\"0.3\"/>\n",
" <circle cx=\"74.21\" cy=\"38.61\" r=\"0.3\"/>\n",
" <circle cx=\"60.77\" cy=\"29.66\" r=\"0.3\"/>\n",
" <circle cx=\"95.44\" cy=\"52.74\" r=\"0.3\"/>\n",
" <circle cx=\"69.08\" cy=\"35.19\" r=\"0.3\"/>\n",
" <circle cx=\"103.09\" cy=\"57.84\" r=\"0.3\"/>\n",
" <circle cx=\"89\" cy=\"48.45\" r=\"0.3\"/>\n",
" <circle cx=\"71.64\" cy=\"36.89\" r=\"0.3\"/>\n",
" <circle cx=\"71.3\" cy=\"36.67\" r=\"0.3\"/>\n",
" <circle cx=\"51.15\" cy=\"23.25\" r=\"0.3\"/>\n",
" <circle cx=\"75.29\" cy=\"39.33\" r=\"0.3\"/>\n",
" <circle cx=\"80.97\" cy=\"43.11\" r=\"0.3\"/>\n",
" <circle cx=\"89.82\" cy=\"49\" r=\"0.3\"/>\n",
" <circle cx=\"61.05\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"86.81\" cy=\"47\" r=\"0.3\"/>\n",
" <circle cx=\"56.04\" cy=\"26.51\" r=\"0.3\"/>\n",
" <circle cx=\"61.78\" cy=\"30.33\" r=\"0.3\"/>\n",
" <circle cx=\"89.09\" cy=\"48.51\" r=\"0.3\"/>\n",
" <circle cx=\"91.67\" cy=\"50.23\" r=\"0.3\"/>\n",
" <circle cx=\"84.82\" cy=\"45.67\" r=\"0.3\"/>\n",
" <circle cx=\"102.02\" cy=\"57.13\" r=\"0.3\"/>\n",
" <circle cx=\"78.15\" cy=\"41.23\" r=\"0.3\"/>\n",
" <circle cx=\"65.26\" cy=\"32.65\" r=\"0.3\"/>\n",
" <circle cx=\"66.41\" cy=\"33.41\" r=\"0.3\"/>\n",
" <circle cx=\"92.45\" cy=\"50.75\" r=\"0.3\"/>\n",
" <circle cx=\"64.96\" cy=\"32.45\" r=\"0.3\"/>\n",
" <circle cx=\"87.93\" cy=\"47.74\" r=\"0.3\"/>\n",
" <circle cx=\"71.08\" cy=\"36.52\" r=\"0.3\"/>\n",
" <circle cx=\"112.39\" cy=\"64.02\" r=\"0.3\"/>\n",
" <circle cx=\"100.57\" cy=\"56.16\" r=\"0.3\"/>\n",
" <circle cx=\"89.1\" cy=\"48.52\" r=\"0.3\"/>\n",
" <circle cx=\"100.79\" cy=\"56.31\" r=\"0.3\"/>\n",
" <circle cx=\"63.53\" cy=\"31.49\" r=\"0.3\"/>\n",
" <circle cx=\"79.54\" cy=\"42.15\" r=\"0.3\"/>\n",
" <circle cx=\"64.9\" cy=\"32.41\" r=\"0.3\"/>\n",
" <circle cx=\"100.62\" cy=\"56.19\" r=\"0.3\"/>\n",
" <circle cx=\"99.74\" cy=\"55.6\" r=\"0.3\"/>\n",
" <circle cx=\"59.93\" cy=\"29.09\" r=\"0.3\"/>\n",
" <circle cx=\"90.8\" cy=\"49.65\" r=\"0.3\"/>\n",
" <circle cx=\"75.66\" cy=\"39.57\" r=\"0.3\"/>\n",
" <circle cx=\"92.63\" cy=\"50.87\" r=\"0.3\"/>\n",
" <circle cx=\"94.05\" cy=\"51.82\" r=\"0.3\"/>\n",
" <circle cx=\"65.37\" cy=\"32.72\" r=\"0.3\"/>\n",
" <circle cx=\"78.28\" cy=\"41.32\" r=\"0.3\"/>\n",
" <circle cx=\"56.37\" cy=\"26.72\" r=\"0.3\"/>\n",
" <circle cx=\"52.97\" cy=\"24.46\" r=\"0.3\"/>\n",
" <circle cx=\"74.1\" cy=\"38.53\" r=\"0.3\"/>\n",
" <circle cx=\"78.03\" cy=\"41.15\" r=\"0.3\"/>\n",
" <circle cx=\"64.89\" cy=\"32.4\" r=\"0.3\"/>\n",
" <circle cx=\"121.47\" cy=\"70.07\" r=\"0.3\"/>\n",
" <circle cx=\"93.62\" cy=\"51.53\" r=\"0.3\"/>\n",
" <circle cx=\"81.83\" cy=\"43.68\" r=\"0.3\"/>\n",
" <circle cx=\"94.46\" cy=\"52.09\" r=\"0.3\"/>\n",
" <circle cx=\"77.61\" cy=\"40.87\" r=\"0.3\"/>\n",
" <circle cx=\"52.85\" cy=\"24.38\" r=\"0.3\"/>\n",
" <circle cx=\"91.57\" cy=\"50.17\" r=\"0.3\"/>\n",
" <circle cx=\"66.8\" cy=\"33.67\" r=\"0.3\"/>\n",
" <circle cx=\"84.82\" cy=\"45.67\" r=\"0.3\"/>\n",
" <circle cx=\"92.76\" cy=\"50.96\" r=\"0.3\"/>\n",
" <circle cx=\"85.12\" cy=\"45.87\" r=\"0.3\"/>\n",
" <circle cx=\"84.34\" cy=\"45.35\" r=\"0.3\"/>\n",
" <circle cx=\"96.21\" cy=\"53.25\" r=\"0.3\"/>\n",
" <circle cx=\"68.22\" cy=\"34.61\" r=\"0.3\"/>\n",
" <circle cx=\"66.25\" cy=\"33.3\" r=\"0.3\"/>\n",
" <circle cx=\"63.71\" cy=\"31.61\" r=\"0.3\"/>\n",
" <circle cx=\"75.19\" cy=\"39.26\" r=\"0.3\"/>\n",
" <circle cx=\"116.39\" cy=\"66.69\" r=\"0.3\"/>\n",
" <circle cx=\"69.34\" cy=\"35.36\" r=\"0.3\"/>\n",
" <circle cx=\"109.27\" cy=\"61.95\" r=\"0.3\"/>\n",
" <circle cx=\"68.57\" cy=\"34.85\" r=\"0.3\"/>\n",
" <circle cx=\"72.87\" cy=\"37.71\" r=\"0.3\"/>\n",
" <circle cx=\"98.55\" cy=\"54.81\" r=\"0.3\"/>\n",
" <circle cx=\"72.93\" cy=\"37.75\" r=\"0.3\"/>\n",
" <circle cx=\"100.38\" cy=\"56.03\" r=\"0.3\"/>\n",
" <circle cx=\"71.3\" cy=\"36.66\" r=\"0.3\"/>\n",
" <circle cx=\"67.48\" cy=\"34.12\" r=\"0.3\"/>\n",
" <circle cx=\"71.69\" cy=\"36.93\" r=\"0.3\"/>\n",
" <circle cx=\"69.74\" cy=\"35.63\" r=\"0.3\"/>\n",
" <circle cx=\"92.53\" cy=\"50.8\" r=\"0.3\"/>\n",
" <circle cx=\"69.9\" cy=\"35.74\" r=\"0.3\"/>\n",
" <circle cx=\"66.98\" cy=\"33.79\" r=\"0.3\"/>\n",
" <circle cx=\"106.41\" cy=\"60.04\" r=\"0.3\"/>\n",
" <circle cx=\"49.99\" cy=\"22.48\" r=\"0.3\"/>\n",
" <circle cx=\"67.88\" cy=\"34.39\" r=\"0.3\"/>\n",
" <circle cx=\"65.3\" cy=\"32.67\" r=\"0.3\"/>\n",
" <circle cx=\"93.27\" cy=\"51.3\" r=\"0.3\"/>\n",
" <circle cx=\"109.44\" cy=\"62.07\" r=\"0.3\"/>\n",
" <circle cx=\"58.65\" cy=\"28.24\" r=\"0.3\"/>\n",
" <circle cx=\"65.36\" cy=\"32.71\" r=\"0.3\"/>\n",
" <circle cx=\"71.83\" cy=\"37.02\" r=\"0.3\"/>\n",
" <circle cx=\"94.57\" cy=\"52.16\" r=\"0.3\"/>\n",
" <circle cx=\"96.51\" cy=\"53.46\" r=\"0.3\"/>\n",
" <circle cx=\"59.75\" cy=\"28.98\" r=\"0.3\"/>\n",
" <circle cx=\"98.12\" cy=\"54.53\" r=\"0.3\"/>\n",
" <circle cx=\"78.07\" cy=\"41.18\" r=\"0.3\"/>\n",
" <circle cx=\"89.24\" cy=\"48.61\" r=\"0.3\"/>\n",
" <circle cx=\"68.37\" cy=\"34.72\" r=\"0.3\"/>\n",
" <circle cx=\"95.05\" cy=\"52.48\" r=\"0.3\"/>\n",
" <circle cx=\"78.97\" cy=\"41.78\" r=\"0.3\"/>\n",
" <circle cx=\"91.93\" cy=\"50.41\" r=\"0.3\"/>\n",
" <circle cx=\"69.28\" cy=\"35.33\" r=\"0.3\"/>\n",
" <circle cx=\"90.56\" cy=\"49.49\" r=\"0.3\"/>\n",
" <circle cx=\"108.69\" cy=\"61.56\" r=\"0.3\"/>\n",
" <circle cx=\"84.95\" cy=\"45.76\" r=\"0.3\"/>\n",
" <circle cx=\"85.07\" cy=\"45.83\" r=\"0.3\"/>\n",
" <circle cx=\"66.83\" cy=\"33.69\" r=\"0.3\"/>\n",
" <circle cx=\"93.93\" cy=\"51.73\" r=\"0.3\"/>\n",
" <circle cx=\"77.93\" cy=\"41.08\" r=\"0.3\"/>\n",
" <circle cx=\"84.65\" cy=\"45.56\" r=\"0.3\"/>\n",
" <circle cx=\"60.91\" cy=\"29.75\" r=\"0.3\"/>\n",
" <circle cx=\"72.78\" cy=\"37.65\" r=\"0.3\"/>\n",
" <circle cx=\"68.45\" cy=\"34.77\" r=\"0.3\"/>\n",
" <circle cx=\"94.01\" cy=\"51.79\" r=\"0.3\"/>\n",
" <circle cx=\"70.71\" cy=\"36.27\" r=\"0.3\"/>\n",
" <circle cx=\"55.81\" cy=\"26.35\" r=\"0.3\"/>\n",
" <circle cx=\"80.85\" cy=\"43.02\" r=\"0.3\"/>\n",
" <circle cx=\"100.52\" cy=\"56.13\" r=\"0.3\"/>\n",
" <circle cx=\"83.83\" cy=\"45.01\" r=\"0.3\"/>\n",
" <circle cx=\"64.79\" cy=\"32.33\" r=\"0.3\"/>\n",
" <circle cx=\"105.64\" cy=\"59.54\" r=\"0.3\"/>\n",
" <circle cx=\"99.71\" cy=\"55.58\" r=\"0.3\"/>\n",
" <circle cx=\"81.72\" cy=\"43.61\" r=\"0.3\"/>\n",
" <circle cx=\"89.35\" cy=\"48.68\" r=\"0.3\"/>\n",
" <circle cx=\"82.2\" cy=\"43.92\" r=\"0.3\"/>\n",
" <circle cx=\"90.66\" cy=\"49.56\" r=\"0.3\"/>\n",
" <circle cx=\"61.46\" cy=\"30.11\" r=\"0.3\"/>\n",
" <circle cx=\"55.31\" cy=\"26.02\" r=\"0.3\"/>\n",
" <circle cx=\"69.42\" cy=\"35.41\" r=\"0.3\"/>\n",
" <circle cx=\"102.52\" cy=\"57.46\" r=\"0.3\"/>\n",
" <circle cx=\"96.52\" cy=\"53.46\" r=\"0.3\"/>\n",
" <circle cx=\"72.99\" cy=\"37.79\" r=\"0.3\"/>\n",
" <circle cx=\"98.67\" cy=\"54.89\" r=\"0.3\"/>\n",
" <circle cx=\"91.33\" cy=\"50.01\" r=\"0.3\"/>\n",
" <circle cx=\"63.34\" cy=\"31.37\" r=\"0.3\"/>\n",
" <circle cx=\"55.8\" cy=\"26.34\" r=\"0.3\"/>\n",
" <circle cx=\"63.7\" cy=\"31.61\" r=\"0.3\"/>\n",
" <circle cx=\"80.23\" cy=\"42.62\" r=\"0.3\"/>\n",
" <circle cx=\"57.57\" cy=\"27.53\" r=\"0.3\"/>\n",
" <circle cx=\"86.41\" cy=\"46.73\" r=\"0.3\"/>\n",
" <circle cx=\"74.04\" cy=\"38.49\" r=\"0.3\"/>\n",
" <circle cx=\"96.74\" cy=\"53.6\" r=\"0.3\"/>\n",
" <circle cx=\"105.39\" cy=\"59.37\" r=\"0.3\"/>\n",
" <circle cx=\"75.62\" cy=\"39.55\" r=\"0.3\"/>\n",
" <circle cx=\"82.27\" cy=\"43.97\" r=\"0.3\"/>\n",
" <circle cx=\"63.22\" cy=\"31.29\" r=\"0.3\"/>\n",
" <circle cx=\"89.59\" cy=\"48.85\" r=\"0.3\"/>\n",
" <circle cx=\"76.13\" cy=\"39.88\" r=\"0.3\"/>\n",
" <circle cx=\"90.71\" cy=\"49.59\" r=\"0.3\"/>\n",
" <circle cx=\"74.05\" cy=\"38.5\" r=\"0.3\"/>\n",
" <circle cx=\"106.68\" cy=\"60.23\" r=\"0.3\"/>\n",
" <circle cx=\"88.77\" cy=\"48.3\" r=\"0.3\"/>\n",
" <circle cx=\"94.39\" cy=\"52.04\" r=\"0.3\"/>\n",
" <circle cx=\"75.16\" cy=\"39.24\" r=\"0.3\"/>\n",
" <circle cx=\"71.19\" cy=\"36.59\" r=\"0.3\"/>\n",
" <circle cx=\"72.07\" cy=\"37.18\" r=\"0.3\"/>\n",
" <circle cx=\"77.82\" cy=\"41.01\" r=\"0.3\"/>\n",
" <circle cx=\"79.16\" cy=\"41.9\" r=\"0.3\"/>\n",
" <circle cx=\"72.11\" cy=\"37.21\" r=\"0.3\"/>\n",
" <circle cx=\"88.06\" cy=\"47.83\" r=\"0.3\"/>\n",
" <circle cx=\"49.09\" cy=\"21.88\" r=\"0.3\"/>\n",
" <circle cx=\"56.14\" cy=\"26.57\" r=\"0.3\"/>\n",
" <circle cx=\"64.46\" cy=\"32.11\" r=\"0.3\"/>\n",
" <circle cx=\"96.22\" cy=\"53.26\" r=\"0.3\"/>\n",
" <circle cx=\"64.52\" cy=\"32.15\" r=\"0.3\"/>\n",
" <circle cx=\"110.19\" cy=\"62.56\" r=\"0.3\"/>\n",
" <circle cx=\"103.73\" cy=\"58.26\" r=\"0.3\"/>\n",
" <circle cx=\"62.62\" cy=\"30.89\" r=\"0.3\"/>\n",
" <circle cx=\"60.18\" cy=\"29.26\" r=\"0.3\"/>\n",
" <circle cx=\"114.18\" cy=\"65.22\" r=\"0.3\"/>\n",
" <circle cx=\"73.44\" cy=\"38.09\" r=\"0.3\"/>\n",
" <circle cx=\"75.57\" cy=\"39.51\" r=\"0.3\"/>\n",
" <circle cx=\"69.18\" cy=\"35.26\" r=\"0.3\"/>\n",
" <circle cx=\"102.93\" cy=\"57.73\" r=\"0.3\"/>\n",
" <circle cx=\"101.88\" cy=\"57.03\" r=\"0.3\"/>\n",
" <circle cx=\"76.25\" cy=\"39.96\" r=\"0.3\"/>\n",
" <circle cx=\"90.58\" cy=\"49.51\" r=\"0.3\"/>\n",
" <circle cx=\"65\" cy=\"32.47\" r=\"0.3\"/>\n",
" <circle cx=\"99.4\" cy=\"55.38\" r=\"0.3\"/>\n",
" <circle cx=\"54.59\" cy=\"25.54\" r=\"0.3\"/>\n",
" <circle cx=\"93.14\" cy=\"51.21\" r=\"0.3\"/>\n",
" <circle cx=\"60.66\" cy=\"29.58\" r=\"0.3\"/>\n",
" <circle cx=\"79.91\" cy=\"42.4\" r=\"0.3\"/>\n",
" <circle cx=\"103\" cy=\"57.78\" r=\"0.3\"/>\n",
" <circle cx=\"90.39\" cy=\"49.38\" r=\"0.3\"/>\n",
" <circle cx=\"76.07\" cy=\"39.85\" r=\"0.3\"/>\n",
" <circle cx=\"88.02\" cy=\"47.8\" r=\"0.3\"/>\n",
" <circle cx=\"98.76\" cy=\"54.95\" r=\"0.3\"/>\n",
" <circle cx=\"84.19\" cy=\"45.25\" r=\"0.3\"/>\n",
" <circle cx=\"56.13\" cy=\"26.57\" r=\"0.3\"/>\n",
" <circle cx=\"60.11\" cy=\"29.21\" r=\"0.3\"/>\n",
" <circle cx=\"75.94\" cy=\"39.76\" r=\"0.3\"/>\n",
" <circle cx=\"107.59\" cy=\"60.83\" r=\"0.3\"/>\n",
" <circle cx=\"85.02\" cy=\"45.81\" r=\"0.3\"/>\n",
" <circle cx=\"99.89\" cy=\"55.71\" r=\"0.3\"/>\n",
" <circle cx=\"97.76\" cy=\"54.29\" r=\"0.3\"/>\n",
" <circle cx=\"89.69\" cy=\"48.91\" r=\"0.3\"/>\n",
" <circle cx=\"63.92\" cy=\"31.75\" r=\"0.3\"/>\n",
" <circle cx=\"93.2\" cy=\"51.25\" r=\"0.3\"/>\n",
" <circle cx=\"84.44\" cy=\"45.41\" r=\"0.3\"/>\n",
" <circle cx=\"40.45\" cy=\"16.12\" r=\"0.3\"/>\n",
" <circle cx=\"69.51\" cy=\"35.48\" r=\"0.3\"/>\n",
" <circle cx=\"62.72\" cy=\"30.95\" r=\"0.3\"/>\n",
" <circle cx=\"72.61\" cy=\"37.54\" r=\"0.3\"/>\n",
" <circle cx=\"52.88\" cy=\"24.41\" r=\"0.3\"/>\n",
" <circle cx=\"59.6\" cy=\"28.88\" r=\"0.3\"/>\n",
" <circle cx=\"108.23\" cy=\"61.26\" r=\"0.3\"/>\n",
" <circle cx=\"82.76\" cy=\"44.3\" r=\"0.3\"/>\n",
" <circle cx=\"66.32\" cy=\"33.35\" r=\"0.3\"/>\n",
" <circle cx=\"93.4\" cy=\"51.38\" r=\"0.3\"/>\n",
" <circle cx=\"52.69\" cy=\"24.28\" r=\"0.3\"/>\n",
" <circle cx=\"90.67\" cy=\"49.56\" r=\"0.3\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g opacity=\"0\" class=\"guide zoomslider\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-13\">\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-14\">\n",
" <rect x=\"129.42\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-15\">\n",
" <path d=\"M130.22,9.6 L 131.02 9.6 131.02 8.8 131.82 8.8 131.82 9.6 132.62 9.6 132.62 10.4 131.82 10.4 131.82 11.2 131.02 11.2 131.02 10.4 130.22 10.4 z\"/>\n",
" </g>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-16\">\n",
" <rect x=\"109.92\" y=\"8\" width=\"19\" height=\"4\"/>\n",
" </g>\n",
" <g class=\"zoomslider_thumb\" fill=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-17\">\n",
" <rect x=\"118.42\" y=\"8\" width=\"2\" height=\"4\"/>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-18\">\n",
" <rect x=\"105.42\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-19\">\n",
" <path d=\"M106.22,9.6 L 108.62 9.6 108.62 10.4 106.22 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-80217fdcce744fcf9ed925850409e4d1-element-20\">\n",
" <text x=\"23.76\" y=\"168.36\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0014</text>\n",
" <text x=\"23.76\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0012</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0010</text>\n",
" <text x=\"23.76\" y=\"114.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0008</text>\n",
" <text x=\"23.76\" y=\"96.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0006</text>\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0004</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0002</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0000</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0002</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0004</text>\n",
" <text x=\"23.76\" y=\"-10.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0006</text>\n",
" <text x=\"23.76\" y=\"-28.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0008</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0010</text>\n",
" <text x=\"23.76\" y=\"-64.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0012</text>\n",
" <text x=\"23.76\" y=\"-82.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0014</text>\n",
" <text x=\"23.76\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00120</text>\n",
" <text x=\"23.76\" y=\"145.95\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00115</text>\n",
" <text x=\"23.76\" y=\"141.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00110</text>\n",
" <text x=\"23.76\" y=\"136.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00105</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00100</text>\n",
" <text x=\"23.76\" y=\"128.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00095</text>\n",
" <text x=\"23.76\" y=\"123.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00090</text>\n",
" <text x=\"23.76\" y=\"119.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00085</text>\n",
" <text x=\"23.76\" y=\"114.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00080</text>\n",
" <text x=\"23.76\" y=\"110.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00075</text>\n",
" <text x=\"23.76\" y=\"105.61\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00070</text>\n",
" <text x=\"23.76\" y=\"101.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00065</text>\n",
" <text x=\"23.76\" y=\"96.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"23.76\" y=\"92.16\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00055</text>\n",
" <text x=\"23.76\" y=\"87.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"23.76\" y=\"83.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00045</text>\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"23.76\" y=\"74.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00035</text>\n",
" <text x=\"23.76\" y=\"69.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"23.76\" y=\"65.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00025</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"23.76\" y=\"56.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00015</text>\n",
" <text x=\"23.76\" y=\"51.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"23.76\" y=\"47.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00005</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"23.76\" y=\"38.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00005</text>\n",
" <text x=\"23.76\" y=\"33.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"23.76\" y=\"29.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00015</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"23.76\" y=\"20.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00025</text>\n",
" <text x=\"23.76\" y=\"15.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"23.76\" y=\"11.48\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00035</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"23.76\" y=\"2.52\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00045</text>\n",
" <text x=\"23.76\" y=\"-1.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"23.76\" y=\"-6.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00055</text>\n",
" <text x=\"23.76\" y=\"-10.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00060</text>\n",
" <text x=\"23.76\" y=\"-15.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00065</text>\n",
" <text x=\"23.76\" y=\"-19.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00070</text>\n",
" <text x=\"23.76\" y=\"-24.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00075</text>\n",
" <text x=\"23.76\" y=\"-28.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00080</text>\n",
" <text x=\"23.76\" y=\"-33.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00085</text>\n",
" <text x=\"23.76\" y=\"-37.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00090</text>\n",
" <text x=\"23.76\" y=\"-42.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00095</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00100</text>\n",
" <text x=\"23.76\" y=\"-51.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00105</text>\n",
" <text x=\"23.76\" y=\"-55.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00110</text>\n",
" <text x=\"23.76\" y=\"-60.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00115</text>\n",
" <text x=\"23.76\" y=\"-64.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00120</text>\n",
" <text x=\"23.76\" y=\"222.14\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.002</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.001</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.000</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.001</text>\n",
" <text x=\"23.76\" y=\"-136.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.002</text>\n",
" <text x=\"23.76\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00120</text>\n",
" <text x=\"23.76\" y=\"145.95\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00115</text>\n",
" <text x=\"23.76\" y=\"141.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00110</text>\n",
" <text x=\"23.76\" y=\"136.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00105</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00100</text>\n",
" <text x=\"23.76\" y=\"128.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00095</text>\n",
" <text x=\"23.76\" y=\"123.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00090</text>\n",
" <text x=\"23.76\" y=\"119.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00085</text>\n",
" <text x=\"23.76\" y=\"114.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00080</text>\n",
" <text x=\"23.76\" y=\"110.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00075</text>\n",
" <text x=\"23.76\" y=\"105.61\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00070</text>\n",
" <text x=\"23.76\" y=\"101.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00065</text>\n",
" <text x=\"23.76\" y=\"96.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"23.76\" y=\"92.16\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00055</text>\n",
" <text x=\"23.76\" y=\"87.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"23.76\" y=\"83.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00045</text>\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"23.76\" y=\"74.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00035</text>\n",
" <text x=\"23.76\" y=\"69.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"23.76\" y=\"65.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00025</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"23.76\" y=\"56.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00015</text>\n",
" <text x=\"23.76\" y=\"51.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"23.76\" y=\"47.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00005</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"23.76\" y=\"38.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00005</text>\n",
" <text x=\"23.76\" y=\"33.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"23.76\" y=\"29.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00015</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"23.76\" y=\"20.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00025</text>\n",
" <text x=\"23.76\" y=\"15.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"23.76\" y=\"11.48\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00035</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"23.76\" y=\"2.52\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00045</text>\n",
" <text x=\"23.76\" y=\"-1.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"23.76\" y=\"-6.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00055</text>\n",
" <text x=\"23.76\" y=\"-10.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00060</text>\n",
" <text x=\"23.76\" y=\"-15.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00065</text>\n",
" <text x=\"23.76\" y=\"-19.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00070</text>\n",
" <text x=\"23.76\" y=\"-24.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00075</text>\n",
" <text x=\"23.76\" y=\"-28.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00080</text>\n",
" <text x=\"23.76\" y=\"-33.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00085</text>\n",
" <text x=\"23.76\" y=\"-37.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00090</text>\n",
" <text x=\"23.76\" y=\"-42.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00095</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00100</text>\n",
" <text x=\"23.76\" y=\"-51.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00105</text>\n",
" <text x=\"23.76\" y=\"-55.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00110</text>\n",
" <text x=\"23.76\" y=\"-60.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00115</text>\n",
" <text x=\"23.76\" y=\"-64.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00120</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-80217fdcce744fcf9ed925850409e4d1-element-21\">\n",
" <text x=\"8.81\" y=\"40.86\" text-anchor=\"middle\" dy=\"0.35em\" transform=\"rotate(-90, 8.81, 42.86)\">Δ log(Exchange Rate)</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-5\">\n",
" <path d=\"M24.76,5 L 136.42 5 136.42 80.72 24.76 80.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",
" Element.prototype.init_gadfly = function() {\n",
" this.mouseenter(Gadfly.plot_mouseover)\n",
" .mouseleave(Gadfly.plot_mouseout)\n",
" .dblclick(Gadfly.plot_dblclick)\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",
" this.mouseenter(function (event) {\n",
" init_pan_zoom(this.plotroot());\n",
" });\n",
" return this;\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",
"\n",
" var keyboard_zoom = function(event) {\n",
" if (event.which == 187) { // plus\n",
" increase_zoom_by_position(root, 0.1, true);\n",
" } else if (event.which == 189) { // minus\n",
" increase_zoom_by_position(root, -0.1, true);\n",
" }\n",
" };\n",
" root.data(\"keyboard_zoom\", keyboard_zoom);\n",
" window.addEventListener(\"keyup\", keyboard_zoom);\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",
"// Reset pan and zoom on double click\n",
"Gadfly.plot_dblclick = function(event) {\n",
" set_plot_pan_zoom(this.plotroot(), 0.0, 0.0, 1.0);\n",
"};\n",
"\n",
"// Unemphasize grid lines on mouse out.\n",
"Gadfly.plot_mouseout = function(event) {\n",
" var root = this.plotroot();\n",
"\n",
" window.removeEventListener(\"keyup\", root.data(\"keyboard_zoom\"));\n",
" root.data(\"keyboard_zoom\", undefined);\n",
"\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",
"// drag actions, i.e. zooming and panning\n",
"var pan_action = {\n",
" start: function(root, x, y, event) {\n",
" root.data(\"dx\", 0);\n",
" root.data(\"dy\", 0);\n",
" root.data(\"tx0\", root.data(\"tx\"));\n",
" root.data(\"ty0\", root.data(\"ty\"));\n",
" },\n",
" update: function(root, dx, dy, x, y, event) {\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",
" end: function(root, event) {\n",
"\n",
" },\n",
" cancel: function(root) {\n",
" set_plot_pan_zoom(root, root.data(\"tx0\"), root.data(\"ty0\"), root.data(\"scale\"));\n",
" }\n",
"};\n",
"\n",
"var zoom_box;\n",
"var zoom_action = {\n",
" start: function(root, x, y, event) {\n",
" var bounds = root.plotbounds();\n",
" var width = bounds.x1 - bounds.x0,\n",
" height = bounds.y1 - bounds.y0;\n",
" var ratio = width / height;\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" x = xscalable ? x / px_per_mm : bounds.x0;\n",
" y = yscalable ? y / px_per_mm : bounds.y0;\n",
" var w = xscalable ? 0 : width;\n",
" var h = yscalable ? 0 : height;\n",
" zoom_box = root.rect(x, y, w, h).attr({\n",
" \"fill\": \"#000\",\n",
" \"opacity\": 0.25\n",
" });\n",
" zoom_box.data(\"ratio\", ratio);\n",
" },\n",
" update: function(root, dx, dy, x, y, event) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" var bounds = root.plotbounds();\n",
" if (yscalable) {\n",
" y /= px_per_mm;\n",
" y = Math.max(bounds.y0, y);\n",
" y = Math.min(bounds.y1, y);\n",
" } else {\n",
" y = bounds.y1;\n",
" }\n",
" if (xscalable) {\n",
" x /= px_per_mm;\n",
" x = Math.max(bounds.x0, x);\n",
" x = Math.min(bounds.x1, x);\n",
" } else {\n",
" x = bounds.x1;\n",
" }\n",
"\n",
" dx = x - zoom_box.attr(\"x\");\n",
" dy = y - zoom_box.attr(\"y\");\n",
" if (xscalable && yscalable) {\n",
" var ratio = zoom_box.data(\"ratio\");\n",
" var width = Math.min(Math.abs(dx), ratio * Math.abs(dy));\n",
" var height = Math.min(Math.abs(dy), Math.abs(dx) / ratio);\n",
" dx = width * dx / Math.abs(dx);\n",
" dy = height * dy / Math.abs(dy);\n",
" }\n",
" var xoffset = 0,\n",
" yoffset = 0;\n",
" if (dx < 0) {\n",
" xoffset = dx;\n",
" dx = -1 * dx;\n",
" }\n",
" if (dy < 0) {\n",
" yoffset = dy;\n",
" dy = -1 * dy;\n",
" }\n",
" if (isNaN(dy)) {\n",
" dy = 0.0;\n",
" }\n",
" if (isNaN(dx)) {\n",
" dx = 0.0;\n",
" }\n",
" zoom_box.transform(\"T\" + xoffset + \",\" + yoffset);\n",
" zoom_box.attr(\"width\", dx);\n",
" zoom_box.attr(\"height\", dy);\n",
" },\n",
" end: function(root, event) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var zoom_bounds = zoom_box.getBBox();\n",
" if (zoom_bounds.width * zoom_bounds.height <= 0) {\n",
" return;\n",
" }\n",
" var plot_bounds = root.plotbounds();\n",
" var zoom_factor = 1.0;\n",
" if (yscalable) {\n",
" zoom_factor = (plot_bounds.y1 - plot_bounds.y0) / zoom_bounds.height;\n",
" } else {\n",
" zoom_factor = (plot_bounds.x1 - plot_bounds.x0) / zoom_bounds.width;\n",
" }\n",
" var tx = (root.data(\"tx\") - zoom_bounds.x) * zoom_factor + plot_bounds.x0,\n",
" ty = (root.data(\"ty\") - zoom_bounds.y) * zoom_factor + plot_bounds.y0;\n",
" set_plot_pan_zoom(root, tx, ty, root.data(\"scale\") * zoom_factor);\n",
" zoom_box.remove();\n",
" },\n",
" cancel: function(root) {\n",
" zoom_box.remove();\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onstart = function(x, y, event) {\n",
" var root = this.plotroot();\n",
" var scalable = root.hasClass(\"xscalable\") || root.hasClass(\"yscalable\");\n",
" var zoomable = !event.altKey && !event.ctrlKey && event.shiftKey && scalable;\n",
" var panable = !event.altKey && !event.ctrlKey && !event.shiftKey && scalable;\n",
" var drag_action = zoomable ? zoom_action :\n",
" panable ? pan_action :\n",
" undefined;\n",
" root.data(\"drag_action\", drag_action);\n",
" if (drag_action) {\n",
" var cancel_drag_action = function(event) {\n",
" if (event.which == 27) { // esc key\n",
" drag_action.cancel(root);\n",
" root.data(\"drag_action\", undefined);\n",
" }\n",
" };\n",
" window.addEventListener(\"keyup\", cancel_drag_action);\n",
" root.data(\"cancel_drag_action\", cancel_drag_action);\n",
" drag_action.start(root, x, y, event);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onmove = function(dx, dy, x, y, event) {\n",
" var root = this.plotroot();\n",
" var drag_action = root.data(\"drag_action\");\n",
" if (drag_action) {\n",
" drag_action.update(root, dx, dy, x, y, event);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onend = function(event) {\n",
" var root = this.plotroot();\n",
" window.removeEventListener(\"keyup\", root.data(\"cancel_drag_action\"));\n",
" root.data(\"cancel_drag_action\", undefined);\n",
" var drag_action = root.data(\"drag_action\");\n",
" if (drag_action) {\n",
" drag_action.end(root, event);\n",
" }\n",
" root.data(\"drag_action\", undefined);\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_scroll = function(event) {\n",
" if (event.shiftKey) {\n",
" increase_zoom_by_position(this.plotroot(), 0.001 * event.wheelDelta);\n",
" event.preventDefault();\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",
" increase_zoom_by_position(this.plotroot(), -0.1, true);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_zoomin_click = function(event) {\n",
" increase_zoom_by_position(this.plotroot(), 0.1, true);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_track_click = function(event) {\n",
" // TODO\n",
"};\n",
"\n",
"\n",
"// Map slider position x to scale y using the function y = a*exp(b*x)+c.\n",
"// The constants a, b, and c are solved using the constraint that the function\n",
"// should go through the points (0; min_scale), (0.5; 1), and (1; max_scale).\n",
"var scale_from_slider_position = function(position, min_scale, max_scale) {\n",
" var a = (1 - 2 * min_scale + min_scale * min_scale) / (min_scale + max_scale - 2),\n",
" b = 2 * Math.log((max_scale - 1) / (1 - min_scale)),\n",
" c = (min_scale * max_scale - 1) / (min_scale + max_scale - 2);\n",
" return a * Math.exp(b * position) + c;\n",
"}\n",
"\n",
"// inverse of scale_from_slider_position\n",
"var slider_position_from_scale = function(scale, min_scale, max_scale) {\n",
" var a = (1 - 2 * min_scale + min_scale * min_scale) / (min_scale + max_scale - 2),\n",
" b = 2 * Math.log((max_scale - 1) / (1 - min_scale)),\n",
" c = (min_scale * max_scale - 1) / (min_scale + max_scale - 2);\n",
" return 1 / b * Math.log((scale - c) / a);\n",
"}\n",
"\n",
"var increase_zoom_by_position = function(root, delta_position, animate) {\n",
" var scale = root.data(\"scale\"),\n",
" min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\");\n",
" var position = slider_position_from_scale(scale, min_scale, max_scale);\n",
" position += delta_position;\n",
" scale = scale_from_slider_position(position, min_scale, max_scale);\n",
" set_zoom(root, scale, animate);\n",
"}\n",
"\n",
"var set_zoom = function(root, scale, animate) {\n",
" var min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\"),\n",
" old_scale = root.data(\"scale\");\n",
" var new_scale = Math.max(min_scale, Math.min(scale, max_scale));\n",
" if (animate) {\n",
" Snap.animate(\n",
" old_scale,\n",
" new_scale,\n",
" function (new_scale) {\n",
" update_plot_scale(root, new_scale);\n",
" },\n",
" 200);\n",
" } else {\n",
" update_plot_scale(root, new_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, event) {\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 = scale_from_slider_position(xpos, min_scale, max_scale);\n",
" new_scale = Math.min(max_scale, Math.max(min_scale, new_scale));\n",
"\n",
" update_plot_scale(root, new_scale);\n",
" event.stopPropagation();\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragstart = function(x, y, event) {\n",
" this.animate({fill: this.data(\"mouseover_color\")}, 100);\n",
" var root = this.plotroot();\n",
"\n",
" // keep track of what the scale was when we started dragging\n",
" root.data(\"old_scale\", root.data(\"scale\"));\n",
" event.stopPropagation();\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragend = function(event) {\n",
" this.animate({fill: this.data(\"mouseout_color\")}, 100);\n",
" event.stopPropagation();\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\"], function (Snap, Gadfly) {\n",
" factory(Snap, Gadfly);\n",
" });\n",
" } else {\n",
" factory(glob.Snap, glob.Gadfly);\n",
" }\n",
"})(window, function (Snap, Gadfly) {\n",
" var fig = Snap(\"#fig-80217fdcce744fcf9ed925850409e4d1\");\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-4\")\n",
" .init_gadfly();\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-7\")\n",
" .plotroot().data(\"unfocused_ygrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-7\")\n",
" .plotroot().data(\"focused_ygrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-8\")\n",
" .plotroot().data(\"unfocused_xgrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-8\")\n",
" .plotroot().data(\"focused_xgrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-14\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-14\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-14\")\n",
" .click(Gadfly.zoomslider_zoomin_click)\n",
".mouseenter(Gadfly.zoomslider_button_mouseover)\n",
".mouseleave(Gadfly.zoomslider_button_mouseout)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-16\")\n",
" .data(\"max_pos\", 120.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-16\")\n",
" .data(\"min_pos\", 103.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-16\")\n",
" .click(Gadfly.zoomslider_track_click);\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"max_pos\", 120.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"min_pos\", 103.42)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-17\")\n",
" .drag(Gadfly.zoomslider_thumb_dragmove,\n",
" Gadfly.zoomslider_thumb_dragstart,\n",
" Gadfly.zoomslider_thumb_dragend)\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-18\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-18\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-80217fdcce744fcf9ed925850409e4d1-element-18\")\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": [
"Plot(...)"
]
},
"execution_count": 53,
"metadata": {
"comm_id": "1ac87c55-78c6-4a64-9ced-a15f702f0547",
"reactive": true
},
"output_type": "execute_result"
}
],
"source": [
"manipulate_plot() do df, df2\n",
" plot(df2, x=:x, y=:y,\n",
" Geom.point, Geom.smooth, color_scale, small_points,\n",
" Guide.xlabel(\"Δ log(c₂) - Δ log(c₁)\"), Guide.ylabel(\"Δ log(Exchange Rate)\"))\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"model_id = 19\n",
"df_sim = Exchange.new_simulation_frame(Exchange.ModelCV, db, model_id);\n",
"df2 = DataFrame(x=diff(log(df_sim[:c2])) - diff(log(df_sim[:c1])),\n",
"y=diff(log(df_sim[:fxr])));"
]
},
{
"cell_type": "code",
"execution_count": 43,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\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-3ae3cce40fb04070a695cc69730bb4b5-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-3ae3cce40fb04070a695cc69730bb4b5-element-2\">\n",
" <text x=\"80.59\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">c₂ / c₁</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-3ae3cce40fb04070a695cc69730bb4b5-element-3\">\n",
" <text x=\"26.76\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">-0.0002</text>\n",
" <text x=\"53.68\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">-0.0001</text>\n",
" <text x=\"80.59\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.0000</text>\n",
" <text x=\"107.51\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.0001</text>\n",
" <text x=\"134.42\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.0002</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-3ae3cce40fb04070a695cc69730bb4b5-element-5)\" id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-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-3ae3cce40fb04070a695cc69730bb4b5-element-6\">\n",
" <rect x=\"24.76\" y=\"5\" width=\"111.66\" height=\"75.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-element-7\">\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-element-8\">\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-element-9\">\n",
" <g stroke-width=\"0.3\" fill=\"#000000\" fill-opacity=\"0.000\" class=\"geometry\" stroke-dasharray=\"none\" stroke=\"#4C72B0\" id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-element-10\">\n",
" <path fill=\"none\" d=\"M44.8,14.06 L 44.89 14.13 44.99 14.21 45.08 14.28 45.18 14.36 45.27 14.43 45.37 14.51 45.46 14.58 45.56 14.66 45.65 14.73 45.75 14.81 45.84 14.88 45.94 14.96 46.03 15.04 46.13 15.11 46.22 15.19 46.32 15.26 46.41 15.34 46.51 15.41 46.6 15.49 46.7 15.57 46.79 15.64 46.89 15.72 46.98 15.8 47.08 15.87 47.17 15.95 47.27 16.02 47.36 16.1 47.46 16.18 47.55 16.25 47.65 16.33 47.74 16.41 47.83 16.48 47.93 16.56 48.02 16.64 48.12 16.71 48.21 16.79 48.31 16.87 48.4 16.95 48.5 17.02 48.59 17.1 48.69 17.18 48.78 17.25 48.88 17.33 48.97 17.41 49.07 17.49 49.16 17.56 49.26 17.64 49.35 17.72 49.45 17.8 49.54 17.87 49.64 17.95 49.73 18.03 49.83 18.11 49.92 18.18 50.02 18.26 50.11 18.34 50.21 18.42 50.3 18.5 50.4 18.57 50.49 18.65 50.59 18.73 50.68 18.81 50.78 18.89 50.87 18.97 50.96 19.04 51.06 19.12 51.15 19.2 51.25 19.28 51.34 19.36 51.44 19.44 51.53 19.52 51.63 19.59 51.72 19.67 51.82 19.75 51.91 19.83 52.01 19.91 52.1 19.99 52.2 20.07 52.29 20.15 52.39 20.22 52.48 20.3 52.58 20.38 52.67 20.46 52.77 20.54 52.86 20.62 52.96 20.7 53.05 20.78 53.15 20.86 53.24 20.94 53.34 21.02 53.43 21.1 53.53 21.18 53.62 21.26 53.72 21.33 53.81 21.41 53.91 21.49 54 21.57 54.09 21.65 54.19 21.73 54.28 21.81 54.38 21.89 54.47 21.97 54.57 22.05 54.66 22.13 54.76 22.21 54.85 22.29 54.95 22.37 55.04 22.45 55.14 22.53 55.23 22.61 55.33 22.69 55.42 22.77 55.52 22.85 55.61 22.93 55.71 23.01 55.8 23.09 55.9 23.17 55.99 23.26 56.09 23.34 56.18 23.42 56.28 23.5 56.37 23.58 56.47 23.66 56.56 23.74 56.66 23.82 56.75 23.9 56.85 23.98 56.94 24.06 57.04 24.14 57.13 24.22 57.23 24.3 57.32 24.38 57.41 24.46 57.51 24.54 57.6 24.62 57.7 24.7 57.79 24.78 57.89 24.87 57.98 24.95 58.08 25.03 58.17 25.11 58.27 25.19 58.36 25.27 58.46 25.35 58.55 25.43 58.65 25.51 58.74 25.6 58.84 25.68 58.93 25.76 59.03 25.84 59.12 25.92 59.22 26 59.31 26.08 59.41 26.17 59.5 26.25 59.6 26.33 59.69 26.41 59.79 26.49 59.88 26.57 59.98 26.66 60.07 26.74 60.17 26.82 60.26 26.9 60.36 26.98 60.45 27.07 60.54 27.15 60.64 27.23 60.73 27.31 60.83 27.39 60.92 27.48 61.02 27.56 61.11 27.64 61.21 27.72 61.3 27.8 61.4 27.89 61.49 27.97 61.59 28.05 61.68 28.13 61.78 28.22 61.87 28.3 61.97 28.38 62.06 28.46 62.16 28.55 62.25 28.63 62.35 28.71 62.44 28.8 62.54 28.88 62.63 28.96 62.73 29.04 62.82 29.13 62.92 29.21 63.01 29.29 63.11 29.38 63.2 29.46 63.3 29.54 63.39 29.63 63.49 29.71 63.58 29.79 63.68 29.87 63.77 29.96 63.86 30.04 63.96 30.12 64.05 30.21 64.15 30.29 64.24 30.37 64.34 30.46 64.43 30.54 64.53 30.63 64.62 30.71 64.72 30.79 64.81 30.88 64.91 30.96 65 31.04 65.1 31.13 65.19 31.21 65.29 31.29 65.38 31.38 65.48 31.46 65.57 31.54 65.67 31.63 65.76 31.71 65.86 31.8 65.95 31.88 66.05 31.96 66.14 32.05 66.24 32.13 66.33 32.21 66.43 32.3 66.52 32.38 66.62 32.47 66.71 32.55 66.81 32.63 66.9 32.72 66.99 32.8 67.09 32.88 67.18 32.97 67.28 33.05 67.37 33.13 67.47 33.22 67.56 33.3 67.66 33.38 67.75 33.47 67.85 33.55 67.94 33.63 68.04 33.72 68.13 33.8 68.23 33.88 68.32 33.97 68.42 34.05 68.51 34.13 68.61 34.22 68.7 34.3 68.8 34.38 68.89 34.47 68.99 34.55 69.08 34.63 69.18 34.72 69.27 34.8 69.37 34.88 69.46 34.96 69.56 35.05 69.65 35.13 69.75 35.21 69.84 35.3 69.94 35.38 70.03 35.46 70.13 35.55 70.22 35.63 70.31 35.71 70.41 35.79 70.5 35.88 70.6 35.96 70.69 36.04 70.79 36.13 70.88 36.21 70.98 36.29 71.07 36.38 71.17 36.46 71.26 36.54 71.36 36.63 71.45 36.71 71.55 36.79 71.64 36.88 71.74 36.96 71.83 37.05 71.93 37.13 72.02 37.21 72.12 37.3 72.21 37.38 72.31 37.47 72.4 37.55 72.5 37.63 72.59 37.72 72.69 37.8 72.78 37.89 72.88 37.97 72.97 38.06 73.07 38.14 73.16 38.22 73.26 38.31 73.35 38.39 73.44 38.48 73.54 38.56 73.63 38.64 73.73 38.73 73.82 38.81 73.92 38.9 74.01 38.98 74.11 39.06 74.2 39.15 74.3 39.23 74.39 39.31 74.49 39.4 74.58 39.48 74.68 39.56 74.77 39.64 74.87 39.73 74.96 39.81 75.06 39.89 75.15 39.97 75.25 40.06 75.34 40.14 75.44 40.22 75.53 40.3 75.63 40.39 75.72 40.47 75.82 40.55 75.91 40.63 76.01 40.71 76.1 40.79 76.2 40.87 76.29 40.96 76.39 41.04 76.48 41.12 76.58 41.2 76.67 41.28 76.76 41.36 76.86 41.44 76.95 41.52 77.05 41.6 77.14 41.68 77.24 41.76 77.33 41.84 77.43 41.92 77.52 42.01 77.62 42.09 77.71 42.17 77.81 42.25 77.9 42.33 78 42.41 78.09 42.49 78.19 42.57 78.28 42.65 78.38 42.73 78.47 42.81 78.57 42.89 78.66 42.96 78.76 43.04 78.85 43.12 78.95 43.2 79.04 43.28 79.14 43.36 79.23 43.44 79.33 43.52 79.42 43.6 79.52 43.68 79.61 43.76 79.71 43.84 79.8 43.92 79.89 43.99 79.99 44.07 80.08 44.15 80.18 44.23 80.27 44.31 80.37 44.39 80.46 44.47 80.56 44.54 80.65 44.62 80.75 44.7 80.84 44.78 80.94 44.86 81.03 44.93 81.13 45.01 81.22 45.09 81.32 45.17 81.41 45.25 81.51 45.32 81.6 45.4 81.7 45.48 81.79 45.56 81.89 45.64 81.98 45.71 82.08 45.79 82.17 45.87 82.27 45.95 82.36 46.02 82.46 46.1 82.55 46.18 82.65 46.25 82.74 46.33 82.84 46.41 82.93 46.49 83.03 46.56 83.12 46.64 83.21 46.72 83.31 46.79 83.4 46.87 83.5 46.95 83.59 47.02 83.69 47.1 83.78 47.18 83.88 47.26 83.97 47.33 84.07 47.41 84.16 47.49 84.26 47.56 84.35 47.64 84.45 47.72 84.54 47.79 84.64 47.87 84.73 47.95 84.83 48.02 84.92 48.1 85.02 48.18 85.11 48.25 85.21 48.33 85.3 48.41 85.4 48.48 85.49 48.56 85.59 48.64 85.68 48.72 85.78 48.79 85.87 48.87 85.97 48.95 86.06 49.02 86.16 49.1 86.25 49.18 86.34 49.25 86.44 49.33 86.53 49.41 86.63 49.48 86.72 49.56 86.82 49.64 86.91 49.72 87.01 49.79 87.1 49.87 87.2 49.95 87.29 50.02 87.39 50.1 87.48 50.18 87.58 50.25 87.67 50.33 87.77 50.41 87.86 50.48 87.96 50.56 88.05 50.64 88.15 50.72 88.24 50.79 88.34 50.87 88.43 50.95 88.53 51.03 88.62 51.1 88.72 51.18 88.81 51.26 88.91 51.34 89 51.41 89.1 51.49 89.19 51.57 89.29 51.65 89.38 51.73 89.48 51.8 89.57 51.88 89.66 51.96 89.76 52.04 89.85 52.12 89.95 52.2 90.04 52.27 90.14 52.35 90.23 52.43 90.33 52.51 90.42 52.59 90.52 52.66 90.61 52.74 90.71 52.82 90.8 52.9 90.9 52.98 90.99 53.06 91.09 53.13 91.18 53.21 91.28 53.29 91.37 53.37 91.47 53.44 91.56 53.52 91.66 53.6 91.75 53.68 91.85 53.76 91.94 53.83 92.04 53.91 92.13 53.99 92.23 54.07 92.32 54.15 92.42 54.22 92.51 54.3 92.61 54.38 92.7 54.46 92.79 54.54 92.89 54.61 92.98 54.69 93.08 54.77 93.17 54.85 93.27 54.92 93.36 55 93.46 55.08 93.55 55.16 93.65 55.23 93.74 55.31 93.84 55.39 93.93 55.47 94.03 55.54 94.12 55.62 94.22 55.7 94.31 55.78 94.41 55.85 94.5 55.93 94.6 56.01 94.69 56.09 94.79 56.16 94.88 56.24 94.98 56.32 95.07 56.39 95.17 56.47 95.26 56.55 95.36 56.62 95.45 56.7 95.55 56.78 95.64 56.85 95.74 56.93 95.83 57.01 95.93 57.09 96.02 57.16 96.11 57.24 96.21 57.31 96.3 57.39 96.4 57.47 96.49 57.54 96.59 57.62 96.68 57.7 96.78 57.77 96.87 57.85 96.97 57.93 97.06 58 97.16 58.08 97.25 58.15 97.35 58.23 97.44 58.31 97.54 58.38 97.63 58.46 97.73 58.53 97.82 58.61 97.92 58.69 98.01 58.76 98.11 58.84 98.2 58.91 98.3 58.99 98.39 59.06 98.49 59.14 98.58 59.21 98.68 59.29 98.77 59.36 98.87 59.44 98.96 59.51 99.06 59.59 99.15 59.66 99.24 59.74 99.34 59.82 99.43 59.89 99.53 59.97 99.62 60.04 99.72 60.12 99.81 60.19 99.91 60.26 100 60.34 100.1 60.41 100.19 60.49 100.29 60.56 100.38 60.64 100.48 60.71 100.57 60.79 100.67 60.86 100.76 60.94 100.86 61.01 100.95 61.08 101.05 61.16 101.14 61.23 101.24 61.31 101.33 61.38 101.43 61.45 101.52 61.53 101.62 61.6 101.71 61.68 101.81 61.75 101.9 61.82 102 61.9 102.09 61.97 102.19 62.04 102.28 62.12 102.38 62.19 102.47 62.27 102.56 62.34 102.66 62.41 102.75 62.49 102.85 62.56 102.94 62.63 103.04 62.71 103.13 62.78 103.23 62.85 103.32 62.92 103.42 63 103.51 63.07 103.61 63.14 103.7 63.22 103.8 63.29 103.89 63.36 103.99 63.43 104.08 63.51 104.18 63.58 104.27 63.65 104.37 63.73 104.46 63.8 104.56 63.87 104.65 63.94 104.75 64.01 104.84 64.09 104.94 64.16 105.03 64.23 105.13 64.3 105.22 64.38 105.32 64.45 105.41 64.52 105.51 64.59 105.6 64.66 105.69 64.73 105.79 64.81 105.88 64.88 105.98 64.95 106.07 65.02 106.17 65.09 106.26 65.16 106.36 65.24 106.45 65.31 106.55 65.38 106.64 65.45 106.74 65.52 106.83 65.59 106.93 65.66 107.02 65.73 107.12 65.81 107.21 65.88 107.31 65.95 107.4 66.02 107.5 66.09 107.59 66.16 107.69 66.23 107.78 66.3 107.88 66.37 107.97 66.44 108.07 66.51 108.16 66.58 108.26 66.65 108.35 66.73 108.45 66.8 108.54 66.87 108.64 66.94 108.73 67.01 108.83 67.08 108.92 67.15 109.01 67.22 109.11 67.29 109.2 67.36 109.3 67.43 109.39 67.5 109.49 67.57 109.58 67.64 109.68 67.7 109.77 67.77 109.87 67.84 109.96 67.91 110.06 67.98 110.15 68.05 110.25 68.12 110.34 68.19 110.44 68.26 110.53 68.33 110.63 68.4 110.72 68.47 110.82 68.54 110.91 68.6 111.01 68.67 111.1 68.74 111.2 68.81 111.29 68.88 111.39 68.95 111.48 69.02 111.58 69.08 111.67 69.15 111.77 69.22 111.86 69.29 111.96 69.36 112.05 69.43 112.14 69.49 112.24 69.56 112.33 69.63 112.43 69.7 112.52 69.77 112.62 69.83 112.71 69.9 112.81 69.97 112.9 70.04 113 70.1 113.09 70.17 113.19 70.24 113.28 70.31 113.38 70.37 113.47 70.44 113.57 70.51 113.66 70.57 113.76 70.64 113.85 70.71 113.95 70.78 114.04 70.84 114.14 70.91 114.23 70.98 114.33 71.04 114.42 71.11 114.52 71.18 114.61 71.24 114.71 71.31 114.8 71.37 114.9 71.44 114.99 71.51 115.09 71.57 115.18 71.64 115.28 71.7 115.37 71.77 115.46 71.84 115.56 71.9 115.65 71.97 115.75 72.03 115.84 72.1\"/>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-element-11\">\n",
" <g class=\"color_RGBA{Float32}(0.29803923f0,0.44705883f0,0.6901961f0,1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0\" fill=\"#4C72B0\" id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-element-12\">\n",
" <circle cx=\"79.35\" cy=\"43.07\" r=\"0.3\"/>\n",
" <circle cx=\"78.13\" cy=\"41.93\" r=\"0.3\"/>\n",
" <circle cx=\"108.63\" cy=\"67.47\" r=\"0.3\"/>\n",
" <circle cx=\"80.83\" cy=\"45.45\" r=\"0.3\"/>\n",
" <circle cx=\"73.34\" cy=\"39.1\" r=\"0.3\"/>\n",
" <circle cx=\"80.33\" cy=\"44.99\" r=\"0.3\"/>\n",
" <circle cx=\"52.96\" cy=\"20.74\" r=\"0.3\"/>\n",
" <circle cx=\"110.55\" cy=\"68.98\" r=\"0.3\"/>\n",
" <circle cx=\"67.73\" cy=\"35.12\" r=\"0.3\"/>\n",
" <circle cx=\"71.72\" cy=\"38.24\" r=\"0.3\"/>\n",
" <circle cx=\"59.75\" cy=\"26.08\" r=\"0.3\"/>\n",
" <circle cx=\"85.02\" cy=\"47.65\" r=\"0.3\"/>\n",
" <circle cx=\"79.25\" cy=\"43.08\" r=\"0.3\"/>\n",
" <circle cx=\"59.96\" cy=\"25.59\" r=\"0.3\"/>\n",
" <circle cx=\"86.03\" cy=\"48.74\" r=\"0.3\"/>\n",
" <circle cx=\"78.7\" cy=\"41.64\" r=\"0.3\"/>\n",
" <circle cx=\"103.8\" cy=\"62.78\" r=\"0.3\"/>\n",
" <circle cx=\"80.62\" cy=\"45.06\" r=\"0.3\"/>\n",
" <circle cx=\"76.15\" cy=\"42.1\" r=\"0.3\"/>\n",
" <circle cx=\"77.14\" cy=\"42.47\" r=\"0.3\"/>\n",
" <circle cx=\"78.25\" cy=\"42.18\" r=\"0.3\"/>\n",
" <circle cx=\"104.37\" cy=\"64.16\" r=\"0.3\"/>\n",
" <circle cx=\"63.46\" cy=\"30.91\" r=\"0.3\"/>\n",
" <circle cx=\"102.09\" cy=\"62.41\" r=\"0.3\"/>\n",
" <circle cx=\"56.31\" cy=\"24.58\" r=\"0.3\"/>\n",
" <circle cx=\"65.47\" cy=\"31.89\" r=\"0.3\"/>\n",
" <circle cx=\"64.95\" cy=\"29.9\" r=\"0.3\"/>\n",
" <circle cx=\"88.3\" cy=\"49.78\" r=\"0.3\"/>\n",
" <circle cx=\"71.59\" cy=\"35.72\" r=\"0.3\"/>\n",
" <circle cx=\"65.58\" cy=\"29.56\" r=\"0.3\"/>\n",
" <circle cx=\"65.58\" cy=\"28.99\" r=\"0.3\"/>\n",
" <circle cx=\"106.29\" cy=\"63.6\" r=\"0.3\"/>\n",
" <circle cx=\"78.77\" cy=\"41.29\" r=\"0.3\"/>\n",
" <circle cx=\"102.63\" cy=\"61.46\" r=\"0.3\"/>\n",
" <circle cx=\"62.94\" cy=\"28.08\" r=\"0.3\"/>\n",
" <circle cx=\"90.75\" cy=\"52.32\" r=\"0.3\"/>\n",
" <circle cx=\"94.78\" cy=\"55.51\" r=\"0.3\"/>\n",
" <circle cx=\"76\" cy=\"40.08\" r=\"0.3\"/>\n",
" <circle cx=\"74.03\" cy=\"38.35\" r=\"0.3\"/>\n",
" <circle cx=\"64.52\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"94.07\" cy=\"54.57\" r=\"0.3\"/>\n",
" <circle cx=\"102.13\" cy=\"61.71\" r=\"0.3\"/>\n",
" <circle cx=\"66.07\" cy=\"32.07\" r=\"0.3\"/>\n",
" <circle cx=\"98.59\" cy=\"59.61\" r=\"0.3\"/>\n",
" <circle cx=\"49.44\" cy=\"16.92\" r=\"0.3\"/>\n",
" <circle cx=\"82.32\" cy=\"44.9\" r=\"0.3\"/>\n",
" <circle cx=\"93.7\" cy=\"55.14\" r=\"0.3\"/>\n",
" <circle cx=\"79.37\" cy=\"43.39\" r=\"0.3\"/>\n",
" <circle cx=\"92.14\" cy=\"54.06\" r=\"0.3\"/>\n",
" <circle cx=\"83.27\" cy=\"47.47\" r=\"0.3\"/>\n",
" <circle cx=\"66.32\" cy=\"32.55\" r=\"0.3\"/>\n",
" <circle cx=\"86.81\" cy=\"50.68\" r=\"0.3\"/>\n",
" <circle cx=\"74.01\" cy=\"40.11\" r=\"0.3\"/>\n",
" <circle cx=\"86.53\" cy=\"49.49\" r=\"0.3\"/>\n",
" <circle cx=\"101.45\" cy=\"62.27\" r=\"0.3\"/>\n",
" <circle cx=\"73.22\" cy=\"39.44\" r=\"0.3\"/>\n",
" <circle cx=\"80.17\" cy=\"46.2\" r=\"0.3\"/>\n",
" <circle cx=\"66.45\" cy=\"33.31\" r=\"0.3\"/>\n",
" <circle cx=\"74.71\" cy=\"41.24\" r=\"0.3\"/>\n",
" <circle cx=\"63.2\" cy=\"29.61\" r=\"0.3\"/>\n",
" <circle cx=\"76.42\" cy=\"42.08\" r=\"0.3\"/>\n",
" <circle cx=\"83.36\" cy=\"46.42\" r=\"0.3\"/>\n",
" <circle cx=\"78.92\" cy=\"44.27\" r=\"0.3\"/>\n",
" <circle cx=\"98.51\" cy=\"59.87\" r=\"0.3\"/>\n",
" <circle cx=\"103.5\" cy=\"64.09\" r=\"0.3\"/>\n",
" <circle cx=\"59.26\" cy=\"27.53\" r=\"0.3\"/>\n",
" <circle cx=\"96.56\" cy=\"58.64\" r=\"0.3\"/>\n",
" <circle cx=\"62.95\" cy=\"32.22\" r=\"0.3\"/>\n",
" <circle cx=\"77.31\" cy=\"42.69\" r=\"0.3\"/>\n",
" <circle cx=\"70.56\" cy=\"36.7\" r=\"0.3\"/>\n",
" <circle cx=\"79.26\" cy=\"44.39\" r=\"0.3\"/>\n",
" <circle cx=\"105.4\" cy=\"65.6\" r=\"0.3\"/>\n",
" <circle cx=\"60.5\" cy=\"29.95\" r=\"0.3\"/>\n",
" <circle cx=\"78.84\" cy=\"43.88\" r=\"0.3\"/>\n",
" <circle cx=\"83.67\" cy=\"48.94\" r=\"0.3\"/>\n",
" <circle cx=\"83.52\" cy=\"48.15\" r=\"0.3\"/>\n",
" <circle cx=\"62.96\" cy=\"31.84\" r=\"0.3\"/>\n",
" <circle cx=\"64.54\" cy=\"32.11\" r=\"0.3\"/>\n",
" <circle cx=\"105.67\" cy=\"65.5\" r=\"0.3\"/>\n",
" <circle cx=\"61.98\" cy=\"29.47\" r=\"0.3\"/>\n",
" <circle cx=\"61.86\" cy=\"28.48\" r=\"0.3\"/>\n",
" <circle cx=\"72.29\" cy=\"37.84\" r=\"0.3\"/>\n",
" <circle cx=\"60.86\" cy=\"26.21\" r=\"0.3\"/>\n",
" <circle cx=\"86.76\" cy=\"48.77\" r=\"0.3\"/>\n",
" <circle cx=\"80.85\" cy=\"44.1\" r=\"0.3\"/>\n",
" <circle cx=\"80.7\" cy=\"43.83\" r=\"0.3\"/>\n",
" <circle cx=\"84.63\" cy=\"46.82\" r=\"0.3\"/>\n",
" <circle cx=\"95.51\" cy=\"56.28\" r=\"0.3\"/>\n",
" <circle cx=\"77.25\" cy=\"41.37\" r=\"0.3\"/>\n",
" <circle cx=\"61.86\" cy=\"27.52\" r=\"0.3\"/>\n",
" <circle cx=\"73.73\" cy=\"37.21\" r=\"0.3\"/>\n",
" <circle cx=\"71.19\" cy=\"35.52\" r=\"0.3\"/>\n",
" <circle cx=\"79.79\" cy=\"42.1\" r=\"0.3\"/>\n",
" <circle cx=\"89.95\" cy=\"50.6\" r=\"0.3\"/>\n",
" <circle cx=\"74.13\" cy=\"38.38\" r=\"0.3\"/>\n",
" <circle cx=\"105.44\" cy=\"64.2\" r=\"0.3\"/>\n",
" <circle cx=\"73.08\" cy=\"37.3\" r=\"0.3\"/>\n",
" <circle cx=\"78.2\" cy=\"41.52\" r=\"0.3\"/>\n",
" <circle cx=\"79.1\" cy=\"43.39\" r=\"0.3\"/>\n",
" <circle cx=\"71.68\" cy=\"35.55\" r=\"0.3\"/>\n",
" <circle cx=\"106.8\" cy=\"65.4\" r=\"0.3\"/>\n",
" <circle cx=\"81.95\" cy=\"45.48\" r=\"0.3\"/>\n",
" <circle cx=\"60.06\" cy=\"26.16\" r=\"0.3\"/>\n",
" <circle cx=\"61.72\" cy=\"26.83\" r=\"0.3\"/>\n",
" <circle cx=\"65.91\" cy=\"29.36\" r=\"0.3\"/>\n",
" <circle cx=\"90.84\" cy=\"51.52\" r=\"0.3\"/>\n",
" <circle cx=\"112.62\" cy=\"69.68\" r=\"0.3\"/>\n",
" <circle cx=\"83.86\" cy=\"46.98\" r=\"0.3\"/>\n",
" <circle cx=\"101.52\" cy=\"61.98\" r=\"0.3\"/>\n",
" <circle cx=\"61.51\" cy=\"28.81\" r=\"0.3\"/>\n",
" <circle cx=\"86.5\" cy=\"49.83\" r=\"0.3\"/>\n",
" <circle cx=\"83.67\" cy=\"48.28\" r=\"0.3\"/>\n",
" <circle cx=\"88.11\" cy=\"51.73\" r=\"0.3\"/>\n",
" <circle cx=\"78.77\" cy=\"43.61\" r=\"0.3\"/>\n",
" <circle cx=\"60.32\" cy=\"28.03\" r=\"0.3\"/>\n",
" <circle cx=\"94.88\" cy=\"56.48\" r=\"0.3\"/>\n",
" <circle cx=\"87.77\" cy=\"51.28\" r=\"0.3\"/>\n",
" <circle cx=\"94.65\" cy=\"57.06\" r=\"0.3\"/>\n",
" <circle cx=\"73.71\" cy=\"41.15\" r=\"0.3\"/>\n",
" <circle cx=\"75.25\" cy=\"41.5\" r=\"0.3\"/>\n",
" <circle cx=\"70.34\" cy=\"36.89\" r=\"0.3\"/>\n",
" <circle cx=\"82.81\" cy=\"48.36\" r=\"0.3\"/>\n",
" <circle cx=\"56.14\" cy=\"24.09\" r=\"0.3\"/>\n",
" <circle cx=\"87.65\" cy=\"50.92\" r=\"0.3\"/>\n",
" <circle cx=\"64.58\" cy=\"31.6\" r=\"0.3\"/>\n",
" <circle cx=\"82.36\" cy=\"47.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.12\" cy=\"40.17\" r=\"0.3\"/>\n",
" <circle cx=\"75.33\" cy=\"40.68\" r=\"0.3\"/>\n",
" <circle cx=\"79.16\" cy=\"44.2\" r=\"0.3\"/>\n",
" <circle cx=\"79.14\" cy=\"43.13\" r=\"0.3\"/>\n",
" <circle cx=\"100.19\" cy=\"60.82\" r=\"0.3\"/>\n",
" <circle cx=\"96.59\" cy=\"58.58\" r=\"0.3\"/>\n",
" <circle cx=\"70.11\" cy=\"36.83\" r=\"0.3\"/>\n",
" <circle cx=\"82.62\" cy=\"47.28\" r=\"0.3\"/>\n",
" <circle cx=\"72.96\" cy=\"39.92\" r=\"0.3\"/>\n",
" <circle cx=\"60.64\" cy=\"27.89\" r=\"0.3\"/>\n",
" <circle cx=\"67.76\" cy=\"33.31\" r=\"0.3\"/>\n",
" <circle cx=\"79.99\" cy=\"44.09\" r=\"0.3\"/>\n",
" <circle cx=\"57.53\" cy=\"23.73\" r=\"0.3\"/>\n",
" <circle cx=\"82.41\" cy=\"44.75\" r=\"0.3\"/>\n",
" <circle cx=\"56.23\" cy=\"20.96\" r=\"0.3\"/>\n",
" <circle cx=\"93.26\" cy=\"54.22\" r=\"0.3\"/>\n",
" <circle cx=\"82.03\" cy=\"45.25\" r=\"0.3\"/>\n",
" <circle cx=\"71.41\" cy=\"34.36\" r=\"0.3\"/>\n",
" <circle cx=\"88.61\" cy=\"50.31\" r=\"0.3\"/>\n",
" <circle cx=\"72.23\" cy=\"35.36\" r=\"0.3\"/>\n",
" <circle cx=\"88.79\" cy=\"49.29\" r=\"0.3\"/>\n",
" <circle cx=\"97.72\" cy=\"58.05\" r=\"0.3\"/>\n",
" <circle cx=\"74.01\" cy=\"38.18\" r=\"0.3\"/>\n",
" <circle cx=\"95.22\" cy=\"56.19\" r=\"0.3\"/>\n",
" <circle cx=\"87.26\" cy=\"49.51\" r=\"0.3\"/>\n",
" <circle cx=\"76.46\" cy=\"41.36\" r=\"0.3\"/>\n",
" <circle cx=\"93.21\" cy=\"54.74\" r=\"0.3\"/>\n",
" <circle cx=\"75.09\" cy=\"41.44\" r=\"0.3\"/>\n",
" <circle cx=\"81.02\" cy=\"45.22\" r=\"0.3\"/>\n",
" <circle cx=\"75.51\" cy=\"40.73\" r=\"0.3\"/>\n",
" <circle cx=\"70.61\" cy=\"35.73\" r=\"0.3\"/>\n",
" <circle cx=\"79.19\" cy=\"42.93\" r=\"0.3\"/>\n",
" <circle cx=\"96.08\" cy=\"57.17\" r=\"0.3\"/>\n",
" <circle cx=\"74.76\" cy=\"40.03\" r=\"0.3\"/>\n",
" <circle cx=\"91.68\" cy=\"53.89\" r=\"0.3\"/>\n",
" <circle cx=\"82.5\" cy=\"47.55\" r=\"0.3\"/>\n",
" <circle cx=\"54.35\" cy=\"22.2\" r=\"0.3\"/>\n",
" <circle cx=\"82.26\" cy=\"45.5\" r=\"0.3\"/>\n",
" <circle cx=\"72.72\" cy=\"37.43\" r=\"0.3\"/>\n",
" <circle cx=\"66.91\" cy=\"31.76\" r=\"0.3\"/>\n",
" <circle cx=\"86.4\" cy=\"49.28\" r=\"0.3\"/>\n",
" <circle cx=\"102.34\" cy=\"61.93\" r=\"0.3\"/>\n",
" <circle cx=\"96.26\" cy=\"57.73\" r=\"0.3\"/>\n",
" <circle cx=\"62.88\" cy=\"30.9\" r=\"0.3\"/>\n",
" <circle cx=\"71.53\" cy=\"36.76\" r=\"0.3\"/>\n",
" <circle cx=\"89.44\" cy=\"52.08\" r=\"0.3\"/>\n",
" <circle cx=\"62.27\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"79.21\" cy=\"42.75\" r=\"0.3\"/>\n",
" <circle cx=\"76.35\" cy=\"40.22\" r=\"0.3\"/>\n",
" <circle cx=\"78.13\" cy=\"41.98\" r=\"0.3\"/>\n",
" <circle cx=\"86.87\" cy=\"49.09\" r=\"0.3\"/>\n",
" <circle cx=\"64.87\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"80.44\" cy=\"43.17\" r=\"0.3\"/>\n",
" <circle cx=\"82.5\" cy=\"44.95\" r=\"0.3\"/>\n",
" <circle cx=\"67.65\" cy=\"32.32\" r=\"0.3\"/>\n",
" <circle cx=\"83.19\" cy=\"45.05\" r=\"0.3\"/>\n",
" <circle cx=\"102.77\" cy=\"61.83\" r=\"0.3\"/>\n",
" <circle cx=\"70.28\" cy=\"34.99\" r=\"0.3\"/>\n",
" <circle cx=\"98.65\" cy=\"59.35\" r=\"0.3\"/>\n",
" <circle cx=\"82.92\" cy=\"46.47\" r=\"0.3\"/>\n",
" <circle cx=\"72.99\" cy=\"38.4\" r=\"0.3\"/>\n",
" <circle cx=\"95.85\" cy=\"57.16\" r=\"0.3\"/>\n",
" <circle cx=\"73.41\" cy=\"39.76\" r=\"0.3\"/>\n",
" <circle cx=\"87.15\" cy=\"50.49\" r=\"0.3\"/>\n",
" <circle cx=\"87.49\" cy=\"51.52\" r=\"0.3\"/>\n",
" <circle cx=\"66.74\" cy=\"34.27\" r=\"0.3\"/>\n",
" <circle cx=\"83.93\" cy=\"47.82\" r=\"0.3\"/>\n",
" <circle cx=\"80.87\" cy=\"46.42\" r=\"0.3\"/>\n",
" <circle cx=\"91.79\" cy=\"55.28\" r=\"0.3\"/>\n",
" <circle cx=\"82.84\" cy=\"47.98\" r=\"0.3\"/>\n",
" <circle cx=\"63.07\" cy=\"31.5\" r=\"0.3\"/>\n",
" <circle cx=\"85.29\" cy=\"49.84\" r=\"0.3\"/>\n",
" <circle cx=\"78.73\" cy=\"44.1\" r=\"0.3\"/>\n",
" <circle cx=\"97.32\" cy=\"59.71\" r=\"0.3\"/>\n",
" <circle cx=\"44.8\" cy=\"15.17\" r=\"0.3\"/>\n",
" <circle cx=\"84.75\" cy=\"48.57\" r=\"0.3\"/>\n",
" <circle cx=\"97.77\" cy=\"59.77\" r=\"0.3\"/>\n",
" <circle cx=\"51.23\" cy=\"20.48\" r=\"0.3\"/>\n",
" <circle cx=\"98.85\" cy=\"60.14\" r=\"0.3\"/>\n",
" <circle cx=\"69.89\" cy=\"36.54\" r=\"0.3\"/>\n",
" <circle cx=\"101.62\" cy=\"62.89\" r=\"0.3\"/>\n",
" <circle cx=\"74.13\" cy=\"41.71\" r=\"0.3\"/>\n",
" <circle cx=\"61.03\" cy=\"30.1\" r=\"0.3\"/>\n",
" <circle cx=\"60.5\" cy=\"27.99\" r=\"0.3\"/>\n",
" <circle cx=\"92.48\" cy=\"54.7\" r=\"0.3\"/>\n",
" <circle cx=\"71.99\" cy=\"37.87\" r=\"0.3\"/>\n",
" <circle cx=\"62.26\" cy=\"28.83\" r=\"0.3\"/>\n",
" <circle cx=\"70.12\" cy=\"35.06\" r=\"0.3\"/>\n",
" <circle cx=\"81.22\" cy=\"44.31\" r=\"0.3\"/>\n",
" <circle cx=\"76.16\" cy=\"39.94\" r=\"0.3\"/>\n",
" <circle cx=\"84.96\" cy=\"47.43\" r=\"0.3\"/>\n",
" <circle cx=\"73.31\" cy=\"37.5\" r=\"0.3\"/>\n",
" <circle cx=\"98.93\" cy=\"59.7\" r=\"0.3\"/>\n",
" <circle cx=\"58.45\" cy=\"24.73\" r=\"0.3\"/>\n",
" <circle cx=\"77.32\" cy=\"40.9\" r=\"0.3\"/>\n",
" <circle cx=\"71.44\" cy=\"35.71\" r=\"0.3\"/>\n",
" <circle cx=\"74.33\" cy=\"37.36\" r=\"0.3\"/>\n",
" <circle cx=\"94.47\" cy=\"54.87\" r=\"0.3\"/>\n",
" <circle cx=\"101.17\" cy=\"60.72\" r=\"0.3\"/>\n",
" <circle cx=\"90.95\" cy=\"53.7\" r=\"0.3\"/>\n",
" <circle cx=\"77.9\" cy=\"42.54\" r=\"0.3\"/>\n",
" <circle cx=\"62.99\" cy=\"29.17\" r=\"0.3\"/>\n",
" <circle cx=\"87.96\" cy=\"50.59\" r=\"0.3\"/>\n",
" <circle cx=\"65.57\" cy=\"31.07\" r=\"0.3\"/>\n",
" <circle cx=\"57.22\" cy=\"22.63\" r=\"0.3\"/>\n",
" <circle cx=\"86.61\" cy=\"47.78\" r=\"0.3\"/>\n",
" <circle cx=\"79.97\" cy=\"42.35\" r=\"0.3\"/>\n",
" <circle cx=\"87.07\" cy=\"48.4\" r=\"0.3\"/>\n",
" <circle cx=\"80.34\" cy=\"43.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.1\" cy=\"37.36\" r=\"0.3\"/>\n",
" <circle cx=\"100.52\" cy=\"60.23\" r=\"0.3\"/>\n",
" <circle cx=\"87.52\" cy=\"49.7\" r=\"0.3\"/>\n",
" <circle cx=\"100.24\" cy=\"60.7\" r=\"0.3\"/>\n",
" <circle cx=\"71.22\" cy=\"37.02\" r=\"0.3\"/>\n",
" <circle cx=\"66.9\" cy=\"32.82\" r=\"0.3\"/>\n",
" <circle cx=\"94.61\" cy=\"56.46\" r=\"0.3\"/>\n",
" <circle cx=\"67.68\" cy=\"33.56\" r=\"0.3\"/>\n",
" <circle cx=\"69.17\" cy=\"34.35\" r=\"0.3\"/>\n",
" <circle cx=\"62\" cy=\"27.65\" r=\"0.3\"/>\n",
" <circle cx=\"81.04\" cy=\"43.29\" r=\"0.3\"/>\n",
" <circle cx=\"98.75\" cy=\"58.5\" r=\"0.3\"/>\n",
" <circle cx=\"76.47\" cy=\"40.38\" r=\"0.3\"/>\n",
" <circle cx=\"89.67\" cy=\"51.82\" r=\"0.3\"/>\n",
" <circle cx=\"65.69\" cy=\"31.03\" r=\"0.3\"/>\n",
" <circle cx=\"84.03\" cy=\"47.89\" r=\"0.3\"/>\n",
" <circle cx=\"84.82\" cy=\"47.43\" r=\"0.3\"/>\n",
" <circle cx=\"89.14\" cy=\"51.21\" r=\"0.3\"/>\n",
" <circle cx=\"101.55\" cy=\"62.24\" r=\"0.3\"/>\n",
" <circle cx=\"89.37\" cy=\"53.38\" r=\"0.3\"/>\n",
" <circle cx=\"80.98\" cy=\"46.86\" r=\"0.3\"/>\n",
" <circle cx=\"72.29\" cy=\"38.77\" r=\"0.3\"/>\n",
" <circle cx=\"77.14\" cy=\"42.87\" r=\"0.3\"/>\n",
" <circle cx=\"80.61\" cy=\"45.54\" r=\"0.3\"/>\n",
" <circle cx=\"58.08\" cy=\"26.57\" r=\"0.3\"/>\n",
" <circle cx=\"73.1\" cy=\"38.42\" r=\"0.3\"/>\n",
" <circle cx=\"61.8\" cy=\"27.83\" r=\"0.3\"/>\n",
" <circle cx=\"79.98\" cy=\"43.09\" r=\"0.3\"/>\n",
" <circle cx=\"88.47\" cy=\"50.46\" r=\"0.3\"/>\n",
" <circle cx=\"79.84\" cy=\"43.54\" r=\"0.3\"/>\n",
" <circle cx=\"85.64\" cy=\"48.37\" r=\"0.3\"/>\n",
" <circle cx=\"60.55\" cy=\"26.69\" r=\"0.3\"/>\n",
" <circle cx=\"87.93\" cy=\"50.68\" r=\"0.3\"/>\n",
" <circle cx=\"70.04\" cy=\"34.62\" r=\"0.3\"/>\n",
" <circle cx=\"73.87\" cy=\"37.37\" r=\"0.3\"/>\n",
" <circle cx=\"74.2\" cy=\"38.24\" r=\"0.3\"/>\n",
" <circle cx=\"83.58\" cy=\"45.52\" r=\"0.3\"/>\n",
" <circle cx=\"84.23\" cy=\"46.42\" r=\"0.3\"/>\n",
" <circle cx=\"93.35\" cy=\"54.04\" r=\"0.3\"/>\n",
" <circle cx=\"78.86\" cy=\"42.27\" r=\"0.3\"/>\n",
" <circle cx=\"76.61\" cy=\"41.82\" r=\"0.3\"/>\n",
" <circle cx=\"55.57\" cy=\"21.03\" r=\"0.3\"/>\n",
" <circle cx=\"84.33\" cy=\"45.55\" r=\"0.3\"/>\n",
" <circle cx=\"90.62\" cy=\"51.41\" r=\"0.3\"/>\n",
" <circle cx=\"87.35\" cy=\"48.83\" r=\"0.3\"/>\n",
" <circle cx=\"73.36\" cy=\"37.2\" r=\"0.3\"/>\n",
" <circle cx=\"71.78\" cy=\"35.13\" r=\"0.3\"/>\n",
" <circle cx=\"64.1\" cy=\"27.67\" r=\"0.3\"/>\n",
" <circle cx=\"105.1\" cy=\"62.77\" r=\"0.3\"/>\n",
" <circle cx=\"106.82\" cy=\"65.13\" r=\"0.3\"/>\n",
" <circle cx=\"86.85\" cy=\"50.04\" r=\"0.3\"/>\n",
" <circle cx=\"74.75\" cy=\"39.73\" r=\"0.3\"/>\n",
" <circle cx=\"103.93\" cy=\"63.85\" r=\"0.3\"/>\n",
" <circle cx=\"51.79\" cy=\"20.16\" r=\"0.3\"/>\n",
" <circle cx=\"77.51\" cy=\"43.14\" r=\"0.3\"/>\n",
" <circle cx=\"58.43\" cy=\"24.25\" r=\"0.3\"/>\n",
" <circle cx=\"89.39\" cy=\"50.58\" r=\"0.3\"/>\n",
" <circle cx=\"74.18\" cy=\"37.77\" r=\"0.3\"/>\n",
" <circle cx=\"106.46\" cy=\"65.04\" r=\"0.3\"/>\n",
" <circle cx=\"85.16\" cy=\"49.29\" r=\"0.3\"/>\n",
" <circle cx=\"75.02\" cy=\"40.32\" r=\"0.3\"/>\n",
" <circle cx=\"79.79\" cy=\"43.75\" r=\"0.3\"/>\n",
" <circle cx=\"81.65\" cy=\"46.68\" r=\"0.3\"/>\n",
" <circle cx=\"63.93\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"89.14\" cy=\"51.48\" r=\"0.3\"/>\n",
" <circle cx=\"58.37\" cy=\"24.46\" r=\"0.3\"/>\n",
" <circle cx=\"82.31\" cy=\"46.59\" r=\"0.3\"/>\n",
" <circle cx=\"85.95\" cy=\"48.88\" r=\"0.3\"/>\n",
" <circle cx=\"82.91\" cy=\"45.73\" r=\"0.3\"/>\n",
" <circle cx=\"92.38\" cy=\"53.99\" r=\"0.3\"/>\n",
" <circle cx=\"81.69\" cy=\"45.54\" r=\"0.3\"/>\n",
" <circle cx=\"81.56\" cy=\"46.72\" r=\"0.3\"/>\n",
" <circle cx=\"66.83\" cy=\"33.82\" r=\"0.3\"/>\n",
" <circle cx=\"93.55\" cy=\"55.68\" r=\"0.3\"/>\n",
" <circle cx=\"58.27\" cy=\"24.99\" r=\"0.3\"/>\n",
" <circle cx=\"72.7\" cy=\"37.93\" r=\"0.3\"/>\n",
" <circle cx=\"106.56\" cy=\"65.49\" r=\"0.3\"/>\n",
" <circle cx=\"107.23\" cy=\"66.83\" r=\"0.3\"/>\n",
" <circle cx=\"64.41\" cy=\"31.88\" r=\"0.3\"/>\n",
" <circle cx=\"80.83\" cy=\"46.27\" r=\"0.3\"/>\n",
" <circle cx=\"55.34\" cy=\"23.59\" r=\"0.3\"/>\n",
" <circle cx=\"66.75\" cy=\"32.69\" r=\"0.3\"/>\n",
" <circle cx=\"89.1\" cy=\"51.18\" r=\"0.3\"/>\n",
" <circle cx=\"82.9\" cy=\"46.19\" r=\"0.3\"/>\n",
" <circle cx=\"103.87\" cy=\"64\" r=\"0.3\"/>\n",
" <circle cx=\"76.44\" cy=\"43.08\" r=\"0.3\"/>\n",
" <circle cx=\"72.51\" cy=\"39.65\" r=\"0.3\"/>\n",
" <circle cx=\"93.16\" cy=\"56.05\" r=\"0.3\"/>\n",
" <circle cx=\"63.04\" cy=\"31.54\" r=\"0.3\"/>\n",
" <circle cx=\"82.28\" cy=\"46.52\" r=\"0.3\"/>\n",
" <circle cx=\"84.35\" cy=\"48.61\" r=\"0.3\"/>\n",
" <circle cx=\"69.61\" cy=\"36.18\" r=\"0.3\"/>\n",
" <circle cx=\"83.29\" cy=\"47.46\" r=\"0.3\"/>\n",
" <circle cx=\"82.18\" cy=\"46.57\" r=\"0.3\"/>\n",
" <circle cx=\"86.08\" cy=\"50.1\" r=\"0.3\"/>\n",
" <circle cx=\"93.25\" cy=\"56.62\" r=\"0.3\"/>\n",
" <circle cx=\"73.11\" cy=\"40.82\" r=\"0.3\"/>\n",
" <circle cx=\"64.05\" cy=\"32.09\" r=\"0.3\"/>\n",
" <circle cx=\"72.38\" cy=\"39.98\" r=\"0.3\"/>\n",
" <circle cx=\"83.27\" cy=\"47.56\" r=\"0.3\"/>\n",
" <circle cx=\"78.35\" cy=\"44.42\" r=\"0.3\"/>\n",
" <circle cx=\"78.78\" cy=\"44.04\" r=\"0.3\"/>\n",
" <circle cx=\"60.97\" cy=\"28.36\" r=\"0.3\"/>\n",
" <circle cx=\"51.55\" cy=\"18.95\" r=\"0.3\"/>\n",
" <circle cx=\"100.32\" cy=\"60.14\" r=\"0.3\"/>\n",
" <circle cx=\"86.95\" cy=\"49.77\" r=\"0.3\"/>\n",
" <circle cx=\"73.19\" cy=\"38.24\" r=\"0.3\"/>\n",
" <circle cx=\"74.38\" cy=\"39.08\" r=\"0.3\"/>\n",
" <circle cx=\"73.12\" cy=\"38.19\" r=\"0.3\"/>\n",
" <circle cx=\"101.28\" cy=\"61.49\" r=\"0.3\"/>\n",
" <circle cx=\"93.07\" cy=\"55.52\" r=\"0.3\"/>\n",
" <circle cx=\"46.43\" cy=\"14.95\" r=\"0.3\"/>\n",
" <circle cx=\"88.62\" cy=\"50.96\" r=\"0.3\"/>\n",
" <circle cx=\"65.41\" cy=\"31.14\" r=\"0.3\"/>\n",
" <circle cx=\"82.83\" cy=\"46.24\" r=\"0.3\"/>\n",
" <circle cx=\"61.25\" cy=\"26.82\" r=\"0.3\"/>\n",
" <circle cx=\"76.68\" cy=\"40.36\" r=\"0.3\"/>\n",
" <circle cx=\"79.58\" cy=\"42.31\" r=\"0.3\"/>\n",
" <circle cx=\"61.85\" cy=\"25.95\" r=\"0.3\"/>\n",
" <circle cx=\"86.25\" cy=\"46.91\" r=\"0.3\"/>\n",
" <circle cx=\"75.44\" cy=\"37.46\" r=\"0.3\"/>\n",
" <circle cx=\"75.81\" cy=\"37.7\" r=\"0.3\"/>\n",
" <circle cx=\"93.97\" cy=\"54.78\" r=\"0.3\"/>\n",
" <circle cx=\"66.82\" cy=\"29.83\" r=\"0.3\"/>\n",
" <circle cx=\"108.44\" cy=\"65.31\" r=\"0.3\"/>\n",
" <circle cx=\"107.01\" cy=\"65.59\" r=\"0.3\"/>\n",
" <circle cx=\"75.71\" cy=\"39.78\" r=\"0.3\"/>\n",
" <circle cx=\"68.01\" cy=\"33.01\" r=\"0.3\"/>\n",
" <circle cx=\"72.99\" cy=\"37.08\" r=\"0.3\"/>\n",
" <circle cx=\"82.03\" cy=\"44.25\" r=\"0.3\"/>\n",
" <circle cx=\"64.22\" cy=\"28.25\" r=\"0.3\"/>\n",
" <circle cx=\"101.95\" cy=\"60.51\" r=\"0.3\"/>\n",
" <circle cx=\"85.64\" cy=\"48.11\" r=\"0.3\"/>\n",
" <circle cx=\"60.38\" cy=\"25.4\" r=\"0.3\"/>\n",
" <circle cx=\"113.91\" cy=\"70.79\" r=\"0.3\"/>\n",
" <circle cx=\"88.69\" cy=\"52.05\" r=\"0.3\"/>\n",
" <circle cx=\"78.45\" cy=\"42.79\" r=\"0.3\"/>\n",
" <circle cx=\"81.78\" cy=\"45.53\" r=\"0.3\"/>\n",
" <circle cx=\"56.14\" cy=\"22.84\" r=\"0.3\"/>\n",
" <circle cx=\"74.76\" cy=\"38.65\" r=\"0.3\"/>\n",
" <circle cx=\"82.01\" cy=\"45.84\" r=\"0.3\"/>\n",
" <circle cx=\"104.43\" cy=\"63.92\" r=\"0.3\"/>\n",
" <circle cx=\"58.04\" cy=\"24.42\" r=\"0.3\"/>\n",
" <circle cx=\"82.12\" cy=\"45.78\" r=\"0.3\"/>\n",
" <circle cx=\"95.03\" cy=\"56.25\" r=\"0.3\"/>\n",
" <circle cx=\"76.71\" cy=\"41.98\" r=\"0.3\"/>\n",
" <circle cx=\"78.33\" cy=\"42.35\" r=\"0.3\"/>\n",
" <circle cx=\"74.52\" cy=\"38.83\" r=\"0.3\"/>\n",
" <circle cx=\"77.57\" cy=\"42.78\" r=\"0.3\"/>\n",
" <circle cx=\"96.23\" cy=\"57.39\" r=\"0.3\"/>\n",
" <circle cx=\"86.67\" cy=\"50.79\" r=\"0.3\"/>\n",
" <circle cx=\"78.96\" cy=\"43.73\" r=\"0.3\"/>\n",
" <circle cx=\"65.31\" cy=\"31.53\" r=\"0.3\"/>\n",
" <circle cx=\"78.02\" cy=\"43.53\" r=\"0.3\"/>\n",
" <circle cx=\"95.43\" cy=\"56.79\" r=\"0.3\"/>\n",
" <circle cx=\"50.57\" cy=\"18.14\" r=\"0.3\"/>\n",
" <circle cx=\"79.74\" cy=\"42.88\" r=\"0.3\"/>\n",
" <circle cx=\"81.51\" cy=\"44.5\" r=\"0.3\"/>\n",
" <circle cx=\"70.86\" cy=\"35.7\" r=\"0.3\"/>\n",
" <circle cx=\"96.96\" cy=\"58.13\" r=\"0.3\"/>\n",
" <circle cx=\"102.85\" cy=\"62.88\" r=\"0.3\"/>\n",
" <circle cx=\"88.35\" cy=\"51.9\" r=\"0.3\"/>\n",
" <circle cx=\"75.8\" cy=\"41.85\" r=\"0.3\"/>\n",
" <circle cx=\"85.91\" cy=\"49.85\" r=\"0.3\"/>\n",
" <circle cx=\"58.46\" cy=\"26.32\" r=\"0.3\"/>\n",
" <circle cx=\"69.41\" cy=\"35.05\" r=\"0.3\"/>\n",
" <circle cx=\"90.93\" cy=\"53.74\" r=\"0.3\"/>\n",
" <circle cx=\"94.71\" cy=\"56.71\" r=\"0.3\"/>\n",
" <circle cx=\"53.58\" cy=\"22.36\" r=\"0.3\"/>\n",
" <circle cx=\"56.58\" cy=\"23.3\" r=\"0.3\"/>\n",
" <circle cx=\"59.94\" cy=\"25\" r=\"0.3\"/>\n",
" <circle cx=\"92.97\" cy=\"53.27\" r=\"0.3\"/>\n",
" <circle cx=\"65.68\" cy=\"30.08\" r=\"0.3\"/>\n",
" <circle cx=\"115.94\" cy=\"72.11\" r=\"0.3\"/>\n",
" <circle cx=\"97.17\" cy=\"57.94\" r=\"0.3\"/>\n",
" <circle cx=\"75.58\" cy=\"40.64\" r=\"0.3\"/>\n",
" <circle cx=\"74.71\" cy=\"39.51\" r=\"0.3\"/>\n",
" <circle cx=\"81.68\" cy=\"45.25\" r=\"0.3\"/>\n",
" <circle cx=\"71.75\" cy=\"36.89\" r=\"0.3\"/>\n",
" <circle cx=\"79.91\" cy=\"44.23\" r=\"0.3\"/>\n",
" <circle cx=\"57.75\" cy=\"23.93\" r=\"0.3\"/>\n",
" <circle cx=\"98.56\" cy=\"58.44\" r=\"0.3\"/>\n",
" <circle cx=\"81.27\" cy=\"46.41\" r=\"0.3\"/>\n",
" <circle cx=\"87.64\" cy=\"51.12\" r=\"0.3\"/>\n",
" <circle cx=\"86.04\" cy=\"49.17\" r=\"0.3\"/>\n",
" <circle cx=\"77.2\" cy=\"42.9\" r=\"0.3\"/>\n",
" <circle cx=\"90.48\" cy=\"53\" r=\"0.3\"/>\n",
" <circle cx=\"62.7\" cy=\"29.85\" r=\"0.3\"/>\n",
" <circle cx=\"76.5\" cy=\"42.96\" r=\"0.3\"/>\n",
" <circle cx=\"67\" cy=\"32.4\" r=\"0.3\"/>\n",
" <circle cx=\"92.67\" cy=\"54.12\" r=\"0.3\"/>\n",
" <circle cx=\"66.85\" cy=\"32.26\" r=\"0.3\"/>\n",
" <circle cx=\"70.02\" cy=\"35.32\" r=\"0.3\"/>\n",
" <circle cx=\"93.54\" cy=\"55.35\" r=\"0.3\"/>\n",
" <circle cx=\"71.12\" cy=\"35.61\" r=\"0.3\"/>\n",
" <circle cx=\"71.48\" cy=\"35.99\" r=\"0.3\"/>\n",
" <circle cx=\"88.62\" cy=\"50.32\" r=\"0.3\"/>\n",
" <circle cx=\"81.04\" cy=\"44.48\" r=\"0.3\"/>\n",
" <circle cx=\"82.63\" cy=\"45.46\" r=\"0.3\"/>\n",
" <circle cx=\"88.83\" cy=\"51.64\" r=\"0.3\"/>\n",
" <circle cx=\"90.03\" cy=\"52.6\" r=\"0.3\"/>\n",
" <circle cx=\"104.13\" cy=\"64.38\" r=\"0.3\"/>\n",
" <circle cx=\"85.05\" cy=\"49.39\" r=\"0.3\"/>\n",
" <circle cx=\"71.29\" cy=\"38.38\" r=\"0.3\"/>\n",
" <circle cx=\"73.42\" cy=\"39.93\" r=\"0.3\"/>\n",
" <circle cx=\"71.28\" cy=\"37.85\" r=\"0.3\"/>\n",
" <circle cx=\"52.92\" cy=\"20.9\" r=\"0.3\"/>\n",
" <circle cx=\"85.97\" cy=\"49.55\" r=\"0.3\"/>\n",
" <circle cx=\"93.9\" cy=\"55.63\" r=\"0.3\"/>\n",
" <circle cx=\"60.67\" cy=\"28.16\" r=\"0.3\"/>\n",
" <circle cx=\"61.59\" cy=\"27.55\" r=\"0.3\"/>\n",
" <circle cx=\"79.3\" cy=\"42.55\" r=\"0.3\"/>\n",
" <circle cx=\"70.94\" cy=\"34.94\" r=\"0.3\"/>\n",
" <circle cx=\"111.25\" cy=\"68.59\" r=\"0.3\"/>\n",
" <circle cx=\"65.58\" cy=\"31.35\" r=\"0.3\"/>\n",
" <circle cx=\"98.64\" cy=\"59.05\" r=\"0.3\"/>\n",
" <circle cx=\"75.16\" cy=\"41.56\" r=\"0.3\"/>\n",
" <circle cx=\"87.96\" cy=\"51.18\" r=\"0.3\"/>\n",
" <circle cx=\"93.48\" cy=\"56.07\" r=\"0.3\"/>\n",
" <circle cx=\"80.52\" cy=\"45.81\" r=\"0.3\"/>\n",
" <circle cx=\"73.94\" cy=\"40.78\" r=\"0.3\"/>\n",
" <circle cx=\"83.58\" cy=\"47.68\" r=\"0.3\"/>\n",
" <circle cx=\"54.42\" cy=\"22.2\" r=\"0.3\"/>\n",
" <circle cx=\"82.53\" cy=\"46.94\" r=\"0.3\"/>\n",
" <circle cx=\"88.73\" cy=\"52.12\" r=\"0.3\"/>\n",
" <circle cx=\"68.08\" cy=\"33.93\" r=\"0.3\"/>\n",
" <circle cx=\"58.87\" cy=\"25.23\" r=\"0.3\"/>\n",
" <circle cx=\"72.85\" cy=\"36.52\" r=\"0.3\"/>\n",
" <circle cx=\"81.09\" cy=\"43.59\" r=\"0.3\"/>\n",
" <circle cx=\"86.95\" cy=\"49.26\" r=\"0.3\"/>\n",
" <circle cx=\"87.06\" cy=\"49.91\" r=\"0.3\"/>\n",
" <circle cx=\"86\" cy=\"48.41\" r=\"0.3\"/>\n",
" <circle cx=\"78.66\" cy=\"43.18\" r=\"0.3\"/>\n",
" <circle cx=\"85.32\" cy=\"48.16\" r=\"0.3\"/>\n",
" <circle cx=\"82.45\" cy=\"45.93\" r=\"0.3\"/>\n",
" <circle cx=\"85.88\" cy=\"49.52\" r=\"0.3\"/>\n",
" <circle cx=\"68.27\" cy=\"34.05\" r=\"0.3\"/>\n",
" <circle cx=\"80.36\" cy=\"44.6\" r=\"0.3\"/>\n",
" <circle cx=\"86.43\" cy=\"49.39\" r=\"0.3\"/>\n",
" <circle cx=\"69.36\" cy=\"36.02\" r=\"0.3\"/>\n",
" <circle cx=\"74.97\" cy=\"39.24\" r=\"0.3\"/>\n",
" <circle cx=\"67.3\" cy=\"33.17\" r=\"0.3\"/>\n",
" <circle cx=\"67.87\" cy=\"32.64\" r=\"0.3\"/>\n",
" <circle cx=\"75.7\" cy=\"38.53\" r=\"0.3\"/>\n",
" <circle cx=\"93.32\" cy=\"53.67\" r=\"0.3\"/>\n",
" <circle cx=\"74.11\" cy=\"37.37\" r=\"0.3\"/>\n",
" <circle cx=\"82.44\" cy=\"44.42\" r=\"0.3\"/>\n",
" <circle cx=\"75.1\" cy=\"38.07\" r=\"0.3\"/>\n",
" <circle cx=\"84.39\" cy=\"45.94\" r=\"0.3\"/>\n",
" <circle cx=\"74.5\" cy=\"37.38\" r=\"0.3\"/>\n",
" <circle cx=\"94.75\" cy=\"55.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.12\" cy=\"38.25\" r=\"0.3\"/>\n",
" <circle cx=\"86.23\" cy=\"48.01\" r=\"0.3\"/>\n",
" <circle cx=\"107.02\" cy=\"65.81\" r=\"0.3\"/>\n",
" <circle cx=\"75.83\" cy=\"40.56\" r=\"0.3\"/>\n",
" <circle cx=\"62.9\" cy=\"28.65\" r=\"0.3\"/>\n",
" <circle cx=\"77.66\" cy=\"40.9\" r=\"0.3\"/>\n",
" <circle cx=\"89.94\" cy=\"51.95\" r=\"0.3\"/>\n",
" <circle cx=\"81.94\" cy=\"45\" r=\"0.3\"/>\n",
" <circle cx=\"98.68\" cy=\"59.29\" r=\"0.3\"/>\n",
" <circle cx=\"76.12\" cy=\"41.63\" r=\"0.3\"/>\n",
" <circle cx=\"68.06\" cy=\"34.54\" r=\"0.3\"/>\n",
" <circle cx=\"61\" cy=\"27.02\" r=\"0.3\"/>\n",
" <circle cx=\"87.08\" cy=\"49.43\" r=\"0.3\"/>\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-3ae3cce40fb04070a695cc69730bb4b5-element-13\">\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\">-0.0004</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\">-0.0002</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\">0.0000</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\">0.0002</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\">0.0004</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-3ae3cce40fb04070a695cc69730bb4b5-element-14\">\n",
" <text x=\"8.81\" y=\"40.86\" text-anchor=\"middle\" dy=\"0.35em\" transform=\"rotate(-90, 8.81, 42.86)\">Exchange Rate</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-3ae3cce40fb04070a695cc69730bb4b5-element-5\">\n",
" <path d=\"M24.76,5 L 136.42 5 136.42 80.72 24.76 80.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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\n",
" stroke=\"none\"\n",
" fill=\"#000000\"\n",
" stroke-width=\"0.3\"\n",
" font-size=\"3.88\"\n",
"\n",
" id=\"fig-7865cc7f889f442fae2ef857aac32ba7\">\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-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-7865cc7f889f442fae2ef857aac32ba7-element-2\">\n",
" <text x=\"80.59\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">c₂ / c₁</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-7865cc7f889f442fae2ef857aac32ba7-element-3\">\n",
" <text x=\"-107.81\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0007</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0006</text>\n",
" <text x=\"-53.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0005</text>\n",
" <text x=\"-27.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0004</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0003</text>\n",
" <text x=\"26.76\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0002</text>\n",
" <text x=\"53.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0001</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0000</text>\n",
" <text x=\"107.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0001</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0002</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0003</text>\n",
" <text x=\"188.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0004</text>\n",
" <text x=\"215.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0005</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0006</text>\n",
" <text x=\"268.99\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0007</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"-75.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00058</text>\n",
" <text x=\"-70.13\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00056</text>\n",
" <text x=\"-64.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00054</text>\n",
" <text x=\"-59.36\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00052</text>\n",
" <text x=\"-53.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"-48.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00048</text>\n",
" <text x=\"-43.21\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00046</text>\n",
" <text x=\"-37.83\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00044</text>\n",
" <text x=\"-32.45\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00042</text>\n",
" <text x=\"-27.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"-21.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00038</text>\n",
" <text x=\"-16.3\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00036</text>\n",
" <text x=\"-10.91\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00034</text>\n",
" <text x=\"-5.53\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00032</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"5.23\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00028</text>\n",
" <text x=\"10.62\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00026</text>\n",
" <text x=\"16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00024</text>\n",
" <text x=\"21.38\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00022</text>\n",
" <text x=\"26.76\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"32.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00018</text>\n",
" <text x=\"37.53\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00016</text>\n",
" <text x=\"42.91\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00014</text>\n",
" <text x=\"48.3\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00012</text>\n",
" <text x=\"53.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"59.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00008</text>\n",
" <text x=\"64.44\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00006</text>\n",
" <text x=\"69.83\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00004</text>\n",
" <text x=\"75.21\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00002</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"85.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00002</text>\n",
" <text x=\"91.36\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00004</text>\n",
" <text x=\"96.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00006</text>\n",
" <text x=\"102.12\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00008</text>\n",
" <text x=\"107.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"112.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00012</text>\n",
" <text x=\"118.27\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00014</text>\n",
" <text x=\"123.66\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00016</text>\n",
" <text x=\"129.04\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00018</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"139.8\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00022</text>\n",
" <text x=\"145.19\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00024</text>\n",
" <text x=\"150.57\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00026</text>\n",
" <text x=\"155.95\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00028</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"166.72\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00032</text>\n",
" <text x=\"172.1\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00034</text>\n",
" <text x=\"177.48\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00036</text>\n",
" <text x=\"182.87\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00038</text>\n",
" <text x=\"188.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"193.63\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00042</text>\n",
" <text x=\"199.02\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00044</text>\n",
" <text x=\"204.4\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00046</text>\n",
" <text x=\"209.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00048</text>\n",
" <text x=\"215.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"220.55\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00052</text>\n",
" <text x=\"225.93\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00054</text>\n",
" <text x=\"231.31\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00056</text>\n",
" <text x=\"236.69\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00058</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00060</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.0006</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.0003</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.0000</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.0003</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.0006</text>\n",
" <text x=\"-80.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"-67.43\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00055</text>\n",
" <text x=\"-53.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"-40.52\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00045</text>\n",
" <text x=\"-27.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"-13.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00035</text>\n",
" <text x=\"-0.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"13.31\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00025</text>\n",
" <text x=\"26.76\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"40.22\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00015</text>\n",
" <text x=\"53.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"67.14\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00005</text>\n",
" <text x=\"80.59\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"94.05\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00005</text>\n",
" <text x=\"107.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"120.96\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00015</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"147.88\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00025</text>\n",
" <text x=\"161.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"174.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00035</text>\n",
" <text x=\"188.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"201.71\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00045</text>\n",
" <text x=\"215.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"228.62\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00055</text>\n",
" <text x=\"242.08\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00060</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-7865cc7f889f442fae2ef857aac32ba7-element-5)\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-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-7865cc7f889f442fae2ef857aac32ba7-element-6\">\n",
" <rect x=\"24.76\" y=\"5\" width=\"111.66\" height=\"75.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-7\">\n",
" <path fill=\"none\" d=\"M24.76,168.36 L 136.42 168.36\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,150.43 L 136.42 150.43\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,114.57 L 136.42 114.57\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,96.64 L 136.42 96.64\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M24.76,-10.93 L 136.42 -10.93\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-28.86 L 136.42 -28.86\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-64.72 L 136.42 -64.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-82.64 L 136.42 -82.64\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,150.43 L 136.42 150.43\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,145.95 L 136.42 145.95\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,141.47 L 136.42 141.47\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,136.98 L 136.42 136.98\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,128.02 L 136.42 128.02\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,123.54 L 136.42 123.54\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,119.05 L 136.42 119.05\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,114.57 L 136.42 114.57\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,110.09 L 136.42 110.09\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,105.61 L 136.42 105.61\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,101.13 L 136.42 101.13\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,96.64 L 136.42 96.64\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,92.16 L 136.42 92.16\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,87.68 L 136.42 87.68\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,83.2 L 136.42 83.2\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,74.23 L 136.42 74.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,69.75 L 136.42 69.75\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,65.27 L 136.42 65.27\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,56.3 L 136.42 56.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,51.82 L 136.42 51.82\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,47.34 L 136.42 47.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,38.38 L 136.42 38.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,33.89 L 136.42 33.89\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,29.41 L 136.42 29.41\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,20.45 L 136.42 20.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,15.96 L 136.42 15.96\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,11.48 L 136.42 11.48\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,2.52 L 136.42 2.52\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-1.96 L 136.42 -1.96\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-6.45 L 136.42 -6.45\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-10.93 L 136.42 -10.93\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-15.41 L 136.42 -15.41\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-19.89 L 136.42 -19.89\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-24.38 L 136.42 -24.38\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-28.86 L 136.42 -28.86\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-33.34 L 136.42 -33.34\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-37.82 L 136.42 -37.82\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-42.3 L 136.42 -42.3\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-51.27 L 136.42 -51.27\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-55.75 L 136.42 -55.75\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-60.23 L 136.42 -60.23\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-64.72 L 136.42 -64.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,222.14 L 136.42 222.14\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-136.43 L 136.42 -136.43\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,150.43 L 136.42 150.43\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,145.95 L 136.42 145.95\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,141.47 L 136.42 141.47\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,136.98 L 136.42 136.98\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,132.5 L 136.42 132.5\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,128.02 L 136.42 128.02\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,123.54 L 136.42 123.54\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,119.05 L 136.42 119.05\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,114.57 L 136.42 114.57\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,110.09 L 136.42 110.09\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,105.61 L 136.42 105.61\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,101.13 L 136.42 101.13\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,96.64 L 136.42 96.64\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,92.16 L 136.42 92.16\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,87.68 L 136.42 87.68\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,83.2 L 136.42 83.2\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,78.71 L 136.42 78.71\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,74.23 L 136.42 74.23\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,69.75 L 136.42 69.75\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,65.27 L 136.42 65.27\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,60.79 L 136.42 60.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,56.3 L 136.42 56.3\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,51.82 L 136.42 51.82\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,47.34 L 136.42 47.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,42.86 L 136.42 42.86\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,38.38 L 136.42 38.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,33.89 L 136.42 33.89\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,29.41 L 136.42 29.41\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,24.93 L 136.42 24.93\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,20.45 L 136.42 20.45\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,15.96 L 136.42 15.96\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,11.48 L 136.42 11.48\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,7 L 136.42 7\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,2.52 L 136.42 2.52\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-1.96 L 136.42 -1.96\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-6.45 L 136.42 -6.45\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-10.93 L 136.42 -10.93\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-15.41 L 136.42 -15.41\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-19.89 L 136.42 -19.89\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-24.38 L 136.42 -24.38\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-28.86 L 136.42 -28.86\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-33.34 L 136.42 -33.34\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-37.82 L 136.42 -37.82\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-42.3 L 136.42 -42.3\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-46.79 L 136.42 -46.79\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-51.27 L 136.42 -51.27\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-55.75 L 136.42 -55.75\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-60.23 L 136.42 -60.23\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M24.76,-64.72 L 136.42 -64.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-8\">\n",
" <path fill=\"none\" d=\"M-107.81,5 L -107.81 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-53.98,5 L -53.98 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.06,5 L -27.06 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"1.0\" visibility=\"visible\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M188.25,5 L 188.25 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.16,5 L 215.16 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M268.99,5 L 268.99 80.72\" gadfly:scale=\"1.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-75.51,5 L -75.51 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-70.13,5 L -70.13 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-64.74,5 L -64.74 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-59.36,5 L -59.36 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-53.98,5 L -53.98 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-48.59,5 L -48.59 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-43.21,5 L -43.21 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-37.83,5 L -37.83 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-32.45,5 L -32.45 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.06,5 L -27.06 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-21.68,5 L -21.68 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-16.3,5 L -16.3 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-10.91,5 L -10.91 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-5.53,5 L -5.53 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M5.23,5 L 5.23 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M10.62,5 L 10.62 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M16,5 L 16 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M21.38,5 L 21.38 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M32.15,5 L 32.15 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M37.53,5 L 37.53 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M42.91,5 L 42.91 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M48.3,5 L 48.3 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M59.06,5 L 59.06 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M64.44,5 L 64.44 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M69.83,5 L 69.83 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M75.21,5 L 75.21 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M85.98,5 L 85.98 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M91.36,5 L 91.36 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M96.74,5 L 96.74 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M102.12,5 L 102.12 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M112.89,5 L 112.89 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M118.27,5 L 118.27 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M123.66,5 L 123.66 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M129.04,5 L 129.04 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M139.8,5 L 139.8 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M145.19,5 L 145.19 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M150.57,5 L 150.57 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M155.95,5 L 155.95 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M166.72,5 L 166.72 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M172.1,5 L 172.1 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M177.48,5 L 177.48 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M182.87,5 L 182.87 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M188.25,5 L 188.25 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M193.63,5 L 193.63 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M199.02,5 L 199.02 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M204.4,5 L 204.4 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M209.78,5 L 209.78 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.16,5 L 215.16 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M220.55,5 L 220.55 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M225.93,5 L 225.93 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M231.31,5 L 231.31 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M236.69,5 L 236.69 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"10.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"0.5\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-80.89,5 L -80.89 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-67.43,5 L -67.43 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-53.98,5 L -53.98 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-40.52,5 L -40.52 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-27.06,5 L -27.06 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-13.61,5 L -13.61 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M-0.15,5 L -0.15 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M13.31,5 L 13.31 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M26.76,5 L 26.76 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M40.22,5 L 40.22 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M53.68,5 L 53.68 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M67.14,5 L 67.14 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M80.59,5 L 80.59 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M94.05,5 L 94.05 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M107.51,5 L 107.51 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M120.96,5 L 120.96 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M147.88,5 L 147.88 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M161.34,5 L 161.34 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M174.79,5 L 174.79 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M188.25,5 L 188.25 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M201.71,5 L 201.71 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M215.16,5 L 215.16 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M228.62,5 L 228.62 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" <path fill=\"none\" d=\"M242.08,5 L 242.08 80.72\" gadfly:scale=\"5.0\" visibility=\"hidden\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-9\">\n",
" <g stroke-width=\"0.3\" fill=\"#000000\" fill-opacity=\"0.000\" class=\"geometry\" stroke-dasharray=\"none\" stroke=\"#4C72B0\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-10\">\n",
" <path fill=\"none\" d=\"M44.8,14.06 L 44.89 14.13 44.99 14.21 45.08 14.28 45.18 14.36 45.27 14.43 45.37 14.51 45.46 14.58 45.56 14.66 45.65 14.73 45.75 14.81 45.84 14.88 45.94 14.96 46.03 15.04 46.13 15.11 46.22 15.19 46.32 15.26 46.41 15.34 46.51 15.41 46.6 15.49 46.7 15.57 46.79 15.64 46.89 15.72 46.98 15.8 47.08 15.87 47.17 15.95 47.27 16.02 47.36 16.1 47.46 16.18 47.55 16.25 47.65 16.33 47.74 16.41 47.83 16.48 47.93 16.56 48.02 16.64 48.12 16.71 48.21 16.79 48.31 16.87 48.4 16.95 48.5 17.02 48.59 17.1 48.69 17.18 48.78 17.25 48.88 17.33 48.97 17.41 49.07 17.49 49.16 17.56 49.26 17.64 49.35 17.72 49.45 17.8 49.54 17.87 49.64 17.95 49.73 18.03 49.83 18.11 49.92 18.18 50.02 18.26 50.11 18.34 50.21 18.42 50.3 18.5 50.4 18.57 50.49 18.65 50.59 18.73 50.68 18.81 50.78 18.89 50.87 18.97 50.96 19.04 51.06 19.12 51.15 19.2 51.25 19.28 51.34 19.36 51.44 19.44 51.53 19.52 51.63 19.59 51.72 19.67 51.82 19.75 51.91 19.83 52.01 19.91 52.1 19.99 52.2 20.07 52.29 20.15 52.39 20.22 52.48 20.3 52.58 20.38 52.67 20.46 52.77 20.54 52.86 20.62 52.96 20.7 53.05 20.78 53.15 20.86 53.24 20.94 53.34 21.02 53.43 21.1 53.53 21.18 53.62 21.26 53.72 21.33 53.81 21.41 53.91 21.49 54 21.57 54.09 21.65 54.19 21.73 54.28 21.81 54.38 21.89 54.47 21.97 54.57 22.05 54.66 22.13 54.76 22.21 54.85 22.29 54.95 22.37 55.04 22.45 55.14 22.53 55.23 22.61 55.33 22.69 55.42 22.77 55.52 22.85 55.61 22.93 55.71 23.01 55.8 23.09 55.9 23.17 55.99 23.26 56.09 23.34 56.18 23.42 56.28 23.5 56.37 23.58 56.47 23.66 56.56 23.74 56.66 23.82 56.75 23.9 56.85 23.98 56.94 24.06 57.04 24.14 57.13 24.22 57.23 24.3 57.32 24.38 57.41 24.46 57.51 24.54 57.6 24.62 57.7 24.7 57.79 24.78 57.89 24.87 57.98 24.95 58.08 25.03 58.17 25.11 58.27 25.19 58.36 25.27 58.46 25.35 58.55 25.43 58.65 25.51 58.74 25.6 58.84 25.68 58.93 25.76 59.03 25.84 59.12 25.92 59.22 26 59.31 26.08 59.41 26.17 59.5 26.25 59.6 26.33 59.69 26.41 59.79 26.49 59.88 26.57 59.98 26.66 60.07 26.74 60.17 26.82 60.26 26.9 60.36 26.98 60.45 27.07 60.54 27.15 60.64 27.23 60.73 27.31 60.83 27.39 60.92 27.48 61.02 27.56 61.11 27.64 61.21 27.72 61.3 27.8 61.4 27.89 61.49 27.97 61.59 28.05 61.68 28.13 61.78 28.22 61.87 28.3 61.97 28.38 62.06 28.46 62.16 28.55 62.25 28.63 62.35 28.71 62.44 28.8 62.54 28.88 62.63 28.96 62.73 29.04 62.82 29.13 62.92 29.21 63.01 29.29 63.11 29.38 63.2 29.46 63.3 29.54 63.39 29.63 63.49 29.71 63.58 29.79 63.68 29.87 63.77 29.96 63.86 30.04 63.96 30.12 64.05 30.21 64.15 30.29 64.24 30.37 64.34 30.46 64.43 30.54 64.53 30.63 64.62 30.71 64.72 30.79 64.81 30.88 64.91 30.96 65 31.04 65.1 31.13 65.19 31.21 65.29 31.29 65.38 31.38 65.48 31.46 65.57 31.54 65.67 31.63 65.76 31.71 65.86 31.8 65.95 31.88 66.05 31.96 66.14 32.05 66.24 32.13 66.33 32.21 66.43 32.3 66.52 32.38 66.62 32.47 66.71 32.55 66.81 32.63 66.9 32.72 66.99 32.8 67.09 32.88 67.18 32.97 67.28 33.05 67.37 33.13 67.47 33.22 67.56 33.3 67.66 33.38 67.75 33.47 67.85 33.55 67.94 33.63 68.04 33.72 68.13 33.8 68.23 33.88 68.32 33.97 68.42 34.05 68.51 34.13 68.61 34.22 68.7 34.3 68.8 34.38 68.89 34.47 68.99 34.55 69.08 34.63 69.18 34.72 69.27 34.8 69.37 34.88 69.46 34.96 69.56 35.05 69.65 35.13 69.75 35.21 69.84 35.3 69.94 35.38 70.03 35.46 70.13 35.55 70.22 35.63 70.31 35.71 70.41 35.79 70.5 35.88 70.6 35.96 70.69 36.04 70.79 36.13 70.88 36.21 70.98 36.29 71.07 36.38 71.17 36.46 71.26 36.54 71.36 36.63 71.45 36.71 71.55 36.79 71.64 36.88 71.74 36.96 71.83 37.05 71.93 37.13 72.02 37.21 72.12 37.3 72.21 37.38 72.31 37.47 72.4 37.55 72.5 37.63 72.59 37.72 72.69 37.8 72.78 37.89 72.88 37.97 72.97 38.06 73.07 38.14 73.16 38.22 73.26 38.31 73.35 38.39 73.44 38.48 73.54 38.56 73.63 38.64 73.73 38.73 73.82 38.81 73.92 38.9 74.01 38.98 74.11 39.06 74.2 39.15 74.3 39.23 74.39 39.31 74.49 39.4 74.58 39.48 74.68 39.56 74.77 39.64 74.87 39.73 74.96 39.81 75.06 39.89 75.15 39.97 75.25 40.06 75.34 40.14 75.44 40.22 75.53 40.3 75.63 40.39 75.72 40.47 75.82 40.55 75.91 40.63 76.01 40.71 76.1 40.79 76.2 40.87 76.29 40.96 76.39 41.04 76.48 41.12 76.58 41.2 76.67 41.28 76.76 41.36 76.86 41.44 76.95 41.52 77.05 41.6 77.14 41.68 77.24 41.76 77.33 41.84 77.43 41.92 77.52 42.01 77.62 42.09 77.71 42.17 77.81 42.25 77.9 42.33 78 42.41 78.09 42.49 78.19 42.57 78.28 42.65 78.38 42.73 78.47 42.81 78.57 42.89 78.66 42.96 78.76 43.04 78.85 43.12 78.95 43.2 79.04 43.28 79.14 43.36 79.23 43.44 79.33 43.52 79.42 43.6 79.52 43.68 79.61 43.76 79.71 43.84 79.8 43.92 79.89 43.99 79.99 44.07 80.08 44.15 80.18 44.23 80.27 44.31 80.37 44.39 80.46 44.47 80.56 44.54 80.65 44.62 80.75 44.7 80.84 44.78 80.94 44.86 81.03 44.93 81.13 45.01 81.22 45.09 81.32 45.17 81.41 45.25 81.51 45.32 81.6 45.4 81.7 45.48 81.79 45.56 81.89 45.64 81.98 45.71 82.08 45.79 82.17 45.87 82.27 45.95 82.36 46.02 82.46 46.1 82.55 46.18 82.65 46.25 82.74 46.33 82.84 46.41 82.93 46.49 83.03 46.56 83.12 46.64 83.21 46.72 83.31 46.79 83.4 46.87 83.5 46.95 83.59 47.02 83.69 47.1 83.78 47.18 83.88 47.26 83.97 47.33 84.07 47.41 84.16 47.49 84.26 47.56 84.35 47.64 84.45 47.72 84.54 47.79 84.64 47.87 84.73 47.95 84.83 48.02 84.92 48.1 85.02 48.18 85.11 48.25 85.21 48.33 85.3 48.41 85.4 48.48 85.49 48.56 85.59 48.64 85.68 48.72 85.78 48.79 85.87 48.87 85.97 48.95 86.06 49.02 86.16 49.1 86.25 49.18 86.34 49.25 86.44 49.33 86.53 49.41 86.63 49.48 86.72 49.56 86.82 49.64 86.91 49.72 87.01 49.79 87.1 49.87 87.2 49.95 87.29 50.02 87.39 50.1 87.48 50.18 87.58 50.25 87.67 50.33 87.77 50.41 87.86 50.48 87.96 50.56 88.05 50.64 88.15 50.72 88.24 50.79 88.34 50.87 88.43 50.95 88.53 51.03 88.62 51.1 88.72 51.18 88.81 51.26 88.91 51.34 89 51.41 89.1 51.49 89.19 51.57 89.29 51.65 89.38 51.73 89.48 51.8 89.57 51.88 89.66 51.96 89.76 52.04 89.85 52.12 89.95 52.2 90.04 52.27 90.14 52.35 90.23 52.43 90.33 52.51 90.42 52.59 90.52 52.66 90.61 52.74 90.71 52.82 90.8 52.9 90.9 52.98 90.99 53.06 91.09 53.13 91.18 53.21 91.28 53.29 91.37 53.37 91.47 53.44 91.56 53.52 91.66 53.6 91.75 53.68 91.85 53.76 91.94 53.83 92.04 53.91 92.13 53.99 92.23 54.07 92.32 54.15 92.42 54.22 92.51 54.3 92.61 54.38 92.7 54.46 92.79 54.54 92.89 54.61 92.98 54.69 93.08 54.77 93.17 54.85 93.27 54.92 93.36 55 93.46 55.08 93.55 55.16 93.65 55.23 93.74 55.31 93.84 55.39 93.93 55.47 94.03 55.54 94.12 55.62 94.22 55.7 94.31 55.78 94.41 55.85 94.5 55.93 94.6 56.01 94.69 56.09 94.79 56.16 94.88 56.24 94.98 56.32 95.07 56.39 95.17 56.47 95.26 56.55 95.36 56.62 95.45 56.7 95.55 56.78 95.64 56.85 95.74 56.93 95.83 57.01 95.93 57.09 96.02 57.16 96.11 57.24 96.21 57.31 96.3 57.39 96.4 57.47 96.49 57.54 96.59 57.62 96.68 57.7 96.78 57.77 96.87 57.85 96.97 57.93 97.06 58 97.16 58.08 97.25 58.15 97.35 58.23 97.44 58.31 97.54 58.38 97.63 58.46 97.73 58.53 97.82 58.61 97.92 58.69 98.01 58.76 98.11 58.84 98.2 58.91 98.3 58.99 98.39 59.06 98.49 59.14 98.58 59.21 98.68 59.29 98.77 59.36 98.87 59.44 98.96 59.51 99.06 59.59 99.15 59.66 99.24 59.74 99.34 59.82 99.43 59.89 99.53 59.97 99.62 60.04 99.72 60.12 99.81 60.19 99.91 60.26 100 60.34 100.1 60.41 100.19 60.49 100.29 60.56 100.38 60.64 100.48 60.71 100.57 60.79 100.67 60.86 100.76 60.94 100.86 61.01 100.95 61.08 101.05 61.16 101.14 61.23 101.24 61.31 101.33 61.38 101.43 61.45 101.52 61.53 101.62 61.6 101.71 61.68 101.81 61.75 101.9 61.82 102 61.9 102.09 61.97 102.19 62.04 102.28 62.12 102.38 62.19 102.47 62.27 102.56 62.34 102.66 62.41 102.75 62.49 102.85 62.56 102.94 62.63 103.04 62.71 103.13 62.78 103.23 62.85 103.32 62.92 103.42 63 103.51 63.07 103.61 63.14 103.7 63.22 103.8 63.29 103.89 63.36 103.99 63.43 104.08 63.51 104.18 63.58 104.27 63.65 104.37 63.73 104.46 63.8 104.56 63.87 104.65 63.94 104.75 64.01 104.84 64.09 104.94 64.16 105.03 64.23 105.13 64.3 105.22 64.38 105.32 64.45 105.41 64.52 105.51 64.59 105.6 64.66 105.69 64.73 105.79 64.81 105.88 64.88 105.98 64.95 106.07 65.02 106.17 65.09 106.26 65.16 106.36 65.24 106.45 65.31 106.55 65.38 106.64 65.45 106.74 65.52 106.83 65.59 106.93 65.66 107.02 65.73 107.12 65.81 107.21 65.88 107.31 65.95 107.4 66.02 107.5 66.09 107.59 66.16 107.69 66.23 107.78 66.3 107.88 66.37 107.97 66.44 108.07 66.51 108.16 66.58 108.26 66.65 108.35 66.73 108.45 66.8 108.54 66.87 108.64 66.94 108.73 67.01 108.83 67.08 108.92 67.15 109.01 67.22 109.11 67.29 109.2 67.36 109.3 67.43 109.39 67.5 109.49 67.57 109.58 67.64 109.68 67.7 109.77 67.77 109.87 67.84 109.96 67.91 110.06 67.98 110.15 68.05 110.25 68.12 110.34 68.19 110.44 68.26 110.53 68.33 110.63 68.4 110.72 68.47 110.82 68.54 110.91 68.6 111.01 68.67 111.1 68.74 111.2 68.81 111.29 68.88 111.39 68.95 111.48 69.02 111.58 69.08 111.67 69.15 111.77 69.22 111.86 69.29 111.96 69.36 112.05 69.43 112.14 69.49 112.24 69.56 112.33 69.63 112.43 69.7 112.52 69.77 112.62 69.83 112.71 69.9 112.81 69.97 112.9 70.04 113 70.1 113.09 70.17 113.19 70.24 113.28 70.31 113.38 70.37 113.47 70.44 113.57 70.51 113.66 70.57 113.76 70.64 113.85 70.71 113.95 70.78 114.04 70.84 114.14 70.91 114.23 70.98 114.33 71.04 114.42 71.11 114.52 71.18 114.61 71.24 114.71 71.31 114.8 71.37 114.9 71.44 114.99 71.51 115.09 71.57 115.18 71.64 115.28 71.7 115.37 71.77 115.46 71.84 115.56 71.9 115.65 71.97 115.75 72.03 115.84 72.1\"/>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-11\">\n",
" <g class=\"color_RGBA{Float32}(0.29803923f0,0.44705883f0,0.6901961f0,1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0\" fill=\"#4C72B0\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-12\">\n",
" <circle cx=\"79.35\" cy=\"43.07\" r=\"0.3\"/>\n",
" <circle cx=\"78.13\" cy=\"41.93\" r=\"0.3\"/>\n",
" <circle cx=\"108.63\" cy=\"67.47\" r=\"0.3\"/>\n",
" <circle cx=\"80.83\" cy=\"45.45\" r=\"0.3\"/>\n",
" <circle cx=\"73.34\" cy=\"39.1\" r=\"0.3\"/>\n",
" <circle cx=\"80.33\" cy=\"44.99\" r=\"0.3\"/>\n",
" <circle cx=\"52.96\" cy=\"20.74\" r=\"0.3\"/>\n",
" <circle cx=\"110.55\" cy=\"68.98\" r=\"0.3\"/>\n",
" <circle cx=\"67.73\" cy=\"35.12\" r=\"0.3\"/>\n",
" <circle cx=\"71.72\" cy=\"38.24\" r=\"0.3\"/>\n",
" <circle cx=\"59.75\" cy=\"26.08\" r=\"0.3\"/>\n",
" <circle cx=\"85.02\" cy=\"47.65\" r=\"0.3\"/>\n",
" <circle cx=\"79.25\" cy=\"43.08\" r=\"0.3\"/>\n",
" <circle cx=\"59.96\" cy=\"25.59\" r=\"0.3\"/>\n",
" <circle cx=\"86.03\" cy=\"48.74\" r=\"0.3\"/>\n",
" <circle cx=\"78.7\" cy=\"41.64\" r=\"0.3\"/>\n",
" <circle cx=\"103.8\" cy=\"62.78\" r=\"0.3\"/>\n",
" <circle cx=\"80.62\" cy=\"45.06\" r=\"0.3\"/>\n",
" <circle cx=\"76.15\" cy=\"42.1\" r=\"0.3\"/>\n",
" <circle cx=\"77.14\" cy=\"42.47\" r=\"0.3\"/>\n",
" <circle cx=\"78.25\" cy=\"42.18\" r=\"0.3\"/>\n",
" <circle cx=\"104.37\" cy=\"64.16\" r=\"0.3\"/>\n",
" <circle cx=\"63.46\" cy=\"30.91\" r=\"0.3\"/>\n",
" <circle cx=\"102.09\" cy=\"62.41\" r=\"0.3\"/>\n",
" <circle cx=\"56.31\" cy=\"24.58\" r=\"0.3\"/>\n",
" <circle cx=\"65.47\" cy=\"31.89\" r=\"0.3\"/>\n",
" <circle cx=\"64.95\" cy=\"29.9\" r=\"0.3\"/>\n",
" <circle cx=\"88.3\" cy=\"49.78\" r=\"0.3\"/>\n",
" <circle cx=\"71.59\" cy=\"35.72\" r=\"0.3\"/>\n",
" <circle cx=\"65.58\" cy=\"29.56\" r=\"0.3\"/>\n",
" <circle cx=\"65.58\" cy=\"28.99\" r=\"0.3\"/>\n",
" <circle cx=\"106.29\" cy=\"63.6\" r=\"0.3\"/>\n",
" <circle cx=\"78.77\" cy=\"41.29\" r=\"0.3\"/>\n",
" <circle cx=\"102.63\" cy=\"61.46\" r=\"0.3\"/>\n",
" <circle cx=\"62.94\" cy=\"28.08\" r=\"0.3\"/>\n",
" <circle cx=\"90.75\" cy=\"52.32\" r=\"0.3\"/>\n",
" <circle cx=\"94.78\" cy=\"55.51\" r=\"0.3\"/>\n",
" <circle cx=\"76\" cy=\"40.08\" r=\"0.3\"/>\n",
" <circle cx=\"74.03\" cy=\"38.35\" r=\"0.3\"/>\n",
" <circle cx=\"64.52\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"94.07\" cy=\"54.57\" r=\"0.3\"/>\n",
" <circle cx=\"102.13\" cy=\"61.71\" r=\"0.3\"/>\n",
" <circle cx=\"66.07\" cy=\"32.07\" r=\"0.3\"/>\n",
" <circle cx=\"98.59\" cy=\"59.61\" r=\"0.3\"/>\n",
" <circle cx=\"49.44\" cy=\"16.92\" r=\"0.3\"/>\n",
" <circle cx=\"82.32\" cy=\"44.9\" r=\"0.3\"/>\n",
" <circle cx=\"93.7\" cy=\"55.14\" r=\"0.3\"/>\n",
" <circle cx=\"79.37\" cy=\"43.39\" r=\"0.3\"/>\n",
" <circle cx=\"92.14\" cy=\"54.06\" r=\"0.3\"/>\n",
" <circle cx=\"83.27\" cy=\"47.47\" r=\"0.3\"/>\n",
" <circle cx=\"66.32\" cy=\"32.55\" r=\"0.3\"/>\n",
" <circle cx=\"86.81\" cy=\"50.68\" r=\"0.3\"/>\n",
" <circle cx=\"74.01\" cy=\"40.11\" r=\"0.3\"/>\n",
" <circle cx=\"86.53\" cy=\"49.49\" r=\"0.3\"/>\n",
" <circle cx=\"101.45\" cy=\"62.27\" r=\"0.3\"/>\n",
" <circle cx=\"73.22\" cy=\"39.44\" r=\"0.3\"/>\n",
" <circle cx=\"80.17\" cy=\"46.2\" r=\"0.3\"/>\n",
" <circle cx=\"66.45\" cy=\"33.31\" r=\"0.3\"/>\n",
" <circle cx=\"74.71\" cy=\"41.24\" r=\"0.3\"/>\n",
" <circle cx=\"63.2\" cy=\"29.61\" r=\"0.3\"/>\n",
" <circle cx=\"76.42\" cy=\"42.08\" r=\"0.3\"/>\n",
" <circle cx=\"83.36\" cy=\"46.42\" r=\"0.3\"/>\n",
" <circle cx=\"78.92\" cy=\"44.27\" r=\"0.3\"/>\n",
" <circle cx=\"98.51\" cy=\"59.87\" r=\"0.3\"/>\n",
" <circle cx=\"103.5\" cy=\"64.09\" r=\"0.3\"/>\n",
" <circle cx=\"59.26\" cy=\"27.53\" r=\"0.3\"/>\n",
" <circle cx=\"96.56\" cy=\"58.64\" r=\"0.3\"/>\n",
" <circle cx=\"62.95\" cy=\"32.22\" r=\"0.3\"/>\n",
" <circle cx=\"77.31\" cy=\"42.69\" r=\"0.3\"/>\n",
" <circle cx=\"70.56\" cy=\"36.7\" r=\"0.3\"/>\n",
" <circle cx=\"79.26\" cy=\"44.39\" r=\"0.3\"/>\n",
" <circle cx=\"105.4\" cy=\"65.6\" r=\"0.3\"/>\n",
" <circle cx=\"60.5\" cy=\"29.95\" r=\"0.3\"/>\n",
" <circle cx=\"78.84\" cy=\"43.88\" r=\"0.3\"/>\n",
" <circle cx=\"83.67\" cy=\"48.94\" r=\"0.3\"/>\n",
" <circle cx=\"83.52\" cy=\"48.15\" r=\"0.3\"/>\n",
" <circle cx=\"62.96\" cy=\"31.84\" r=\"0.3\"/>\n",
" <circle cx=\"64.54\" cy=\"32.11\" r=\"0.3\"/>\n",
" <circle cx=\"105.67\" cy=\"65.5\" r=\"0.3\"/>\n",
" <circle cx=\"61.98\" cy=\"29.47\" r=\"0.3\"/>\n",
" <circle cx=\"61.86\" cy=\"28.48\" r=\"0.3\"/>\n",
" <circle cx=\"72.29\" cy=\"37.84\" r=\"0.3\"/>\n",
" <circle cx=\"60.86\" cy=\"26.21\" r=\"0.3\"/>\n",
" <circle cx=\"86.76\" cy=\"48.77\" r=\"0.3\"/>\n",
" <circle cx=\"80.85\" cy=\"44.1\" r=\"0.3\"/>\n",
" <circle cx=\"80.7\" cy=\"43.83\" r=\"0.3\"/>\n",
" <circle cx=\"84.63\" cy=\"46.82\" r=\"0.3\"/>\n",
" <circle cx=\"95.51\" cy=\"56.28\" r=\"0.3\"/>\n",
" <circle cx=\"77.25\" cy=\"41.37\" r=\"0.3\"/>\n",
" <circle cx=\"61.86\" cy=\"27.52\" r=\"0.3\"/>\n",
" <circle cx=\"73.73\" cy=\"37.21\" r=\"0.3\"/>\n",
" <circle cx=\"71.19\" cy=\"35.52\" r=\"0.3\"/>\n",
" <circle cx=\"79.79\" cy=\"42.1\" r=\"0.3\"/>\n",
" <circle cx=\"89.95\" cy=\"50.6\" r=\"0.3\"/>\n",
" <circle cx=\"74.13\" cy=\"38.38\" r=\"0.3\"/>\n",
" <circle cx=\"105.44\" cy=\"64.2\" r=\"0.3\"/>\n",
" <circle cx=\"73.08\" cy=\"37.3\" r=\"0.3\"/>\n",
" <circle cx=\"78.2\" cy=\"41.52\" r=\"0.3\"/>\n",
" <circle cx=\"79.1\" cy=\"43.39\" r=\"0.3\"/>\n",
" <circle cx=\"71.68\" cy=\"35.55\" r=\"0.3\"/>\n",
" <circle cx=\"106.8\" cy=\"65.4\" r=\"0.3\"/>\n",
" <circle cx=\"81.95\" cy=\"45.48\" r=\"0.3\"/>\n",
" <circle cx=\"60.06\" cy=\"26.16\" r=\"0.3\"/>\n",
" <circle cx=\"61.72\" cy=\"26.83\" r=\"0.3\"/>\n",
" <circle cx=\"65.91\" cy=\"29.36\" r=\"0.3\"/>\n",
" <circle cx=\"90.84\" cy=\"51.52\" r=\"0.3\"/>\n",
" <circle cx=\"112.62\" cy=\"69.68\" r=\"0.3\"/>\n",
" <circle cx=\"83.86\" cy=\"46.98\" r=\"0.3\"/>\n",
" <circle cx=\"101.52\" cy=\"61.98\" r=\"0.3\"/>\n",
" <circle cx=\"61.51\" cy=\"28.81\" r=\"0.3\"/>\n",
" <circle cx=\"86.5\" cy=\"49.83\" r=\"0.3\"/>\n",
" <circle cx=\"83.67\" cy=\"48.28\" r=\"0.3\"/>\n",
" <circle cx=\"88.11\" cy=\"51.73\" r=\"0.3\"/>\n",
" <circle cx=\"78.77\" cy=\"43.61\" r=\"0.3\"/>\n",
" <circle cx=\"60.32\" cy=\"28.03\" r=\"0.3\"/>\n",
" <circle cx=\"94.88\" cy=\"56.48\" r=\"0.3\"/>\n",
" <circle cx=\"87.77\" cy=\"51.28\" r=\"0.3\"/>\n",
" <circle cx=\"94.65\" cy=\"57.06\" r=\"0.3\"/>\n",
" <circle cx=\"73.71\" cy=\"41.15\" r=\"0.3\"/>\n",
" <circle cx=\"75.25\" cy=\"41.5\" r=\"0.3\"/>\n",
" <circle cx=\"70.34\" cy=\"36.89\" r=\"0.3\"/>\n",
" <circle cx=\"82.81\" cy=\"48.36\" r=\"0.3\"/>\n",
" <circle cx=\"56.14\" cy=\"24.09\" r=\"0.3\"/>\n",
" <circle cx=\"87.65\" cy=\"50.92\" r=\"0.3\"/>\n",
" <circle cx=\"64.58\" cy=\"31.6\" r=\"0.3\"/>\n",
" <circle cx=\"82.36\" cy=\"47.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.12\" cy=\"40.17\" r=\"0.3\"/>\n",
" <circle cx=\"75.33\" cy=\"40.68\" r=\"0.3\"/>\n",
" <circle cx=\"79.16\" cy=\"44.2\" r=\"0.3\"/>\n",
" <circle cx=\"79.14\" cy=\"43.13\" r=\"0.3\"/>\n",
" <circle cx=\"100.19\" cy=\"60.82\" r=\"0.3\"/>\n",
" <circle cx=\"96.59\" cy=\"58.58\" r=\"0.3\"/>\n",
" <circle cx=\"70.11\" cy=\"36.83\" r=\"0.3\"/>\n",
" <circle cx=\"82.62\" cy=\"47.28\" r=\"0.3\"/>\n",
" <circle cx=\"72.96\" cy=\"39.92\" r=\"0.3\"/>\n",
" <circle cx=\"60.64\" cy=\"27.89\" r=\"0.3\"/>\n",
" <circle cx=\"67.76\" cy=\"33.31\" r=\"0.3\"/>\n",
" <circle cx=\"79.99\" cy=\"44.09\" r=\"0.3\"/>\n",
" <circle cx=\"57.53\" cy=\"23.73\" r=\"0.3\"/>\n",
" <circle cx=\"82.41\" cy=\"44.75\" r=\"0.3\"/>\n",
" <circle cx=\"56.23\" cy=\"20.96\" r=\"0.3\"/>\n",
" <circle cx=\"93.26\" cy=\"54.22\" r=\"0.3\"/>\n",
" <circle cx=\"82.03\" cy=\"45.25\" r=\"0.3\"/>\n",
" <circle cx=\"71.41\" cy=\"34.36\" r=\"0.3\"/>\n",
" <circle cx=\"88.61\" cy=\"50.31\" r=\"0.3\"/>\n",
" <circle cx=\"72.23\" cy=\"35.36\" r=\"0.3\"/>\n",
" <circle cx=\"88.79\" cy=\"49.29\" r=\"0.3\"/>\n",
" <circle cx=\"97.72\" cy=\"58.05\" r=\"0.3\"/>\n",
" <circle cx=\"74.01\" cy=\"38.18\" r=\"0.3\"/>\n",
" <circle cx=\"95.22\" cy=\"56.19\" r=\"0.3\"/>\n",
" <circle cx=\"87.26\" cy=\"49.51\" r=\"0.3\"/>\n",
" <circle cx=\"76.46\" cy=\"41.36\" r=\"0.3\"/>\n",
" <circle cx=\"93.21\" cy=\"54.74\" r=\"0.3\"/>\n",
" <circle cx=\"75.09\" cy=\"41.44\" r=\"0.3\"/>\n",
" <circle cx=\"81.02\" cy=\"45.22\" r=\"0.3\"/>\n",
" <circle cx=\"75.51\" cy=\"40.73\" r=\"0.3\"/>\n",
" <circle cx=\"70.61\" cy=\"35.73\" r=\"0.3\"/>\n",
" <circle cx=\"79.19\" cy=\"42.93\" r=\"0.3\"/>\n",
" <circle cx=\"96.08\" cy=\"57.17\" r=\"0.3\"/>\n",
" <circle cx=\"74.76\" cy=\"40.03\" r=\"0.3\"/>\n",
" <circle cx=\"91.68\" cy=\"53.89\" r=\"0.3\"/>\n",
" <circle cx=\"82.5\" cy=\"47.55\" r=\"0.3\"/>\n",
" <circle cx=\"54.35\" cy=\"22.2\" r=\"0.3\"/>\n",
" <circle cx=\"82.26\" cy=\"45.5\" r=\"0.3\"/>\n",
" <circle cx=\"72.72\" cy=\"37.43\" r=\"0.3\"/>\n",
" <circle cx=\"66.91\" cy=\"31.76\" r=\"0.3\"/>\n",
" <circle cx=\"86.4\" cy=\"49.28\" r=\"0.3\"/>\n",
" <circle cx=\"102.34\" cy=\"61.93\" r=\"0.3\"/>\n",
" <circle cx=\"96.26\" cy=\"57.73\" r=\"0.3\"/>\n",
" <circle cx=\"62.88\" cy=\"30.9\" r=\"0.3\"/>\n",
" <circle cx=\"71.53\" cy=\"36.76\" r=\"0.3\"/>\n",
" <circle cx=\"89.44\" cy=\"52.08\" r=\"0.3\"/>\n",
" <circle cx=\"62.27\" cy=\"29.28\" r=\"0.3\"/>\n",
" <circle cx=\"79.21\" cy=\"42.75\" r=\"0.3\"/>\n",
" <circle cx=\"76.35\" cy=\"40.22\" r=\"0.3\"/>\n",
" <circle cx=\"78.13\" cy=\"41.98\" r=\"0.3\"/>\n",
" <circle cx=\"86.87\" cy=\"49.09\" r=\"0.3\"/>\n",
" <circle cx=\"64.87\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"80.44\" cy=\"43.17\" r=\"0.3\"/>\n",
" <circle cx=\"82.5\" cy=\"44.95\" r=\"0.3\"/>\n",
" <circle cx=\"67.65\" cy=\"32.32\" r=\"0.3\"/>\n",
" <circle cx=\"83.19\" cy=\"45.05\" r=\"0.3\"/>\n",
" <circle cx=\"102.77\" cy=\"61.83\" r=\"0.3\"/>\n",
" <circle cx=\"70.28\" cy=\"34.99\" r=\"0.3\"/>\n",
" <circle cx=\"98.65\" cy=\"59.35\" r=\"0.3\"/>\n",
" <circle cx=\"82.92\" cy=\"46.47\" r=\"0.3\"/>\n",
" <circle cx=\"72.99\" cy=\"38.4\" r=\"0.3\"/>\n",
" <circle cx=\"95.85\" cy=\"57.16\" r=\"0.3\"/>\n",
" <circle cx=\"73.41\" cy=\"39.76\" r=\"0.3\"/>\n",
" <circle cx=\"87.15\" cy=\"50.49\" r=\"0.3\"/>\n",
" <circle cx=\"87.49\" cy=\"51.52\" r=\"0.3\"/>\n",
" <circle cx=\"66.74\" cy=\"34.27\" r=\"0.3\"/>\n",
" <circle cx=\"83.93\" cy=\"47.82\" r=\"0.3\"/>\n",
" <circle cx=\"80.87\" cy=\"46.42\" r=\"0.3\"/>\n",
" <circle cx=\"91.79\" cy=\"55.28\" r=\"0.3\"/>\n",
" <circle cx=\"82.84\" cy=\"47.98\" r=\"0.3\"/>\n",
" <circle cx=\"63.07\" cy=\"31.5\" r=\"0.3\"/>\n",
" <circle cx=\"85.29\" cy=\"49.84\" r=\"0.3\"/>\n",
" <circle cx=\"78.73\" cy=\"44.1\" r=\"0.3\"/>\n",
" <circle cx=\"97.32\" cy=\"59.71\" r=\"0.3\"/>\n",
" <circle cx=\"44.8\" cy=\"15.17\" r=\"0.3\"/>\n",
" <circle cx=\"84.75\" cy=\"48.57\" r=\"0.3\"/>\n",
" <circle cx=\"97.77\" cy=\"59.77\" r=\"0.3\"/>\n",
" <circle cx=\"51.23\" cy=\"20.48\" r=\"0.3\"/>\n",
" <circle cx=\"98.85\" cy=\"60.14\" r=\"0.3\"/>\n",
" <circle cx=\"69.89\" cy=\"36.54\" r=\"0.3\"/>\n",
" <circle cx=\"101.62\" cy=\"62.89\" r=\"0.3\"/>\n",
" <circle cx=\"74.13\" cy=\"41.71\" r=\"0.3\"/>\n",
" <circle cx=\"61.03\" cy=\"30.1\" r=\"0.3\"/>\n",
" <circle cx=\"60.5\" cy=\"27.99\" r=\"0.3\"/>\n",
" <circle cx=\"92.48\" cy=\"54.7\" r=\"0.3\"/>\n",
" <circle cx=\"71.99\" cy=\"37.87\" r=\"0.3\"/>\n",
" <circle cx=\"62.26\" cy=\"28.83\" r=\"0.3\"/>\n",
" <circle cx=\"70.12\" cy=\"35.06\" r=\"0.3\"/>\n",
" <circle cx=\"81.22\" cy=\"44.31\" r=\"0.3\"/>\n",
" <circle cx=\"76.16\" cy=\"39.94\" r=\"0.3\"/>\n",
" <circle cx=\"84.96\" cy=\"47.43\" r=\"0.3\"/>\n",
" <circle cx=\"73.31\" cy=\"37.5\" r=\"0.3\"/>\n",
" <circle cx=\"98.93\" cy=\"59.7\" r=\"0.3\"/>\n",
" <circle cx=\"58.45\" cy=\"24.73\" r=\"0.3\"/>\n",
" <circle cx=\"77.32\" cy=\"40.9\" r=\"0.3\"/>\n",
" <circle cx=\"71.44\" cy=\"35.71\" r=\"0.3\"/>\n",
" <circle cx=\"74.33\" cy=\"37.36\" r=\"0.3\"/>\n",
" <circle cx=\"94.47\" cy=\"54.87\" r=\"0.3\"/>\n",
" <circle cx=\"101.17\" cy=\"60.72\" r=\"0.3\"/>\n",
" <circle cx=\"90.95\" cy=\"53.7\" r=\"0.3\"/>\n",
" <circle cx=\"77.9\" cy=\"42.54\" r=\"0.3\"/>\n",
" <circle cx=\"62.99\" cy=\"29.17\" r=\"0.3\"/>\n",
" <circle cx=\"87.96\" cy=\"50.59\" r=\"0.3\"/>\n",
" <circle cx=\"65.57\" cy=\"31.07\" r=\"0.3\"/>\n",
" <circle cx=\"57.22\" cy=\"22.63\" r=\"0.3\"/>\n",
" <circle cx=\"86.61\" cy=\"47.78\" r=\"0.3\"/>\n",
" <circle cx=\"79.97\" cy=\"42.35\" r=\"0.3\"/>\n",
" <circle cx=\"87.07\" cy=\"48.4\" r=\"0.3\"/>\n",
" <circle cx=\"80.34\" cy=\"43.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.1\" cy=\"37.36\" r=\"0.3\"/>\n",
" <circle cx=\"100.52\" cy=\"60.23\" r=\"0.3\"/>\n",
" <circle cx=\"87.52\" cy=\"49.7\" r=\"0.3\"/>\n",
" <circle cx=\"100.24\" cy=\"60.7\" r=\"0.3\"/>\n",
" <circle cx=\"71.22\" cy=\"37.02\" r=\"0.3\"/>\n",
" <circle cx=\"66.9\" cy=\"32.82\" r=\"0.3\"/>\n",
" <circle cx=\"94.61\" cy=\"56.46\" r=\"0.3\"/>\n",
" <circle cx=\"67.68\" cy=\"33.56\" r=\"0.3\"/>\n",
" <circle cx=\"69.17\" cy=\"34.35\" r=\"0.3\"/>\n",
" <circle cx=\"62\" cy=\"27.65\" r=\"0.3\"/>\n",
" <circle cx=\"81.04\" cy=\"43.29\" r=\"0.3\"/>\n",
" <circle cx=\"98.75\" cy=\"58.5\" r=\"0.3\"/>\n",
" <circle cx=\"76.47\" cy=\"40.38\" r=\"0.3\"/>\n",
" <circle cx=\"89.67\" cy=\"51.82\" r=\"0.3\"/>\n",
" <circle cx=\"65.69\" cy=\"31.03\" r=\"0.3\"/>\n",
" <circle cx=\"84.03\" cy=\"47.89\" r=\"0.3\"/>\n",
" <circle cx=\"84.82\" cy=\"47.43\" r=\"0.3\"/>\n",
" <circle cx=\"89.14\" cy=\"51.21\" r=\"0.3\"/>\n",
" <circle cx=\"101.55\" cy=\"62.24\" r=\"0.3\"/>\n",
" <circle cx=\"89.37\" cy=\"53.38\" r=\"0.3\"/>\n",
" <circle cx=\"80.98\" cy=\"46.86\" r=\"0.3\"/>\n",
" <circle cx=\"72.29\" cy=\"38.77\" r=\"0.3\"/>\n",
" <circle cx=\"77.14\" cy=\"42.87\" r=\"0.3\"/>\n",
" <circle cx=\"80.61\" cy=\"45.54\" r=\"0.3\"/>\n",
" <circle cx=\"58.08\" cy=\"26.57\" r=\"0.3\"/>\n",
" <circle cx=\"73.1\" cy=\"38.42\" r=\"0.3\"/>\n",
" <circle cx=\"61.8\" cy=\"27.83\" r=\"0.3\"/>\n",
" <circle cx=\"79.98\" cy=\"43.09\" r=\"0.3\"/>\n",
" <circle cx=\"88.47\" cy=\"50.46\" r=\"0.3\"/>\n",
" <circle cx=\"79.84\" cy=\"43.54\" r=\"0.3\"/>\n",
" <circle cx=\"85.64\" cy=\"48.37\" r=\"0.3\"/>\n",
" <circle cx=\"60.55\" cy=\"26.69\" r=\"0.3\"/>\n",
" <circle cx=\"87.93\" cy=\"50.68\" r=\"0.3\"/>\n",
" <circle cx=\"70.04\" cy=\"34.62\" r=\"0.3\"/>\n",
" <circle cx=\"73.87\" cy=\"37.37\" r=\"0.3\"/>\n",
" <circle cx=\"74.2\" cy=\"38.24\" r=\"0.3\"/>\n",
" <circle cx=\"83.58\" cy=\"45.52\" r=\"0.3\"/>\n",
" <circle cx=\"84.23\" cy=\"46.42\" r=\"0.3\"/>\n",
" <circle cx=\"93.35\" cy=\"54.04\" r=\"0.3\"/>\n",
" <circle cx=\"78.86\" cy=\"42.27\" r=\"0.3\"/>\n",
" <circle cx=\"76.61\" cy=\"41.82\" r=\"0.3\"/>\n",
" <circle cx=\"55.57\" cy=\"21.03\" r=\"0.3\"/>\n",
" <circle cx=\"84.33\" cy=\"45.55\" r=\"0.3\"/>\n",
" <circle cx=\"90.62\" cy=\"51.41\" r=\"0.3\"/>\n",
" <circle cx=\"87.35\" cy=\"48.83\" r=\"0.3\"/>\n",
" <circle cx=\"73.36\" cy=\"37.2\" r=\"0.3\"/>\n",
" <circle cx=\"71.78\" cy=\"35.13\" r=\"0.3\"/>\n",
" <circle cx=\"64.1\" cy=\"27.67\" r=\"0.3\"/>\n",
" <circle cx=\"105.1\" cy=\"62.77\" r=\"0.3\"/>\n",
" <circle cx=\"106.82\" cy=\"65.13\" r=\"0.3\"/>\n",
" <circle cx=\"86.85\" cy=\"50.04\" r=\"0.3\"/>\n",
" <circle cx=\"74.75\" cy=\"39.73\" r=\"0.3\"/>\n",
" <circle cx=\"103.93\" cy=\"63.85\" r=\"0.3\"/>\n",
" <circle cx=\"51.79\" cy=\"20.16\" r=\"0.3\"/>\n",
" <circle cx=\"77.51\" cy=\"43.14\" r=\"0.3\"/>\n",
" <circle cx=\"58.43\" cy=\"24.25\" r=\"0.3\"/>\n",
" <circle cx=\"89.39\" cy=\"50.58\" r=\"0.3\"/>\n",
" <circle cx=\"74.18\" cy=\"37.77\" r=\"0.3\"/>\n",
" <circle cx=\"106.46\" cy=\"65.04\" r=\"0.3\"/>\n",
" <circle cx=\"85.16\" cy=\"49.29\" r=\"0.3\"/>\n",
" <circle cx=\"75.02\" cy=\"40.32\" r=\"0.3\"/>\n",
" <circle cx=\"79.79\" cy=\"43.75\" r=\"0.3\"/>\n",
" <circle cx=\"81.65\" cy=\"46.68\" r=\"0.3\"/>\n",
" <circle cx=\"63.93\" cy=\"29.89\" r=\"0.3\"/>\n",
" <circle cx=\"89.14\" cy=\"51.48\" r=\"0.3\"/>\n",
" <circle cx=\"58.37\" cy=\"24.46\" r=\"0.3\"/>\n",
" <circle cx=\"82.31\" cy=\"46.59\" r=\"0.3\"/>\n",
" <circle cx=\"85.95\" cy=\"48.88\" r=\"0.3\"/>\n",
" <circle cx=\"82.91\" cy=\"45.73\" r=\"0.3\"/>\n",
" <circle cx=\"92.38\" cy=\"53.99\" r=\"0.3\"/>\n",
" <circle cx=\"81.69\" cy=\"45.54\" r=\"0.3\"/>\n",
" <circle cx=\"81.56\" cy=\"46.72\" r=\"0.3\"/>\n",
" <circle cx=\"66.83\" cy=\"33.82\" r=\"0.3\"/>\n",
" <circle cx=\"93.55\" cy=\"55.68\" r=\"0.3\"/>\n",
" <circle cx=\"58.27\" cy=\"24.99\" r=\"0.3\"/>\n",
" <circle cx=\"72.7\" cy=\"37.93\" r=\"0.3\"/>\n",
" <circle cx=\"106.56\" cy=\"65.49\" r=\"0.3\"/>\n",
" <circle cx=\"107.23\" cy=\"66.83\" r=\"0.3\"/>\n",
" <circle cx=\"64.41\" cy=\"31.88\" r=\"0.3\"/>\n",
" <circle cx=\"80.83\" cy=\"46.27\" r=\"0.3\"/>\n",
" <circle cx=\"55.34\" cy=\"23.59\" r=\"0.3\"/>\n",
" <circle cx=\"66.75\" cy=\"32.69\" r=\"0.3\"/>\n",
" <circle cx=\"89.1\" cy=\"51.18\" r=\"0.3\"/>\n",
" <circle cx=\"82.9\" cy=\"46.19\" r=\"0.3\"/>\n",
" <circle cx=\"103.87\" cy=\"64\" r=\"0.3\"/>\n",
" <circle cx=\"76.44\" cy=\"43.08\" r=\"0.3\"/>\n",
" <circle cx=\"72.51\" cy=\"39.65\" r=\"0.3\"/>\n",
" <circle cx=\"93.16\" cy=\"56.05\" r=\"0.3\"/>\n",
" <circle cx=\"63.04\" cy=\"31.54\" r=\"0.3\"/>\n",
" <circle cx=\"82.28\" cy=\"46.52\" r=\"0.3\"/>\n",
" <circle cx=\"84.35\" cy=\"48.61\" r=\"0.3\"/>\n",
" <circle cx=\"69.61\" cy=\"36.18\" r=\"0.3\"/>\n",
" <circle cx=\"83.29\" cy=\"47.46\" r=\"0.3\"/>\n",
" <circle cx=\"82.18\" cy=\"46.57\" r=\"0.3\"/>\n",
" <circle cx=\"86.08\" cy=\"50.1\" r=\"0.3\"/>\n",
" <circle cx=\"93.25\" cy=\"56.62\" r=\"0.3\"/>\n",
" <circle cx=\"73.11\" cy=\"40.82\" r=\"0.3\"/>\n",
" <circle cx=\"64.05\" cy=\"32.09\" r=\"0.3\"/>\n",
" <circle cx=\"72.38\" cy=\"39.98\" r=\"0.3\"/>\n",
" <circle cx=\"83.27\" cy=\"47.56\" r=\"0.3\"/>\n",
" <circle cx=\"78.35\" cy=\"44.42\" r=\"0.3\"/>\n",
" <circle cx=\"78.78\" cy=\"44.04\" r=\"0.3\"/>\n",
" <circle cx=\"60.97\" cy=\"28.36\" r=\"0.3\"/>\n",
" <circle cx=\"51.55\" cy=\"18.95\" r=\"0.3\"/>\n",
" <circle cx=\"100.32\" cy=\"60.14\" r=\"0.3\"/>\n",
" <circle cx=\"86.95\" cy=\"49.77\" r=\"0.3\"/>\n",
" <circle cx=\"73.19\" cy=\"38.24\" r=\"0.3\"/>\n",
" <circle cx=\"74.38\" cy=\"39.08\" r=\"0.3\"/>\n",
" <circle cx=\"73.12\" cy=\"38.19\" r=\"0.3\"/>\n",
" <circle cx=\"101.28\" cy=\"61.49\" r=\"0.3\"/>\n",
" <circle cx=\"93.07\" cy=\"55.52\" r=\"0.3\"/>\n",
" <circle cx=\"46.43\" cy=\"14.95\" r=\"0.3\"/>\n",
" <circle cx=\"88.62\" cy=\"50.96\" r=\"0.3\"/>\n",
" <circle cx=\"65.41\" cy=\"31.14\" r=\"0.3\"/>\n",
" <circle cx=\"82.83\" cy=\"46.24\" r=\"0.3\"/>\n",
" <circle cx=\"61.25\" cy=\"26.82\" r=\"0.3\"/>\n",
" <circle cx=\"76.68\" cy=\"40.36\" r=\"0.3\"/>\n",
" <circle cx=\"79.58\" cy=\"42.31\" r=\"0.3\"/>\n",
" <circle cx=\"61.85\" cy=\"25.95\" r=\"0.3\"/>\n",
" <circle cx=\"86.25\" cy=\"46.91\" r=\"0.3\"/>\n",
" <circle cx=\"75.44\" cy=\"37.46\" r=\"0.3\"/>\n",
" <circle cx=\"75.81\" cy=\"37.7\" r=\"0.3\"/>\n",
" <circle cx=\"93.97\" cy=\"54.78\" r=\"0.3\"/>\n",
" <circle cx=\"66.82\" cy=\"29.83\" r=\"0.3\"/>\n",
" <circle cx=\"108.44\" cy=\"65.31\" r=\"0.3\"/>\n",
" <circle cx=\"107.01\" cy=\"65.59\" r=\"0.3\"/>\n",
" <circle cx=\"75.71\" cy=\"39.78\" r=\"0.3\"/>\n",
" <circle cx=\"68.01\" cy=\"33.01\" r=\"0.3\"/>\n",
" <circle cx=\"72.99\" cy=\"37.08\" r=\"0.3\"/>\n",
" <circle cx=\"82.03\" cy=\"44.25\" r=\"0.3\"/>\n",
" <circle cx=\"64.22\" cy=\"28.25\" r=\"0.3\"/>\n",
" <circle cx=\"101.95\" cy=\"60.51\" r=\"0.3\"/>\n",
" <circle cx=\"85.64\" cy=\"48.11\" r=\"0.3\"/>\n",
" <circle cx=\"60.38\" cy=\"25.4\" r=\"0.3\"/>\n",
" <circle cx=\"113.91\" cy=\"70.79\" r=\"0.3\"/>\n",
" <circle cx=\"88.69\" cy=\"52.05\" r=\"0.3\"/>\n",
" <circle cx=\"78.45\" cy=\"42.79\" r=\"0.3\"/>\n",
" <circle cx=\"81.78\" cy=\"45.53\" r=\"0.3\"/>\n",
" <circle cx=\"56.14\" cy=\"22.84\" r=\"0.3\"/>\n",
" <circle cx=\"74.76\" cy=\"38.65\" r=\"0.3\"/>\n",
" <circle cx=\"82.01\" cy=\"45.84\" r=\"0.3\"/>\n",
" <circle cx=\"104.43\" cy=\"63.92\" r=\"0.3\"/>\n",
" <circle cx=\"58.04\" cy=\"24.42\" r=\"0.3\"/>\n",
" <circle cx=\"82.12\" cy=\"45.78\" r=\"0.3\"/>\n",
" <circle cx=\"95.03\" cy=\"56.25\" r=\"0.3\"/>\n",
" <circle cx=\"76.71\" cy=\"41.98\" r=\"0.3\"/>\n",
" <circle cx=\"78.33\" cy=\"42.35\" r=\"0.3\"/>\n",
" <circle cx=\"74.52\" cy=\"38.83\" r=\"0.3\"/>\n",
" <circle cx=\"77.57\" cy=\"42.78\" r=\"0.3\"/>\n",
" <circle cx=\"96.23\" cy=\"57.39\" r=\"0.3\"/>\n",
" <circle cx=\"86.67\" cy=\"50.79\" r=\"0.3\"/>\n",
" <circle cx=\"78.96\" cy=\"43.73\" r=\"0.3\"/>\n",
" <circle cx=\"65.31\" cy=\"31.53\" r=\"0.3\"/>\n",
" <circle cx=\"78.02\" cy=\"43.53\" r=\"0.3\"/>\n",
" <circle cx=\"95.43\" cy=\"56.79\" r=\"0.3\"/>\n",
" <circle cx=\"50.57\" cy=\"18.14\" r=\"0.3\"/>\n",
" <circle cx=\"79.74\" cy=\"42.88\" r=\"0.3\"/>\n",
" <circle cx=\"81.51\" cy=\"44.5\" r=\"0.3\"/>\n",
" <circle cx=\"70.86\" cy=\"35.7\" r=\"0.3\"/>\n",
" <circle cx=\"96.96\" cy=\"58.13\" r=\"0.3\"/>\n",
" <circle cx=\"102.85\" cy=\"62.88\" r=\"0.3\"/>\n",
" <circle cx=\"88.35\" cy=\"51.9\" r=\"0.3\"/>\n",
" <circle cx=\"75.8\" cy=\"41.85\" r=\"0.3\"/>\n",
" <circle cx=\"85.91\" cy=\"49.85\" r=\"0.3\"/>\n",
" <circle cx=\"58.46\" cy=\"26.32\" r=\"0.3\"/>\n",
" <circle cx=\"69.41\" cy=\"35.05\" r=\"0.3\"/>\n",
" <circle cx=\"90.93\" cy=\"53.74\" r=\"0.3\"/>\n",
" <circle cx=\"94.71\" cy=\"56.71\" r=\"0.3\"/>\n",
" <circle cx=\"53.58\" cy=\"22.36\" r=\"0.3\"/>\n",
" <circle cx=\"56.58\" cy=\"23.3\" r=\"0.3\"/>\n",
" <circle cx=\"59.94\" cy=\"25\" r=\"0.3\"/>\n",
" <circle cx=\"92.97\" cy=\"53.27\" r=\"0.3\"/>\n",
" <circle cx=\"65.68\" cy=\"30.08\" r=\"0.3\"/>\n",
" <circle cx=\"115.94\" cy=\"72.11\" r=\"0.3\"/>\n",
" <circle cx=\"97.17\" cy=\"57.94\" r=\"0.3\"/>\n",
" <circle cx=\"75.58\" cy=\"40.64\" r=\"0.3\"/>\n",
" <circle cx=\"74.71\" cy=\"39.51\" r=\"0.3\"/>\n",
" <circle cx=\"81.68\" cy=\"45.25\" r=\"0.3\"/>\n",
" <circle cx=\"71.75\" cy=\"36.89\" r=\"0.3\"/>\n",
" <circle cx=\"79.91\" cy=\"44.23\" r=\"0.3\"/>\n",
" <circle cx=\"57.75\" cy=\"23.93\" r=\"0.3\"/>\n",
" <circle cx=\"98.56\" cy=\"58.44\" r=\"0.3\"/>\n",
" <circle cx=\"81.27\" cy=\"46.41\" r=\"0.3\"/>\n",
" <circle cx=\"87.64\" cy=\"51.12\" r=\"0.3\"/>\n",
" <circle cx=\"86.04\" cy=\"49.17\" r=\"0.3\"/>\n",
" <circle cx=\"77.2\" cy=\"42.9\" r=\"0.3\"/>\n",
" <circle cx=\"90.48\" cy=\"53\" r=\"0.3\"/>\n",
" <circle cx=\"62.7\" cy=\"29.85\" r=\"0.3\"/>\n",
" <circle cx=\"76.5\" cy=\"42.96\" r=\"0.3\"/>\n",
" <circle cx=\"67\" cy=\"32.4\" r=\"0.3\"/>\n",
" <circle cx=\"92.67\" cy=\"54.12\" r=\"0.3\"/>\n",
" <circle cx=\"66.85\" cy=\"32.26\" r=\"0.3\"/>\n",
" <circle cx=\"70.02\" cy=\"35.32\" r=\"0.3\"/>\n",
" <circle cx=\"93.54\" cy=\"55.35\" r=\"0.3\"/>\n",
" <circle cx=\"71.12\" cy=\"35.61\" r=\"0.3\"/>\n",
" <circle cx=\"71.48\" cy=\"35.99\" r=\"0.3\"/>\n",
" <circle cx=\"88.62\" cy=\"50.32\" r=\"0.3\"/>\n",
" <circle cx=\"81.04\" cy=\"44.48\" r=\"0.3\"/>\n",
" <circle cx=\"82.63\" cy=\"45.46\" r=\"0.3\"/>\n",
" <circle cx=\"88.83\" cy=\"51.64\" r=\"0.3\"/>\n",
" <circle cx=\"90.03\" cy=\"52.6\" r=\"0.3\"/>\n",
" <circle cx=\"104.13\" cy=\"64.38\" r=\"0.3\"/>\n",
" <circle cx=\"85.05\" cy=\"49.39\" r=\"0.3\"/>\n",
" <circle cx=\"71.29\" cy=\"38.38\" r=\"0.3\"/>\n",
" <circle cx=\"73.42\" cy=\"39.93\" r=\"0.3\"/>\n",
" <circle cx=\"71.28\" cy=\"37.85\" r=\"0.3\"/>\n",
" <circle cx=\"52.92\" cy=\"20.9\" r=\"0.3\"/>\n",
" <circle cx=\"85.97\" cy=\"49.55\" r=\"0.3\"/>\n",
" <circle cx=\"93.9\" cy=\"55.63\" r=\"0.3\"/>\n",
" <circle cx=\"60.67\" cy=\"28.16\" r=\"0.3\"/>\n",
" <circle cx=\"61.59\" cy=\"27.55\" r=\"0.3\"/>\n",
" <circle cx=\"79.3\" cy=\"42.55\" r=\"0.3\"/>\n",
" <circle cx=\"70.94\" cy=\"34.94\" r=\"0.3\"/>\n",
" <circle cx=\"111.25\" cy=\"68.59\" r=\"0.3\"/>\n",
" <circle cx=\"65.58\" cy=\"31.35\" r=\"0.3\"/>\n",
" <circle cx=\"98.64\" cy=\"59.05\" r=\"0.3\"/>\n",
" <circle cx=\"75.16\" cy=\"41.56\" r=\"0.3\"/>\n",
" <circle cx=\"87.96\" cy=\"51.18\" r=\"0.3\"/>\n",
" <circle cx=\"93.48\" cy=\"56.07\" r=\"0.3\"/>\n",
" <circle cx=\"80.52\" cy=\"45.81\" r=\"0.3\"/>\n",
" <circle cx=\"73.94\" cy=\"40.78\" r=\"0.3\"/>\n",
" <circle cx=\"83.58\" cy=\"47.68\" r=\"0.3\"/>\n",
" <circle cx=\"54.42\" cy=\"22.2\" r=\"0.3\"/>\n",
" <circle cx=\"82.53\" cy=\"46.94\" r=\"0.3\"/>\n",
" <circle cx=\"88.73\" cy=\"52.12\" r=\"0.3\"/>\n",
" <circle cx=\"68.08\" cy=\"33.93\" r=\"0.3\"/>\n",
" <circle cx=\"58.87\" cy=\"25.23\" r=\"0.3\"/>\n",
" <circle cx=\"72.85\" cy=\"36.52\" r=\"0.3\"/>\n",
" <circle cx=\"81.09\" cy=\"43.59\" r=\"0.3\"/>\n",
" <circle cx=\"86.95\" cy=\"49.26\" r=\"0.3\"/>\n",
" <circle cx=\"87.06\" cy=\"49.91\" r=\"0.3\"/>\n",
" <circle cx=\"86\" cy=\"48.41\" r=\"0.3\"/>\n",
" <circle cx=\"78.66\" cy=\"43.18\" r=\"0.3\"/>\n",
" <circle cx=\"85.32\" cy=\"48.16\" r=\"0.3\"/>\n",
" <circle cx=\"82.45\" cy=\"45.93\" r=\"0.3\"/>\n",
" <circle cx=\"85.88\" cy=\"49.52\" r=\"0.3\"/>\n",
" <circle cx=\"68.27\" cy=\"34.05\" r=\"0.3\"/>\n",
" <circle cx=\"80.36\" cy=\"44.6\" r=\"0.3\"/>\n",
" <circle cx=\"86.43\" cy=\"49.39\" r=\"0.3\"/>\n",
" <circle cx=\"69.36\" cy=\"36.02\" r=\"0.3\"/>\n",
" <circle cx=\"74.97\" cy=\"39.24\" r=\"0.3\"/>\n",
" <circle cx=\"67.3\" cy=\"33.17\" r=\"0.3\"/>\n",
" <circle cx=\"67.87\" cy=\"32.64\" r=\"0.3\"/>\n",
" <circle cx=\"75.7\" cy=\"38.53\" r=\"0.3\"/>\n",
" <circle cx=\"93.32\" cy=\"53.67\" r=\"0.3\"/>\n",
" <circle cx=\"74.11\" cy=\"37.37\" r=\"0.3\"/>\n",
" <circle cx=\"82.44\" cy=\"44.42\" r=\"0.3\"/>\n",
" <circle cx=\"75.1\" cy=\"38.07\" r=\"0.3\"/>\n",
" <circle cx=\"84.39\" cy=\"45.94\" r=\"0.3\"/>\n",
" <circle cx=\"74.5\" cy=\"37.38\" r=\"0.3\"/>\n",
" <circle cx=\"94.75\" cy=\"55.03\" r=\"0.3\"/>\n",
" <circle cx=\"74.12\" cy=\"38.25\" r=\"0.3\"/>\n",
" <circle cx=\"86.23\" cy=\"48.01\" r=\"0.3\"/>\n",
" <circle cx=\"107.02\" cy=\"65.81\" r=\"0.3\"/>\n",
" <circle cx=\"75.83\" cy=\"40.56\" r=\"0.3\"/>\n",
" <circle cx=\"62.9\" cy=\"28.65\" r=\"0.3\"/>\n",
" <circle cx=\"77.66\" cy=\"40.9\" r=\"0.3\"/>\n",
" <circle cx=\"89.94\" cy=\"51.95\" r=\"0.3\"/>\n",
" <circle cx=\"81.94\" cy=\"45\" r=\"0.3\"/>\n",
" <circle cx=\"98.68\" cy=\"59.29\" r=\"0.3\"/>\n",
" <circle cx=\"76.12\" cy=\"41.63\" r=\"0.3\"/>\n",
" <circle cx=\"68.06\" cy=\"34.54\" r=\"0.3\"/>\n",
" <circle cx=\"61\" cy=\"27.02\" r=\"0.3\"/>\n",
" <circle cx=\"87.08\" cy=\"49.43\" r=\"0.3\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g opacity=\"0\" class=\"guide zoomslider\" stroke=\"#000000\" stroke-opacity=\"0.000\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-13\">\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-14\">\n",
" <rect x=\"129.42\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-15\">\n",
" <path d=\"M130.22,9.6 L 131.02 9.6 131.02 8.8 131.82 8.8 131.82 9.6 132.62 9.6 132.62 10.4 131.82 10.4 131.82 11.2 131.02 11.2 131.02 10.4 130.22 10.4 z\"/>\n",
" </g>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-16\">\n",
" <rect x=\"109.92\" y=\"8\" width=\"19\" height=\"4\"/>\n",
" </g>\n",
" <g class=\"zoomslider_thumb\" fill=\"#6A6A6A\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-17\">\n",
" <rect x=\"118.42\" y=\"8\" width=\"2\" height=\"4\"/>\n",
" </g>\n",
" <g fill=\"#EAEAEA\" stroke-width=\"0.3\" stroke-opacity=\"0\" stroke=\"#6A6A6A\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-18\">\n",
" <rect x=\"105.42\" y=\"8\" width=\"4\" height=\"4\"/>\n",
" <g class=\"button_logo\" fill=\"#6A6A6A\" id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-19\">\n",
" <path d=\"M106.22,9.6 L 108.62 9.6 108.62 10.4 106.22 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-7865cc7f889f442fae2ef857aac32ba7-element-20\">\n",
" <text x=\"23.76\" y=\"168.36\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0014</text>\n",
" <text x=\"23.76\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0012</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0010</text>\n",
" <text x=\"23.76\" y=\"114.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0008</text>\n",
" <text x=\"23.76\" y=\"96.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">-0.0006</text>\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0004</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">-0.0002</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0000</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0002</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"visible\">0.0004</text>\n",
" <text x=\"23.76\" y=\"-10.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0006</text>\n",
" <text x=\"23.76\" y=\"-28.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0008</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0010</text>\n",
" <text x=\"23.76\" y=\"-64.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0012</text>\n",
" <text x=\"23.76\" y=\"-82.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.0014</text>\n",
" <text x=\"23.76\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00120</text>\n",
" <text x=\"23.76\" y=\"145.95\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00115</text>\n",
" <text x=\"23.76\" y=\"141.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00110</text>\n",
" <text x=\"23.76\" y=\"136.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00105</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00100</text>\n",
" <text x=\"23.76\" y=\"128.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00095</text>\n",
" <text x=\"23.76\" y=\"123.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00090</text>\n",
" <text x=\"23.76\" y=\"119.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00085</text>\n",
" <text x=\"23.76\" y=\"114.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00080</text>\n",
" <text x=\"23.76\" y=\"110.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00075</text>\n",
" <text x=\"23.76\" y=\"105.61\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00070</text>\n",
" <text x=\"23.76\" y=\"101.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00065</text>\n",
" <text x=\"23.76\" y=\"96.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"23.76\" y=\"92.16\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00055</text>\n",
" <text x=\"23.76\" y=\"87.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"23.76\" y=\"83.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00045</text>\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"23.76\" y=\"74.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00035</text>\n",
" <text x=\"23.76\" y=\"69.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"23.76\" y=\"65.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00025</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"23.76\" y=\"56.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00015</text>\n",
" <text x=\"23.76\" y=\"51.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"23.76\" y=\"47.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">-0.00005</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"23.76\" y=\"38.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00005</text>\n",
" <text x=\"23.76\" y=\"33.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"23.76\" y=\"29.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00015</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"23.76\" y=\"20.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00025</text>\n",
" <text x=\"23.76\" y=\"15.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"23.76\" y=\"11.48\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00035</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"23.76\" y=\"2.52\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00045</text>\n",
" <text x=\"23.76\" y=\"-1.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"23.76\" y=\"-6.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00055</text>\n",
" <text x=\"23.76\" y=\"-10.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00060</text>\n",
" <text x=\"23.76\" y=\"-15.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00065</text>\n",
" <text x=\"23.76\" y=\"-19.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00070</text>\n",
" <text x=\"23.76\" y=\"-24.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00075</text>\n",
" <text x=\"23.76\" y=\"-28.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00080</text>\n",
" <text x=\"23.76\" y=\"-33.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00085</text>\n",
" <text x=\"23.76\" y=\"-37.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00090</text>\n",
" <text x=\"23.76\" y=\"-42.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00095</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00100</text>\n",
" <text x=\"23.76\" y=\"-51.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00105</text>\n",
" <text x=\"23.76\" y=\"-55.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00110</text>\n",
" <text x=\"23.76\" y=\"-60.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00115</text>\n",
" <text x=\"23.76\" y=\"-64.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.00120</text>\n",
" <text x=\"23.76\" y=\"222.14\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.002</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">-0.001</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.000</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.001</text>\n",
" <text x=\"23.76\" y=\"-136.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"0.5\" visibility=\"hidden\">0.002</text>\n",
" <text x=\"23.76\" y=\"150.43\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00120</text>\n",
" <text x=\"23.76\" y=\"145.95\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00115</text>\n",
" <text x=\"23.76\" y=\"141.47\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00110</text>\n",
" <text x=\"23.76\" y=\"136.98\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00105</text>\n",
" <text x=\"23.76\" y=\"132.5\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00100</text>\n",
" <text x=\"23.76\" y=\"128.02\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00095</text>\n",
" <text x=\"23.76\" y=\"123.54\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00090</text>\n",
" <text x=\"23.76\" y=\"119.05\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00085</text>\n",
" <text x=\"23.76\" y=\"114.57\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00080</text>\n",
" <text x=\"23.76\" y=\"110.09\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00075</text>\n",
" <text x=\"23.76\" y=\"105.61\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00070</text>\n",
" <text x=\"23.76\" y=\"101.13\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00065</text>\n",
" <text x=\"23.76\" y=\"96.64\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00060</text>\n",
" <text x=\"23.76\" y=\"92.16\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00055</text>\n",
" <text x=\"23.76\" y=\"87.68\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00050</text>\n",
" <text x=\"23.76\" y=\"83.2\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00045</text>\n",
" <text x=\"23.76\" y=\"78.71\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00040</text>\n",
" <text x=\"23.76\" y=\"74.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00035</text>\n",
" <text x=\"23.76\" y=\"69.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00030</text>\n",
" <text x=\"23.76\" y=\"65.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00025</text>\n",
" <text x=\"23.76\" y=\"60.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00020</text>\n",
" <text x=\"23.76\" y=\"56.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00015</text>\n",
" <text x=\"23.76\" y=\"51.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00010</text>\n",
" <text x=\"23.76\" y=\"47.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">-0.00005</text>\n",
" <text x=\"23.76\" y=\"42.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00000</text>\n",
" <text x=\"23.76\" y=\"38.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00005</text>\n",
" <text x=\"23.76\" y=\"33.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00010</text>\n",
" <text x=\"23.76\" y=\"29.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00015</text>\n",
" <text x=\"23.76\" y=\"24.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00020</text>\n",
" <text x=\"23.76\" y=\"20.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00025</text>\n",
" <text x=\"23.76\" y=\"15.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00030</text>\n",
" <text x=\"23.76\" y=\"11.48\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00035</text>\n",
" <text x=\"23.76\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00040</text>\n",
" <text x=\"23.76\" y=\"2.52\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00045</text>\n",
" <text x=\"23.76\" y=\"-1.96\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00050</text>\n",
" <text x=\"23.76\" y=\"-6.45\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00055</text>\n",
" <text x=\"23.76\" y=\"-10.93\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00060</text>\n",
" <text x=\"23.76\" y=\"-15.41\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00065</text>\n",
" <text x=\"23.76\" y=\"-19.89\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00070</text>\n",
" <text x=\"23.76\" y=\"-24.38\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00075</text>\n",
" <text x=\"23.76\" y=\"-28.86\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00080</text>\n",
" <text x=\"23.76\" y=\"-33.34\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00085</text>\n",
" <text x=\"23.76\" y=\"-37.82\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00090</text>\n",
" <text x=\"23.76\" y=\"-42.3\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00095</text>\n",
" <text x=\"23.76\" y=\"-46.79\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00100</text>\n",
" <text x=\"23.76\" y=\"-51.27\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00105</text>\n",
" <text x=\"23.76\" y=\"-55.75\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00110</text>\n",
" <text x=\"23.76\" y=\"-60.23\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00115</text>\n",
" <text x=\"23.76\" y=\"-64.72\" text-anchor=\"end\" dy=\"0.35em\" gadfly:scale=\"5.0\" visibility=\"hidden\">0.00120</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-7865cc7f889f442fae2ef857aac32ba7-element-21\">\n",
" <text x=\"8.81\" y=\"40.86\" text-anchor=\"middle\" dy=\"0.35em\" transform=\"rotate(-90, 8.81, 42.86)\">Exchange Rate</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-7865cc7f889f442fae2ef857aac32ba7-element-5\">\n",
" <path d=\"M24.76,5 L 136.42 5 136.42 80.72 24.76 80.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",
" Element.prototype.init_gadfly = function() {\n",
" this.mouseenter(Gadfly.plot_mouseover)\n",
" .mouseleave(Gadfly.plot_mouseout)\n",
" .dblclick(Gadfly.plot_dblclick)\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",
" this.mouseenter(function (event) {\n",
" init_pan_zoom(this.plotroot());\n",
" });\n",
" return this;\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",
"\n",
" var keyboard_zoom = function(event) {\n",
" if (event.which == 187) { // plus\n",
" increase_zoom_by_position(root, 0.1, true);\n",
" } else if (event.which == 189) { // minus\n",
" increase_zoom_by_position(root, -0.1, true);\n",
" }\n",
" };\n",
" root.data(\"keyboard_zoom\", keyboard_zoom);\n",
" window.addEventListener(\"keyup\", keyboard_zoom);\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",
"// Reset pan and zoom on double click\n",
"Gadfly.plot_dblclick = function(event) {\n",
" set_plot_pan_zoom(this.plotroot(), 0.0, 0.0, 1.0);\n",
"};\n",
"\n",
"// Unemphasize grid lines on mouse out.\n",
"Gadfly.plot_mouseout = function(event) {\n",
" var root = this.plotroot();\n",
"\n",
" window.removeEventListener(\"keyup\", root.data(\"keyboard_zoom\"));\n",
" root.data(\"keyboard_zoom\", undefined);\n",
"\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",
"// drag actions, i.e. zooming and panning\n",
"var pan_action = {\n",
" start: function(root, x, y, event) {\n",
" root.data(\"dx\", 0);\n",
" root.data(\"dy\", 0);\n",
" root.data(\"tx0\", root.data(\"tx\"));\n",
" root.data(\"ty0\", root.data(\"ty\"));\n",
" },\n",
" update: function(root, dx, dy, x, y, event) {\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",
" end: function(root, event) {\n",
"\n",
" },\n",
" cancel: function(root) {\n",
" set_plot_pan_zoom(root, root.data(\"tx0\"), root.data(\"ty0\"), root.data(\"scale\"));\n",
" }\n",
"};\n",
"\n",
"var zoom_box;\n",
"var zoom_action = {\n",
" start: function(root, x, y, event) {\n",
" var bounds = root.plotbounds();\n",
" var width = bounds.x1 - bounds.x0,\n",
" height = bounds.y1 - bounds.y0;\n",
" var ratio = width / height;\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" x = xscalable ? x / px_per_mm : bounds.x0;\n",
" y = yscalable ? y / px_per_mm : bounds.y0;\n",
" var w = xscalable ? 0 : width;\n",
" var h = yscalable ? 0 : height;\n",
" zoom_box = root.rect(x, y, w, h).attr({\n",
" \"fill\": \"#000\",\n",
" \"opacity\": 0.25\n",
" });\n",
" zoom_box.data(\"ratio\", ratio);\n",
" },\n",
" update: function(root, dx, dy, x, y, event) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var px_per_mm = root.data(\"px_per_mm\");\n",
" var bounds = root.plotbounds();\n",
" if (yscalable) {\n",
" y /= px_per_mm;\n",
" y = Math.max(bounds.y0, y);\n",
" y = Math.min(bounds.y1, y);\n",
" } else {\n",
" y = bounds.y1;\n",
" }\n",
" if (xscalable) {\n",
" x /= px_per_mm;\n",
" x = Math.max(bounds.x0, x);\n",
" x = Math.min(bounds.x1, x);\n",
" } else {\n",
" x = bounds.x1;\n",
" }\n",
"\n",
" dx = x - zoom_box.attr(\"x\");\n",
" dy = y - zoom_box.attr(\"y\");\n",
" if (xscalable && yscalable) {\n",
" var ratio = zoom_box.data(\"ratio\");\n",
" var width = Math.min(Math.abs(dx), ratio * Math.abs(dy));\n",
" var height = Math.min(Math.abs(dy), Math.abs(dx) / ratio);\n",
" dx = width * dx / Math.abs(dx);\n",
" dy = height * dy / Math.abs(dy);\n",
" }\n",
" var xoffset = 0,\n",
" yoffset = 0;\n",
" if (dx < 0) {\n",
" xoffset = dx;\n",
" dx = -1 * dx;\n",
" }\n",
" if (dy < 0) {\n",
" yoffset = dy;\n",
" dy = -1 * dy;\n",
" }\n",
" if (isNaN(dy)) {\n",
" dy = 0.0;\n",
" }\n",
" if (isNaN(dx)) {\n",
" dx = 0.0;\n",
" }\n",
" zoom_box.transform(\"T\" + xoffset + \",\" + yoffset);\n",
" zoom_box.attr(\"width\", dx);\n",
" zoom_box.attr(\"height\", dy);\n",
" },\n",
" end: function(root, event) {\n",
" var xscalable = root.hasClass(\"xscalable\"),\n",
" yscalable = root.hasClass(\"yscalable\");\n",
" var zoom_bounds = zoom_box.getBBox();\n",
" if (zoom_bounds.width * zoom_bounds.height <= 0) {\n",
" return;\n",
" }\n",
" var plot_bounds = root.plotbounds();\n",
" var zoom_factor = 1.0;\n",
" if (yscalable) {\n",
" zoom_factor = (plot_bounds.y1 - plot_bounds.y0) / zoom_bounds.height;\n",
" } else {\n",
" zoom_factor = (plot_bounds.x1 - plot_bounds.x0) / zoom_bounds.width;\n",
" }\n",
" var tx = (root.data(\"tx\") - zoom_bounds.x) * zoom_factor + plot_bounds.x0,\n",
" ty = (root.data(\"ty\") - zoom_bounds.y) * zoom_factor + plot_bounds.y0;\n",
" set_plot_pan_zoom(root, tx, ty, root.data(\"scale\") * zoom_factor);\n",
" zoom_box.remove();\n",
" },\n",
" cancel: function(root) {\n",
" zoom_box.remove();\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onstart = function(x, y, event) {\n",
" var root = this.plotroot();\n",
" var scalable = root.hasClass(\"xscalable\") || root.hasClass(\"yscalable\");\n",
" var zoomable = !event.altKey && !event.ctrlKey && event.shiftKey && scalable;\n",
" var panable = !event.altKey && !event.ctrlKey && !event.shiftKey && scalable;\n",
" var drag_action = zoomable ? zoom_action :\n",
" panable ? pan_action :\n",
" undefined;\n",
" root.data(\"drag_action\", drag_action);\n",
" if (drag_action) {\n",
" var cancel_drag_action = function(event) {\n",
" if (event.which == 27) { // esc key\n",
" drag_action.cancel(root);\n",
" root.data(\"drag_action\", undefined);\n",
" }\n",
" };\n",
" window.addEventListener(\"keyup\", cancel_drag_action);\n",
" root.data(\"cancel_drag_action\", cancel_drag_action);\n",
" drag_action.start(root, x, y, event);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onmove = function(dx, dy, x, y, event) {\n",
" var root = this.plotroot();\n",
" var drag_action = root.data(\"drag_action\");\n",
" if (drag_action) {\n",
" drag_action.update(root, dx, dy, x, y, event);\n",
" }\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_drag_onend = function(event) {\n",
" var root = this.plotroot();\n",
" window.removeEventListener(\"keyup\", root.data(\"cancel_drag_action\"));\n",
" root.data(\"cancel_drag_action\", undefined);\n",
" var drag_action = root.data(\"drag_action\");\n",
" if (drag_action) {\n",
" drag_action.end(root, event);\n",
" }\n",
" root.data(\"drag_action\", undefined);\n",
"};\n",
"\n",
"\n",
"Gadfly.guide_background_scroll = function(event) {\n",
" if (event.shiftKey) {\n",
" increase_zoom_by_position(this.plotroot(), 0.001 * event.wheelDelta);\n",
" event.preventDefault();\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",
" increase_zoom_by_position(this.plotroot(), -0.1, true);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_zoomin_click = function(event) {\n",
" increase_zoom_by_position(this.plotroot(), 0.1, true);\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_track_click = function(event) {\n",
" // TODO\n",
"};\n",
"\n",
"\n",
"// Map slider position x to scale y using the function y = a*exp(b*x)+c.\n",
"// The constants a, b, and c are solved using the constraint that the function\n",
"// should go through the points (0; min_scale), (0.5; 1), and (1; max_scale).\n",
"var scale_from_slider_position = function(position, min_scale, max_scale) {\n",
" var a = (1 - 2 * min_scale + min_scale * min_scale) / (min_scale + max_scale - 2),\n",
" b = 2 * Math.log((max_scale - 1) / (1 - min_scale)),\n",
" c = (min_scale * max_scale - 1) / (min_scale + max_scale - 2);\n",
" return a * Math.exp(b * position) + c;\n",
"}\n",
"\n",
"// inverse of scale_from_slider_position\n",
"var slider_position_from_scale = function(scale, min_scale, max_scale) {\n",
" var a = (1 - 2 * min_scale + min_scale * min_scale) / (min_scale + max_scale - 2),\n",
" b = 2 * Math.log((max_scale - 1) / (1 - min_scale)),\n",
" c = (min_scale * max_scale - 1) / (min_scale + max_scale - 2);\n",
" return 1 / b * Math.log((scale - c) / a);\n",
"}\n",
"\n",
"var increase_zoom_by_position = function(root, delta_position, animate) {\n",
" var scale = root.data(\"scale\"),\n",
" min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\");\n",
" var position = slider_position_from_scale(scale, min_scale, max_scale);\n",
" position += delta_position;\n",
" scale = scale_from_slider_position(position, min_scale, max_scale);\n",
" set_zoom(root, scale, animate);\n",
"}\n",
"\n",
"var set_zoom = function(root, scale, animate) {\n",
" var min_scale = root.data(\"min_scale\"),\n",
" max_scale = root.data(\"max_scale\"),\n",
" old_scale = root.data(\"scale\");\n",
" var new_scale = Math.max(min_scale, Math.min(scale, max_scale));\n",
" if (animate) {\n",
" Snap.animate(\n",
" old_scale,\n",
" new_scale,\n",
" function (new_scale) {\n",
" update_plot_scale(root, new_scale);\n",
" },\n",
" 200);\n",
" } else {\n",
" update_plot_scale(root, new_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, event) {\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 = scale_from_slider_position(xpos, min_scale, max_scale);\n",
" new_scale = Math.min(max_scale, Math.max(min_scale, new_scale));\n",
"\n",
" update_plot_scale(root, new_scale);\n",
" event.stopPropagation();\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragstart = function(x, y, event) {\n",
" this.animate({fill: this.data(\"mouseover_color\")}, 100);\n",
" var root = this.plotroot();\n",
"\n",
" // keep track of what the scale was when we started dragging\n",
" root.data(\"old_scale\", root.data(\"scale\"));\n",
" event.stopPropagation();\n",
"};\n",
"\n",
"\n",
"Gadfly.zoomslider_thumb_dragend = function(event) {\n",
" this.animate({fill: this.data(\"mouseout_color\")}, 100);\n",
" event.stopPropagation();\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\"], function (Snap, Gadfly) {\n",
" factory(Snap, Gadfly);\n",
" });\n",
" } else {\n",
" factory(glob.Snap, glob.Gadfly);\n",
" }\n",
"})(window, function (Snap, Gadfly) {\n",
" var fig = Snap(\"#fig-7865cc7f889f442fae2ef857aac32ba7\");\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-4\")\n",
" .init_gadfly();\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-7\")\n",
" .plotroot().data(\"unfocused_ygrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-7\")\n",
" .plotroot().data(\"focused_ygrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-8\")\n",
" .plotroot().data(\"unfocused_xgrid_color\", \"#D0D0E0\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-8\")\n",
" .plotroot().data(\"focused_xgrid_color\", \"#A0A0A0\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-14\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-14\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-14\")\n",
" .click(Gadfly.zoomslider_zoomin_click)\n",
".mouseenter(Gadfly.zoomslider_button_mouseover)\n",
".mouseleave(Gadfly.zoomslider_button_mouseout)\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-16\")\n",
" .data(\"max_pos\", 120.42)\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-16\")\n",
" .data(\"min_pos\", 103.42)\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-16\")\n",
" .click(Gadfly.zoomslider_track_click);\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-17\")\n",
" .data(\"max_pos\", 120.42)\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-17\")\n",
" .data(\"min_pos\", 103.42)\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-17\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-17\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-17\")\n",
" .drag(Gadfly.zoomslider_thumb_dragmove,\n",
" Gadfly.zoomslider_thumb_dragstart,\n",
" Gadfly.zoomslider_thumb_dragend)\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-18\")\n",
" .data(\"mouseover_color\", \"#CD5C5C\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-18\")\n",
" .data(\"mouseout_color\", \"#6A6A6A\")\n",
";\n",
"fig.select(\"#fig-7865cc7f889f442fae2ef857aac32ba7-element-18\")\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": [
"Plot(...)"
]
},
"execution_count": 43,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(df2, x=:x, y=:y,\n",
" Geom.point, Geom.smooth, color_scale, small_points,\n",
" Guide.xlabel(\"c₂ / c₁\"), Guide.ylabel(\"Exchange Rate\"))"
]
},
{
"cell_type": "code",
"execution_count": 52,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\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-80217fdcce744fcf9ed925850409e4d1-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-80217fdcce744fcf9ed925850409e4d1-element-2\">\n",
" <text x=\"79.2\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">Δ log(c₂) - Δ log(c₁)</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-80217fdcce744fcf9ed925850409e4d1-element-3\">\n",
" <text x=\"23.98\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.916</text>\n",
" <text x=\"60.79\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.917</text>\n",
" <text x=\"97.61\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.918</text>\n",
" <text x=\"134.42\" y=\"81.72\" text-anchor=\"middle\" dy=\"0.6em\">0.919</text>\n",
" </g>\n",
" <g clip-path=\"url(#fig-80217fdcce744fcf9ed925850409e4d1-element-5)\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-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-80217fdcce744fcf9ed925850409e4d1-element-6\">\n",
" <rect x=\"21.98\" y=\"5\" width=\"114.44\" height=\"75.72\"/>\n",
" </g>\n",
" <g class=\"guide ygridlines xfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-7\">\n",
" <path fill=\"none\" d=\"M21.98,78.72 L 136.42 78.72\"/>\n",
" <path fill=\"none\" d=\"M21.98,54.81 L 136.42 54.81\"/>\n",
" <path fill=\"none\" d=\"M21.98,30.91 L 136.42 30.91\"/>\n",
" <path fill=\"none\" d=\"M21.98,7 L 136.42 7\"/>\n",
" </g>\n",
" <g class=\"guide xgridlines yfixed\" stroke-dasharray=\"0.5,0.5\" stroke-width=\"0.05\" stroke=\"#D0D0E0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-8\">\n",
" <path fill=\"none\" d=\"M23.98,5 L 23.98 80.72\"/>\n",
" <path fill=\"none\" d=\"M60.79,5 L 60.79 80.72\"/>\n",
" <path fill=\"none\" d=\"M97.61,5 L 97.61 80.72\"/>\n",
" <path fill=\"none\" d=\"M134.42,5 L 134.42 80.72\"/>\n",
" </g>\n",
" <g class=\"plotpanel\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-9\">\n",
" <g stroke-width=\"0.3\" fill=\"#000000\" fill-opacity=\"0.000\" class=\"geometry\" stroke-dasharray=\"none\" stroke=\"#4C72B0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-10\">\n",
" <path fill=\"none\" d=\"M47.58,42.73 L 47.67 42.72 47.76 42.71 47.86 42.7 47.95 42.69 48.04 42.68 48.13 42.67 48.23 42.66 48.32 42.65 48.41 42.64 48.5 42.63 48.59 42.62 48.69 42.62 48.78 42.61 48.87 42.6 48.96 42.59 49.05 42.58 49.15 42.57 49.24 42.56 49.33 42.55 49.42 42.54 49.52 42.53 49.61 42.52 49.7 42.51 49.79 42.5 49.88 42.49 49.98 42.48 50.07 42.46 50.16 42.45 50.25 42.44 50.34 42.43 50.44 42.42 50.53 42.41 50.62 42.4 50.71 42.39 50.81 42.38 50.9 42.37 50.99 42.36 51.08 42.35 51.17 42.34 51.27 42.33 51.36 42.32 51.45 42.3 51.54 42.29 51.63 42.28 51.73 42.27 51.82 42.26 51.91 42.25 52 42.24 52.1 42.23 52.19 42.21 52.28 42.2 52.37 42.19 52.46 42.18 52.56 42.17 52.65 42.16 52.74 42.15 52.83 42.13 52.92 42.12 53.02 42.11 53.11 42.1 53.2 42.09 53.29 42.08 53.39 42.06 53.48 42.05 53.57 42.04 53.66 42.03 53.75 42.02 53.85 42 53.94 41.99 54.03 41.98 54.12 41.97 54.21 41.95 54.31 41.94 54.4 41.93 54.49 41.92 54.58 41.91 54.67 41.89 54.77 41.88 54.86 41.87 54.95 41.85 55.04 41.84 55.14 41.83 55.23 41.82 55.32 41.8 55.41 41.79 55.5 41.78 55.6 41.76 55.69 41.75 55.78 41.74 55.87 41.73 55.96 41.71 56.06 41.7 56.15 41.69 56.24 41.67 56.33 41.66 56.43 41.65 56.52 41.63 56.61 41.62 56.7 41.61 56.79 41.59 56.89 41.58 56.98 41.57 57.07 41.55 57.16 41.54 57.25 41.53 57.35 41.51 57.44 41.5 57.53 41.48 57.62 41.47 57.72 41.46 57.81 41.44 57.9 41.43 57.99 41.41 58.08 41.4 58.18 41.39 58.27 41.37 58.36 41.36 58.45 41.34 58.54 41.33 58.64 41.31 58.73 41.3 58.82 41.28 58.91 41.27 59.01 41.26 59.1 41.24 59.19 41.23 59.28 41.21 59.37 41.2 59.47 41.18 59.56 41.17 59.65 41.15 59.74 41.14 59.83 41.12 59.93 41.11 60.02 41.09 60.11 41.08 60.2 41.06 60.29 41.05 60.39 41.03 60.48 41.02 60.57 41 60.66 40.98 60.76 40.97 60.85 40.95 60.94 40.94 61.03 40.92 61.12 40.91 61.22 40.89 61.31 40.87 61.4 40.86 61.49 40.84 61.58 40.83 61.68 40.81 61.77 40.8 61.86 40.78 61.95 40.76 62.05 40.75 62.14 40.73 62.23 40.71 62.32 40.7 62.41 40.68 62.51 40.66 62.6 40.65 62.69 40.63 62.78 40.61 62.87 40.6 62.97 40.58 63.06 40.56 63.15 40.55 63.24 40.53 63.34 40.51 63.43 40.5 63.52 40.48 63.61 40.46 63.7 40.44 63.8 40.43 63.89 40.41 63.98 40.39 64.07 40.37 64.16 40.36 64.26 40.34 64.35 40.32 64.44 40.3 64.53 40.29 64.63 40.27 64.72 40.25 64.81 40.23 64.9 40.22 64.99 40.2 65.09 40.18 65.18 40.16 65.27 40.14 65.36 40.13 65.45 40.11 65.55 40.09 65.64 40.07 65.73 40.05 65.82 40.03 65.92 40.02 66.01 40 66.1 39.98 66.19 39.96 66.28 39.94 66.38 39.92 66.47 39.91 66.56 39.89 66.65 39.87 66.74 39.85 66.84 39.83 66.93 39.81 67.02 39.79 67.11 39.78 67.2 39.76 67.3 39.74 67.39 39.72 67.48 39.7 67.57 39.68 67.67 39.66 67.76 39.64 67.85 39.62 67.94 39.61 68.03 39.59 68.13 39.57 68.22 39.55 68.31 39.53 68.4 39.51 68.49 39.5 68.59 39.48 68.68 39.46 68.77 39.44 68.86 39.42 68.96 39.4 69.05 39.39 69.14 39.37 69.23 39.35 69.32 39.33 69.42 39.31 69.51 39.29 69.6 39.27 69.69 39.26 69.78 39.24 69.88 39.22 69.97 39.2 70.06 39.18 70.15 39.16 70.25 39.14 70.34 39.13 70.43 39.11 70.52 39.09 70.61 39.07 70.71 39.05 70.8 39.03 70.89 39.01 70.98 39 71.07 38.98 71.17 38.96 71.26 38.94 71.35 38.92 71.44 38.9 71.54 38.88 71.63 38.86 71.72 38.85 71.81 38.83 71.9 38.81 72 38.79 72.09 38.77 72.18 38.75 72.27 38.73 72.36 38.71 72.46 38.7 72.55 38.68 72.64 38.66 72.73 38.64 72.82 38.62 72.92 38.6 73.01 38.58 73.1 38.56 73.19 38.54 73.29 38.52 73.38 38.5 73.47 38.48 73.56 38.47 73.65 38.45 73.75 38.43 73.84 38.41 73.93 38.39 74.02 38.37 74.11 38.35 74.21 38.33 74.3 38.31 74.39 38.29 74.48 38.27 74.58 38.25 74.67 38.23 74.76 38.21 74.85 38.19 74.94 38.17 75.04 38.15 75.13 38.13 75.22 38.11 75.31 38.09 75.4 38.07 75.5 38.05 75.59 38.03 75.68 38.01 75.77 37.99 75.87 37.97 75.96 37.94 76.05 37.92 76.14 37.9 76.23 37.88 76.33 37.86 76.42 37.84 76.51 37.82 76.6 37.8 76.69 37.78 76.79 37.76 76.88 37.74 76.97 37.72 77.06 37.7 77.16 37.68 77.25 37.66 77.34 37.64 77.43 37.62 77.52 37.6 77.62 37.58 77.71 37.56 77.8 37.54 77.89 37.52 77.98 37.5 78.08 37.48 78.17 37.46 78.26 37.44 78.35 37.42 78.45 37.4 78.54 37.38 78.63 37.36 78.72 37.34 78.81 37.32 78.91 37.3 79 37.28 79.09 37.26 79.18 37.24 79.27 37.22 79.37 37.2 79.46 37.18 79.55 37.16 79.64 37.14 79.73 37.12 79.83 37.1 79.92 37.08 80.01 37.06 80.1 37.04 80.2 37.03 80.29 37.01 80.38 36.99 80.47 36.97 80.56 36.95 80.66 36.93 80.75 36.92 80.84 36.9 80.93 36.88 81.02 36.86 81.12 36.84 81.21 36.82 81.3 36.81 81.39 36.79 81.49 36.77 81.58 36.75 81.67 36.73 81.76 36.72 81.85 36.7 81.95 36.68 82.04 36.66 82.13 36.65 82.22 36.63 82.31 36.61 82.41 36.59 82.5 36.58 82.59 36.56 82.68 36.54 82.78 36.52 82.87 36.51 82.96 36.49 83.05 36.47 83.14 36.45 83.24 36.44 83.33 36.42 83.42 36.4 83.51 36.38 83.6 36.37 83.7 36.35 83.79 36.33 83.88 36.31 83.97 36.3 84.07 36.28 84.16 36.26 84.25 36.24 84.34 36.23 84.43 36.21 84.53 36.19 84.62 36.17 84.71 36.15 84.8 36.14 84.89 36.12 84.99 36.1 85.08 36.08 85.17 36.07 85.26 36.05 85.35 36.03 85.45 36.01 85.54 36 85.63 35.98 85.72 35.96 85.82 35.94 85.91 35.93 86 35.91 86.09 35.89 86.18 35.87 86.28 35.86 86.37 35.84 86.46 35.82 86.55 35.8 86.64 35.79 86.74 35.77 86.83 35.75 86.92 35.73 87.01 35.72 87.11 35.7 87.2 35.68 87.29 35.66 87.38 35.65 87.47 35.63 87.57 35.61 87.66 35.59 87.75 35.57 87.84 35.56 87.93 35.54 88.03 35.52 88.12 35.5 88.21 35.49 88.3 35.47 88.4 35.45 88.49 35.43 88.58 35.41 88.67 35.39 88.76 35.37 88.86 35.35 88.95 35.33 89.04 35.31 89.13 35.29 89.22 35.27 89.32 35.25 89.41 35.23 89.5 35.21 89.59 35.19 89.69 35.17 89.78 35.15 89.87 35.13 89.96 35.11 90.05 35.1 90.15 35.08 90.24 35.06 90.33 35.04 90.42 35.02 90.51 35 90.61 34.98 90.7 34.96 90.79 34.94 90.88 34.92 90.98 34.9 91.07 34.88 91.16 34.86 91.25 34.84 91.34 34.82 91.44 34.8 91.53 34.78 91.62 34.76 91.71 34.74 91.8 34.72 91.9 34.7 91.99 34.68 92.08 34.66 92.17 34.64 92.26 34.62 92.36 34.6 92.45 34.58 92.54 34.56 92.63 34.54 92.73 34.52 92.82 34.51 92.91 34.49 93 34.47 93.09 34.45 93.19 34.43 93.28 34.41 93.37 34.39 93.46 34.37 93.55 34.35 93.65 34.33 93.74 34.31 93.83 34.29 93.92 34.27 94.02 34.25 94.11 34.23 94.2 34.21 94.29 34.19 94.38 34.17 94.48 34.15 94.57 34.13 94.66 34.11 94.75 34.09 94.84 34.08 94.94 34.06 95.03 34.04 95.12 34.02 95.21 34 95.31 33.98 95.4 33.96 95.49 33.94 95.58 33.92 95.67 33.9 95.77 33.88 95.86 33.86 95.95 33.84 96.04 33.82 96.13 33.8 96.23 33.78 96.32 33.76 96.41 33.75 96.5 33.73 96.6 33.71 96.69 33.69 96.78 33.67 96.87 33.65 96.96 33.63 97.06 33.61 97.15 33.59 97.24 33.57 97.33 33.55 97.42 33.54 97.52 33.52 97.61 33.5 97.7 33.48 97.79 33.46 97.89 33.44 97.98 33.42 98.07 33.4 98.16 33.38 98.25 33.37 98.35 33.35 98.44 33.33 98.53 33.31 98.62 33.29 98.71 33.27 98.81 33.25 98.9 33.23 98.99 33.22 99.08 33.2 99.17 33.18 99.27 33.16 99.36 33.14 99.45 33.12 99.54 33.1 99.64 33.09 99.73 33.07 99.82 33.05 99.91 33.03 100 33.01 100.1 32.99 100.19 32.97 100.28 32.96 100.37 32.94 100.46 32.92 100.56 32.9 100.65 32.88 100.74 32.87 100.83 32.85 100.93 32.83 101.02 32.81 101.11 32.79 101.2 32.78 101.29 32.76 101.39 32.74 101.48 32.72 101.57 32.7 101.66 32.69 101.75 32.67 101.85 32.65 101.94 32.63 102.03 32.62 102.12 32.6 102.22 32.58 102.31 32.56 102.4 32.54 102.49 32.53 102.58 32.51 102.68 32.49 102.77 32.47 102.86 32.46 102.95 32.44 103.04 32.42 103.14 32.41 103.23 32.39 103.32 32.37 103.41 32.35 103.51 32.34 103.6 32.32 103.69 32.3 103.78 32.28 103.87 32.27 103.97 32.25 104.06 32.23 104.15 32.22 104.24 32.2 104.33 32.18 104.43 32.17 104.52 32.15 104.61 32.13 104.7 32.12 104.79 32.1 104.89 32.08 104.98 32.07 105.07 32.05 105.16 32.03 105.26 32.02 105.35 32 105.44 31.98 105.53 31.97 105.62 31.95 105.72 31.93 105.81 31.92 105.9 31.9 105.99 31.88 106.08 31.87 106.18 31.85 106.27 31.84 106.36 31.82 106.45 31.8 106.55 31.79 106.64 31.77 106.73 31.76 106.82 31.74 106.91 31.72 107.01 31.71 107.1 31.69 107.19 31.68 107.28 31.66 107.37 31.64 107.47 31.63 107.56 31.61 107.65 31.6 107.74 31.58 107.84 31.57 107.93 31.55 108.02 31.54 108.11 31.52 108.2 31.5 108.3 31.49 108.39 31.47 108.48 31.46 108.57 31.44 108.66 31.43 108.76 31.41 108.85 31.4 108.94 31.38 109.03 31.37 109.13 31.35 109.22 31.34 109.31 31.32 109.4 31.31 109.49 31.29 109.59 31.28 109.68 31.26 109.77 31.25 109.86 31.23 109.95 31.22 110.05 31.2 110.14 31.19 110.23 31.17 110.32 31.16 110.42 31.15 110.51 31.13 110.6 31.12 110.69 31.1 110.78 31.09 110.88 31.07 110.97 31.06 111.06 31.05 111.15 31.03 111.24 31.02 111.34 31 111.43 30.99 111.52 30.97 111.61 30.96 111.7 30.95 111.8 30.93 111.89 30.92 111.98 30.91 112.07 30.89 112.17 30.88 112.26 30.86 112.35 30.85 112.44 30.84 112.53 30.82 112.63 30.81 112.72 30.8 112.81 30.78 112.9 30.77 112.99 30.76 113.09 30.74 113.18 30.73 113.27 30.72 113.36 30.7 113.46 30.69 113.55 30.68 113.64 30.67 113.73 30.65 113.82 30.64 113.92 30.63 114.01 30.61 114.1 30.6 114.19 30.59 114.28 30.58 114.38 30.56 114.47 30.55 114.56 30.54 114.65 30.53 114.75 30.51 114.84 30.5 114.93 30.49 115.02 30.48 115.11 30.47 115.21 30.45 115.3 30.44 115.39 30.43 115.48 30.42 115.57 30.41 115.67 30.39 115.76 30.38 115.85 30.37 115.94 30.36 116.04 30.35 116.13 30.34 116.22 30.33 116.31 30.31 116.4 30.3 116.5 30.29 116.59 30.28\"/>\n",
" </g>\n",
" <g class=\"geometry\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-11\">\n",
" <g class=\"color_RGBA{Float32}(0.29803923f0,0.44705883f0,0.6901961f0,1.0f0)\" stroke=\"#FFFFFF\" stroke-width=\"0\" fill=\"#4C72B0\" id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-12\">\n",
" <circle cx=\"113.59\" cy=\"29.84\" r=\"0.3\"/>\n",
" <circle cx=\"113.44\" cy=\"29.85\" r=\"0.3\"/>\n",
" <circle cx=\"113.13\" cy=\"29.81\" r=\"0.3\"/>\n",
" <circle cx=\"116.65\" cy=\"30.94\" r=\"0.3\"/>\n",
" <circle cx=\"116.68\" cy=\"31.06\" r=\"0.3\"/>\n",
" <circle cx=\"115.77\" cy=\"30.88\" r=\"0.3\"/>\n",
" <circle cx=\"115.74\" cy=\"30.98\" r=\"0.3\"/>\n",
" <circle cx=\"112.26\" cy=\"29.97\" r=\"0.3\"/>\n",
" <circle cx=\"116.03\" cy=\"31.17\" r=\"0.3\"/>\n",
" <circle cx=\"114.41\" cy=\"30.81\" r=\"0.3\"/>\n",
" <circle cx=\"113.3\" cy=\"30.6\" r=\"0.3\"/>\n",
" <circle cx=\"110.68\" cy=\"29.83\" r=\"0.3\"/>\n",
" <circle cx=\"111.23\" cy=\"30.05\" r=\"0.3\"/>\n",
" <circle cx=\"111.06\" cy=\"30.06\" r=\"0.3\"/>\n",
" <circle cx=\"108.47\" cy=\"29.27\" r=\"0.3\"/>\n",
" <circle cx=\"109.15\" cy=\"29.54\" r=\"0.3\"/>\n",
" <circle cx=\"108.92\" cy=\"29.48\" r=\"0.3\"/>\n",
" <circle cx=\"111.83\" cy=\"30.4\" r=\"0.3\"/>\n",
" <circle cx=\"111.84\" cy=\"30.5\" r=\"0.3\"/>\n",
" <circle cx=\"111.28\" cy=\"30.46\" r=\"0.3\"/>\n",
" <circle cx=\"110.84\" cy=\"30.44\" r=\"0.3\"/>\n",
" <circle cx=\"110.55\" cy=\"30.41\" r=\"0.3\"/>\n",
" <circle cx=\"113.54\" cy=\"31.39\" r=\"0.3\"/>\n",
" <circle cx=\"111.38\" cy=\"30.84\" r=\"0.3\"/>\n",
" <circle cx=\"114.08\" cy=\"31.74\" r=\"0.3\"/>\n",
" <circle cx=\"111.03\" cy=\"30.9\" r=\"0.3\"/>\n",
" <circle cx=\"109.13\" cy=\"30.4\" r=\"0.3\"/>\n",
" <circle cx=\"107.17\" cy=\"29.8\" r=\"0.3\"/>\n",
" <circle cx=\"108.14\" cy=\"30.12\" r=\"0.3\"/>\n",
" <circle cx=\"107.01\" cy=\"29.79\" r=\"0.3\"/>\n",
" <circle cx=\"105.12\" cy=\"29.18\" r=\"0.3\"/>\n",
" <circle cx=\"103.24\" cy=\"28.55\" r=\"0.3\"/>\n",
" <circle cx=\"106.46\" cy=\"29.5\" r=\"0.3\"/>\n",
" <circle cx=\"106.24\" cy=\"29.43\" r=\"0.3\"/>\n",
" <circle cx=\"109\" cy=\"30.28\" r=\"0.3\"/>\n",
" <circle cx=\"106.79\" cy=\"29.6\" r=\"0.3\"/>\n",
" <circle cx=\"108.06\" cy=\"30.04\" r=\"0.3\"/>\n",
" <circle cx=\"109.84\" cy=\"30.62\" r=\"0.3\"/>\n",
" <circle cx=\"109.27\" cy=\"30.49\" r=\"0.3\"/>\n",
" <circle cx=\"108.44\" cy=\"30.28\" r=\"0.3\"/>\n",
" <circle cx=\"106.42\" cy=\"29.66\" r=\"0.3\"/>\n",
" <circle cx=\"108.12\" cy=\"30.2\" r=\"0.3\"/>\n",
" <circle cx=\"110.82\" cy=\"31.06\" r=\"0.3\"/>\n",
" <circle cx=\"109\" cy=\"30.57\" r=\"0.3\"/>\n",
" <circle cx=\"111.26\" cy=\"31.33\" r=\"0.3\"/>\n",
" <circle cx=\"107.34\" cy=\"30.15\" r=\"0.3\"/>\n",
" <circle cx=\"107.56\" cy=\"30.24\" r=\"0.3\"/>\n",
" <circle cx=\"109.21\" cy=\"30.8\" r=\"0.3\"/>\n",
" <circle cx=\"109.05\" cy=\"30.83\" r=\"0.3\"/>\n",
" <circle cx=\"110.51\" cy=\"31.34\" r=\"0.3\"/>\n",
" <circle cx=\"110.84\" cy=\"31.55\" r=\"0.3\"/>\n",
" <circle cx=\"109.05\" cy=\"31.08\" r=\"0.3\"/>\n",
" <circle cx=\"109.83\" cy=\"31.44\" r=\"0.3\"/>\n",
" <circle cx=\"109\" cy=\"31.31\" r=\"0.3\"/>\n",
" <circle cx=\"109.75\" cy=\"31.62\" r=\"0.3\"/>\n",
" <circle cx=\"112.37\" cy=\"32.51\" r=\"0.3\"/>\n",
" <circle cx=\"111.44\" cy=\"32.35\" r=\"0.3\"/>\n",
" <circle cx=\"111.39\" cy=\"32.5\" r=\"0.3\"/>\n",
" <circle cx=\"109.61\" cy=\"32.07\" r=\"0.3\"/>\n",
" <circle cx=\"108.87\" cy=\"31.99\" r=\"0.3\"/>\n",
" <circle cx=\"106.69\" cy=\"31.38\" r=\"0.3\"/>\n",
" <circle cx=\"106.16\" cy=\"31.35\" r=\"0.3\"/>\n",
" <circle cx=\"106.51\" cy=\"31.51\" r=\"0.3\"/>\n",
" <circle cx=\"106.3\" cy=\"31.58\" r=\"0.3\"/>\n",
" <circle cx=\"108.55\" cy=\"32.36\" r=\"0.3\"/>\n",
" <circle cx=\"111.43\" cy=\"33.33\" r=\"0.3\"/>\n",
" <circle cx=\"108.75\" cy=\"32.63\" r=\"0.3\"/>\n",
" <circle cx=\"110.75\" cy=\"33.35\" r=\"0.3\"/>\n",
" <circle cx=\"108.54\" cy=\"32.86\" r=\"0.3\"/>\n",
" <circle cx=\"108.13\" cy=\"32.85\" r=\"0.3\"/>\n",
" <circle cx=\"106.87\" cy=\"32.57\" r=\"0.3\"/>\n",
" <circle cx=\"106.7\" cy=\"32.64\" r=\"0.3\"/>\n",
" <circle cx=\"109.81\" cy=\"33.69\" r=\"0.3\"/>\n",
" <circle cx=\"107.29\" cy=\"33.09\" r=\"0.3\"/>\n",
" <circle cx=\"107.07\" cy=\"33.14\" r=\"0.3\"/>\n",
" <circle cx=\"107.46\" cy=\"33.42\" r=\"0.3\"/>\n",
" <circle cx=\"107.82\" cy=\"33.66\" r=\"0.3\"/>\n",
" <circle cx=\"105.61\" cy=\"33.16\" r=\"0.3\"/>\n",
" <circle cx=\"103.59\" cy=\"32.66\" r=\"0.3\"/>\n",
" <circle cx=\"106.74\" cy=\"33.7\" r=\"0.3\"/>\n",
" <circle cx=\"104.4\" cy=\"33.09\" r=\"0.3\"/>\n",
" <circle cx=\"102.05\" cy=\"32.43\" r=\"0.3\"/>\n",
" <circle cx=\"101.01\" cy=\"32.2\" r=\"0.3\"/>\n",
" <circle cx=\"98.53\" cy=\"31.44\" r=\"0.3\"/>\n",
" <circle cx=\"99.31\" cy=\"31.71\" r=\"0.3\"/>\n",
" <circle cx=\"99.34\" cy=\"31.76\" r=\"0.3\"/>\n",
" <circle cx=\"99.35\" cy=\"31.81\" r=\"0.3\"/>\n",
" <circle cx=\"99.86\" cy=\"31.99\" r=\"0.3\"/>\n",
" <circle cx=\"101.73\" cy=\"32.61\" r=\"0.3\"/>\n",
" <circle cx=\"101.31\" cy=\"32.54\" r=\"0.3\"/>\n",
" <circle cx=\"98.96\" cy=\"31.83\" r=\"0.3\"/>\n",
" <circle cx=\"98.1\" cy=\"31.58\" r=\"0.3\"/>\n",
" <circle cx=\"96.92\" cy=\"31.24\" r=\"0.3\"/>\n",
" <circle cx=\"96.82\" cy=\"31.2\" r=\"0.3\"/>\n",
" <circle cx=\"97.99\" cy=\"31.56\" r=\"0.3\"/>\n",
" <circle cx=\"97.18\" cy=\"31.35\" r=\"0.3\"/>\n",
" <circle cx=\"100.3\" cy=\"32.33\" r=\"0.3\"/>\n",
" <circle cx=\"99.36\" cy=\"32.08\" r=\"0.3\"/>\n",
" <circle cx=\"99.06\" cy=\"32.02\" r=\"0.3\"/>\n",
" <circle cx=\"98.87\" cy=\"32.04\" r=\"0.3\"/>\n",
" <circle cx=\"97.75\" cy=\"31.71\" r=\"0.3\"/>\n",
" <circle cx=\"101.04\" cy=\"32.74\" r=\"0.3\"/>\n",
" <circle cx=\"101.21\" cy=\"32.86\" r=\"0.3\"/>\n",
" <circle cx=\"98.63\" cy=\"32.09\" r=\"0.3\"/>\n",
" <circle cx=\"96.26\" cy=\"31.36\" r=\"0.3\"/>\n",
" <circle cx=\"94.42\" cy=\"30.74\" r=\"0.3\"/>\n",
" <circle cx=\"95.71\" cy=\"31.14\" r=\"0.3\"/>\n",
" <circle cx=\"99.73\" cy=\"32.37\" r=\"0.3\"/>\n",
" <circle cx=\"100.14\" cy=\"32.56\" r=\"0.3\"/>\n",
" <circle cx=\"102.77\" cy=\"33.43\" r=\"0.3\"/>\n",
" <circle cx=\"100.37\" cy=\"32.79\" r=\"0.3\"/>\n",
" <circle cx=\"101.11\" cy=\"33.11\" r=\"0.3\"/>\n",
" <circle cx=\"101.5\" cy=\"33.36\" r=\"0.3\"/>\n",
" <circle cx=\"102.44\" cy=\"33.76\" r=\"0.3\"/>\n",
" <circle cx=\"102.21\" cy=\"33.8\" r=\"0.3\"/>\n",
" <circle cx=\"99.67\" cy=\"33.12\" r=\"0.3\"/>\n",
" <circle cx=\"101.46\" cy=\"33.74\" r=\"0.3\"/>\n",
" <circle cx=\"102.36\" cy=\"34.13\" r=\"0.3\"/>\n",
" <circle cx=\"104.13\" cy=\"34.78\" r=\"0.3\"/>\n",
" <circle cx=\"103.26\" cy=\"34.7\" r=\"0.3\"/>\n",
" <circle cx=\"102.59\" cy=\"34.64\" r=\"0.3\"/>\n",
" <circle cx=\"101.31\" cy=\"34.36\" r=\"0.3\"/>\n",
" <circle cx=\"101.58\" cy=\"34.62\" r=\"0.3\"/>\n",
" <circle cx=\"98.51\" cy=\"33.76\" r=\"0.3\"/>\n",
" <circle cx=\"99.4\" cy=\"34.13\" r=\"0.3\"/>\n",
" <circle cx=\"97.39\" cy=\"33.61\" r=\"0.3\"/>\n",
" <circle cx=\"97.61\" cy=\"33.8\" r=\"0.3\"/>\n",
" <circle cx=\"96.8\" cy=\"33.68\" r=\"0.3\"/>\n",
" <circle cx=\"96.14\" cy=\"33.58\" r=\"0.3\"/>\n",
" <circle cx=\"95.96\" cy=\"33.64\" r=\"0.3\"/>\n",
" <circle cx=\"95.77\" cy=\"33.65\" r=\"0.3\"/>\n",
" <circle cx=\"98.23\" cy=\"34.48\" r=\"0.3\"/>\n",
" <circle cx=\"100.24\" cy=\"35.2\" r=\"0.3\"/>\n",
" <circle cx=\"98.93\" cy=\"34.92\" r=\"0.3\"/>\n",
" <circle cx=\"99.18\" cy=\"35.12\" r=\"0.3\"/>\n",
" <circle cx=\"98.22\" cy=\"34.99\" r=\"0.3\"/>\n",
" <circle cx=\"95.72\" cy=\"34.3\" r=\"0.3\"/>\n",
" <circle cx=\"94.11\" cy=\"33.86\" r=\"0.3\"/>\n",
" <circle cx=\"94.03\" cy=\"33.92\" r=\"0.3\"/>\n",
" <circle cx=\"91.13\" cy=\"33.04\" r=\"0.3\"/>\n",
" <circle cx=\"91.36\" cy=\"33.13\" r=\"0.3\"/>\n",
" <circle cx=\"88.3\" cy=\"32.13\" r=\"0.3\"/>\n",
" <circle cx=\"89.89\" cy=\"32.65\" r=\"0.3\"/>\n",
" <circle cx=\"90.07\" cy=\"32.76\" r=\"0.3\"/>\n",
" <circle cx=\"88.92\" cy=\"32.37\" r=\"0.3\"/>\n",
" <circle cx=\"89.93\" cy=\"32.71\" r=\"0.3\"/>\n",
" <circle cx=\"88.88\" cy=\"32.37\" r=\"0.3\"/>\n",
" <circle cx=\"89.91\" cy=\"32.66\" r=\"0.3\"/>\n",
" <circle cx=\"92.06\" cy=\"33.36\" r=\"0.3\"/>\n",
" <circle cx=\"91.23\" cy=\"33.14\" r=\"0.3\"/>\n",
" <circle cx=\"93.07\" cy=\"33.75\" r=\"0.3\"/>\n",
" <circle cx=\"93.91\" cy=\"34.06\" r=\"0.3\"/>\n",
" <circle cx=\"93.39\" cy=\"33.99\" r=\"0.3\"/>\n",
" <circle cx=\"94.97\" cy=\"34.53\" r=\"0.3\"/>\n",
" <circle cx=\"94.28\" cy=\"34.47\" r=\"0.3\"/>\n",
" <circle cx=\"94.33\" cy=\"34.58\" r=\"0.3\"/>\n",
" <circle cx=\"93.69\" cy=\"34.48\" r=\"0.3\"/>\n",
" <circle cx=\"92.44\" cy=\"34.15\" r=\"0.3\"/>\n",
" <circle cx=\"92.26\" cy=\"34.16\" r=\"0.3\"/>\n",
" <circle cx=\"94.21\" cy=\"34.81\" r=\"0.3\"/>\n",
" <circle cx=\"93.48\" cy=\"34.68\" r=\"0.3\"/>\n",
" <circle cx=\"94.87\" cy=\"35.19\" r=\"0.3\"/>\n",
" <circle cx=\"95.11\" cy=\"35.4\" r=\"0.3\"/>\n",
" <circle cx=\"91.81\" cy=\"34.46\" r=\"0.3\"/>\n",
" <circle cx=\"92.02\" cy=\"34.58\" r=\"0.3\"/>\n",
" <circle cx=\"91.03\" cy=\"34.33\" r=\"0.3\"/>\n",
" <circle cx=\"89.31\" cy=\"33.82\" r=\"0.3\"/>\n",
" <circle cx=\"90.04\" cy=\"34.12\" r=\"0.3\"/>\n",
" <circle cx=\"92.77\" cy=\"34.99\" r=\"0.3\"/>\n",
" <circle cx=\"94.74\" cy=\"35.67\" r=\"0.3\"/>\n",
" <circle cx=\"92.52\" cy=\"35.12\" r=\"0.3\"/>\n",
" <circle cx=\"91.38\" cy=\"34.84\" r=\"0.3\"/>\n",
" <circle cx=\"92.49\" cy=\"35.27\" r=\"0.3\"/>\n",
" <circle cx=\"90.19\" cy=\"34.64\" r=\"0.3\"/>\n",
" <circle cx=\"90.02\" cy=\"34.64\" r=\"0.3\"/>\n",
" <circle cx=\"89.48\" cy=\"34.52\" r=\"0.3\"/>\n",
" <circle cx=\"89.17\" cy=\"34.48\" r=\"0.3\"/>\n",
" <circle cx=\"89.96\" cy=\"34.76\" r=\"0.3\"/>\n",
" <circle cx=\"87.99\" cy=\"34.18\" r=\"0.3\"/>\n",
" <circle cx=\"87.97\" cy=\"34.19\" r=\"0.3\"/>\n",
" <circle cx=\"88.21\" cy=\"34.29\" r=\"0.3\"/>\n",
" <circle cx=\"86.58\" cy=\"33.8\" r=\"0.3\"/>\n",
" <circle cx=\"86.91\" cy=\"33.91\" r=\"0.3\"/>\n",
" <circle cx=\"89.7\" cy=\"34.77\" r=\"0.3\"/>\n",
" <circle cx=\"88.4\" cy=\"34.41\" r=\"0.3\"/>\n",
" <circle cx=\"90.67\" cy=\"35.17\" r=\"0.3\"/>\n",
" <circle cx=\"90.96\" cy=\"35.34\" r=\"0.3\"/>\n",
" <circle cx=\"90.01\" cy=\"35.13\" r=\"0.3\"/>\n",
" <circle cx=\"91.92\" cy=\"35.79\" r=\"0.3\"/>\n",
" <circle cx=\"91.02\" cy=\"35.64\" r=\"0.3\"/>\n",
" <circle cx=\"91.84\" cy=\"35.99\" r=\"0.3\"/>\n",
" <circle cx=\"92.71\" cy=\"36.39\" r=\"0.3\"/>\n",
" <circle cx=\"90.97\" cy=\"36\" r=\"0.3\"/>\n",
" <circle cx=\"91.39\" cy=\"36.23\" r=\"0.3\"/>\n",
" <circle cx=\"91.42\" cy=\"36.39\" r=\"0.3\"/>\n",
" <circle cx=\"92.83\" cy=\"36.96\" r=\"0.3\"/>\n",
" <circle cx=\"93.11\" cy=\"37.19\" r=\"0.3\"/>\n",
" <circle cx=\"90.91\" cy=\"36.67\" r=\"0.3\"/>\n",
" <circle cx=\"91.5\" cy=\"36.99\" r=\"0.3\"/>\n",
" <circle cx=\"91.27\" cy=\"37.05\" r=\"0.3\"/>\n",
" <circle cx=\"93.37\" cy=\"37.82\" r=\"0.3\"/>\n",
" <circle cx=\"88.87\" cy=\"36.55\" r=\"0.3\"/>\n",
" <circle cx=\"89.4\" cy=\"36.81\" r=\"0.3\"/>\n",
" <circle cx=\"91.55\" cy=\"37.59\" r=\"0.3\"/>\n",
" <circle cx=\"87.86\" cy=\"36.56\" r=\"0.3\"/>\n",
" <circle cx=\"90.16\" cy=\"37.36\" r=\"0.3\"/>\n",
" <circle cx=\"88.81\" cy=\"37.07\" r=\"0.3\"/>\n",
" <circle cx=\"91.45\" cy=\"37.98\" r=\"0.3\"/>\n",
" <circle cx=\"90.64\" cy=\"37.93\" r=\"0.3\"/>\n",
" <circle cx=\"88.18\" cy=\"37.35\" r=\"0.3\"/>\n",
" <circle cx=\"85.66\" cy=\"36.67\" r=\"0.3\"/>\n",
" <circle cx=\"87.15\" cy=\"37.21\" r=\"0.3\"/>\n",
" <circle cx=\"86.07\" cy=\"36.98\" r=\"0.3\"/>\n",
" <circle cx=\"83.77\" cy=\"36.34\" r=\"0.3\"/>\n",
" <circle cx=\"82.46\" cy=\"35.98\" r=\"0.3\"/>\n",
" <circle cx=\"82.54\" cy=\"36.05\" r=\"0.3\"/>\n",
" <circle cx=\"81.98\" cy=\"35.91\" r=\"0.3\"/>\n",
" <circle cx=\"82.53\" cy=\"36.12\" r=\"0.3\"/>\n",
" <circle cx=\"81.61\" cy=\"35.88\" r=\"0.3\"/>\n",
" <circle cx=\"83.91\" cy=\"36.65\" r=\"0.3\"/>\n",
" <circle cx=\"81.14\" cy=\"35.82\" r=\"0.3\"/>\n",
" <circle cx=\"80.73\" cy=\"35.73\" r=\"0.3\"/>\n",
" <circle cx=\"79.58\" cy=\"35.4\" r=\"0.3\"/>\n",
" <circle cx=\"78.79\" cy=\"35.15\" r=\"0.3\"/>\n",
" <circle cx=\"80.53\" cy=\"35.7\" r=\"0.3\"/>\n",
" <circle cx=\"83.12\" cy=\"36.52\" r=\"0.3\"/>\n",
" <circle cx=\"84.42\" cy=\"37.01\" r=\"0.3\"/>\n",
" <circle cx=\"84.08\" cy=\"37\" r=\"0.3\"/>\n",
" <circle cx=\"81.87\" cy=\"36.37\" r=\"0.3\"/>\n",
" <circle cx=\"82.79\" cy=\"36.73\" r=\"0.3\"/>\n",
" <circle cx=\"80.91\" cy=\"36.19\" r=\"0.3\"/>\n",
" <circle cx=\"77.98\" cy=\"35.26\" r=\"0.3\"/>\n",
" <circle cx=\"78.73\" cy=\"35.49\" r=\"0.3\"/>\n",
" <circle cx=\"78.65\" cy=\"35.46\" r=\"0.3\"/>\n",
" <circle cx=\"79.46\" cy=\"35.72\" r=\"0.3\"/>\n",
" <circle cx=\"79.43\" cy=\"35.72\" r=\"0.3\"/>\n",
" <circle cx=\"78.62\" cy=\"35.47\" r=\"0.3\"/>\n",
" <circle cx=\"81.12\" cy=\"36.27\" r=\"0.3\"/>\n",
" <circle cx=\"81.99\" cy=\"36.58\" r=\"0.3\"/>\n",
" <circle cx=\"84.45\" cy=\"37.4\" r=\"0.3\"/>\n",
" <circle cx=\"83.28\" cy=\"37.13\" r=\"0.3\"/>\n",
" <circle cx=\"81.56\" cy=\"36.67\" r=\"0.3\"/>\n",
" <circle cx=\"83.32\" cy=\"37.29\" r=\"0.3\"/>\n",
" <circle cx=\"81.7\" cy=\"36.87\" r=\"0.3\"/>\n",
" <circle cx=\"80.26\" cy=\"36.48\" r=\"0.3\"/>\n",
" <circle cx=\"77.93\" cy=\"35.78\" r=\"0.3\"/>\n",
" <circle cx=\"77.99\" cy=\"35.8\" r=\"0.3\"/>\n",
" <circle cx=\"80.27\" cy=\"36.52\" r=\"0.3\"/>\n",
" <circle cx=\"79.75\" cy=\"36.41\" r=\"0.3\"/>\n",
" <circle cx=\"80.89\" cy=\"36.82\" r=\"0.3\"/>\n",
" <circle cx=\"79.02\" cy=\"36.27\" r=\"0.3\"/>\n",
" <circle cx=\"79.45\" cy=\"36.5\" r=\"0.3\"/>\n",
" <circle cx=\"79.98\" cy=\"36.71\" r=\"0.3\"/>\n",
" <circle cx=\"81.05\" cy=\"37.1\" r=\"0.3\"/>\n",
" <circle cx=\"83.68\" cy=\"37.98\" r=\"0.3\"/>\n",
" <circle cx=\"84.78\" cy=\"38.47\" r=\"0.3\"/>\n",
" <circle cx=\"84.83\" cy=\"38.65\" r=\"0.3\"/>\n",
" <circle cx=\"83.79\" cy=\"38.46\" r=\"0.3\"/>\n",
" <circle cx=\"83.36\" cy=\"38.46\" r=\"0.3\"/>\n",
" <circle cx=\"83.36\" cy=\"38.59\" r=\"0.3\"/>\n",
" <circle cx=\"80.53\" cy=\"37.84\" r=\"0.3\"/>\n",
" <circle cx=\"79.59\" cy=\"37.64\" r=\"0.3\"/>\n",
" <circle cx=\"77.23\" cy=\"36.95\" r=\"0.3\"/>\n",
" <circle cx=\"77.16\" cy=\"36.96\" r=\"0.3\"/>\n",
" <circle cx=\"78.14\" cy=\"37.31\" r=\"0.3\"/>\n",
" <circle cx=\"78.05\" cy=\"37.34\" r=\"0.3\"/>\n",
" <circle cx=\"78.68\" cy=\"37.59\" r=\"0.3\"/>\n",
" <circle cx=\"76.17\" cy=\"36.85\" r=\"0.3\"/>\n",
" <circle cx=\"77.09\" cy=\"37.21\" r=\"0.3\"/>\n",
" <circle cx=\"75.76\" cy=\"36.83\" r=\"0.3\"/>\n",
" <circle cx=\"74.92\" cy=\"36.58\" r=\"0.3\"/>\n",
" <circle cx=\"74.12\" cy=\"36.37\" r=\"0.3\"/>\n",
" <circle cx=\"74.49\" cy=\"36.49\" r=\"0.3\"/>\n",
" <circle cx=\"74.95\" cy=\"36.65\" r=\"0.3\"/>\n",
" <circle cx=\"76.55\" cy=\"37.17\" r=\"0.3\"/>\n",
" <circle cx=\"76.33\" cy=\"37.14\" r=\"0.3\"/>\n",
" <circle cx=\"75.83\" cy=\"37.09\" r=\"0.3\"/>\n",
" <circle cx=\"72.69\" cy=\"36.09\" r=\"0.3\"/>\n",
" <circle cx=\"73.16\" cy=\"36.22\" r=\"0.3\"/>\n",
" <circle cx=\"74.42\" cy=\"36.61\" r=\"0.3\"/>\n",
" <circle cx=\"75.27\" cy=\"36.88\" r=\"0.3\"/>\n",
" <circle cx=\"74.36\" cy=\"36.62\" r=\"0.3\"/>\n",
" <circle cx=\"73.25\" cy=\"36.27\" r=\"0.3\"/>\n",
" <circle cx=\"71.18\" cy=\"35.57\" r=\"0.3\"/>\n",
" <circle cx=\"74.26\" cy=\"36.48\" r=\"0.3\"/>\n",
" <circle cx=\"77.55\" cy=\"37.5\" r=\"0.3\"/>\n",
" <circle cx=\"78.33\" cy=\"37.83\" r=\"0.3\"/>\n",
" <circle cx=\"77.6\" cy=\"37.69\" r=\"0.3\"/>\n",
" <circle cx=\"80.53\" cy=\"38.65\" r=\"0.3\"/>\n",
" <circle cx=\"76.91\" cy=\"37.61\" r=\"0.3\"/>\n",
" <circle cx=\"76.53\" cy=\"37.63\" r=\"0.3\"/>\n",
" <circle cx=\"73.75\" cy=\"36.77\" r=\"0.3\"/>\n",
" <circle cx=\"74.85\" cy=\"37.13\" r=\"0.3\"/>\n",
" <circle cx=\"74.05\" cy=\"36.89\" r=\"0.3\"/>\n",
" <circle cx=\"77.29\" cy=\"37.91\" r=\"0.3\"/>\n",
" <circle cx=\"77.87\" cy=\"38.2\" r=\"0.3\"/>\n",
" <circle cx=\"77.17\" cy=\"38.09\" r=\"0.3\"/>\n",
" <circle cx=\"77.06\" cy=\"38.13\" r=\"0.3\"/>\n",
" <circle cx=\"77.2\" cy=\"38.3\" r=\"0.3\"/>\n",
" <circle cx=\"75.11\" cy=\"37.71\" r=\"0.3\"/>\n",
" <circle cx=\"76.18\" cy=\"38.1\" r=\"0.3\"/>\n",
" <circle cx=\"73.39\" cy=\"37.26\" r=\"0.3\"/>\n",
" <circle cx=\"73.6\" cy=\"37.43\" r=\"0.3\"/>\n",
" <circle cx=\"74.28\" cy=\"37.71\" r=\"0.3\"/>\n",
" <circle cx=\"74.57\" cy=\"37.84\" r=\"0.3\"/>\n",
" <circle cx=\"76.05\" cy=\"38.35\" r=\"0.3\"/>\n",
" <circle cx=\"76.19\" cy=\"38.47\" r=\"0.3\"/>\n",
" <circle cx=\"76.31\" cy=\"38.65\" r=\"0.3\"/>\n",
" <circle cx=\"74.58\" cy=\"38.24\" r=\"0.3\"/>\n",
" <circle cx=\"76.21\" cy=\"38.82\" r=\"0.3\"/>\n",
" <circle cx=\"73.4\" cy=\"38\" r=\"0.3\"/>\n",
" <circle cx=\"72.41\" cy=\"37.78\" r=\"0.3\"/>\n",
" <circle cx=\"75.67\" cy=\"38.81\" r=\"0.3\"/>\n",
" <circle cx=\"79.01\" cy=\"39.91\" r=\"0.3\"/>\n",
" <circle cx=\"76.98\" cy=\"39.41\" r=\"0.3\"/>\n",
" <circle cx=\"77.01\" cy=\"39.57\" r=\"0.3\"/>\n",
" <circle cx=\"73.84\" cy=\"38.68\" r=\"0.3\"/>\n",
" <circle cx=\"72.11\" cy=\"38.22\" r=\"0.3\"/>\n",
" <circle cx=\"73.17\" cy=\"38.6\" r=\"0.3\"/>\n",
" <circle cx=\"73.46\" cy=\"38.75\" r=\"0.3\"/>\n",
" <circle cx=\"76.39\" cy=\"39.72\" r=\"0.3\"/>\n",
" <circle cx=\"75.87\" cy=\"39.73\" r=\"0.3\"/>\n",
" <circle cx=\"74.85\" cy=\"39.58\" r=\"0.3\"/>\n",
" <circle cx=\"76.43\" cy=\"40.19\" r=\"0.3\"/>\n",
" <circle cx=\"74.23\" cy=\"39.67\" r=\"0.3\"/>\n",
" <circle cx=\"74.44\" cy=\"39.84\" r=\"0.3\"/>\n",
" <circle cx=\"74.91\" cy=\"40.1\" r=\"0.3\"/>\n",
" <circle cx=\"73.53\" cy=\"39.79\" r=\"0.3\"/>\n",
" <circle cx=\"73.87\" cy=\"40.01\" r=\"0.3\"/>\n",
" <circle cx=\"74.07\" cy=\"40.18\" r=\"0.3\"/>\n",
" <circle cx=\"74.76\" cy=\"40.51\" r=\"0.3\"/>\n",
" <circle cx=\"76.34\" cy=\"41.14\" r=\"0.3\"/>\n",
" <circle cx=\"75.4\" cy=\"41.04\" r=\"0.3\"/>\n",
" <circle cx=\"73.33\" cy=\"40.55\" r=\"0.3\"/>\n",
" <circle cx=\"72.3\" cy=\"40.42\" r=\"0.3\"/>\n",
" <circle cx=\"72.63\" cy=\"40.63\" r=\"0.3\"/>\n",
" <circle cx=\"72.35\" cy=\"40.71\" r=\"0.3\"/>\n",
" <circle cx=\"72.12\" cy=\"40.76\" r=\"0.3\"/>\n",
" <circle cx=\"69.66\" cy=\"40.1\" r=\"0.3\"/>\n",
" <circle cx=\"66.02\" cy=\"39\" r=\"0.3\"/>\n",
" <circle cx=\"68.49\" cy=\"39.79\" r=\"0.3\"/>\n",
" <circle cx=\"69.29\" cy=\"40.11\" r=\"0.3\"/>\n",
" <circle cx=\"68.36\" cy=\"39.9\" r=\"0.3\"/>\n",
" <circle cx=\"67.58\" cy=\"39.73\" r=\"0.3\"/>\n",
" <circle cx=\"66.65\" cy=\"39.51\" r=\"0.3\"/>\n",
" <circle cx=\"69.24\" cy=\"40.37\" r=\"0.3\"/>\n",
" <circle cx=\"70.81\" cy=\"40.94\" r=\"0.3\"/>\n",
" <circle cx=\"66.52\" cy=\"39.67\" r=\"0.3\"/>\n",
" <circle cx=\"67.53\" cy=\"40.04\" r=\"0.3\"/>\n",
" <circle cx=\"65.62\" cy=\"39.5\" r=\"0.3\"/>\n",
" <circle cx=\"65.9\" cy=\"39.66\" r=\"0.3\"/>\n",
" <circle cx=\"63.48\" cy=\"38.92\" r=\"0.3\"/>\n",
" <circle cx=\"62.98\" cy=\"38.81\" r=\"0.3\"/>\n",
" <circle cx=\"62.86\" cy=\"38.78\" r=\"0.3\"/>\n",
" <circle cx=\"60.51\" cy=\"38.01\" r=\"0.3\"/>\n",
" <circle cx=\"61.22\" cy=\"38.19\" r=\"0.3\"/>\n",
" <circle cx=\"60.57\" cy=\"37.95\" r=\"0.3\"/>\n",
" <circle cx=\"59.97\" cy=\"37.71\" r=\"0.3\"/>\n",
" <circle cx=\"61.65\" cy=\"38.26\" r=\"0.3\"/>\n",
" <circle cx=\"59.92\" cy=\"37.66\" r=\"0.3\"/>\n",
" <circle cx=\"63.41\" cy=\"38.69\" r=\"0.3\"/>\n",
" <circle cx=\"66.73\" cy=\"39.73\" r=\"0.3\"/>\n",
" <circle cx=\"66.12\" cy=\"39.59\" r=\"0.3\"/>\n",
" <circle cx=\"64.54\" cy=\"39.14\" r=\"0.3\"/>\n",
" <circle cx=\"63.58\" cy=\"38.87\" r=\"0.3\"/>\n",
" <circle cx=\"63.76\" cy=\"38.94\" r=\"0.3\"/>\n",
" <circle cx=\"61.71\" cy=\"38.27\" r=\"0.3\"/>\n",
" <circle cx=\"64.39\" cy=\"39.08\" r=\"0.3\"/>\n",
" <circle cx=\"65.02\" cy=\"39.32\" r=\"0.3\"/>\n",
" <circle cx=\"62.49\" cy=\"38.52\" r=\"0.3\"/>\n",
" <circle cx=\"66.67\" cy=\"39.8\" r=\"0.3\"/>\n",
" <circle cx=\"67.68\" cy=\"40.22\" r=\"0.3\"/>\n",
" <circle cx=\"67.41\" cy=\"40.21\" r=\"0.3\"/>\n",
" <circle cx=\"67.56\" cy=\"40.34\" r=\"0.3\"/>\n",
" <circle cx=\"64.49\" cy=\"39.42\" r=\"0.3\"/>\n",
" <circle cx=\"63.76\" cy=\"39.23\" r=\"0.3\"/>\n",
" <circle cx=\"63.94\" cy=\"39.36\" r=\"0.3\"/>\n",
" <circle cx=\"66.93\" cy=\"40.33\" r=\"0.3\"/>\n",
" <circle cx=\"64.1\" cy=\"39.48\" r=\"0.3\"/>\n",
" <circle cx=\"64.29\" cy=\"39.62\" r=\"0.3\"/>\n",
" <circle cx=\"66.1\" cy=\"40.23\" r=\"0.3\"/>\n",
" <circle cx=\"65.61\" cy=\"40.19\" r=\"0.3\"/>\n",
" <circle cx=\"65.33\" cy=\"40.17\" r=\"0.3\"/>\n",
" <circle cx=\"64.57\" cy=\"39.98\" r=\"0.3\"/>\n",
" <circle cx=\"64.19\" cy=\"39.98\" r=\"0.3\"/>\n",
" <circle cx=\"66.15\" cy=\"40.64\" r=\"0.3\"/>\n",
" <circle cx=\"66.91\" cy=\"41.01\" r=\"0.3\"/>\n",
" <circle cx=\"66.71\" cy=\"41.05\" r=\"0.3\"/>\n",
" <circle cx=\"64.79\" cy=\"40.53\" r=\"0.3\"/>\n",
" <circle cx=\"64.47\" cy=\"40.56\" r=\"0.3\"/>\n",
" <circle cx=\"66.33\" cy=\"41.2\" r=\"0.3\"/>\n",
" <circle cx=\"62.56\" cy=\"40.07\" r=\"0.3\"/>\n",
" <circle cx=\"62.46\" cy=\"40.07\" r=\"0.3\"/>\n",
" <circle cx=\"62.57\" cy=\"40.14\" r=\"0.3\"/>\n",
" <circle cx=\"61.35\" cy=\"39.82\" r=\"0.3\"/>\n",
" <circle cx=\"63.4\" cy=\"40.51\" r=\"0.3\"/>\n",
" <circle cx=\"66.2\" cy=\"41.43\" r=\"0.3\"/>\n",
" <circle cx=\"67.17\" cy=\"41.84\" r=\"0.3\"/>\n",
" <circle cx=\"66.57\" cy=\"41.8\" r=\"0.3\"/>\n",
" <circle cx=\"67.23\" cy=\"42.12\" r=\"0.3\"/>\n",
" <circle cx=\"64.46\" cy=\"41.36\" r=\"0.3\"/>\n",
" <circle cx=\"63.05\" cy=\"41\" r=\"0.3\"/>\n",
" <circle cx=\"64.35\" cy=\"41.5\" r=\"0.3\"/>\n",
" <circle cx=\"66.12\" cy=\"42.14\" r=\"0.3\"/>\n",
" <circle cx=\"62.73\" cy=\"41.2\" r=\"0.3\"/>\n",
" <circle cx=\"59.72\" cy=\"40.3\" r=\"0.3\"/>\n",
" <circle cx=\"57.13\" cy=\"39.49\" r=\"0.3\"/>\n",
" <circle cx=\"58.68\" cy=\"39.96\" r=\"0.3\"/>\n",
" <circle cx=\"56.81\" cy=\"39.38\" r=\"0.3\"/>\n",
" <circle cx=\"61.25\" cy=\"40.72\" r=\"0.3\"/>\n",
" <circle cx=\"63.33\" cy=\"41.41\" r=\"0.3\"/>\n",
" <circle cx=\"62.7\" cy=\"41.3\" r=\"0.3\"/>\n",
" <circle cx=\"61.96\" cy=\"41.15\" r=\"0.3\"/>\n",
" <circle cx=\"62.1\" cy=\"41.26\" r=\"0.3\"/>\n",
" <circle cx=\"60.99\" cy=\"40.99\" r=\"0.3\"/>\n",
" <circle cx=\"60.9\" cy=\"41.05\" r=\"0.3\"/>\n",
" <circle cx=\"58.04\" cy=\"40.19\" r=\"0.3\"/>\n",
" <circle cx=\"60.29\" cy=\"40.9\" r=\"0.3\"/>\n",
" <circle cx=\"60.38\" cy=\"41.06\" r=\"0.3\"/>\n",
" <circle cx=\"61.26\" cy=\"41.44\" r=\"0.3\"/>\n",
" <circle cx=\"61.94\" cy=\"41.73\" r=\"0.3\"/>\n",
" <circle cx=\"61.52\" cy=\"41.73\" r=\"0.3\"/>\n",
" <circle cx=\"62.76\" cy=\"42.19\" r=\"0.3\"/>\n",
" <circle cx=\"60.51\" cy=\"41.6\" r=\"0.3\"/>\n",
" <circle cx=\"60\" cy=\"41.6\" r=\"0.3\"/>\n",
" <circle cx=\"58.3\" cy=\"41.12\" r=\"0.3\"/>\n",
" <circle cx=\"59.81\" cy=\"41.64\" r=\"0.3\"/>\n",
" <circle cx=\"58.09\" cy=\"41.15\" r=\"0.3\"/>\n",
" <circle cx=\"56.76\" cy=\"40.81\" r=\"0.3\"/>\n",
" <circle cx=\"58.39\" cy=\"41.38\" r=\"0.3\"/>\n",
" <circle cx=\"57.2\" cy=\"41.05\" r=\"0.3\"/>\n",
" <circle cx=\"56.05\" cy=\"40.74\" r=\"0.3\"/>\n",
" <circle cx=\"57.06\" cy=\"41.08\" r=\"0.3\"/>\n",
" <circle cx=\"57.12\" cy=\"41.15\" r=\"0.3\"/>\n",
" <circle cx=\"57.37\" cy=\"41.27\" r=\"0.3\"/>\n",
" <circle cx=\"58.41\" cy=\"41.67\" r=\"0.3\"/>\n",
" <circle cx=\"59.59\" cy=\"42.12\" r=\"0.3\"/>\n",
" <circle cx=\"62.54\" cy=\"43.1\" r=\"0.3\"/>\n",
" <circle cx=\"63.1\" cy=\"43.4\" r=\"0.3\"/>\n",
" <circle cx=\"61.93\" cy=\"43.2\" r=\"0.3\"/>\n",
" <circle cx=\"61.03\" cy=\"43.06\" r=\"0.3\"/>\n",
" <circle cx=\"59.86\" cy=\"42.83\" r=\"0.3\"/>\n",
" <circle cx=\"56.39\" cy=\"41.83\" r=\"0.3\"/>\n",
" <circle cx=\"57.07\" cy=\"42.14\" r=\"0.3\"/>\n",
" <circle cx=\"58.74\" cy=\"42.72\" r=\"0.3\"/>\n",
" <circle cx=\"56.24\" cy=\"42.05\" r=\"0.3\"/>\n",
" <circle cx=\"53.86\" cy=\"41.35\" r=\"0.3\"/>\n",
" <circle cx=\"53.69\" cy=\"41.33\" r=\"0.3\"/>\n",
" <circle cx=\"52.48\" cy=\"40.97\" r=\"0.3\"/>\n",
" <circle cx=\"56.33\" cy=\"42.15\" r=\"0.3\"/>\n",
" <circle cx=\"54.44\" cy=\"41.62\" r=\"0.3\"/>\n",
" <circle cx=\"56.71\" cy=\"42.36\" r=\"0.3\"/>\n",
" <circle cx=\"56.03\" cy=\"42.3\" r=\"0.3\"/>\n",
" <circle cx=\"56.95\" cy=\"42.68\" r=\"0.3\"/>\n",
" <circle cx=\"58.57\" cy=\"43.29\" r=\"0.3\"/>\n",
" <circle cx=\"58.56\" cy=\"43.42\" r=\"0.3\"/>\n",
" <circle cx=\"57.72\" cy=\"43.33\" r=\"0.3\"/>\n",
" <circle cx=\"58.1\" cy=\"43.55\" r=\"0.3\"/>\n",
" <circle cx=\"54.82\" cy=\"42.6\" r=\"0.3\"/>\n",
" <circle cx=\"55.06\" cy=\"42.79\" r=\"0.3\"/>\n",
" <circle cx=\"56.08\" cy=\"43.21\" r=\"0.3\"/>\n",
" <circle cx=\"54.51\" cy=\"42.81\" r=\"0.3\"/>\n",
" <circle cx=\"51.79\" cy=\"42\" r=\"0.3\"/>\n",
" <circle cx=\"50.81\" cy=\"41.71\" r=\"0.3\"/>\n",
" <circle cx=\"50.88\" cy=\"41.74\" r=\"0.3\"/>\n",
" <circle cx=\"51.67\" cy=\"42.04\" r=\"0.3\"/>\n",
" <circle cx=\"52.48\" cy=\"42.36\" r=\"0.3\"/>\n",
" <circle cx=\"53.16\" cy=\"42.61\" r=\"0.3\"/>\n",
" <circle cx=\"52.92\" cy=\"42.63\" r=\"0.3\"/>\n",
" <circle cx=\"53.51\" cy=\"42.87\" r=\"0.3\"/>\n",
" <circle cx=\"53.75\" cy=\"43.01\" r=\"0.3\"/>\n",
" <circle cx=\"54.41\" cy=\"43.31\" r=\"0.3\"/>\n",
" <circle cx=\"52.86\" cy=\"42.91\" r=\"0.3\"/>\n",
" <circle cx=\"52.84\" cy=\"42.99\" r=\"0.3\"/>\n",
" <circle cx=\"53.57\" cy=\"43.29\" r=\"0.3\"/>\n",
" <circle cx=\"52.16\" cy=\"42.98\" r=\"0.3\"/>\n",
" <circle cx=\"51.45\" cy=\"42.81\" r=\"0.3\"/>\n",
" <circle cx=\"49.79\" cy=\"42.37\" r=\"0.3\"/>\n",
" <circle cx=\"48.19\" cy=\"41.9\" r=\"0.3\"/>\n",
" <circle cx=\"47.58\" cy=\"41.7\" r=\"0.3\"/>\n",
" <circle cx=\"49.18\" cy=\"42.2\" r=\"0.3\"/>\n",
" <circle cx=\"48.36\" cy=\"41.95\" r=\"0.3\"/>\n",
" <circle cx=\"48.59\" cy=\"42.02\" r=\"0.3\"/>\n",
" <circle cx=\"47.91\" cy=\"41.8\" r=\"0.3\"/>\n",
" <circle cx=\"48.38\" cy=\"41.94\" r=\"0.3\"/>\n",
" <circle cx=\"47.62\" cy=\"41.69\" r=\"0.3\"/>\n",
" <circle cx=\"49.39\" cy=\"42.25\" r=\"0.3\"/>\n",
" <circle cx=\"48.58\" cy=\"42.04\" r=\"0.3\"/>\n",
" <circle cx=\"49.29\" cy=\"42.27\" r=\"0.3\"/>\n",
" <circle cx=\"52.6\" cy=\"43.32\" r=\"0.3\"/>\n",
" <circle cx=\"52.01\" cy=\"43.22\" r=\"0.3\"/>\n",
" <circle cx=\"49.79\" cy=\"42.57\" r=\"0.3\"/>\n",
" <circle cx=\"49.42\" cy=\"42.48\" r=\"0.3\"/>\n",
" <circle cx=\"50.59\" cy=\"42.89\" r=\"0.3\"/>\n",
" <circle cx=\"50.76\" cy=\"42.99\" r=\"0.3\"/>\n",
" <circle cx=\"53.03\" cy=\"43.74\" r=\"0.3\"/>\n",
" <circle cx=\"52.47\" cy=\"43.69\" r=\"0.3\"/>\n",
" <circle cx=\"50.9\" cy=\"43.31\" r=\"0.3\"/>\n",
" <circle cx=\"48.44\" cy=\"42.58\" r=\"0.3\"/>\n",
" <circle cx=\"49.25\" cy=\"42.88\" r=\"0.3\"/>\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-80217fdcce744fcf9ed925850409e4d1-element-13\">\n",
" <text x=\"20.98\" y=\"78.72\" text-anchor=\"end\" dy=\"0.35em\">0.850</text>\n",
" <text x=\"20.98\" y=\"54.81\" text-anchor=\"end\" dy=\"0.35em\">0.855</text>\n",
" <text x=\"20.98\" y=\"30.91\" text-anchor=\"end\" dy=\"0.35em\">0.860</text>\n",
" <text x=\"20.98\" y=\"7\" text-anchor=\"end\" dy=\"0.35em\">0.865</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-80217fdcce744fcf9ed925850409e4d1-element-14\">\n",
" <text x=\"8.81\" y=\"40.86\" text-anchor=\"middle\" dy=\"0.35em\" transform=\"rotate(-90, 8.81, 42.86)\">Δ log(Exchange Rate)</text>\n",
" </g>\n",
"</g>\n",
"<defs>\n",
"<clipPath id=\"fig-80217fdcce744fcf9ed925850409e4d1-element-5\">\n",
" <path d=\"M21.98,5 L 136.42 5 136.42 80.72 21.98 80.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=\"141.42mm\" height=\"100mm\" viewBox=\"0 0 141.42 100\"\n",
" stroke=\"none\"\n",
" fill=\"#000000\"\n",
" stroke-width=\"0.3\"\n",
" font-size=\"3.88\"\n",
"\n",
" id=\"fig-801c81edc8014b19aa7bccfc2996542a\">\n",
"<g class=\"plotroot xscalable yscalable\" id=\"fig-801c81edc8014b19aa7bccfc2996542a-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-801c81edc8014b19aa7bccfc2996542a-element-2\">\n",
" <text x=\"79.2\" y=\"88.39\" text-anchor=\"middle\" dy=\"0.6em\">Δ log(c₂) - Δ log(c₁)</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-801c81edc8014b19aa7bccfc2996542a-element-3\">\n",
" <text x=\"-123.28\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.912</text>\n",
" <text x=\"-86.46\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.913</text>\n",
" <text x=\"-49.65\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.914</text>\n",
" <text x=\"-12.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.915</text>\n",
" <text x=\"23.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.916</text>\n",
" <text x=\"60.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.917</text>\n",
" <text x=\"97.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.918</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"visible\">0.919</text>\n",
" <text x=\"171.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.920</text>\n",
" <text x=\"208.05\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.921</text>\n",
" <text x=\"244.86\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.922</text>\n",
" <text x=\"281.68\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"1.0\" visibility=\"hidden\">0.923</text>\n",
" <text x=\"-90.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9129</text>\n",
" <text x=\"-86.46\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9130</text>\n",
" <text x=\"-82.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9131</text>\n",
" <text x=\"-79.1\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9132</text>\n",
" <text x=\"-75.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9133</text>\n",
" <text x=\"-71.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9134</text>\n",
" <text x=\"-68.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9135</text>\n",
" <text x=\"-64.38\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9136</text>\n",
" <text x=\"-60.69\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9137</text>\n",
" <text x=\"-57.01\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9138</text>\n",
" <text x=\"-53.33\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9139</text>\n",
" <text x=\"-49.65\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9140</text>\n",
" <text x=\"-45.97\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9141</text>\n",
" <text x=\"-42.29\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9142</text>\n",
" <text x=\"-38.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9143</text>\n",
" <text x=\"-34.92\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9144</text>\n",
" <text x=\"-31.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9145</text>\n",
" <text x=\"-27.56\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9146</text>\n",
" <text x=\"-23.88\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9147</text>\n",
" <text x=\"-20.2\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9148</text>\n",
" <text x=\"-16.52\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9149</text>\n",
" <text x=\"-12.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9150</text>\n",
" <text x=\"-9.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9151</text>\n",
" <text x=\"-5.47\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9152</text>\n",
" <text x=\"-1.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9153</text>\n",
" <text x=\"1.89\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9154</text>\n",
" <text x=\"5.57\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9155</text>\n",
" <text x=\"9.25\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9156</text>\n",
" <text x=\"12.93\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9157</text>\n",
" <text x=\"16.62\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9158</text>\n",
" <text x=\"20.3\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9159</text>\n",
" <text x=\"23.98\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9160</text>\n",
" <text x=\"27.66\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9161</text>\n",
" <text x=\"31.34\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9162</text>\n",
" <text x=\"35.02\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9163</text>\n",
" <text x=\"38.7\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9164</text>\n",
" <text x=\"42.39\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9165</text>\n",
" <text x=\"46.07\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9166</text>\n",
" <text x=\"49.75\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9167</text>\n",
" <text x=\"53.43\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9168</text>\n",
" <text x=\"57.11\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9169</text>\n",
" <text x=\"60.79\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9170</text>\n",
" <text x=\"64.47\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9171</text>\n",
" <text x=\"68.16\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9172</text>\n",
" <text x=\"71.84\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9173</text>\n",
" <text x=\"75.52\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9174</text>\n",
" <text x=\"79.2\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9175</text>\n",
" <text x=\"82.88\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9176</text>\n",
" <text x=\"86.56\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9177</text>\n",
" <text x=\"90.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9178</text>\n",
" <text x=\"93.93\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9179</text>\n",
" <text x=\"97.61\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9180</text>\n",
" <text x=\"101.29\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9181</text>\n",
" <text x=\"104.97\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9182</text>\n",
" <text x=\"108.65\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9183</text>\n",
" <text x=\"112.33\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9184</text>\n",
" <text x=\"116.01\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9185</text>\n",
" <text x=\"119.7\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9186</text>\n",
" <text x=\"123.38\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9187</text>\n",
" <text x=\"127.06\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9188</text>\n",
" <text x=\"130.74\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9189</text>\n",
" <text x=\"134.42\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9190</text>\n",
" <text x=\"138.1\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9191</text>\n",
" <text x=\"141.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9192</text>\n",
" <text x=\"145.47\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9193</text>\n",
" <text x=\"149.15\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9194</text>\n",
" <text x=\"152.83\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9195</text>\n",
" <text x=\"156.51\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9196</text>\n",
" <text x=\"160.19\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9197</text>\n",
" <text x=\"163.87\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9198</text>\n",
" <text x=\"167.55\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9199</text>\n",
" <text x=\"171.24\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9200</text>\n",
" <text x=\"174.92\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9201</text>\n",
" <text x=\"178.6\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9202</text>\n",
" <text x=\"182.28\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9203</text>\n",
" <text x=\"185.96\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9204</text>\n",
" <text x=\"189.64\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9205</text>\n",
" <text x=\"193.32\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9206</text>\n",
" <text x=\"197.01\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9207</text>\n",
" <text x=\"200.69\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9208</text>\n",
" <text x=\"204.37\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9209</text>\n",
" <text x=\"208.05\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9210</text>\n",
" <text x=\"211.73\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9211</text>\n",
" <text x=\"215.41\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9212</text>\n",
" <text x=\"219.09\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9213</text>\n",
" <text x=\"222.78\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9214</text>\n",
" <text x=\"226.46\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9215</text>\n",
" <text x=\"230.14\" y=\"84.39\" text-anchor=\"middle\" gadfly:scale=\"10.0\" visibility=\"hidden\">0.9216</text>\n",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment