Skip to content
Snippets Groups Projects
Commit 1e2b209d authored by Dima Kogan's avatar Dima Kogan
Browse files

New upstream version 0.44

parent 559590bd
No related branches found
No related tags found
No related merge requests found
gnuplotlib (0.43) unstable; urgency=medium
gnuplotlib (0.44)
* Added "axes" curve option. The extends the "y2" curve option, so that
we can request "x2y2" for instance
* If we have linked axes, do NOT set the default axis parameters. Conflicting
settings can result otherwise
* Added options x2{max,min,range,inv,label}
* set/unset are added to the commands AFTER processing stuff
Which means that the given set/unset override the automatic stuff, as
expected. The specific things that can be overridden are:
set {axis}label
set {axis}ranges
set title
set view
set size
-- Dima Kogan <dkogan@debian.org> Wed, 02 Apr 2025 10:43:05 -0700
gnuplotlib (0.43)
* Updated to work with numpy2
* gnuplot child process is asked to "exit" explicitly. This is needed on
......
......@@ -858,7 +858,7 @@ a square aspect ratio in x and y, but scales z. square_xy and square-xy and
squarexy are synonyms. In 2D, these are all synonyms. Using any of these in 3D
requires Gnuplot >= 4.4
- {x,y,y2,z,cb}{min,max,range,inv}
- {x,x2y,y2,z,cb}{min,max,range,inv}
If given, these set the extents of the plot window for the requested axes.
Either min/max or range can be given but not both. min/max are numerical values.
......@@ -874,7 +874,7 @@ The y2 axis is the secondary y-axis that is enabled by the 'y2' curve option.
The 'cb' axis represents the color axis, used when color-coded plots are being
generated
- xlabel, ylabel, zlabel, y2label, cblabel
- xlabel, x2label, ylabel, zlabel, y2label, cblabel
These specify axis labels
......@@ -923,9 +923,17 @@ documentation for the 'with' keyword for more information
Identical to 'with'. In python 'with' is a reserved word so it is illegal to use
it as a keyword arg key, so '_with' exists as an alias
- axes
One of: ('x1y1','x1y2','x2y1','x2y2'). Specifies which xy axes in the plot
should define this curve. This is the left/right and up/down axes in the plot.
Only applies to 2D plots. Exclusive with the "y2" option
- y2
If true, requests that this curve be plotted on the y2 axis instead of the main y axis
If true, requests that this curve be plotted on the x1y2 axes instead of the
default x1y1 axes. This is a special case of the "axes" option, and is exclusive
with it
- tuplesize
......
......@@ -776,7 +776,7 @@ a square aspect ratio in x and y, but scales z. square_xy and square-xy and
squarexy are synonyms. In 2D, these are all synonyms. Using any of these in 3D
requires Gnuplot >= 4.4
- {x,y,y2,z,cb}{min,max,range,inv}
- {x,x2y,y2,z,cb}{min,max,range,inv}
If given, these set the extents of the plot window for the requested axes.
Either min/max or range can be given but not both. min/max are numerical values.
......@@ -792,7 +792,7 @@ The y2 axis is the secondary y-axis that is enabled by the 'y2' curve option.
The 'cb' axis represents the color axis, used when color-coded plots are being
generated
- xlabel, ylabel, zlabel, y2label, cblabel
- xlabel, x2label, ylabel, zlabel, y2label, cblabel
These specify axis labels
......@@ -841,9 +841,17 @@ documentation for the 'with' keyword for more information
Identical to 'with'. In python 'with' is a reserved word so it is illegal to use
it as a keyword arg key, so '_with' exists as an alias
- axes
One of: ('x1y1','x1y2','x2y1','x2y2'). Specifies which xy axes in the plot
should define this curve. This is the left/right and up/down axes in the plot.
Only applies to 2D plots. Exclusive with the "y2" option
- y2
If true, requests that this curve be plotted on the y2 axis instead of the main y axis
If true, requests that this curve be plotted on the x1y2 axes instead of the
default x1y1 axes. This is a special case of the "axes" option, and is exclusive
with it
- tuplesize
......@@ -1118,7 +1126,7 @@ import numpysane as nps
gnuplot_executable='gnuplot'
# setup.py assumes the version is a simple string in '' quotes
__version__ = '0.43'
__version__ = '0.44'
# In a multiplot, the "process" options apply to the larger plot containing all
# the subplots, and the "subplot" options apply to each invididual plot.
......@@ -1141,17 +1149,21 @@ knownSubplotOptions = frozenset(('cmds', # both process and subplot
'rgbimage',
'equation', 'equation_above', 'equation_below',
'xmax', 'xmin', 'xrange', 'xinv', 'xlabel',
'y2max', 'y2min', 'y2range', 'y2inv', 'y2label',
'x2max', 'x2min', 'x2range', 'x2inv', 'x2label',
'ymax', 'ymin', 'yrange', 'yinv', 'ylabel',
'y2max', 'y2min', 'y2range', 'y2inv', 'y2label',
'zmax', 'zmin', 'zrange', 'zinv', 'zlabel',
'cbmax', 'cbmin', 'cbrange', 'cblabel'))
knownCurveOptions = frozenset(( 'with', # both a plot option and a curve option
'legend', 'y2', 'tuplesize', 'using',
'legend', 'axes', 'y2', 'tuplesize', 'using',
'histogram', 'binwidth'))
knownInteractiveTerminals = frozenset(('x11', 'wxt', 'qt', 'aquaterm'))
knownAxes = frozenset(('x1y1','x1y2','x2y1','x2y2'))
keysAcceptingIterable = frozenset(('cmds','set','unset','equation','equation_below','equation_above'))
# when testing plots with ASCII i/o, this is the unit of test data
......@@ -1281,7 +1293,8 @@ def _split_dict(d, *keysets):
def _get_cmds__setunset(cmds,options):
for setunset in ('set', 'unset'):
if setunset in options:
cmds += [ setunset + ' ' + setting for setting in options[setunset] ]
for setunset,thing in options.items():
cmds.append(f"{setunset} {thing}")
def _massageProcessOptionsAndGetCmds(processOptions):
r'''Compute commands to set the given process options, and massage the input, as
......@@ -1369,7 +1382,7 @@ def _massageSubplotOptionsAndGetCmds(subplotOptions):
if subplotOptions.get('3d'):
if 'y2min' in subplotOptions or 'y2max' in subplotOptions:
raise GnuplotlibError("'3d' does not make sense with 'y2'...")
raise GnuplotlibError("'3d' does not make sense with 'y2...'")
if not 'equal_3d' in features and \
( subplotOptions.get('square_xy') or subplotOptions.get('square') ):
......@@ -1386,16 +1399,35 @@ def _massageSubplotOptionsAndGetCmds(subplotOptions):
# grid on by default
cmds = ['set grid']
_get_cmds__setunset(cmds, subplotOptions)
# set the plot bounds
for axis in ('x', 'y', 'y2', 'z', 'cb'):
# set the curve labels
# set the curve labels
for axis in ('x', 'x2', 'y', 'y2', 'z', 'cb'):
if axis + 'label' in subplotOptions:
cmds.append('set {axis}label "{label}"'.format(axis = axis,
label = subplotOptions[axis + 'label']))
have_set_range = set()
for axis in ('x', 'x2', 'y', 'y2', 'z', 'cb'):
if subplotOptions.get('set') and \
any ( re.match(rf" *{axis}range[\s=]", s) for s in subplotOptions['set'] ):
have_set_range.add(axis)
elif subplotOptions.get('cmds') and \
any ( re.search(rf"^ *set +{axis}range[\s=]", s, flags=re.M) for s in subplotOptions.get('cmds') ):
have_set_range.add(axis)
have_set_link = set()
for axis in ('x','y'):
if subplotOptions.get('set') and \
any ( re.match(rf" *link +{axis}", s) for s in subplotOptions['set'] ):
have_set_link.add(axis)
elif subplotOptions.get('cmds') and \
any ( re.search(rf"^ *set +link +{axis}", s, flags=re.M) for s in subplotOptions.get('cmds') ):
have_set_link.add(axis)
# set the plot bounds
ranges = dict()
ranges_default = dict()
for axis in ('x', 'x2', 'y', 'y2', 'z', 'cb'):
# I deal with range bounds here. These can be given for the various
# axes by variables (W-axis here; replace W with x, y, z, etc):
#
......@@ -1409,7 +1441,8 @@ def _massageSubplotOptionsAndGetCmds(subplotOptions):
# This axis was set up with the 'set' plot option, so I don't touch
# it
if any ( re.match(r" *set +{}range[\s=]".format(axis), s) for s in cmds ):
if axis in have_set_range:
ranges_default[axis] = False
continue
# images generally have the origin at the top-left instead of the
......@@ -1418,7 +1451,8 @@ def _massageSubplotOptionsAndGetCmds(subplotOptions):
axis == 'y' and \
not any ( ('y'+what) in subplotOptions \
for what in ('min','max','range','inv')):
cmds.append("set yrange [:] reverse")
ranges[axis] = "set yrange [:] reverse"
ranges_default[axis] = True
continue
opt_min = subplotOptions.get( axis + 'min' )
......@@ -1444,11 +1478,33 @@ def _massageSubplotOptionsAndGetCmds(subplotOptions):
if opt_min is not None and opt_max is not None and opt_min < opt_max:
opt_min,opt_max = opt_max,opt_min
cmds.append( "set {}range [{}:{}] {}reverse".
ranges[axis] = \
"set {}range [{}:{}] {}reverse". \
format(axis,
'*' if opt_min is None else opt_min,
'*' if opt_max is None else opt_max,
'' if opt_inv else 'no'))
'' if opt_inv else 'no')
ranges_default[axis] = \
opt_min is None and \
opt_max is None and \
opt_inv is None
# If we have linked axes, do NOT set the default axis parameters, since the
# other axis will control it. Otherwise we hit
# https://sourceforge.net/p/gnuplot/bugs/2783/ and surprising behaviors can
# be triggered
for axis in ('x','y'):
axis2 = f"{axis}2"
if axis in have_set_link:
if axis in ranges and not ranges_default[axis ] and \
axis2 in ranges and not ranges_default[axis2]:
raise GnuplotlibError(f"We're linking {axis},{axis2} so the range of at most one of these may be given")
if axis in ranges and ranges_default[axis ]:
del ranges[axis]
if axis2 in ranges and ranges_default[axis2]:
del ranges[axis2]
cmds.extend(ranges.values())
# set the title
if 'title' in subplotOptions:
......@@ -1465,6 +1521,7 @@ def _massageSubplotOptionsAndGetCmds(subplotOptions):
if subplotOptions.get('square'):
cmds.append("set size ratio -1")
_get_cmds__setunset(cmds, subplotOptions)
if 'cmds' in subplotOptions: cmds += subplotOptions['cmds']
return cmds
......@@ -1942,8 +1999,11 @@ labels with spaces in them
# back on the global
_with = curve['with'] if 'with' in curve else subplotOptions['with']
if _with: cmd += "with {} ".format(_with)
if curve.get('y2'): cmd += "axes x1y2 "
if _with: cmd += "with {} ".format(_with)
axes = curve.get('axes')
if axes is not None:
cmd += f"axes {axes} "
return cmd
......@@ -1998,10 +2058,10 @@ labels with spaces in them
basecmd = ''
# if anything is to be plotted on the y2 axis, set it up
if any( curve.get('y2') for curve in curves ):
if subplotOptions.get('3d'):
raise GnuplotlibError("3d plots don't have a y2 axis")
if subplotOptions.get('3d') and \
any( 'axes' in curve for curve in curves ):
raise GnuplotlibError("3d plots cannot have 'axes' specified")
if any( curve.get('axes','x')[-1] == '2' for curve in curves ):
basecmd += "set ytics nomirror\n"
basecmd += "set y2tics\n"
......@@ -2183,6 +2243,17 @@ labels with spaces in them
if not opt in knownCurveOptions:
raise GnuplotlibError("'{}' not a known curve option".format(opt))
axes = curve.get('axes')
if axes is not None:
if not axes in knownAxes:
raise GnuplotlibError(f'"axes" must be one of {knownAxes}, but got {axes=}')
if curve.get('y2'):
if axes is not None:
raise GnuplotlibError('"y2" and "axes" are mutually exclusive')
del curve['y2']
curve['axes'] = 'x1y2'
# tuplesize is either given explicitly, or taken from the '3d' plot
# option. 2d plots default to tuplesize=2 and 3d plots to
# tuplesize=3. This means that the tuplesize can be omitted for
......
......@@ -46,7 +46,7 @@
<text xml:space="preserve"><tspan font-family="Arial" xml:space="preserve">svg terminal test</tspan></text>
</g>
<g transform="translate(16.78,44.40)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text xml:space="preserve"><tspan font-family="Arial" xml:space="preserve">gnuplot version 6.0.0 </tspan></text>
<text xml:space="preserve"><tspan font-family="Arial" xml:space="preserve">gnuplot version 6.0.2 </tspan></text>
</g>
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......
......@@ -38,7 +38,7 @@
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="white" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g fill="none" color="white" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
......
......@@ -365,42 +365,42 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,558.00 L704.51,558.00 M684.72,558.00 L695.22,558.00 '/> <g transform="translate(724.80,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M715.01,558.00 L704.51,558.00 '/> <g transform="translate(724.80,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-600</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,468.51 L704.51,468.51 M684.72,468.51 L695.22,468.51 '/> <g transform="translate(724.80,473.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,558.00 L695.22,558.00 M715.01,468.51 L704.51,468.51 '/> <g transform="translate(724.80,473.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-400</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,379.01 L704.51,379.01 M684.72,379.01 L695.22,379.01 '/> <g transform="translate(724.80,383.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,468.51 L695.22,468.51 M715.01,379.01 L704.51,379.01 '/> <g transform="translate(724.80,383.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-200</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,289.51 L704.51,289.51 M684.72,289.51 L695.22,289.51 '/> <g transform="translate(724.80,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,379.01 L695.22,379.01 M715.01,289.51 L704.51,289.51 '/> <g transform="translate(724.80,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,200.01 L704.51,200.01 M684.72,200.01 L695.22,200.01 '/> <g transform="translate(724.80,204.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,289.51 L695.22,289.51 M715.01,200.01 L704.51,200.01 '/> <g transform="translate(724.80,204.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 200</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,110.51 L704.51,110.51 M684.72,110.51 L695.22,110.51 '/> <g transform="translate(724.80,115.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,200.01 L695.22,200.01 M715.01,110.51 L704.51,110.51 '/> <g transform="translate(724.80,115.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 400</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,21.01 L704.51,21.01 M684.72,21.01 L695.22,21.01 '/> <g transform="translate(724.80,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,110.51 L695.22,110.51 M715.01,21.01 L704.51,21.01 '/> <g transform="translate(724.80,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 600</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M684.72,21.01 L695.22,21.01 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
......
......@@ -812,57 +812,57 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,558.00 L489.66,558.00 M488.08,558.00 L498.58,558.00 '/> <g transform="translate(509.95,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M500.16,558.00 L489.66,558.00 '/> <g transform="translate(509.95,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-8</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,498.34 L489.66,498.34 M488.08,498.34 L498.58,498.34 '/> <g transform="translate(509.95,502.89)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,558.00 L498.58,558.00 M500.16,498.34 L489.66,498.34 '/> <g transform="translate(509.95,502.89)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-7</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,438.67 L489.66,438.67 M488.08,438.67 L498.58,438.67 '/> <g transform="translate(509.95,443.22)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,498.34 L498.58,498.34 M500.16,438.67 L489.66,438.67 '/> <g transform="translate(509.95,443.22)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,379.01 L489.66,379.01 M488.08,379.01 L498.58,379.01 '/> <g transform="translate(509.95,383.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,438.67 L498.58,438.67 M500.16,379.01 L489.66,379.01 '/> <g transform="translate(509.95,383.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-5</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,319.34 L489.66,319.34 M488.08,319.34 L498.58,319.34 '/> <g transform="translate(509.95,323.89)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,379.01 L498.58,379.01 M500.16,319.34 L489.66,319.34 '/> <g transform="translate(509.95,323.89)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,259.68 L489.66,259.68 M488.08,259.68 L498.58,259.68 '/> <g transform="translate(509.95,264.23)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,319.34 L498.58,319.34 M500.16,259.68 L489.66,259.68 '/> <g transform="translate(509.95,264.23)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-3</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,200.01 L489.66,200.01 M488.08,200.01 L498.58,200.01 '/> <g transform="translate(509.95,204.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,259.68 L498.58,259.68 M500.16,200.01 L489.66,200.01 '/> <g transform="translate(509.95,204.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,140.35 L489.66,140.35 M488.08,140.35 L498.58,140.35 '/> <g transform="translate(509.95,144.90)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,200.01 L498.58,200.01 M500.16,140.35 L489.66,140.35 '/> <g transform="translate(509.95,144.90)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,80.68 L489.66,80.68 M488.08,80.68 L498.58,80.68 '/> <g transform="translate(509.95,85.23)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,140.35 L498.58,140.35 M500.16,80.68 L489.66,80.68 '/> <g transform="translate(509.95,85.23)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M500.16,21.01 L489.66,21.01 M488.08,21.01 L498.58,21.01 '/> <g transform="translate(509.95,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M488.08,80.68 L498.58,80.68 M500.16,21.01 L489.66,21.01 '/> <g transform="translate(509.95,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M488.08,21.01 L498.58,21.01 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
......
......@@ -298,52 +298,52 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,558.00 L704.51,558.00 M684.72,558.00 L695.22,558.00 '/> <g transform="translate(724.80,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M715.01,558.00 L704.51,558.00 '/> <g transform="translate(724.80,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,490.88 L704.51,490.88 M684.72,490.88 L695.22,490.88 '/> <g transform="translate(724.80,495.43)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,558.00 L695.22,558.00 M715.01,490.88 L704.51,490.88 '/> <g transform="translate(724.80,495.43)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.5</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,423.76 L704.51,423.76 M684.72,423.76 L695.22,423.76 '/> <g transform="translate(724.80,428.31)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,490.88 L695.22,490.88 M715.01,423.76 L704.51,423.76 '/> <g transform="translate(724.80,428.31)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,356.63 L704.51,356.63 M684.72,356.63 L695.22,356.63 '/> <g transform="translate(724.80,361.18)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,423.76 L695.22,423.76 M715.01,356.63 L704.51,356.63 '/> <g transform="translate(724.80,361.18)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 1.5</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,289.51 L704.51,289.51 M684.72,289.51 L695.22,289.51 '/> <g transform="translate(724.80,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,356.63 L695.22,356.63 M715.01,289.51 L704.51,289.51 '/> <g transform="translate(724.80,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,222.39 L704.51,222.39 M684.72,222.39 L695.22,222.39 '/> <g transform="translate(724.80,226.94)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,289.51 L695.22,289.51 M715.01,222.39 L704.51,222.39 '/> <g transform="translate(724.80,226.94)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 2.5</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,155.26 L704.51,155.26 M684.72,155.26 L695.22,155.26 '/> <g transform="translate(724.80,159.81)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,222.39 L695.22,222.39 M715.01,155.26 L704.51,155.26 '/> <g transform="translate(724.80,159.81)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 3</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,88.14 L704.51,88.14 M684.72,88.14 L695.22,88.14 '/> <g transform="translate(724.80,92.69)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,155.26 L695.22,155.26 M715.01,88.14 L704.51,88.14 '/> <g transform="translate(724.80,92.69)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 3.5</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,21.01 L704.51,21.01 M684.72,21.01 L695.22,21.01 '/> <g transform="translate(724.80,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,88.14 L695.22,88.14 M715.01,21.01 L704.51,21.01 '/> <g transform="translate(724.80,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M684.72,21.01 L695.22,21.01 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
......
......@@ -893,62 +893,62 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,341.58 L609.54,341.58 M600.53,341.58 L611.03,341.58 '/> <g transform="translate(629.83,346.13)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M620.04,341.58 L609.54,341.58 '/> <g transform="translate(629.83,346.13)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,323.37 L609.54,323.37 M600.53,323.37 L611.03,323.37 '/> <g transform="translate(629.83,327.92)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,341.58 L611.03,341.58 M620.04,323.37 L609.54,323.37 '/> <g transform="translate(629.83,327.92)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.8</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,305.15 L609.54,305.15 M600.53,305.15 L611.03,305.15 '/> <g transform="translate(629.83,309.70)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,323.37 L611.03,323.37 M620.04,305.15 L609.54,305.15 '/> <g transform="translate(629.83,309.70)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,286.94 L609.54,286.94 M600.53,286.94 L611.03,286.94 '/> <g transform="translate(629.83,291.49)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,305.15 L611.03,305.15 M620.04,286.94 L609.54,286.94 '/> <g transform="translate(629.83,291.49)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,268.72 L609.54,268.72 M600.53,268.72 L611.03,268.72 '/> <g transform="translate(629.83,273.27)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,286.94 L611.03,286.94 M620.04,268.72 L609.54,268.72 '/> <g transform="translate(629.83,273.27)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,250.51 L609.54,250.51 M600.53,250.51 L611.03,250.51 '/> <g transform="translate(629.83,255.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,268.72 L611.03,268.72 M620.04,250.51 L609.54,250.51 '/> <g transform="translate(629.83,255.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,232.29 L609.54,232.29 M600.53,232.29 L611.03,232.29 '/> <g transform="translate(629.83,236.84)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,250.51 L611.03,250.51 M620.04,232.29 L609.54,232.29 '/> <g transform="translate(629.83,236.84)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,214.08 L609.54,214.08 M600.53,214.08 L611.03,214.08 '/> <g transform="translate(629.83,218.63)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,232.29 L611.03,232.29 M620.04,214.08 L609.54,214.08 '/> <g transform="translate(629.83,218.63)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,195.86 L609.54,195.86 M600.53,195.86 L611.03,195.86 '/> <g transform="translate(629.83,200.41)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,214.08 L611.03,214.08 M620.04,195.86 L609.54,195.86 '/> <g transform="translate(629.83,200.41)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,177.65 L609.54,177.65 M600.53,177.65 L611.03,177.65 '/> <g transform="translate(629.83,182.20)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,195.86 L611.03,195.86 M620.04,177.65 L609.54,177.65 '/> <g transform="translate(629.83,182.20)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.8</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M620.04,159.43 L609.54,159.43 M600.53,159.43 L611.03,159.43 '/> <g transform="translate(629.83,163.98)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M600.53,177.65 L611.03,177.65 M620.04,159.43 L609.54,159.43 '/> <g transform="translate(629.83,163.98)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(400.00,47.27)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<path stroke='black' d='M600.53,159.43 L611.03,159.43 '/> <g transform="translate(400.00,47.27)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text>Double helix</text>
</g>
</g>
......
......@@ -470,42 +470,42 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,332.85 L618.88,332.85 M609.04,332.85 L619.54,332.85 '/> <g transform="translate(639.17,337.40)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M629.38,332.85 L618.88,332.85 '/> <g transform="translate(639.17,337.40)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,301.21 L618.88,301.21 M609.04,301.21 L619.54,301.21 '/> <g transform="translate(639.17,305.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,332.85 L619.54,332.85 M629.38,301.21 L618.88,301.21 '/> <g transform="translate(639.17,305.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,269.56 L618.88,269.56 M609.04,269.56 L619.54,269.56 '/> <g transform="translate(639.17,274.11)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,301.21 L619.54,301.21 M629.38,269.56 L618.88,269.56 '/> <g transform="translate(639.17,274.11)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,237.91 L618.88,237.91 M609.04,237.91 L619.54,237.91 '/> <g transform="translate(639.17,242.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,269.56 L619.54,269.56 M629.38,237.91 L618.88,237.91 '/> <g transform="translate(639.17,242.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,206.27 L618.88,206.27 M609.04,206.27 L619.54,206.27 '/> <g transform="translate(639.17,210.82)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,237.91 L619.54,237.91 M629.38,206.27 L618.88,206.27 '/> <g transform="translate(639.17,210.82)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,174.62 L618.88,174.62 M609.04,174.62 L619.54,174.62 '/> <g transform="translate(639.17,179.17)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,206.27 L619.54,206.27 M629.38,174.62 L618.88,174.62 '/> <g transform="translate(639.17,179.17)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,142.97 L618.88,142.97 M609.04,142.97 L619.54,142.97 '/> <g transform="translate(639.17,147.52)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,174.62 L619.54,174.62 M629.38,142.97 L618.88,142.97 '/> <g transform="translate(639.17,147.52)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M609.04,142.97 L619.54,142.97 '/></g>
</g>
</svg>
 
......@@ -4006,42 +4006,42 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M669.97,558.00 L659.47,558.00 M643.13,558.00 L653.63,558.00 '/> <g transform="translate(679.76,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M669.97,558.00 L659.47,558.00 '/> <g transform="translate(679.76,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M669.97,468.51 L659.47,468.51 M643.13,468.51 L653.63,468.51 '/> <g transform="translate(679.76,473.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M643.13,558.00 L653.63,558.00 M669.97,468.51 L659.47,468.51 '/> <g transform="translate(679.76,473.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M669.97,379.01 L659.47,379.01 M643.13,379.01 L653.63,379.01 '/> <g transform="translate(679.76,383.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M643.13,468.51 L653.63,468.51 M669.97,379.01 L659.47,379.01 '/> <g transform="translate(679.76,383.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M669.97,289.51 L659.47,289.51 M643.13,289.51 L653.63,289.51 '/> <g transform="translate(679.76,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M643.13,379.01 L653.63,379.01 M669.97,289.51 L659.47,289.51 '/> <g transform="translate(679.76,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M669.97,200.01 L659.47,200.01 M643.13,200.01 L653.63,200.01 '/> <g transform="translate(679.76,204.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M643.13,289.51 L653.63,289.51 M669.97,200.01 L659.47,200.01 '/> <g transform="translate(679.76,204.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M669.97,110.51 L659.47,110.51 M643.13,110.51 L653.63,110.51 '/> <g transform="translate(679.76,115.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M643.13,200.01 L653.63,200.01 M669.97,110.51 L659.47,110.51 '/> <g transform="translate(679.76,115.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M669.97,21.01 L659.47,21.01 M643.13,21.01 L653.63,21.01 '/> <g transform="translate(679.76,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M643.13,110.51 L653.63,110.51 M669.97,21.01 L659.47,21.01 '/> <g transform="translate(679.76,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M643.13,21.01 L653.63,21.01 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
......
......@@ -4964,42 +4964,42 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,332.85 L618.88,332.85 M609.04,332.85 L619.54,332.85 '/> <g transform="translate(639.17,337.40)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M629.38,332.85 L618.88,332.85 '/> <g transform="translate(639.17,337.40)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,301.21 L618.88,301.21 M609.04,301.21 L619.54,301.21 '/> <g transform="translate(639.17,305.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,332.85 L619.54,332.85 M629.38,301.21 L618.88,301.21 '/> <g transform="translate(639.17,305.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,269.56 L618.88,269.56 M609.04,269.56 L619.54,269.56 '/> <g transform="translate(639.17,274.11)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,301.21 L619.54,301.21 M629.38,269.56 L618.88,269.56 '/> <g transform="translate(639.17,274.11)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,237.91 L618.88,237.91 M609.04,237.91 L619.54,237.91 '/> <g transform="translate(639.17,242.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,269.56 L619.54,269.56 M629.38,237.91 L618.88,237.91 '/> <g transform="translate(639.17,242.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,206.27 L618.88,206.27 M609.04,206.27 L619.54,206.27 '/> <g transform="translate(639.17,210.82)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,237.91 L619.54,237.91 M629.38,206.27 L618.88,206.27 '/> <g transform="translate(639.17,210.82)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,174.62 L618.88,174.62 M609.04,174.62 L619.54,174.62 '/> <g transform="translate(639.17,179.17)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,206.27 L619.54,206.27 M629.38,174.62 L618.88,174.62 '/> <g transform="translate(639.17,179.17)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M629.38,142.97 L618.88,142.97 M609.04,142.97 L619.54,142.97 '/> <g transform="translate(639.17,147.52)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M609.04,174.62 L619.54,174.62 M629.38,142.97 L618.88,142.97 '/> <g transform="translate(639.17,147.52)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M609.04,142.97 L619.54,142.97 '/></g>
</g>
</svg>
 
......@@ -4863,42 +4863,42 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.90,332.85 L718.40,332.85 M699.73,332.85 L710.23,332.85 '/> <g transform="translate(738.69,337.40)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M728.90,332.85 L718.40,332.85 '/> <g transform="translate(738.69,337.40)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.90,301.21 L718.40,301.21 M699.73,301.21 L710.23,301.21 '/> <g transform="translate(738.69,305.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M699.73,332.85 L710.23,332.85 M728.90,301.21 L718.40,301.21 '/> <g transform="translate(738.69,305.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.90,269.56 L718.40,269.56 M699.73,269.56 L710.23,269.56 '/> <g transform="translate(738.69,274.11)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M699.73,301.21 L710.23,301.21 M728.90,269.56 L718.40,269.56 '/> <g transform="translate(738.69,274.11)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.90,237.91 L718.40,237.91 M699.73,237.91 L710.23,237.91 '/> <g transform="translate(738.69,242.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M699.73,269.56 L710.23,269.56 M728.90,237.91 L718.40,237.91 '/> <g transform="translate(738.69,242.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.90,206.27 L718.40,206.27 M699.73,206.27 L710.23,206.27 '/> <g transform="translate(738.69,210.82)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M699.73,237.91 L710.23,237.91 M728.90,206.27 L718.40,206.27 '/> <g transform="translate(738.69,210.82)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.90,174.62 L718.40,174.62 M699.73,174.62 L710.23,174.62 '/> <g transform="translate(738.69,179.17)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M699.73,206.27 L710.23,206.27 M728.90,174.62 L718.40,174.62 '/> <g transform="translate(738.69,179.17)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M728.90,142.97 L718.40,142.97 M699.73,142.97 L710.23,142.97 '/> <g transform="translate(738.69,147.52)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M699.73,174.62 L710.23,174.62 M728.90,142.97 L718.40,142.97 '/> <g transform="translate(738.69,147.52)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M699.73,142.97 L710.23,142.97 '/></g>
</g>
</svg>
 
This diff is collapsed.
This diff is collapsed.
......@@ -154,7 +154,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.63,558.00 L63.63,547.50 M63.63,21.01 L63.63,31.51 '/> <g transform="translate(63.63,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text>-4</text>
<text>-3</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -167,7 +167,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M152.00,558.00 L152.00,547.50 M152.00,21.01 L152.00,31.51 '/> <g transform="translate(152.00,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text>-3</text>
<text>-2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -180,7 +180,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M240.38,558.00 L240.38,547.50 M240.38,21.01 L240.38,31.51 '/> <g transform="translate(240.38,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text>-2</text>
<text>-1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -193,7 +193,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M328.75,558.00 L328.75,547.50 M328.75,21.01 L328.75,31.51 '/> <g transform="translate(328.75,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text>-1</text>
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -206,7 +206,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M417.13,558.00 L417.13,547.50 M417.13,21.01 L417.13,31.51 '/> <g transform="translate(417.13,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text> 0</text>
<text> 1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -219,7 +219,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M505.50,558.00 L505.50,547.50 M505.50,21.01 L505.50,31.51 '/> <g transform="translate(505.50,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text> 1</text>
<text> 2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -232,7 +232,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M593.87,558.00 L593.87,547.50 M593.87,21.01 L593.87,31.51 '/> <g transform="translate(593.87,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text> 2</text>
<text> 3</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -245,7 +245,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M682.25,558.00 L682.25,547.50 M682.25,21.01 L682.25,31.51 '/> <g transform="translate(682.25,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text> 3</text>
<text> 4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -258,7 +258,7 @@
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M770.62,558.00 L770.62,547.50 M770.62,21.01 L770.62,31.51 '/> <g transform="translate(770.62,583.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="middle">
<text> 4</text>
<text> 5</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -270,54 +270,54 @@
<g id="gnuplot_plot_1" fill="none"><title>gnuplot_plot_1</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '144.11,558.00 198.74,558.00 198.74,546.48 144.11,546.48 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '110.61,558.00 166.97,558.00 166.97,527.30 110.61,527.30 '/>
</g>
<path stroke='black' d='M144.11,558.00 L144.11,546.49 L198.73,546.49 L198.73,558.00 L144.11,558.00 Z '/></g>
<path stroke='black' d='M110.61,558.00 L110.61,527.31 L166.96,527.31 L166.96,558.00 L110.61,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '198.73,558.00 253.35,558.00 253.35,515.80 198.73,515.80 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '166.96,558.00 223.33,558.00 223.33,416.07 166.96,416.07 '/>
</g>
<path stroke='black' d='M198.73,558.00 L198.73,515.81 L253.34,515.81 L253.34,558.00 L198.73,558.00 Z '/></g>
<path stroke='black' d='M166.96,558.00 L166.96,416.08 L223.32,416.08 L223.32,558.00 L166.96,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '253.34,558.00 307.97,558.00 307.97,408.40 253.34,408.40 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '223.32,558.00 279.68,558.00 279.68,205.11 223.32,205.11 '/>
</g>
<path stroke='black' d='M253.34,558.00 L253.34,408.41 L307.96,408.41 L307.96,558.00 L253.34,558.00 Z '/></g>
<path stroke='black' d='M223.32,558.00 L223.32,205.12 L279.67,205.12 L279.67,558.00 L223.32,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '307.96,558.00 362.59,558.00 362.59,220.45 307.96,220.45 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '279.67,558.00 336.03,558.00 336.03,82.37 279.67,82.37 '/>
</g>
<path stroke='black' d='M307.96,558.00 L307.96,220.46 L362.58,220.46 L362.58,558.00 L307.96,558.00 Z '/></g>
<path stroke='black' d='M279.67,558.00 L279.67,82.38 L336.02,82.38 L336.02,558.00 L279.67,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '362.58,558.00 417.21,558.00 417.21,182.10 362.58,182.10 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '336.02,558.00 392.39,558.00 392.39,93.88 336.02,93.88 '/>
</g>
<path stroke='black' d='M362.58,558.00 L362.58,182.11 L417.20,182.11 L417.20,558.00 L362.58,558.00 Z '/></g>
<path stroke='black' d='M336.02,558.00 L336.02,93.89 L392.38,93.89 L392.38,558.00 L336.02,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '417.20,558.00 471.83,558.00 471.83,97.71 417.20,97.71 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '392.38,558.00 448.74,558.00 448.74,285.66 392.38,285.66 '/>
</g>
<path stroke='black' d='M417.20,558.00 L417.20,97.72 L471.82,97.72 L471.82,558.00 L417.20,558.00 Z '/></g>
<path stroke='black' d='M392.38,558.00 L392.38,285.67 L448.73,285.67 L448.73,558.00 L392.38,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '471.82,558.00 526.45,558.00 526.45,297.17 471.82,297.17 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '448.73,558.00 505.10,558.00 505.10,442.92 448.73,442.92 '/>
</g>
<path stroke='black' d='M471.82,558.00 L471.82,297.18 L526.44,297.18 L526.44,558.00 L471.82,558.00 Z '/></g>
<path stroke='black' d='M448.73,558.00 L448.73,442.93 L505.09,442.93 L505.09,558.00 L448.73,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '526.44,558.00 581.07,558.00 581.07,373.88 526.44,373.88 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '505.09,558.00 561.45,558.00 561.45,500.46 505.09,500.46 '/>
</g>
<path stroke='black' d='M526.44,558.00 L526.44,373.89 L581.06,373.89 L581.06,558.00 L526.44,558.00 Z '/></g>
<path stroke='black' d='M505.09,558.00 L505.09,500.47 L561.44,500.47 L561.44,558.00 L505.09,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '581.06,558.00 635.68,558.00 635.68,488.95 581.06,488.95 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '561.44,558.00 617.81,558.00 617.81,554.15 561.44,554.15 '/>
</g>
<path stroke='black' d='M581.06,558.00 L581.06,488.96 L635.67,488.96 L635.67,558.00 L581.06,558.00 Z '/></g>
<path stroke='black' d='M561.44,558.00 L561.44,554.16 L617.80,554.16 L617.80,558.00 L561.44,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<g stroke='none' shape-rendering='crispEdges'>
<polygon fill = 'rgb(148, 0, 211)' points = '635.67,558.00 690.30,558.00 690.30,531.14 635.67,531.14 '/>
<polygon fill = 'rgb(148, 0, 211)' points = '617.80,558.00 674.16,558.00 674.16,554.15 617.80,554.15 '/>
</g>
<path stroke='black' d='M635.67,558.00 L635.67,531.15 L690.29,531.15 L690.29,558.00 L635.67,558.00 Z '/></g>
<path stroke='black' d='M617.80,558.00 L617.80,554.16 L674.15,554.16 L674.15,558.00 L617.80,558.00 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
......@@ -330,19 +330,19 @@
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 158, 115)' d='M701.38,42.01 L751.04,42.01 M116.80,556.55 L122.87,556.18 L128.94,555.72 L135.00,555.15 L141.07,554.46 L147.14,553.62
L153.21,552.61 L159.28,551.40 L165.35,549.96 L171.42,548.24 L177.49,546.22 L183.55,543.84 L189.62,541.06 L195.69,537.84
L201.76,534.11 L207.83,529.82 L213.90,524.92 L219.97,519.36 L226.04,513.06 L232.10,505.99 L238.17,498.09 L244.24,489.32
L250.31,479.63 L256.38,468.99 L262.45,457.39 L268.52,444.80 L274.59,431.25 L280.65,416.74 L286.72,401.30 L292.79,385.00
L298.86,367.90 L304.93,350.09 L311.00,331.69 L317.07,312.81 L323.13,293.61 L329.20,274.25 L335.27,254.90 L341.34,235.76
L347.41,217.02 L353.48,198.88 L359.55,181.57 L365.62,165.27 L371.68,150.19 L377.75,136.53 L383.82,124.46 L389.89,114.14
L395.96,105.72 L402.03,99.30 L408.10,94.98 L414.17,92.82 L420.23,92.85 L426.30,95.06 L432.37,99.43 L438.44,105.90
L444.51,114.38 L450.58,124.74 L456.65,136.85 L462.72,150.55 L468.78,165.66 L474.85,181.98 L480.92,199.32 L486.99,217.47
L493.06,236.23 L499.13,255.38 L505.20,274.73 L511.26,294.09 L517.33,313.28 L523.40,332.15 L529.47,350.54 L535.54,368.33
L541.61,385.41 L547.68,401.69 L553.75,417.10 L559.81,431.59 L565.88,445.13 L571.95,457.69 L578.02,469.27 L584.09,479.88
L590.16,489.55 L596.23,498.30 L602.30,506.18 L608.36,513.23 L614.43,519.50 L620.50,525.05 L626.57,529.93 L632.64,534.21
L638.71,537.92 L644.78,541.14 L650.85,543.90 L656.91,546.27 L662.98,548.29 L669.05,550.00 L675.12,551.44 L681.19,552.64
L687.26,553.65 L693.33,554.48 L699.39,555.17 L705.46,555.73 L711.53,556.19 L717.60,556.56 '/></g>
<path stroke='rgb( 0, 158, 115)' d='M701.38,42.01 L751.04,42.01 M82.43,548.14 L88.69,546.01 L94.95,543.51 L101.21,540.56 L107.48,537.12 L113.74,533.13
L120.00,528.53 L126.26,523.25 L132.52,517.22 L138.78,510.40 L145.05,502.70 L151.31,494.09 L157.57,484.50 L163.83,473.90
L170.09,462.26 L176.35,449.54 L182.62,435.75 L188.88,420.90 L195.14,405.02 L201.40,388.14 L207.66,370.36 L213.92,351.74
L220.19,332.42 L226.45,312.52 L232.71,292.21 L238.97,271.65 L245.23,251.05 L251.49,230.62 L257.75,210.57 L264.02,191.14
L270.28,172.57 L276.54,155.08 L282.80,138.91 L289.06,124.27 L295.32,111.37 L301.59,100.39 L307.85,91.49 L314.11,84.79
L320.37,80.40 L326.63,78.39 L332.89,78.78 L339.16,81.56 L345.42,86.71 L351.68,94.13 L357.94,103.72 L364.20,115.34
L370.46,128.82 L376.72,143.98 L382.99,160.60 L389.25,178.46 L395.51,197.34 L401.77,216.99 L408.03,237.19 L414.29,257.70
L420.56,278.31 L426.82,298.81 L433.08,319.01 L439.34,338.74 L445.60,357.84 L451.86,376.20 L458.13,393.70 L464.39,410.26
L470.65,425.82 L476.91,440.33 L483.17,453.77 L489.43,466.14 L495.70,477.44 L501.96,487.71 L508.22,496.98 L514.48,505.29
L520.74,512.69 L527.00,519.26 L533.26,525.03 L539.53,530.09 L545.79,534.49 L552.05,538.29 L558.31,541.56 L564.57,544.36
L570.83,546.74 L577.10,548.75 L583.36,550.44 L589.62,551.85 L595.88,553.02 L602.14,553.99 L608.40,554.79 L614.67,555.44
L620.93,555.97 L627.19,556.40 L633.45,556.74 L639.71,557.02 L645.97,557.24 L652.24,557.41 L658.50,557.55 L664.76,557.65
L671.02,557.73 L677.28,557.80 L683.54,557.85 L689.80,557.89 L696.07,557.91 L702.33,557.94 '/></g>
</g>
<g id="gnuplot_plot_3" ><title>Observed PDF</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
......@@ -351,19 +351,19 @@
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 86, 180, 233)' d='M701.38,63.01 L751.04,63.01 M116.80,555.99 L122.87,555.52 L128.94,554.95 L135.00,554.26 L141.07,553.44 L147.14,552.46
L153.21,551.30 L159.28,549.92 L165.35,548.31 L171.42,546.43 L177.49,544.23 L183.55,541.69 L189.62,538.77 L195.69,535.41
L201.76,531.58 L207.83,527.23 L213.90,522.32 L219.97,516.79 L226.04,510.61 L232.10,503.74 L238.17,496.14 L244.24,487.76
L250.31,478.59 L256.38,468.60 L262.45,457.78 L268.52,446.12 L274.59,433.64 L280.65,420.35 L286.72,406.28 L292.79,391.48
L298.86,376.02 L304.93,359.95 L311.00,343.38 L317.07,326.41 L323.13,309.15 L329.20,291.73 L335.27,274.30 L341.34,257.01
L347.41,240.02 L353.48,223.48 L359.55,207.58 L365.62,192.46 L371.68,178.31 L377.75,165.28 L383.82,153.52 L389.89,143.17
L395.96,134.36 L402.03,127.18 L408.10,121.74 L414.17,118.09 L420.23,116.29 L426.30,116.36 L432.37,118.30 L438.44,122.08
L444.51,127.65 L450.58,134.95 L456.65,143.88 L462.72,154.34 L468.78,166.20 L474.85,179.32 L480.92,193.54 L486.99,208.72
L493.06,224.68 L499.13,241.25 L505.20,258.27 L511.26,275.58 L517.33,293.01 L523.40,310.42 L529.47,327.66 L535.54,344.61
L541.61,361.15 L547.68,377.17 L553.75,392.59 L559.81,407.34 L565.88,421.35 L571.95,434.58 L578.02,447.01 L584.09,458.60
L590.16,469.36 L596.23,479.29 L602.30,488.40 L608.36,496.72 L614.43,504.27 L620.50,511.09 L626.57,517.22 L632.64,522.70
L638.71,527.57 L644.78,531.88 L650.85,535.67 L656.91,538.99 L662.98,541.89 L669.05,544.41 L675.12,546.58 L681.19,548.44
L687.26,550.03 L693.33,551.39 L699.39,552.54 L705.46,553.51 L711.53,554.32 L717.60,555.00 '/></g>
<path stroke='rgb( 86, 180, 233)' d='M701.38,63.01 L751.04,63.01 M82.43,551.36 L88.69,549.80 L94.95,547.92 L101.21,545.68 L107.48,543.02 L113.74,539.88
L120.00,536.20 L126.26,531.91 L132.52,526.94 L138.78,521.23 L145.05,514.69 L151.31,507.26 L157.57,498.88 L163.83,489.47
L170.09,478.99 L176.35,467.39 L182.62,454.63 L188.88,440.71 L195.14,425.62 L201.40,409.39 L207.66,392.04 L213.92,373.66
L220.19,354.32 L226.45,334.16 L232.71,313.30 L238.97,291.92 L245.23,270.21 L251.49,248.38 L257.75,226.66 L264.02,205.30
L270.28,184.56 L276.54,164.70 L282.80,145.98 L289.06,128.66 L295.32,112.98 L301.59,99.19 L307.85,87.48 L314.11,78.03
L320.37,70.99 L326.63,66.47 L332.89,64.55 L339.16,65.24 L345.42,68.55 L351.68,74.42 L357.94,82.75 L364.20,93.42
L370.46,106.26 L376.72,121.08 L382.99,137.65 L389.25,155.75 L395.51,175.11 L401.77,195.47 L408.03,216.57 L414.29,238.15
L420.56,259.96 L426.82,281.75 L433.08,303.31 L439.34,324.44 L445.60,344.95 L451.86,364.69 L458.13,383.53 L464.39,401.37
L470.65,418.14 L476.91,433.77 L483.17,448.24 L489.43,461.54 L495.70,473.68 L501.96,484.68 L508.22,494.59 L514.48,503.45
L520.74,511.32 L527.00,518.26 L533.26,524.36 L539.53,529.67 L545.79,534.26 L552.05,538.22 L558.31,541.61 L564.57,544.49
L570.83,546.92 L577.10,548.96 L583.36,550.66 L589.62,552.08 L595.88,553.25 L602.14,554.21 L608.40,554.99 L614.67,555.62
L620.93,556.13 L627.19,556.54 L633.45,556.86 L639.71,557.12 L645.97,557.32 L652.24,557.48 L658.50,557.61 L664.76,557.70
L671.02,557.78 L677.28,557.83 L683.54,557.87 L689.80,557.91 L696.07,557.93 L702.33,557.95 '/></g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
......
This diff is collapsed.
......@@ -579,52 +579,52 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,558.00 L664.87,558.00 M648.52,558.00 L659.02,558.00 '/> <g transform="translate(685.16,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M675.37,558.00 L664.87,558.00 '/> <g transform="translate(685.16,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-200</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,490.88 L664.87,490.88 M648.52,490.88 L659.02,490.88 '/> <g transform="translate(685.16,495.43)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,558.00 L659.02,558.00 M675.37,490.88 L664.87,490.88 '/> <g transform="translate(685.16,495.43)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-150</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,423.76 L664.87,423.76 M648.52,423.76 L659.02,423.76 '/> <g transform="translate(685.16,428.31)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,490.88 L659.02,490.88 M675.37,423.76 L664.87,423.76 '/> <g transform="translate(685.16,428.31)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,356.63 L664.87,356.63 M648.52,356.63 L659.02,356.63 '/> <g transform="translate(685.16,361.18)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,423.76 L659.02,423.76 M675.37,356.63 L664.87,356.63 '/> <g transform="translate(685.16,361.18)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-50</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,289.51 L664.87,289.51 M648.52,289.51 L659.02,289.51 '/> <g transform="translate(685.16,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,356.63 L659.02,356.63 M675.37,289.51 L664.87,289.51 '/> <g transform="translate(685.16,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,222.39 L664.87,222.39 M648.52,222.39 L659.02,222.39 '/> <g transform="translate(685.16,226.94)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,289.51 L659.02,289.51 M675.37,222.39 L664.87,222.39 '/> <g transform="translate(685.16,226.94)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 50</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,155.26 L664.87,155.26 M648.52,155.26 L659.02,155.26 '/> <g transform="translate(685.16,159.81)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,222.39 L659.02,222.39 M675.37,155.26 L664.87,155.26 '/> <g transform="translate(685.16,159.81)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 100</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,88.14 L664.87,88.14 M648.52,88.14 L659.02,88.14 '/> <g transform="translate(685.16,92.69)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,155.26 L659.02,155.26 M675.37,88.14 L664.87,88.14 '/> <g transform="translate(685.16,92.69)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 150</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M675.37,21.01 L664.87,21.01 M648.52,21.01 L659.02,21.01 '/> <g transform="translate(685.16,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M648.52,88.14 L659.02,88.14 M675.37,21.01 L664.87,21.01 '/> <g transform="translate(685.16,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 200</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M648.52,21.01 L659.02,21.01 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
......
......@@ -579,62 +579,62 @@
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,558.00 L704.51,558.00 M684.72,558.00 L695.22,558.00 '/> <g transform="translate(724.80,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M715.01,558.00 L704.51,558.00 '/> <g transform="translate(724.80,562.55)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,504.31 L704.51,504.31 M684.72,504.31 L695.22,504.31 '/> <g transform="translate(724.80,508.86)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,558.00 L695.22,558.00 M715.01,504.31 L704.51,504.31 '/> <g transform="translate(724.80,508.86)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.8</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,450.61 L704.51,450.61 M684.72,450.61 L695.22,450.61 '/> <g transform="translate(724.80,455.16)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,504.31 L695.22,504.31 M715.01,450.61 L704.51,450.61 '/> <g transform="translate(724.80,455.16)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,396.91 L704.51,396.91 M684.72,396.91 L695.22,396.91 '/> <g transform="translate(724.80,401.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,450.61 L695.22,450.61 M715.01,396.91 L704.51,396.91 '/> <g transform="translate(724.80,401.46)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,343.21 L704.51,343.21 M684.72,343.21 L695.22,343.21 '/> <g transform="translate(724.80,347.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,396.91 L695.22,396.91 M715.01,343.21 L704.51,343.21 '/> <g transform="translate(724.80,347.76)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text>-0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,289.51 L704.51,289.51 M684.72,289.51 L695.22,289.51 '/> <g transform="translate(724.80,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,343.21 L695.22,343.21 M715.01,289.51 L704.51,289.51 '/> <g transform="translate(724.80,294.06)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,235.81 L704.51,235.81 M684.72,235.81 L695.22,235.81 '/> <g transform="translate(724.80,240.36)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,289.51 L695.22,289.51 M715.01,235.81 L704.51,235.81 '/> <g transform="translate(724.80,240.36)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,182.11 L704.51,182.11 M684.72,182.11 L695.22,182.11 '/> <g transform="translate(724.80,186.66)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,235.81 L695.22,235.81 M715.01,182.11 L704.51,182.11 '/> <g transform="translate(724.80,186.66)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,128.41 L704.51,128.41 M684.72,128.41 L695.22,128.41 '/> <g transform="translate(724.80,132.96)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,182.11 L695.22,182.11 M715.01,128.41 L704.51,128.41 '/> <g transform="translate(724.80,132.96)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,74.71 L704.51,74.71 M684.72,74.71 L695.22,74.71 '/> <g transform="translate(724.80,79.26)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,128.41 L695.22,128.41 M715.01,74.71 L704.51,74.71 '/> <g transform="translate(724.80,79.26)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 0.8</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M715.01,21.01 L704.51,21.01 M684.72,21.01 L695.22,21.01 '/> <g transform="translate(724.80,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<path stroke='black' d='M684.72,74.71 L695.22,74.71 M715.01,21.01 L704.51,21.01 '/> <g transform="translate(724.80,25.56)" stroke="none" fill="black" font-family="Arial" font-size="14.00" text-anchor="start">
<text> 1</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<path stroke='black' d='M684.72,21.01 L695.22,21.01 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment